styles.css 149 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349
  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. #u13043 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u13044 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u13046 {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:0px;
  41. height:0px;
  42. }
  43. #u13047_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. #u13047 {
  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. #u13047 .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. #u13047_text {
  79. border-width:0px;
  80. white-space:nowrap;
  81. text-transform:none;
  82. }
  83. #u13048_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. #u13048 {
  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. #u13048 .text {
  110. position:absolute;
  111. align-self:center;
  112. padding:2px 2px 2px 2px;
  113. box-sizing:border-box;
  114. width:100%;
  115. }
  116. #u13048_text {
  117. border-width:0px;
  118. word-wrap:break-word;
  119. text-transform:none;
  120. visibility:hidden;
  121. }
  122. #u13049 {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:0px;
  128. height:0px;
  129. }
  130. #u13050_img {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:31px;
  136. height:31px;
  137. }
  138. #u13050 {
  139. border-width:0px;
  140. position:absolute;
  141. left:19px;
  142. top:10px;
  143. width:31px;
  144. height:31px;
  145. display:flex;
  146. }
  147. #u13050 .text {
  148. position:absolute;
  149. align-self:center;
  150. padding:2px 2px 2px 2px;
  151. box-sizing:border-box;
  152. width:100%;
  153. }
  154. #u13050_text {
  155. border-width:0px;
  156. word-wrap:break-word;
  157. text-transform:none;
  158. }
  159. #u13051_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. #u13051 {
  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. #u13051 .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. #u13051_text {
  201. border-width:0px;
  202. white-space:nowrap;
  203. text-transform:none;
  204. }
  205. #u13052_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. #u13052 {
  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. #u13052 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:2px 2px 2px 2px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u13052_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. visibility:hidden;
  243. }
  244. #u13053_img {
  245. border-width:0px;
  246. position:absolute;
  247. left:0px;
  248. top:0px;
  249. width:15px;
  250. height:15px;
  251. }
  252. #u13053 {
  253. border-width:0px;
  254. position:absolute;
  255. left:1523px;
  256. top:18px;
  257. width:15px;
  258. height:15px;
  259. display:flex;
  260. }
  261. #u13053 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:2px 2px 2px 2px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u13053_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. visibility:hidden;
  273. }
  274. #u13054_img {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:15px;
  280. height:15px;
  281. }
  282. #u13054 {
  283. border-width:0px;
  284. position:absolute;
  285. left:1493px;
  286. top:18px;
  287. width:15px;
  288. height:15px;
  289. display:flex;
  290. }
  291. #u13054 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:2px 2px 2px 2px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u13054_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. visibility:hidden;
  303. }
  304. #u13055 {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:0px;
  310. height:0px;
  311. }
  312. #u13056_img {
  313. border-width:0px;
  314. position:absolute;
  315. left:0px;
  316. top:0px;
  317. width:14px;
  318. height:14px;
  319. }
  320. #u13056 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1553px;
  324. top:18px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. }
  329. #u13056 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u13056_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u13057_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:8px;
  348. height:5px;
  349. }
  350. #u13057 {
  351. border-width:0px;
  352. position:absolute;
  353. left:1572px;
  354. top:23px;
  355. width:8px;
  356. height:5px;
  357. display:flex;
  358. }
  359. #u13057 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u13057_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u13058_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. #u13058 {
  388. border-width:0px;
  389. position:absolute;
  390. left:198px;
  391. top:47px;
  392. width:1402px;
  393. height:1200px;
  394. display:flex;
  395. }
  396. #u13058 .text {
  397. position:absolute;
  398. align-self:center;
  399. padding:2px 2px 2px 2px;
  400. box-sizing:border-box;
  401. width:100%;
  402. }
  403. #u13058_text {
  404. border-width:0px;
  405. word-wrap:break-word;
  406. text-transform:none;
  407. visibility:hidden;
  408. }
  409. #u13059 {
  410. border-width:0px;
  411. position:absolute;
  412. left:35px;
  413. top:81px;
  414. width:118px;
  415. height:220px;
  416. }
  417. #u13059_children {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:0px;
  423. height:0px;
  424. }
  425. #u13060 {
  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. #u13061_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. #u13061 {
  454. border-width:0px;
  455. position:absolute;
  456. left:22px;
  457. top:0px;
  458. width:76px;
  459. height:20px;
  460. display:flex;
  461. }
  462. #u13061 .text {
  463. position:absolute;
  464. align-self:center;
  465. padding:2px 2px 2px 3px;
  466. box-sizing:border-box;
  467. width:100%;
  468. }
  469. #u13061_text {
  470. border-width:0px;
  471. white-space:nowrap;
  472. text-transform:none;
  473. }
  474. #u13062 {
  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. #u13063_img {
  488. border-width:0px;
  489. position:absolute;
  490. left:0px;
  491. top:0px;
  492. width:9px;
  493. height:9px;
  494. }
  495. #u13063 {
  496. border-width:0px;
  497. position:absolute;
  498. left:6px;
  499. top:6px;
  500. width:9px;
  501. height:9px;
  502. display:flex;
  503. }
  504. #u13063 .text {
  505. position:absolute;
  506. align-self:center;
  507. padding:2px 2px 2px 2px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u13063_img.selected {
  512. }
  513. #u13063.selected {
  514. }
  515. #u13063_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u13064_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. #u13064 {
  537. border-width:0px;
  538. position:absolute;
  539. left:22px;
  540. top:0px;
  541. width:62px;
  542. height:20px;
  543. display:flex;
  544. }
  545. #u13064 .text {
  546. position:absolute;
  547. align-self:center;
  548. padding:2px 2px 2px 3px;
  549. box-sizing:border-box;
  550. width:100%;
  551. }
  552. #u13064_text {
  553. border-width:0px;
  554. white-space:nowrap;
  555. text-transform:none;
  556. }
  557. #u13062_children {
  558. border-width:0px;
  559. position:absolute;
  560. left:0px;
  561. top:0px;
  562. width:0px;
  563. height:0px;
  564. }
  565. #u13065 {
  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. #u13066_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. #u13066 {
  594. border-width:0px;
  595. position:absolute;
  596. left:22px;
  597. top:0px;
  598. width:76px;
  599. height:20px;
  600. display:flex;
  601. }
  602. #u13066 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 3px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u13066_text {
  610. border-width:0px;
  611. white-space:nowrap;
  612. text-transform:none;
  613. }
  614. #u13067 {
  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. #u13068_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. #u13068 {
  643. border-width:0px;
  644. position:absolute;
  645. left:22px;
  646. top:0px;
  647. width:76px;
  648. height:20px;
  649. display:flex;
  650. }
  651. #u13068 .text {
  652. position:absolute;
  653. align-self:center;
  654. padding:2px 2px 2px 3px;
  655. box-sizing:border-box;
  656. width:100%;
  657. }
  658. #u13068_text {
  659. border-width:0px;
  660. white-space:nowrap;
  661. text-transform:none;
  662. }
  663. #u13069 {
  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. #u13070_img {
  677. border-width:0px;
  678. position:absolute;
  679. left:0px;
  680. top:0px;
  681. width:9px;
  682. height:9px;
  683. }
  684. #u13070 {
  685. border-width:0px;
  686. position:absolute;
  687. left:6px;
  688. top:6px;
  689. width:9px;
  690. height:9px;
  691. display:flex;
  692. }
  693. #u13070 .text {
  694. position:absolute;
  695. align-self:center;
  696. padding:2px 2px 2px 2px;
  697. box-sizing:border-box;
  698. width:100%;
  699. }
  700. #u13070_img.selected {
  701. }
  702. #u13070.selected {
  703. }
  704. #u13070_text {
  705. border-width:0px;
  706. word-wrap:break-word;
  707. text-transform:none;
  708. visibility:hidden;
  709. }
  710. #u13071_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. #u13071 {
  726. border-width:0px;
  727. position:absolute;
  728. left:22px;
  729. top:0px;
  730. width:62px;
  731. height:20px;
  732. display:flex;
  733. }
  734. #u13071 .text {
  735. position:absolute;
  736. align-self:center;
  737. padding:2px 2px 2px 3px;
  738. box-sizing:border-box;
  739. width:100%;
  740. }
  741. #u13071_text {
  742. border-width:0px;
  743. white-space:nowrap;
  744. text-transform:none;
  745. }
  746. #u13069_children {
  747. border-width:0px;
  748. position:absolute;
  749. left:0px;
  750. top:0px;
  751. width:0px;
  752. height:0px;
  753. }
  754. #u13072 {
  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. #u13073_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. #u13073 {
  783. border-width:0px;
  784. position:absolute;
  785. left:22px;
  786. top:0px;
  787. width:76px;
  788. height:20px;
  789. display:flex;
  790. }
  791. #u13073 .text {
  792. position:absolute;
  793. align-self:center;
  794. padding:2px 2px 2px 3px;
  795. box-sizing:border-box;
  796. width:100%;
  797. }
  798. #u13073_text {
  799. border-width:0px;
  800. white-space:nowrap;
  801. text-transform:none;
  802. }
  803. #u13074 {
  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. #u13075_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. #u13075 {
  832. border-width:0px;
  833. position:absolute;
  834. left:22px;
  835. top:0px;
  836. width:76px;
  837. height:20px;
  838. display:flex;
  839. }
  840. #u13075 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 3px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u13075_text {
  848. border-width:0px;
  849. white-space:nowrap;
  850. text-transform:none;
  851. }
  852. #u13076 {
  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. #u13077_img {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:9px;
  871. height:9px;
  872. }
  873. #u13077 {
  874. border-width:0px;
  875. position:absolute;
  876. left:6px;
  877. top:6px;
  878. width:9px;
  879. height:9px;
  880. display:flex;
  881. }
  882. #u13077 .text {
  883. position:absolute;
  884. align-self:center;
  885. padding:2px 2px 2px 2px;
  886. box-sizing:border-box;
  887. width:100%;
  888. }
  889. #u13077_img.selected {
  890. }
  891. #u13077.selected {
  892. }
  893. #u13077_text {
  894. border-width:0px;
  895. word-wrap:break-word;
  896. text-transform:none;
  897. visibility:hidden;
  898. }
  899. #u13078_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. #u13078 {
  915. border-width:0px;
  916. position:absolute;
  917. left:22px;
  918. top:0px;
  919. width:62px;
  920. height:20px;
  921. display:flex;
  922. }
  923. #u13078 .text {
  924. position:absolute;
  925. align-self:center;
  926. padding:2px 2px 2px 3px;
  927. box-sizing:border-box;
  928. width:100%;
  929. }
  930. #u13078_text {
  931. border-width:0px;
  932. white-space:nowrap;
  933. text-transform:none;
  934. }
  935. #u13076_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. #u13079 {
  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. #u13080_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. #u13080 {
  973. border-width:0px;
  974. position:absolute;
  975. left:22px;
  976. top:0px;
  977. width:62px;
  978. height:20px;
  979. display:flex;
  980. }
  981. #u13080 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:2px 2px 2px 3px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u13080_text {
  989. border-width:0px;
  990. white-space:nowrap;
  991. text-transform:none;
  992. }
  993. #u13081 {
  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. #u13082_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. #u13082 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:22px;
  1025. top:0px;
  1026. width:62px;
  1027. height:20px;
  1028. display:flex;
  1029. }
  1030. #u13082 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 3px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u13082_text {
  1038. border-width:0px;
  1039. white-space:nowrap;
  1040. text-transform:none;
  1041. }
  1042. #u13083 {
  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. #u13084_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. #u13084 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:22px;
  1074. top:0px;
  1075. width:62px;
  1076. height:20px;
  1077. display:flex;
  1078. }
  1079. #u13084 .text {
  1080. position:absolute;
  1081. align-self:center;
  1082. padding:2px 2px 2px 3px;
  1083. box-sizing:border-box;
  1084. width:100%;
  1085. }
  1086. #u13084_text {
  1087. border-width:0px;
  1088. white-space:nowrap;
  1089. text-transform:none;
  1090. }
  1091. #u13085 {
  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. #u13086_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. #u13086 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:22px;
  1123. top:0px;
  1124. width:62px;
  1125. height:20px;
  1126. display:flex;
  1127. }
  1128. #u13086 .text {
  1129. position:absolute;
  1130. align-self:center;
  1131. padding:2px 2px 2px 3px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u13086_text {
  1136. border-width:0px;
  1137. white-space:nowrap;
  1138. text-transform:none;
  1139. }
  1140. #u13087 {
  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. #u13088_img {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:0px;
  1157. top:0px;
  1158. width:9px;
  1159. height:9px;
  1160. }
  1161. #u13088 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:6px;
  1165. top:6px;
  1166. width:9px;
  1167. height:9px;
  1168. display:flex;
  1169. }
  1170. #u13088 .text {
  1171. position:absolute;
  1172. align-self:center;
  1173. padding:2px 2px 2px 2px;
  1174. box-sizing:border-box;
  1175. width:100%;
  1176. }
  1177. #u13088_img.selected {
  1178. }
  1179. #u13088.selected {
  1180. }
  1181. #u13088_text {
  1182. border-width:0px;
  1183. word-wrap:break-word;
  1184. text-transform:none;
  1185. visibility:hidden;
  1186. }
  1187. #u13089_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. #u13089 {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:22px;
  1206. top:0px;
  1207. width:76px;
  1208. height:20px;
  1209. display:flex;
  1210. }
  1211. #u13089 .text {
  1212. position:absolute;
  1213. align-self:center;
  1214. padding:2px 2px 2px 3px;
  1215. box-sizing:border-box;
  1216. width:100%;
  1217. }
  1218. #u13089_text {
  1219. border-width:0px;
  1220. white-space:nowrap;
  1221. text-transform:none;
  1222. }
  1223. #u13087_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. #u13090 {
  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. #u13091_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. #u13091 {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:22px;
  1264. top:0px;
  1265. width:76px;
  1266. height:20px;
  1267. display:flex;
  1268. }
  1269. #u13091 .text {
  1270. position:absolute;
  1271. align-self:center;
  1272. padding:2px 2px 2px 3px;
  1273. box-sizing:border-box;
  1274. width:100%;
  1275. }
  1276. #u13091_text {
  1277. border-width:0px;
  1278. white-space:nowrap;
  1279. text-transform:none;
  1280. }
  1281. #u13092 {
  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. #u13093_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. #u13093 {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:22px;
  1313. top:0px;
  1314. width:76px;
  1315. height:20px;
  1316. display:flex;
  1317. }
  1318. #u13093 .text {
  1319. position:absolute;
  1320. align-self:center;
  1321. padding:2px 2px 2px 3px;
  1322. box-sizing:border-box;
  1323. width:100%;
  1324. }
  1325. #u13093_text {
  1326. border-width:0px;
  1327. white-space:nowrap;
  1328. text-transform:none;
  1329. }
  1330. #u13094 {
  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. #u13095_img {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:9px;
  1349. height:9px;
  1350. }
  1351. #u13095 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:6px;
  1355. top:6px;
  1356. width:9px;
  1357. height:9px;
  1358. display:flex;
  1359. }
  1360. #u13095 .text {
  1361. position:absolute;
  1362. align-self:center;
  1363. padding:2px 2px 2px 2px;
  1364. box-sizing:border-box;
  1365. width:100%;
  1366. }
  1367. #u13095_img.selected {
  1368. }
  1369. #u13095.selected {
  1370. }
  1371. #u13095_text {
  1372. border-width:0px;
  1373. word-wrap:break-word;
  1374. text-transform:none;
  1375. visibility:hidden;
  1376. }
  1377. #u13096_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. #u13096 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:22px;
  1396. top:0px;
  1397. width:62px;
  1398. height:20px;
  1399. display:flex;
  1400. }
  1401. #u13096 .text {
  1402. position:absolute;
  1403. align-self:center;
  1404. padding:2px 2px 2px 3px;
  1405. box-sizing:border-box;
  1406. width:100%;
  1407. }
  1408. #u13096_text {
  1409. border-width:0px;
  1410. white-space:nowrap;
  1411. text-transform:none;
  1412. }
  1413. #u13094_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. #u13097 {
  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. #u13098_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. #u13098 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:22px;
  1454. top:0px;
  1455. width:76px;
  1456. height:20px;
  1457. display:flex;
  1458. }
  1459. #u13098 .text {
  1460. position:absolute;
  1461. align-self:center;
  1462. padding:2px 2px 2px 3px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u13098_text {
  1467. border-width:0px;
  1468. white-space:nowrap;
  1469. text-transform:none;
  1470. }
  1471. #u13099 {
  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. #u13100_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. #u13100 {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:22px;
  1503. top:0px;
  1504. width:62px;
  1505. height:20px;
  1506. display:flex;
  1507. }
  1508. #u13100 .text {
  1509. position:absolute;
  1510. align-self:center;
  1511. padding:2px 2px 2px 3px;
  1512. box-sizing:border-box;
  1513. width:100%;
  1514. }
  1515. #u13100_text {
  1516. border-width:0px;
  1517. white-space:nowrap;
  1518. text-transform:none;
  1519. }
  1520. #u13101 {
  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. #u13102_img {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:9px;
  1539. height:9px;
  1540. }
  1541. #u13102 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:6px;
  1545. top:6px;
  1546. width:9px;
  1547. height:9px;
  1548. display:flex;
  1549. }
  1550. #u13102 .text {
  1551. position:absolute;
  1552. align-self:center;
  1553. padding:2px 2px 2px 2px;
  1554. box-sizing:border-box;
  1555. width:100%;
  1556. }
  1557. #u13102_img.selected {
  1558. }
  1559. #u13102.selected {
  1560. }
  1561. #u13102_text {
  1562. border-width:0px;
  1563. word-wrap:break-word;
  1564. text-transform:none;
  1565. visibility:hidden;
  1566. }
  1567. #u13103_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. #u13103 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:22px;
  1586. top:0px;
  1587. width:62px;
  1588. height:20px;
  1589. display:flex;
  1590. }
  1591. #u13103 .text {
  1592. position:absolute;
  1593. align-self:center;
  1594. padding:2px 2px 2px 3px;
  1595. box-sizing:border-box;
  1596. width:100%;
  1597. }
  1598. #u13103_text {
  1599. border-width:0px;
  1600. white-space:nowrap;
  1601. text-transform:none;
  1602. }
  1603. #u13101_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. #u13104 {
  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. #u13105_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. #u13105 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:22px;
  1644. top:0px;
  1645. width:62px;
  1646. height:20px;
  1647. display:flex;
  1648. }
  1649. #u13105 .text {
  1650. position:absolute;
  1651. align-self:center;
  1652. padding:2px 2px 2px 3px;
  1653. box-sizing:border-box;
  1654. width:100%;
  1655. }
  1656. #u13105_text {
  1657. border-width:0px;
  1658. white-space:nowrap;
  1659. text-transform:none;
  1660. }
  1661. #u13106 {
  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. #u13107_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. #u13107 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:22px;
  1693. top:0px;
  1694. width:62px;
  1695. height:20px;
  1696. display:flex;
  1697. }
  1698. #u13107 .text {
  1699. position:absolute;
  1700. align-self:center;
  1701. padding:2px 2px 2px 3px;
  1702. box-sizing:border-box;
  1703. width:100%;
  1704. }
  1705. #u13107_text {
  1706. border-width:0px;
  1707. white-space:nowrap;
  1708. text-transform:none;
  1709. }
  1710. #u13108 {
  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. #u13109_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. #u13109 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:22px;
  1742. top:0px;
  1743. width:62px;
  1744. height:20px;
  1745. display:flex;
  1746. }
  1747. #u13109 .text {
  1748. position:absolute;
  1749. align-self:center;
  1750. padding:2px 2px 2px 3px;
  1751. box-sizing:border-box;
  1752. width:100%;
  1753. }
  1754. #u13109_text {
  1755. border-width:0px;
  1756. white-space:nowrap;
  1757. text-transform:none;
  1758. }
  1759. #u13110 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:0px;
  1765. height:0px;
  1766. }
  1767. #u13111_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. #u13111_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. #u13111_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. #u13111 {
  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. #u13111 .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. #u13111_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. #u13111.disabled {
  1858. }
  1859. .u13111_input_option {
  1860. font-size:14px;
  1861. }
  1862. #u13112_img {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:0px;
  1866. top:0px;
  1867. width:22px;
  1868. height:22px;
  1869. }
  1870. #u13112 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:216px;
  1874. top:15px;
  1875. width:22px;
  1876. height:22px;
  1877. display:flex;
  1878. }
  1879. #u13112 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 2px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u13112_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. visibility:hidden;
  1891. }
  1892. #u13113_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. #u13113 {
  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. #u13113 .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. #u13113_text {
  1934. border-width:0px;
  1935. white-space:nowrap;
  1936. text-transform:none;
  1937. }
  1938. #u13114_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. #u13114 {
  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. #u13114 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:0px 0px 0px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u13114_text {
  1980. border-width:0px;
  1981. word-wrap:break-word;
  1982. text-transform:none;
  1983. }
  1984. #u13115_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. #u13115 {
  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. #u13115 .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. #u13115_text {
  2024. border-width:0px;
  2025. white-space:nowrap;
  2026. text-transform:none;
  2027. }
  2028. #u13116_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. #u13116 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:50px;
  2048. width:1600px;
  2049. height:1200px;
  2050. display:flex;
  2051. }
  2052. #u13116 .text {
  2053. position:absolute;
  2054. align-self:center;
  2055. padding:2px 2px 2px 2px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u13116_text {
  2060. border-width:0px;
  2061. word-wrap:break-word;
  2062. text-transform:none;
  2063. visibility:hidden;
  2064. }
  2065. #u13117_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. #u13117 {
  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. #u13117 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:5px 10px 5px 10px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u13117_text {
  2114. border-width:0px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. visibility:hidden;
  2118. }
  2119. #u13118_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. #u13118 {
  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. #u13118 .text {
  2158. position:absolute;
  2159. align-self:center;
  2160. padding:5px 10px 5px 10px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u13118_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. visibility:hidden;
  2169. }
  2170. #u13119_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. #u13119 {
  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. #u13119 .text {
  2208. position:absolute;
  2209. align-self:center;
  2210. padding:5px 0px 5px 0px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u13119_text {
  2215. border-width:0px;
  2216. white-space:nowrap;
  2217. text-transform:none;
  2218. }
  2219. #u13120_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. #u13120 {
  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. #u13120 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 2px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u13120_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. }
  2265. #u13121_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. #u13121 {
  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. #u13121 .text {
  2303. position:absolute;
  2304. align-self:center;
  2305. padding:5px 10px 5px 0px;
  2306. box-sizing:border-box;
  2307. width:100%;
  2308. }
  2309. #u13121_text {
  2310. border-width:0px;
  2311. white-space:nowrap;
  2312. text-transform:none;
  2313. }
  2314. #u13122_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. #u13122 {
  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. #u13122 .text {
  2353. position:absolute;
  2354. align-self:center;
  2355. padding:5px 10px 5px 10px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u13122_text {
  2360. border-width:0px;
  2361. word-wrap:break-word;
  2362. text-transform:none;
  2363. visibility:hidden;
  2364. }
  2365. #u13123_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. #u13123_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. #u13123_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. #u13123 {
  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. #u13123 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 2px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u13123_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. #u13123.disabled {
  2462. }
  2463. #u13124_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. #u13124_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. #u13124_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. #u13124 {
  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. #u13124 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 2px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u13124_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. #u13124.disabled {
  2563. }
  2564. #u13125_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. #u13125 {
  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. #u13125 .text {
  2605. position:absolute;
  2606. align-self:center;
  2607. padding:5px 0px 5px 20px;
  2608. box-sizing:border-box;
  2609. width:100%;
  2610. }
  2611. #u13125_text {
  2612. border-width:0px;
  2613. word-wrap:break-word;
  2614. text-transform:none;
  2615. }
  2616. #u13126 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:0px;
  2622. height:0px;
  2623. }
  2624. #u13127_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. #u13127 {
  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. #u13127 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:5px 15px 5px 30px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u13127_text {
  2669. border-width:0px;
  2670. white-space:nowrap;
  2671. text-transform:none;
  2672. }
  2673. #u13128_img {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:12px;
  2679. height:12px;
  2680. }
  2681. #u13128 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:33px;
  2685. top:177px;
  2686. width:12px;
  2687. height:12px;
  2688. display:flex;
  2689. }
  2690. #u13128 .text {
  2691. position:absolute;
  2692. align-self:center;
  2693. padding:2px 2px 2px 2px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u13128_text {
  2698. border-width:0px;
  2699. word-wrap:break-word;
  2700. text-transform:none;
  2701. visibility:hidden;
  2702. }
  2703. #u13129 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:0px;
  2709. height:0px;
  2710. }
  2711. #u13130_img {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:77px;
  2717. height:21px;
  2718. }
  2719. #u13130 {
  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. #u13130 .text {
  2733. position:absolute;
  2734. align-self:center;
  2735. padding:2px 2px 2px 2px;
  2736. box-sizing:border-box;
  2737. width:100%;
  2738. }
  2739. #u13130_text {
  2740. border-width:0px;
  2741. white-space:nowrap;
  2742. text-transform:none;
  2743. }
  2744. #u13131_img {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:41px;
  2750. height:21px;
  2751. }
  2752. #u13131 {
  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. #u13131 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 2px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u13131_text {
  2773. border-width:0px;
  2774. white-space:nowrap;
  2775. text-transform:none;
  2776. }
  2777. #u13132_img {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:41px;
  2783. height:21px;
  2784. }
  2785. #u13132 {
  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. #u13132 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 2px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u13132_text {
  2807. border-width:0px;
  2808. white-space:nowrap;
  2809. text-transform:none;
  2810. }
  2811. #u13133_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. #u13133 {
  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. #u13133 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:5px 0px 5px 20px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u13133_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. }
  2863. #u13134 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:0px;
  2869. height:0px;
  2870. }
  2871. #u13135_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. #u13135 {
  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. #u13135 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:5px 15px 5px 30px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u13135_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. }
  2920. #u13136_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:12px;
  2926. height:12px;
  2927. }
  2928. #u13136 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:33px;
  2932. top:325px;
  2933. width:12px;
  2934. height:12px;
  2935. display:flex;
  2936. }
  2937. #u13136 .text {
  2938. position:absolute;
  2939. align-self:center;
  2940. padding:2px 2px 2px 2px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u13136_text {
  2945. border-width:0px;
  2946. word-wrap:break-word;
  2947. text-transform:none;
  2948. visibility:hidden;
  2949. }
  2950. #u13137 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:0px;
  2956. height:0px;
  2957. }
  2958. #u13138_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. #u13138 {
  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. #u13138 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:5px 15px 5px 30px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u13138_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. }
  3007. #u13139_img {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:12px;
  3013. height:12px;
  3014. }
  3015. #u13139 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:33px;
  3019. top:288px;
  3020. width:12px;
  3021. height:12px;
  3022. display:flex;
  3023. }
  3024. #u13139 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 2px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u13139_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. visibility:hidden;
  3036. }
  3037. #u13140 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:0px;
  3043. height:0px;
  3044. }
  3045. #u13141_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. #u13141 {
  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. #u13141 .text {
  3083. position:absolute;
  3084. align-self:center;
  3085. padding:5px 15px 5px 30px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u13141_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. }
  3094. #u13142_img {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:0px;
  3099. width:12px;
  3100. height:12px;
  3101. }
  3102. #u13142 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:157px;
  3106. top:288px;
  3107. width:12px;
  3108. height:12px;
  3109. display:flex;
  3110. }
  3111. #u13142 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 2px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u13142_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. visibility:hidden;
  3123. }
  3124. #u13143 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:0px;
  3130. height:0px;
  3131. }
  3132. #u13144_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. #u13144 {
  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. #u13144 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:5px 15px 5px 30px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u13144_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. }
  3181. #u13145_img {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:12px;
  3187. height:12px;
  3188. }
  3189. #u13145 {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:157px;
  3193. top:325px;
  3194. width:12px;
  3195. height:12px;
  3196. display:flex;
  3197. }
  3198. #u13145 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 2px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u13145_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. visibility:hidden;
  3210. }
  3211. #u13146 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:0px;
  3217. height:0px;
  3218. }
  3219. #u13147_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. #u13147 {
  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. #u13147 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:5px 15px 5px 30px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u13147_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. }
  3268. #u13148_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:12px;
  3274. height:12px;
  3275. }
  3276. #u13148 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:33px;
  3280. top:362px;
  3281. width:12px;
  3282. height:12px;
  3283. display:flex;
  3284. }
  3285. #u13148 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 2px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u13148_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. visibility:hidden;
  3297. }
  3298. #u13149 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:0px;
  3304. height:0px;
  3305. }
  3306. #u13150_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. #u13150 {
  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. #u13150 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:5px 15px 5px 30px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u13150_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. }
  3355. #u13151_img {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:12px;
  3361. height:12px;
  3362. }
  3363. #u13151 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:157px;
  3367. top:362px;
  3368. width:12px;
  3369. height:12px;
  3370. display:flex;
  3371. }
  3372. #u13151 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:2px 2px 2px 2px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u13151_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. visibility:hidden;
  3384. }
  3385. #u13152 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:0px;
  3391. height:0px;
  3392. }
  3393. #u13153_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. #u13153 {
  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. #u13153 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:5px 15px 5px 30px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u13153_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. }
  3442. #u13154_img {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:12px;
  3448. height:12px;
  3449. }
  3450. #u13154 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:33px;
  3454. top:399px;
  3455. width:12px;
  3456. height:12px;
  3457. display:flex;
  3458. }
  3459. #u13154 .text {
  3460. position:absolute;
  3461. align-self:center;
  3462. padding:2px 2px 2px 2px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u13154_text {
  3467. border-width:0px;
  3468. word-wrap:break-word;
  3469. text-transform:none;
  3470. visibility:hidden;
  3471. }
  3472. #u13155 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:0px;
  3478. height:0px;
  3479. }
  3480. #u13156_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. #u13156 {
  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. #u13156 .text {
  3518. position:absolute;
  3519. align-self:center;
  3520. padding:5px 15px 5px 30px;
  3521. box-sizing:border-box;
  3522. width:100%;
  3523. }
  3524. #u13156_text {
  3525. border-width:0px;
  3526. word-wrap:break-word;
  3527. text-transform:none;
  3528. }
  3529. #u13157_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:12px;
  3535. height:12px;
  3536. }
  3537. #u13157 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:157px;
  3541. top:399px;
  3542. width:12px;
  3543. height:12px;
  3544. display:flex;
  3545. }
  3546. #u13157 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 2px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u13157_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u13158 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:0px;
  3565. height:0px;
  3566. }
  3567. #u13159_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. #u13159 {
  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. #u13159 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:5px 15px 5px 30px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u13159_text {
  3612. border-width:0px;
  3613. word-wrap:break-word;
  3614. text-transform:none;
  3615. }
  3616. #u13160_img {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:12px;
  3622. height:12px;
  3623. }
  3624. #u13160 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:33px;
  3628. top:436px;
  3629. width:12px;
  3630. height:12px;
  3631. display:flex;
  3632. }
  3633. #u13160 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:2px 2px 2px 2px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u13160_text {
  3641. border-width:0px;
  3642. word-wrap:break-word;
  3643. text-transform:none;
  3644. visibility:hidden;
  3645. }
  3646. #u13161 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:0px;
  3652. height:0px;
  3653. }
  3654. #u13162_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. #u13162 {
  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. #u13162 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:5px 15px 5px 30px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u13162_text {
  3699. border-width:0px;
  3700. word-wrap:break-word;
  3701. text-transform:none;
  3702. }
  3703. #u13163_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:12px;
  3709. height:12px;
  3710. }
  3711. #u13163 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:157px;
  3715. top:436px;
  3716. width:12px;
  3717. height:12px;
  3718. display:flex;
  3719. }
  3720. #u13163 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 2px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u13163_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u13164 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:0px;
  3739. height:0px;
  3740. }
  3741. #u13165_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. #u13165 {
  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. #u13165 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:5px 15px 5px 30px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u13165_text {
  3786. border-width:0px;
  3787. word-wrap:break-word;
  3788. text-transform:none;
  3789. }
  3790. #u13166_img {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:12px;
  3796. height:12px;
  3797. }
  3798. #u13166 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:33px;
  3802. top:543px;
  3803. width:12px;
  3804. height:12px;
  3805. display:flex;
  3806. }
  3807. #u13166 .text {
  3808. position:absolute;
  3809. align-self:center;
  3810. padding:2px 2px 2px 2px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u13166_text {
  3815. border-width:0px;
  3816. word-wrap:break-word;
  3817. text-transform:none;
  3818. visibility:hidden;
  3819. }
  3820. #u13167 {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:0px;
  3826. height:0px;
  3827. }
  3828. #u13168_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. #u13168 {
  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. #u13168 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:5px 15px 5px 30px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u13168_text {
  3873. border-width:0px;
  3874. word-wrap:break-word;
  3875. text-transform:none;
  3876. }
  3877. #u13169_img {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:12px;
  3883. height:12px;
  3884. }
  3885. #u13169 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:157px;
  3889. top:543px;
  3890. width:12px;
  3891. height:12px;
  3892. display:flex;
  3893. }
  3894. #u13169 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 2px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u13169_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. visibility:hidden;
  3906. }
  3907. #u13170 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:0px;
  3913. height:0px;
  3914. }
  3915. #u13171_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. #u13171 {
  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. #u13171 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:5px 15px 5px 30px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u13171_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. }
  3964. #u13172_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:12px;
  3970. height:12px;
  3971. }
  3972. #u13172 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:33px;
  3976. top:580px;
  3977. width:12px;
  3978. height:12px;
  3979. display:flex;
  3980. }
  3981. #u13172 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 2px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u13172_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u13173 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:0px;
  4000. height:0px;
  4001. }
  4002. #u13174_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. #u13174 {
  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. #u13174 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:5px 15px 5px 30px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u13174_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. }
  4051. #u13175_img {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:12px;
  4057. height:12px;
  4058. }
  4059. #u13175 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:157px;
  4063. top:580px;
  4064. width:12px;
  4065. height:12px;
  4066. display:flex;
  4067. }
  4068. #u13175 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 2px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u13175_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u13176 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:0px;
  4087. height:0px;
  4088. }
  4089. #u13177_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. #u13177 {
  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. #u13177 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:5px 15px 5px 30px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u13177_text {
  4134. border-width:0px;
  4135. word-wrap:break-word;
  4136. text-transform:none;
  4137. }
  4138. #u13178_img {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:12px;
  4144. height:12px;
  4145. }
  4146. #u13178 {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:33px;
  4150. top:617px;
  4151. width:12px;
  4152. height:12px;
  4153. display:flex;
  4154. }
  4155. #u13178 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 2px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u13178_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u13179 {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:0px;
  4174. height:0px;
  4175. }
  4176. #u13180_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. #u13180 {
  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. #u13180 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:5px 15px 5px 30px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u13180_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. }
  4225. #u13181_img {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:12px;
  4231. height:12px;
  4232. }
  4233. #u13181 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:157px;
  4237. top:617px;
  4238. width:12px;
  4239. height:12px;
  4240. display:flex;
  4241. }
  4242. #u13181 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 2px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u13181_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. visibility:hidden;
  4254. }
  4255. #u13182_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. #u13182 {
  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. #u13182 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:5px 0px 5px 20px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u13182_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. }
  4307. #u13183_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. #u13183 {
  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. #u13183 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:5px 0px 5px 20px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u13183_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. }
  4359. #u13184 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:0px;
  4365. height:0px;
  4366. }
  4367. #u13185_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. #u13185 {
  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. #u13185 .text {
  4405. position:absolute;
  4406. align-self:center;
  4407. padding:5px 15px 5px 30px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u13185_text {
  4412. border-width:0px;
  4413. word-wrap:break-word;
  4414. text-transform:none;
  4415. }
  4416. #u13186_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:12px;
  4422. height:12px;
  4423. }
  4424. #u13186 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:33px;
  4428. top:724px;
  4429. width:12px;
  4430. height:12px;
  4431. display:flex;
  4432. }
  4433. #u13186 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 2px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u13186_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u13187_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. #u13187 {
  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. #u13187 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:5px 10px 5px 10px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u13187_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u13188 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:0px;
  4503. height:0px;
  4504. }
  4505. #u13189_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. #u13189 {
  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. #u13189 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:5px 10px 5px 10px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u13189_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u13190_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. #u13190 {
  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. #u13190 .text {
  4594. position:absolute;
  4595. align-self:center;
  4596. padding:5px 10px 5px 0px;
  4597. box-sizing:border-box;
  4598. width:100%;
  4599. }
  4600. #u13190_text {
  4601. border-width:0px;
  4602. white-space:nowrap;
  4603. text-transform:none;
  4604. }
  4605. #u13191 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:0px;
  4611. height:0px;
  4612. }
  4613. #u13192_img {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:32px;
  4619. height:19px;
  4620. }
  4621. #u13192 {
  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. #u13192 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 2px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u13192_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. }
  4646. #u13193_img {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:32px;
  4652. height:19px;
  4653. }
  4654. #u13193 {
  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. #u13193 .text {
  4668. position:absolute;
  4669. align-self:center;
  4670. padding:2px 2px 2px 2px;
  4671. box-sizing:border-box;
  4672. width:100%;
  4673. }
  4674. #u13193_text {
  4675. border-width:0px;
  4676. word-wrap:break-word;
  4677. text-transform:none;
  4678. }
  4679. #u13194_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. #u13194_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. #u13194_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. #u13194 {
  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. #u13194 .text {
  4755. position:absolute;
  4756. align-self:center;
  4757. padding:2px 2px 2px 10px;
  4758. box-sizing:border-box;
  4759. width:100%;
  4760. }
  4761. #u13194_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. #u13194.disabled {
  4785. }
  4786. #u13195_div {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:119px;
  4792. height:27px;
  4793. background:inherit;
  4794. background-color:rgba(255, 255, 255, 0);
  4795. border:none;
  4796. border-top:0px;
  4797. border-right:0px;
  4798. border-bottom:0px;
  4799. border-radius:0px;
  4800. border-top-left-radius:0px;
  4801. border-bottom-left-radius:0px;
  4802. -moz-box-shadow:none;
  4803. -webkit-box-shadow:none;
  4804. box-shadow:none;
  4805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:12px;
  4809. }
  4810. #u13195 {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:376px;
  4814. top:361px;
  4815. width:119px;
  4816. height:27px;
  4817. display:flex;
  4818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4819. font-weight:400;
  4820. font-style:normal;
  4821. font-size:12px;
  4822. }
  4823. #u13195 .text {
  4824. position:absolute;
  4825. align-self:center;
  4826. padding:5px 10px 5px 0px;
  4827. box-sizing:border-box;
  4828. width:100%;
  4829. }
  4830. #u13195_text {
  4831. border-width:0px;
  4832. white-space:nowrap;
  4833. text-transform:none;
  4834. }
  4835. #u13196_img {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:12px;
  4841. height:9px;
  4842. }
  4843. #u13196 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:358px;
  4847. top:371px;
  4848. width:12px;
  4849. height:9px;
  4850. display:flex;
  4851. }
  4852. #u13196 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 2px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u13196_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u13197_div {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:280px;
  4871. height:40px;
  4872. background:inherit;
  4873. background-color:rgba(255, 255, 255, 1);
  4874. box-sizing:border-box;
  4875. border-width:1px;
  4876. border-style:solid;
  4877. border-color:rgba(215, 215, 215, 1);
  4878. border-radius:0px;
  4879. -moz-box-shadow:none;
  4880. -webkit-box-shadow:none;
  4881. box-shadow:none;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:14px;
  4886. color:#FFFFFF;
  4887. text-align:center;
  4888. line-height:30px;
  4889. }
  4890. #u13197 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:1320px;
  4894. top:110px;
  4895. width:280px;
  4896. height:40px;
  4897. display:flex;
  4898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. font-size:14px;
  4902. color:#FFFFFF;
  4903. text-align:center;
  4904. line-height:30px;
  4905. }
  4906. #u13197 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:5px 10px 5px 10px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u13197_text {
  4914. border-width:0px;
  4915. word-wrap:break-word;
  4916. text-transform:none;
  4917. visibility:hidden;
  4918. }
  4919. #u13198 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:0px;
  4925. height:0px;
  4926. }
  4927. #u13199_div {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:280px;
  4933. height:1420px;
  4934. background:inherit;
  4935. background-color:rgba(255, 255, 255, 1);
  4936. box-sizing:border-box;
  4937. border-width:1px;
  4938. border-style:solid;
  4939. border-color:rgba(215, 215, 215, 1);
  4940. border-radius:0px;
  4941. -moz-box-shadow:none;
  4942. -webkit-box-shadow:none;
  4943. box-shadow:none;
  4944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:14px;
  4948. color:#FFFFFF;
  4949. text-align:center;
  4950. line-height:30px;
  4951. }
  4952. #u13199 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:1320px;
  4956. top:150px;
  4957. width:280px;
  4958. height:1420px;
  4959. display:flex;
  4960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4961. font-weight:400;
  4962. font-style:normal;
  4963. font-size:14px;
  4964. color:#FFFFFF;
  4965. text-align:center;
  4966. line-height:30px;
  4967. }
  4968. #u13199 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:5px 10px 5px 10px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u13199_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. visibility:hidden;
  4980. }
  4981. #u13200_div {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:236px;
  4987. height:283px;
  4988. background:inherit;
  4989. background-color:rgba(255, 255, 255, 1);
  4990. box-sizing:border-box;
  4991. border-width:1px;
  4992. border-style:solid;
  4993. border-color:rgba(201, 201, 201, 1);
  4994. border-radius:4px;
  4995. -moz-box-shadow:none;
  4996. -webkit-box-shadow:none;
  4997. box-shadow:none;
  4998. font-family:'Helvetica', sans-serif;
  4999. font-weight:400;
  5000. font-style:normal;
  5001. font-size:10px;
  5002. color:#CCCCCC;
  5003. text-align:right;
  5004. }
  5005. #u13200 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:1344px;
  5009. top:936px;
  5010. width:236px;
  5011. height:283px;
  5012. display:flex;
  5013. font-family:'Helvetica', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:10px;
  5017. color:#CCCCCC;
  5018. text-align:right;
  5019. }
  5020. #u13200 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 8px 2px 8px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u13200_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u13201_div {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:67px;
  5039. height:30px;
  5040. background:inherit;
  5041. background-color:rgba(255, 255, 255, 0);
  5042. border:none;
  5043. border-top:0px;
  5044. border-right:0px;
  5045. border-bottom:0px;
  5046. border-radius:0px;
  5047. border-top-left-radius:0px;
  5048. border-bottom-left-radius:0px;
  5049. -moz-box-shadow:none;
  5050. -webkit-box-shadow:none;
  5051. box-shadow:none;
  5052. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5053. font-weight:500;
  5054. font-style:normal;
  5055. font-size:14px;
  5056. color:#198CFB;
  5057. }
  5058. #u13201 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:1344px;
  5062. top:170px;
  5063. width:67px;
  5064. height:30px;
  5065. display:flex;
  5066. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5067. font-weight:500;
  5068. font-style:normal;
  5069. font-size:14px;
  5070. color:#198CFB;
  5071. }
  5072. #u13201 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:5px 10px 5px 0px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u13201_text {
  5080. border-width:0px;
  5081. white-space:nowrap;
  5082. text-transform:none;
  5083. }
  5084. #u13202 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:0px;
  5090. height:0px;
  5091. }
  5092. #u13203_div {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:0px;
  5096. top:0px;
  5097. width:41px;
  5098. height:27px;
  5099. background:inherit;
  5100. background-color:rgba(255, 255, 255, 0);
  5101. border:none;
  5102. border-top:0px;
  5103. border-right:0px;
  5104. border-bottom:0px;
  5105. border-radius:0px;
  5106. border-top-left-radius:0px;
  5107. border-bottom-left-radius:0px;
  5108. -moz-box-shadow:none;
  5109. -webkit-box-shadow:none;
  5110. box-shadow:none;
  5111. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5112. font-weight:500;
  5113. font-style:normal;
  5114. font-size:12px;
  5115. }
  5116. #u13203 {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:1344px;
  5120. top:289px;
  5121. width:41px;
  5122. height:27px;
  5123. display:flex;
  5124. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5125. font-weight:500;
  5126. font-style:normal;
  5127. font-size:12px;
  5128. }
  5129. #u13203 .text {
  5130. position:absolute;
  5131. align-self:center;
  5132. padding:5px 10px 5px 0px;
  5133. box-sizing:border-box;
  5134. width:100%;
  5135. }
  5136. #u13203_text {
  5137. border-width:0px;
  5138. word-wrap:break-word;
  5139. text-transform:none;
  5140. }
  5141. #u13204_div {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:236px;
  5147. height:30px;
  5148. background:inherit;
  5149. background-color:rgba(255, 255, 255, 1);
  5150. box-sizing:border-box;
  5151. border-width:1px;
  5152. border-style:solid;
  5153. border-color:rgba(215, 215, 215, 1);
  5154. border-radius:2px;
  5155. -moz-box-shadow:none;
  5156. -webkit-box-shadow:none;
  5157. box-shadow:none;
  5158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5159. font-weight:400;
  5160. font-style:normal;
  5161. font-size:12px;
  5162. text-align:left;
  5163. }
  5164. #u13204 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:1344px;
  5168. top:316px;
  5169. width:236px;
  5170. height:30px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:12px;
  5176. text-align:left;
  5177. }
  5178. #u13204 .text {
  5179. position:absolute;
  5180. align-self:center;
  5181. padding:5px 15px 5px 30px;
  5182. box-sizing:border-box;
  5183. width:100%;
  5184. }
  5185. #u13204_text {
  5186. border-width:0px;
  5187. word-wrap:break-word;
  5188. text-transform:none;
  5189. visibility:hidden;
  5190. }
  5191. #u13205_input {
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:212px;
  5196. height:28px;
  5197. padding:2px 2px 2px 2px;
  5198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5199. font-weight:400;
  5200. font-style:normal;
  5201. font-size:14px;
  5202. letter-spacing:normal;
  5203. color:#000000;
  5204. vertical-align:none;
  5205. text-align:left;
  5206. text-transform:none;
  5207. background-color:transparent;
  5208. border-color:transparent;
  5209. }
  5210. #u13205_input.disabled {
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:212px;
  5215. height:28px;
  5216. padding:2px 2px 2px 2px;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:14px;
  5221. letter-spacing:normal;
  5222. color:#000000;
  5223. vertical-align:none;
  5224. text-align:left;
  5225. text-transform:none;
  5226. background-color:transparent;
  5227. border-color:transparent;
  5228. }
  5229. #u13205_div {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:212px;
  5235. height:28px;
  5236. background:inherit;
  5237. background-color:rgba(255, 255, 255, 0);
  5238. border:none;
  5239. border-radius:0px;
  5240. -moz-box-shadow:none;
  5241. -webkit-box-shadow:none;
  5242. box-shadow:none;
  5243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. font-size:14px;
  5247. }
  5248. #u13205 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:1355px;
  5252. top:317px;
  5253. width:212px;
  5254. height:28px;
  5255. display:flex;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:14px;
  5260. }
  5261. #u13205 .text {
  5262. position:absolute;
  5263. align-self:center;
  5264. padding:2px 2px 2px 2px;
  5265. box-sizing:border-box;
  5266. width:100%;
  5267. }
  5268. #u13205_div.disabled {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:212px;
  5274. height:28px;
  5275. background:inherit;
  5276. background-color:rgba(240, 240, 240, 1);
  5277. border:none;
  5278. border-radius:0px;
  5279. -moz-box-shadow:none;
  5280. -webkit-box-shadow:none;
  5281. box-shadow:none;
  5282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:14px;
  5286. }
  5287. #u13205.disabled {
  5288. }
  5289. #u13206 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:0px;
  5295. height:0px;
  5296. }
  5297. #u13207_div {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:41px;
  5303. height:27px;
  5304. background:inherit;
  5305. background-color:rgba(255, 255, 255, 0);
  5306. border:none;
  5307. border-top:0px;
  5308. border-right:0px;
  5309. border-bottom:0px;
  5310. border-radius:0px;
  5311. border-top-left-radius:0px;
  5312. border-bottom-left-radius:0px;
  5313. -moz-box-shadow:none;
  5314. -webkit-box-shadow:none;
  5315. box-shadow:none;
  5316. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5317. font-weight:500;
  5318. font-style:normal;
  5319. font-size:12px;
  5320. }
  5321. #u13207 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:1344px;
  5325. top:366px;
  5326. width:41px;
  5327. height:27px;
  5328. display:flex;
  5329. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5330. font-weight:500;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. }
  5334. #u13207 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:5px 10px 5px 0px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u13207_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. }
  5346. #u13208_div {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:236px;
  5352. height:30px;
  5353. background:inherit;
  5354. background-color:rgba(255, 255, 255, 1);
  5355. box-sizing:border-box;
  5356. border-width:1px;
  5357. border-style:solid;
  5358. border-color:rgba(215, 215, 215, 1);
  5359. border-radius:2px;
  5360. -moz-box-shadow:none;
  5361. -webkit-box-shadow:none;
  5362. box-shadow:none;
  5363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:12px;
  5367. text-align:left;
  5368. }
  5369. #u13208 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:1344px;
  5373. top:393px;
  5374. width:236px;
  5375. height:30px;
  5376. display:flex;
  5377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5378. font-weight:400;
  5379. font-style:normal;
  5380. font-size:12px;
  5381. text-align:left;
  5382. }
  5383. #u13208 .text {
  5384. position:absolute;
  5385. align-self:center;
  5386. padding:5px 15px 5px 30px;
  5387. box-sizing:border-box;
  5388. width:100%;
  5389. }
  5390. #u13208_text {
  5391. border-width:0px;
  5392. word-wrap:break-word;
  5393. text-transform:none;
  5394. visibility:hidden;
  5395. }
  5396. #u13209_input {
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:212px;
  5401. height:28px;
  5402. padding:2px 2px 2px 2px;
  5403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. font-size:14px;
  5407. letter-spacing:normal;
  5408. color:#000000;
  5409. vertical-align:none;
  5410. text-align:left;
  5411. text-transform:none;
  5412. background-color:transparent;
  5413. border-color:transparent;
  5414. }
  5415. #u13209_input.disabled {
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:212px;
  5420. height:28px;
  5421. padding:2px 2px 2px 2px;
  5422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. font-size:14px;
  5426. letter-spacing:normal;
  5427. color:#000000;
  5428. vertical-align:none;
  5429. text-align:left;
  5430. text-transform:none;
  5431. background-color:transparent;
  5432. border-color:transparent;
  5433. }
  5434. #u13209_div {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:0px;
  5438. top:0px;
  5439. width:212px;
  5440. height:28px;
  5441. background:inherit;
  5442. background-color:rgba(255, 255, 255, 0);
  5443. border:none;
  5444. border-radius:0px;
  5445. -moz-box-shadow:none;
  5446. -webkit-box-shadow:none;
  5447. box-shadow:none;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:14px;
  5452. }
  5453. #u13209 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:1355px;
  5457. top:394px;
  5458. width:212px;
  5459. height:28px;
  5460. display:flex;
  5461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. font-size:14px;
  5465. }
  5466. #u13209 .text {
  5467. position:absolute;
  5468. align-self:center;
  5469. padding:2px 2px 2px 2px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u13209_div.disabled {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:212px;
  5479. height:28px;
  5480. background:inherit;
  5481. background-color:rgba(240, 240, 240, 1);
  5482. border:none;
  5483. border-radius:0px;
  5484. -moz-box-shadow:none;
  5485. -webkit-box-shadow:none;
  5486. box-shadow:none;
  5487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. font-size:14px;
  5491. }
  5492. #u13209.disabled {
  5493. }
  5494. #u13210 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:0px;
  5500. height:0px;
  5501. }
  5502. #u13211_div {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:59px;
  5508. height:27px;
  5509. background:inherit;
  5510. background-color:rgba(255, 255, 255, 0);
  5511. border:none;
  5512. border-top:0px;
  5513. border-right:0px;
  5514. border-bottom:0px;
  5515. border-radius:0px;
  5516. border-top-left-radius:0px;
  5517. border-bottom-left-radius:0px;
  5518. -moz-box-shadow:none;
  5519. -webkit-box-shadow:none;
  5520. box-shadow:none;
  5521. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5522. font-weight:500;
  5523. font-style:normal;
  5524. font-size:12px;
  5525. }
  5526. #u13211 {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:1344px;
  5530. top:212px;
  5531. width:59px;
  5532. height:27px;
  5533. display:flex;
  5534. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5535. font-weight:500;
  5536. font-style:normal;
  5537. font-size:12px;
  5538. }
  5539. #u13211 .text {
  5540. position:absolute;
  5541. align-self:center;
  5542. padding:5px 10px 5px 0px;
  5543. box-sizing:border-box;
  5544. width:100%;
  5545. }
  5546. #u13211_text {
  5547. border-width:0px;
  5548. white-space:nowrap;
  5549. text-transform:none;
  5550. }
  5551. #u13212_div {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:59px;
  5557. height:30px;
  5558. background:inherit;
  5559. background-color:rgba(255, 255, 255, 1);
  5560. box-sizing:border-box;
  5561. border-width:1px;
  5562. border-style:solid;
  5563. border-color:rgba(215, 215, 215, 1);
  5564. border-radius:2px;
  5565. -moz-box-shadow:none;
  5566. -webkit-box-shadow:none;
  5567. box-shadow:none;
  5568. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5569. font-weight:500;
  5570. font-style:normal;
  5571. font-size:12px;
  5572. }
  5573. #u13212 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:1344px;
  5577. top:239px;
  5578. width:59px;
  5579. height:30px;
  5580. display:flex;
  5581. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5582. font-weight:500;
  5583. font-style:normal;
  5584. font-size:12px;
  5585. }
  5586. #u13212 .text {
  5587. position:absolute;
  5588. align-self:center;
  5589. padding:2px 2px 2px 2px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u13212_text {
  5594. border-width:0px;
  5595. word-wrap:break-word;
  5596. text-transform:none;
  5597. }
  5598. #u13213_div {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:59px;
  5604. height:30px;
  5605. background:inherit;
  5606. background-color:rgba(255, 255, 255, 1);
  5607. box-sizing:border-box;
  5608. border-width:1px;
  5609. border-style:solid;
  5610. border-color:rgba(215, 215, 215, 1);
  5611. border-radius:2px;
  5612. -moz-box-shadow:none;
  5613. -webkit-box-shadow:none;
  5614. box-shadow:none;
  5615. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5616. font-weight:500;
  5617. font-style:normal;
  5618. font-size:12px;
  5619. }
  5620. #u13213 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:1403px;
  5624. top:239px;
  5625. width:59px;
  5626. height:30px;
  5627. display:flex;
  5628. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5629. font-weight:500;
  5630. font-style:normal;
  5631. font-size:12px;
  5632. }
  5633. #u13213 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:2px 2px 2px 2px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u13213_text {
  5641. border-width:0px;
  5642. word-wrap:break-word;
  5643. text-transform:none;
  5644. }
  5645. #u13214_div {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:59px;
  5651. height:30px;
  5652. background:inherit;
  5653. background-color:rgba(255, 255, 255, 1);
  5654. box-sizing:border-box;
  5655. border-width:1px;
  5656. border-style:solid;
  5657. border-color:rgba(215, 215, 215, 1);
  5658. border-radius:2px;
  5659. -moz-box-shadow:none;
  5660. -webkit-box-shadow:none;
  5661. box-shadow:none;
  5662. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5663. font-weight:500;
  5664. font-style:normal;
  5665. font-size:12px;
  5666. }
  5667. #u13214 {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:1462px;
  5671. top:239px;
  5672. width:59px;
  5673. height:30px;
  5674. display:flex;
  5675. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5676. font-weight:500;
  5677. font-style:normal;
  5678. font-size:12px;
  5679. }
  5680. #u13214 .text {
  5681. position:absolute;
  5682. align-self:center;
  5683. padding:2px 2px 2px 2px;
  5684. box-sizing:border-box;
  5685. width:100%;
  5686. }
  5687. #u13214_text {
  5688. border-width:0px;
  5689. word-wrap:break-word;
  5690. text-transform:none;
  5691. }
  5692. #u13215_div {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:59px;
  5698. height:30px;
  5699. background:inherit;
  5700. background-color:rgba(245, 154, 35, 1);
  5701. box-sizing:border-box;
  5702. border-width:1px;
  5703. border-style:solid;
  5704. border-color:rgba(215, 215, 215, 1);
  5705. border-radius:2px;
  5706. -moz-box-shadow:none;
  5707. -webkit-box-shadow:none;
  5708. box-shadow:none;
  5709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5710. font-weight:500;
  5711. font-style:normal;
  5712. font-size:12px;
  5713. color:#FFFFFF;
  5714. }
  5715. #u13215 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:1520px;
  5719. top:239px;
  5720. width:59px;
  5721. height:30px;
  5722. display:flex;
  5723. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5724. font-weight:500;
  5725. font-style:normal;
  5726. font-size:12px;
  5727. color:#FFFFFF;
  5728. }
  5729. #u13215 .text {
  5730. position:absolute;
  5731. align-self:center;
  5732. padding:2px 2px 2px 2px;
  5733. box-sizing:border-box;
  5734. width:100%;
  5735. }
  5736. #u13215_text {
  5737. border-width:0px;
  5738. word-wrap:break-word;
  5739. text-transform:none;
  5740. }
  5741. #u13216 label {
  5742. left:0px;
  5743. width:100%;
  5744. }
  5745. #u13216_img {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:4px;
  5750. width:12px;
  5751. height:12px;
  5752. }
  5753. #u13216 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:1346px;
  5757. top:677px;
  5758. width:118px;
  5759. height:20px;
  5760. display:flex;
  5761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. font-size:14px;
  5765. }
  5766. #u13216 .text {
  5767. position:absolute;
  5768. align-self:center;
  5769. padding:0px 2px 0px 2px;
  5770. box-sizing:border-box;
  5771. }
  5772. #u13216_img.selected {
  5773. }
  5774. #u13216.selected {
  5775. }
  5776. #u13216_img.disabled {
  5777. }
  5778. #u13216.disabled {
  5779. }
  5780. #u13216_img.selectedDisabled {
  5781. }
  5782. #u13216.selectedDisabled {
  5783. }
  5784. #u13216_text {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:14px;
  5788. top:0px;
  5789. width:102px;
  5790. word-wrap:break-word;
  5791. text-transform:none;
  5792. }
  5793. #u13216_input {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:0px;
  5799. height:0px;
  5800. opacity:0;
  5801. }
  5802. #u13217 label {
  5803. left:0px;
  5804. width:100%;
  5805. }
  5806. #u13217_img {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:0px;
  5810. top:4px;
  5811. width:12px;
  5812. height:12px;
  5813. }
  5814. #u13217 {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:1346px;
  5818. top:1225px;
  5819. width:118px;
  5820. height:20px;
  5821. display:flex;
  5822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:14px;
  5826. }
  5827. #u13217 .text {
  5828. position:absolute;
  5829. align-self:center;
  5830. padding:0px 2px 0px 2px;
  5831. box-sizing:border-box;
  5832. }
  5833. #u13217_img.selected {
  5834. }
  5835. #u13217.selected {
  5836. }
  5837. #u13217_img.disabled {
  5838. }
  5839. #u13217.disabled {
  5840. }
  5841. #u13217_img.selectedDisabled {
  5842. }
  5843. #u13217.selectedDisabled {
  5844. }
  5845. #u13217_text {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:14px;
  5849. top:0px;
  5850. width:102px;
  5851. word-wrap:break-word;
  5852. text-transform:none;
  5853. }
  5854. #u13217_input {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:0px;
  5860. height:0px;
  5861. opacity:0;
  5862. }
  5863. #u13218 label {
  5864. left:0px;
  5865. width:100%;
  5866. }
  5867. #u13218_img {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:4px;
  5872. width:12px;
  5873. height:12px;
  5874. }
  5875. #u13218 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:1346px;
  5879. top:1257px;
  5880. width:118px;
  5881. height:20px;
  5882. display:flex;
  5883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5884. font-weight:400;
  5885. font-style:normal;
  5886. font-size:14px;
  5887. }
  5888. #u13218 .text {
  5889. position:absolute;
  5890. align-self:center;
  5891. padding:0px 2px 0px 2px;
  5892. box-sizing:border-box;
  5893. }
  5894. #u13218_img.selected {
  5895. }
  5896. #u13218.selected {
  5897. }
  5898. #u13218_img.disabled {
  5899. }
  5900. #u13218.disabled {
  5901. }
  5902. #u13218_img.selectedDisabled {
  5903. }
  5904. #u13218.selectedDisabled {
  5905. }
  5906. #u13218_text {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:14px;
  5910. top:0px;
  5911. width:102px;
  5912. word-wrap:break-word;
  5913. text-transform:none;
  5914. }
  5915. #u13218_input {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:0px;
  5919. top:0px;
  5920. width:0px;
  5921. height:0px;
  5922. opacity:0;
  5923. }
  5924. #u13219 {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:0px;
  5930. height:0px;
  5931. }
  5932. #u13220 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:0px;
  5938. height:0px;
  5939. }
  5940. #u13221_div {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:254px;
  5946. height:90px;
  5947. background:inherit;
  5948. background-color:rgba(242, 242, 242, 1);
  5949. border:none;
  5950. border-radius:0px;
  5951. -moz-box-shadow:none;
  5952. -webkit-box-shadow:none;
  5953. box-shadow:none;
  5954. }
  5955. #u13221 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:1332px;
  5959. top:1425px;
  5960. width:254px;
  5961. height:90px;
  5962. display:flex;
  5963. }
  5964. #u13221 .text {
  5965. position:absolute;
  5966. align-self:center;
  5967. padding:2px 2px 2px 2px;
  5968. box-sizing:border-box;
  5969. width:100%;
  5970. }
  5971. #u13221_text {
  5972. border-width:0px;
  5973. word-wrap:break-word;
  5974. text-transform:none;
  5975. visibility:hidden;
  5976. }
  5977. #u13222_div {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:47px;
  5983. height:27px;
  5984. background:inherit;
  5985. background-color:rgba(255, 255, 255, 0);
  5986. border:none;
  5987. border-top:0px;
  5988. border-right:0px;
  5989. border-bottom:0px;
  5990. border-radius:0px;
  5991. border-top-left-radius:0px;
  5992. border-bottom-left-radius:0px;
  5993. -moz-box-shadow:none;
  5994. -webkit-box-shadow:none;
  5995. box-shadow:none;
  5996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. font-size:12px;
  6000. text-align:right;
  6001. }
  6002. #u13222 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:1364px;
  6006. top:1436px;
  6007. width:47px;
  6008. height:27px;
  6009. display:flex;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:12px;
  6014. text-align:right;
  6015. }
  6016. #u13222 .text {
  6017. position:absolute;
  6018. align-self:center;
  6019. padding:5px 10px 5px 0px;
  6020. box-sizing:border-box;
  6021. width:100%;
  6022. }
  6023. #u13222_text {
  6024. border-width:0px;
  6025. white-space:nowrap;
  6026. text-transform:none;
  6027. }
  6028. #u13223 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:0px;
  6032. top:0px;
  6033. width:0px;
  6034. height:0px;
  6035. }
  6036. #u13224_div {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:150px;
  6042. height:30px;
  6043. background:inherit;
  6044. background-color:rgba(255, 255, 255, 1);
  6045. box-sizing:border-box;
  6046. border-width:1px;
  6047. border-style:solid;
  6048. border-color:rgba(201, 201, 201, 1);
  6049. border-radius:4px;
  6050. -moz-box-shadow:none;
  6051. -webkit-box-shadow:none;
  6052. box-shadow:none;
  6053. font-family:'Helvetica', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:10px;
  6057. color:#CCCCCC;
  6058. text-align:right;
  6059. }
  6060. #u13224 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:1409px;
  6064. top:1435px;
  6065. width:150px;
  6066. height:30px;
  6067. display:flex;
  6068. font-family:'Helvetica', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:10px;
  6072. color:#CCCCCC;
  6073. text-align:right;
  6074. }
  6075. #u13224 .text {
  6076. position:absolute;
  6077. align-self:center;
  6078. padding:2px 8px 2px 8px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u13224_text {
  6083. border-width:0px;
  6084. word-wrap:break-word;
  6085. text-transform:none;
  6086. visibility:hidden;
  6087. }
  6088. #u13225_input {
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:132px;
  6093. height:26px;
  6094. padding:2px 2px 2px 2px;
  6095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:14px;
  6099. letter-spacing:normal;
  6100. color:#000000;
  6101. vertical-align:none;
  6102. text-align:left;
  6103. text-transform:none;
  6104. background-color:transparent;
  6105. border-color:transparent;
  6106. }
  6107. #u13225_input.disabled {
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:132px;
  6112. height:26px;
  6113. padding:2px 2px 2px 2px;
  6114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6115. font-weight:400;
  6116. font-style:normal;
  6117. font-size:14px;
  6118. letter-spacing:normal;
  6119. color:#000000;
  6120. vertical-align:none;
  6121. text-align:left;
  6122. text-transform:none;
  6123. background-color:transparent;
  6124. border-color:transparent;
  6125. }
  6126. #u13225_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:132px;
  6132. height:26px;
  6133. background:inherit;
  6134. background-color:rgba(255, 255, 255, 1);
  6135. border:none;
  6136. border-radius:0px;
  6137. -moz-box-shadow:none;
  6138. -webkit-box-shadow:none;
  6139. box-shadow:none;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:14px;
  6144. }
  6145. #u13225 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:1413px;
  6149. top:1436px;
  6150. width:132px;
  6151. height:26px;
  6152. display:flex;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:14px;
  6157. }
  6158. #u13225 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:2px 2px 2px 2px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u13225_div.disabled {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:132px;
  6171. height:26px;
  6172. background:inherit;
  6173. background-color:rgba(240, 240, 240, 1);
  6174. border:none;
  6175. border-radius:0px;
  6176. -moz-box-shadow:none;
  6177. -webkit-box-shadow:none;
  6178. box-shadow:none;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:14px;
  6183. }
  6184. #u13225.disabled {
  6185. }
  6186. #u13226_div {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:59px;
  6192. height:27px;
  6193. background:inherit;
  6194. background-color:rgba(255, 255, 255, 0);
  6195. border:none;
  6196. border-top:0px;
  6197. border-right:0px;
  6198. border-bottom:0px;
  6199. border-radius:0px;
  6200. border-top-left-radius:0px;
  6201. border-bottom-left-radius:0px;
  6202. -moz-box-shadow:none;
  6203. -webkit-box-shadow:none;
  6204. box-shadow:none;
  6205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6206. font-weight:400;
  6207. font-style:normal;
  6208. font-size:12px;
  6209. text-align:right;
  6210. }
  6211. #u13226 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:1352px;
  6215. top:1476px;
  6216. width:59px;
  6217. height:27px;
  6218. display:flex;
  6219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. font-size:12px;
  6223. text-align:right;
  6224. }
  6225. #u13226 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:5px 10px 5px 0px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u13226_text {
  6233. border-width:0px;
  6234. white-space:nowrap;
  6235. text-transform:none;
  6236. }
  6237. #u13227 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:0px;
  6243. height:0px;
  6244. }
  6245. #u13228_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:150px;
  6251. height:30px;
  6252. background:inherit;
  6253. background-color:rgba(255, 255, 255, 1);
  6254. box-sizing:border-box;
  6255. border-width:1px;
  6256. border-style:solid;
  6257. border-color:rgba(201, 201, 201, 1);
  6258. border-radius:4px;
  6259. -moz-box-shadow:none;
  6260. -webkit-box-shadow:none;
  6261. box-shadow:none;
  6262. font-family:'Helvetica', sans-serif;
  6263. font-weight:400;
  6264. font-style:normal;
  6265. font-size:10px;
  6266. color:#CCCCCC;
  6267. text-align:right;
  6268. }
  6269. #u13228 {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:1409px;
  6273. top:1475px;
  6274. width:150px;
  6275. height:30px;
  6276. display:flex;
  6277. font-family:'Helvetica', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:10px;
  6281. color:#CCCCCC;
  6282. text-align:right;
  6283. }
  6284. #u13228 .text {
  6285. position:absolute;
  6286. align-self:center;
  6287. padding:2px 8px 2px 8px;
  6288. box-sizing:border-box;
  6289. width:100%;
  6290. }
  6291. #u13228_text {
  6292. border-width:0px;
  6293. word-wrap:break-word;
  6294. text-transform:none;
  6295. visibility:hidden;
  6296. }
  6297. #u13229_input {
  6298. position:absolute;
  6299. left:0px;
  6300. top:0px;
  6301. width:132px;
  6302. height:26px;
  6303. padding:2px 2px 2px 2px;
  6304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6305. font-weight:400;
  6306. font-style:normal;
  6307. font-size:14px;
  6308. letter-spacing:normal;
  6309. color:#000000;
  6310. vertical-align:none;
  6311. text-align:left;
  6312. text-transform:none;
  6313. background-color:transparent;
  6314. border-color:transparent;
  6315. }
  6316. #u13229_input.disabled {
  6317. position:absolute;
  6318. left:0px;
  6319. top:0px;
  6320. width:132px;
  6321. height:26px;
  6322. padding:2px 2px 2px 2px;
  6323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:14px;
  6327. letter-spacing:normal;
  6328. color:#000000;
  6329. vertical-align:none;
  6330. text-align:left;
  6331. text-transform:none;
  6332. background-color:transparent;
  6333. border-color:transparent;
  6334. }
  6335. #u13229_div {
  6336. border-width:0px;
  6337. position:absolute;
  6338. left:0px;
  6339. top:0px;
  6340. width:132px;
  6341. height:26px;
  6342. background:inherit;
  6343. background-color:rgba(255, 255, 255, 1);
  6344. border:none;
  6345. border-radius:0px;
  6346. -moz-box-shadow:none;
  6347. -webkit-box-shadow:none;
  6348. box-shadow:none;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:14px;
  6353. }
  6354. #u13229 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:1413px;
  6358. top:1476px;
  6359. width:132px;
  6360. height:26px;
  6361. display:flex;
  6362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6363. font-weight:400;
  6364. font-style:normal;
  6365. font-size:14px;
  6366. }
  6367. #u13229 .text {
  6368. position:absolute;
  6369. align-self:center;
  6370. padding:2px 2px 2px 2px;
  6371. box-sizing:border-box;
  6372. width:100%;
  6373. }
  6374. #u13229_div.disabled {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:132px;
  6380. height:26px;
  6381. background:inherit;
  6382. background-color:rgba(240, 240, 240, 1);
  6383. border:none;
  6384. border-radius:0px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:14px;
  6392. }
  6393. #u13229.disabled {
  6394. }
  6395. #u13230_img {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:0px;
  6399. top:0px;
  6400. width:13px;
  6401. height:13px;
  6402. }
  6403. #u13230 {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:1576px;
  6407. top:1423px;
  6408. width:13px;
  6409. height:13px;
  6410. display:flex;
  6411. }
  6412. #u13230 .text {
  6413. position:absolute;
  6414. align-self:center;
  6415. padding:2px 2px 2px 2px;
  6416. box-sizing:border-box;
  6417. width:100%;
  6418. }
  6419. #u13230_text {
  6420. border-width:0px;
  6421. word-wrap:break-word;
  6422. text-transform:none;
  6423. visibility:hidden;
  6424. }
  6425. #u13231_div {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:74px;
  6431. height:26px;
  6432. background:inherit;
  6433. background-color:rgba(255, 255, 255, 1);
  6434. border:none;
  6435. border-top:0px;
  6436. border-right:0px;
  6437. border-bottom:0px;
  6438. border-radius:0px;
  6439. border-top-left-radius:0px;
  6440. border-bottom-left-radius:0px;
  6441. -moz-box-shadow:none;
  6442. -webkit-box-shadow:none;
  6443. box-shadow:none;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:11px;
  6448. color:#198CFB;
  6449. }
  6450. #u13231 {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:1332px;
  6454. top:1525px;
  6455. width:74px;
  6456. height:26px;
  6457. display:flex;
  6458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6459. font-weight:400;
  6460. font-style:normal;
  6461. font-size:11px;
  6462. color:#198CFB;
  6463. }
  6464. #u13231 .text {
  6465. position:absolute;
  6466. align-self:center;
  6467. padding:5px 0px 5px 0px;
  6468. box-sizing:border-box;
  6469. width:100%;
  6470. }
  6471. #u13231_text {
  6472. border-width:0px;
  6473. word-wrap:break-word;
  6474. text-transform:none;
  6475. }
  6476. #u13232_img {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:255px;
  6482. height:2px;
  6483. }
  6484. #u13232 {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:1335px;
  6488. top:1401px;
  6489. width:254px;
  6490. height:1px;
  6491. display:flex;
  6492. }
  6493. #u13232 .text {
  6494. position:absolute;
  6495. align-self:center;
  6496. padding:2px 2px 2px 2px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u13232_text {
  6501. border-width:0px;
  6502. word-wrap:break-word;
  6503. text-transform:none;
  6504. visibility:hidden;
  6505. }
  6506. #u13233_div {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:0px;
  6510. top:0px;
  6511. width:74px;
  6512. height:30px;
  6513. background:inherit;
  6514. background-color:rgba(255, 255, 255, 1);
  6515. border:none;
  6516. border-top:0px;
  6517. border-right:0px;
  6518. border-bottom:0px;
  6519. border-radius:0px;
  6520. border-top-left-radius:0px;
  6521. border-bottom-left-radius:0px;
  6522. -moz-box-shadow:none;
  6523. -webkit-box-shadow:none;
  6524. box-shadow:none;
  6525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6526. font-weight:400;
  6527. font-style:normal;
  6528. font-size:14px;
  6529. text-align:center;
  6530. }
  6531. #u13233 {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:1424px;
  6535. top:1387px;
  6536. width:74px;
  6537. height:30px;
  6538. display:flex;
  6539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6540. font-weight:400;
  6541. font-style:normal;
  6542. font-size:14px;
  6543. text-align:center;
  6544. }
  6545. #u13233 .text {
  6546. position:absolute;
  6547. align-self:center;
  6548. padding:5px 0px 5px 0px;
  6549. box-sizing:border-box;
  6550. width:100%;
  6551. }
  6552. #u13233_text {
  6553. border-width:0px;
  6554. word-wrap:break-word;
  6555. text-transform:none;
  6556. }
  6557. #u13234 label {
  6558. left:0px;
  6559. width:100%;
  6560. }
  6561. #u13234_img {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:4px;
  6566. width:12px;
  6567. height:12px;
  6568. }
  6569. #u13234 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:1346px;
  6573. top:833px;
  6574. width:118px;
  6575. height:20px;
  6576. display:flex;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:14px;
  6581. }
  6582. #u13234 .text {
  6583. position:absolute;
  6584. align-self:center;
  6585. padding:0px 2px 0px 2px;
  6586. box-sizing:border-box;
  6587. }
  6588. #u13234_img.selected {
  6589. }
  6590. #u13234.selected {
  6591. }
  6592. #u13234_img.disabled {
  6593. }
  6594. #u13234.disabled {
  6595. }
  6596. #u13234_img.selectedDisabled {
  6597. }
  6598. #u13234.selectedDisabled {
  6599. }
  6600. #u13234_text {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:14px;
  6604. top:0px;
  6605. width:102px;
  6606. word-wrap:break-word;
  6607. text-transform:none;
  6608. }
  6609. #u13234_input {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:0px;
  6615. height:0px;
  6616. opacity:0;
  6617. }
  6618. #u13235 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:0px;
  6624. height:0px;
  6625. }
  6626. #u13236 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:0px;
  6632. height:0px;
  6633. }
  6634. #u13237_div {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:0px;
  6638. top:0px;
  6639. width:219px;
  6640. height:30px;
  6641. background:inherit;
  6642. background-color:rgba(255, 255, 255, 1);
  6643. box-sizing:border-box;
  6644. border-width:1px;
  6645. border-style:solid;
  6646. border-color:rgba(201, 201, 201, 1);
  6647. border-radius:4px;
  6648. -moz-box-shadow:none;
  6649. -webkit-box-shadow:none;
  6650. box-shadow:none;
  6651. font-family:'Helvetica', sans-serif;
  6652. font-weight:400;
  6653. font-style:normal;
  6654. font-size:10px;
  6655. color:#CCCCCC;
  6656. text-align:right;
  6657. }
  6658. #u13237 {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:1361px;
  6662. top:861px;
  6663. width:219px;
  6664. height:30px;
  6665. display:flex;
  6666. font-family:'Helvetica', sans-serif;
  6667. font-weight:400;
  6668. font-style:normal;
  6669. font-size:10px;
  6670. color:#CCCCCC;
  6671. text-align:right;
  6672. }
  6673. #u13237 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 8px 2px 8px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u13237_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. visibility:hidden;
  6685. }
  6686. #u13238_input {
  6687. position:absolute;
  6688. left:0px;
  6689. top:0px;
  6690. width:193px;
  6691. height:26px;
  6692. padding:2px 2px 2px 2px;
  6693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. font-size:14px;
  6697. letter-spacing:normal;
  6698. color:#000000;
  6699. vertical-align:none;
  6700. text-align:left;
  6701. text-transform:none;
  6702. background-color:transparent;
  6703. border-color:transparent;
  6704. }
  6705. #u13238_input.disabled {
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:193px;
  6710. height:26px;
  6711. padding:2px 2px 2px 2px;
  6712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6713. font-weight:400;
  6714. font-style:normal;
  6715. font-size:14px;
  6716. letter-spacing:normal;
  6717. color:#000000;
  6718. vertical-align:none;
  6719. text-align:left;
  6720. text-transform:none;
  6721. background-color:transparent;
  6722. border-color:transparent;
  6723. }
  6724. #u13238_div {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:193px;
  6730. height:26px;
  6731. background:inherit;
  6732. background-color:rgba(255, 255, 255, 1);
  6733. border:none;
  6734. border-radius:0px;
  6735. -moz-box-shadow:none;
  6736. -webkit-box-shadow:none;
  6737. box-shadow:none;
  6738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6739. font-weight:400;
  6740. font-style:normal;
  6741. font-size:14px;
  6742. }
  6743. #u13238 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:1368px;
  6747. top:862px;
  6748. width:193px;
  6749. height:26px;
  6750. display:flex;
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. font-size:14px;
  6755. }
  6756. #u13238 .text {
  6757. position:absolute;
  6758. align-self:center;
  6759. padding:2px 2px 2px 2px;
  6760. box-sizing:border-box;
  6761. width:100%;
  6762. }
  6763. #u13238_div.disabled {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:193px;
  6769. height:26px;
  6770. background:inherit;
  6771. background-color:rgba(240, 240, 240, 1);
  6772. border:none;
  6773. border-radius:0px;
  6774. -moz-box-shadow:none;
  6775. -webkit-box-shadow:none;
  6776. box-shadow:none;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:14px;
  6781. }
  6782. #u13238.disabled {
  6783. }
  6784. #u13239 {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:0px;
  6790. height:0px;
  6791. }
  6792. #u13240_div {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:107px;
  6798. height:27px;
  6799. background:inherit;
  6800. background-color:rgba(255, 255, 255, 0);
  6801. border:none;
  6802. border-top:0px;
  6803. border-right:0px;
  6804. border-bottom:0px;
  6805. border-radius:0px;
  6806. border-top-left-radius:0px;
  6807. border-bottom-left-radius:0px;
  6808. -moz-box-shadow:none;
  6809. -webkit-box-shadow:none;
  6810. box-shadow:none;
  6811. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6812. font-weight:500;
  6813. font-style:normal;
  6814. font-size:12px;
  6815. }
  6816. #u13240 {
  6817. border-width:0px;
  6818. position:absolute;
  6819. left:1344px;
  6820. top:443px;
  6821. width:107px;
  6822. height:27px;
  6823. display:flex;
  6824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6825. font-weight:500;
  6826. font-style:normal;
  6827. font-size:12px;
  6828. }
  6829. #u13240 .text {
  6830. position:absolute;
  6831. align-self:center;
  6832. padding:5px 10px 5px 0px;
  6833. box-sizing:border-box;
  6834. width:100%;
  6835. }
  6836. #u13240_text {
  6837. border-width:0px;
  6838. white-space:nowrap;
  6839. text-transform:none;
  6840. }
  6841. #u13241_div {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:206px;
  6847. height:30px;
  6848. background:inherit;
  6849. background-color:rgba(255, 255, 255, 1);
  6850. box-sizing:border-box;
  6851. border-width:1px;
  6852. border-style:solid;
  6853. border-color:rgba(215, 215, 215, 1);
  6854. border-radius:2px;
  6855. -moz-box-shadow:none;
  6856. -webkit-box-shadow:none;
  6857. box-shadow:none;
  6858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6859. font-weight:400;
  6860. font-style:normal;
  6861. font-size:12px;
  6862. text-align:left;
  6863. }
  6864. #u13241 {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:1344px;
  6868. top:470px;
  6869. width:206px;
  6870. height:30px;
  6871. display:flex;
  6872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6873. font-weight:400;
  6874. font-style:normal;
  6875. font-size:12px;
  6876. text-align:left;
  6877. }
  6878. #u13241 .text {
  6879. position:absolute;
  6880. align-self:center;
  6881. padding:5px 15px 5px 30px;
  6882. box-sizing:border-box;
  6883. width:100%;
  6884. }
  6885. #u13241_text {
  6886. border-width:0px;
  6887. word-wrap:break-word;
  6888. text-transform:none;
  6889. visibility:hidden;
  6890. }
  6891. #u13242_input {
  6892. position:absolute;
  6893. left:0px;
  6894. top:0px;
  6895. width:185px;
  6896. height:28px;
  6897. padding:2px 2px 2px 2px;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:14px;
  6902. letter-spacing:normal;
  6903. color:#000000;
  6904. vertical-align:none;
  6905. text-align:left;
  6906. text-transform:none;
  6907. background-color:transparent;
  6908. border-color:transparent;
  6909. }
  6910. #u13242_input.disabled {
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:185px;
  6915. height:28px;
  6916. padding:2px 2px 2px 2px;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:14px;
  6921. letter-spacing:normal;
  6922. color:#000000;
  6923. vertical-align:none;
  6924. text-align:left;
  6925. text-transform:none;
  6926. background-color:transparent;
  6927. border-color:transparent;
  6928. }
  6929. #u13242_div {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:185px;
  6935. height:28px;
  6936. background:inherit;
  6937. background-color:rgba(255, 255, 255, 0);
  6938. border:none;
  6939. border-radius:0px;
  6940. -moz-box-shadow:none;
  6941. -webkit-box-shadow:none;
  6942. box-shadow:none;
  6943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6944. font-weight:400;
  6945. font-style:normal;
  6946. font-size:14px;
  6947. }
  6948. #u13242 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:1354px;
  6952. top:471px;
  6953. width:185px;
  6954. height:28px;
  6955. display:flex;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:14px;
  6960. }
  6961. #u13242 .text {
  6962. position:absolute;
  6963. align-self:center;
  6964. padding:2px 2px 2px 2px;
  6965. box-sizing:border-box;
  6966. width:100%;
  6967. }
  6968. #u13242_div.disabled {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:185px;
  6974. height:28px;
  6975. background:inherit;
  6976. background-color:rgba(240, 240, 240, 1);
  6977. border:none;
  6978. border-radius:0px;
  6979. -moz-box-shadow:none;
  6980. -webkit-box-shadow:none;
  6981. box-shadow:none;
  6982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:14px;
  6986. }
  6987. #u13242.disabled {
  6988. }
  6989. #u13243_div {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:0px;
  6994. width:20px;
  6995. height:27px;
  6996. background:inherit;
  6997. background-color:rgba(255, 255, 255, 0);
  6998. border:none;
  6999. border-top:0px;
  7000. border-right:0px;
  7001. border-bottom:0px;
  7002. border-radius:0px;
  7003. border-top-left-radius:0px;
  7004. border-bottom-left-radius:0px;
  7005. -moz-box-shadow:none;
  7006. -webkit-box-shadow:none;
  7007. box-shadow:none;
  7008. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7009. font-weight:500;
  7010. font-style:normal;
  7011. font-size:12px;
  7012. }
  7013. #u13243 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:1560px;
  7017. top:471px;
  7018. width:20px;
  7019. height:27px;
  7020. display:flex;
  7021. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7022. font-weight:500;
  7023. font-style:normal;
  7024. font-size:12px;
  7025. }
  7026. #u13243 .text {
  7027. position:absolute;
  7028. align-self:center;
  7029. padding:5px 0px 5px 0px;
  7030. box-sizing:border-box;
  7031. width:100%;
  7032. }
  7033. #u13243_text {
  7034. border-width:0px;
  7035. white-space:nowrap;
  7036. text-transform:none;
  7037. }
  7038. #u13244 {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:0px;
  7044. height:0px;
  7045. }
  7046. #u13245_div {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:59px;
  7052. height:27px;
  7053. background:inherit;
  7054. background-color:rgba(255, 255, 255, 0);
  7055. border:none;
  7056. border-top:0px;
  7057. border-right:0px;
  7058. border-bottom:0px;
  7059. border-radius:0px;
  7060. border-top-left-radius:0px;
  7061. border-bottom-left-radius:0px;
  7062. -moz-box-shadow:none;
  7063. -webkit-box-shadow:none;
  7064. box-shadow:none;
  7065. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7066. font-weight:500;
  7067. font-style:normal;
  7068. font-size:12px;
  7069. }
  7070. #u13245 {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:1344px;
  7074. top:520px;
  7075. width:59px;
  7076. height:27px;
  7077. display:flex;
  7078. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7079. font-weight:500;
  7080. font-style:normal;
  7081. font-size:12px;
  7082. }
  7083. #u13245 .text {
  7084. position:absolute;
  7085. align-self:center;
  7086. padding:5px 10px 5px 0px;
  7087. box-sizing:border-box;
  7088. width:100%;
  7089. }
  7090. #u13245_text {
  7091. border-width:0px;
  7092. white-space:nowrap;
  7093. text-transform:none;
  7094. }
  7095. #u13246_img {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:0px;
  7099. top:0px;
  7100. width:236px;
  7101. height:30px;
  7102. }
  7103. #u13246 {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:1344px;
  7107. top:547px;
  7108. width:236px;
  7109. height:30px;
  7110. display:flex;
  7111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7112. font-weight:400;
  7113. font-style:normal;
  7114. font-size:12px;
  7115. }
  7116. #u13246 .text {
  7117. position:absolute;
  7118. align-self:center;
  7119. padding:5px 15px 5px 30px;
  7120. box-sizing:border-box;
  7121. width:100%;
  7122. }
  7123. #u13246_text {
  7124. border-width:0px;
  7125. word-wrap:break-word;
  7126. text-transform:none;
  7127. }
  7128. #u13247 label {
  7129. left:0px;
  7130. width:100%;
  7131. }
  7132. #u13247_img {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:0px;
  7136. top:4px;
  7137. width:12px;
  7138. height:12px;
  7139. }
  7140. #u13247 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:1346px;
  7144. top:707px;
  7145. width:118px;
  7146. height:20px;
  7147. display:flex;
  7148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7149. font-weight:400;
  7150. font-style:normal;
  7151. font-size:14px;
  7152. }
  7153. #u13247 .text {
  7154. position:absolute;
  7155. align-self:center;
  7156. padding:0px 2px 0px 2px;
  7157. box-sizing:border-box;
  7158. }
  7159. #u13247_img.selected {
  7160. }
  7161. #u13247.selected {
  7162. }
  7163. #u13247_img.disabled {
  7164. }
  7165. #u13247.disabled {
  7166. }
  7167. #u13247_img.selectedDisabled {
  7168. }
  7169. #u13247.selectedDisabled {
  7170. }
  7171. #u13247_text {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:14px;
  7175. top:0px;
  7176. width:102px;
  7177. word-wrap:break-word;
  7178. text-transform:none;
  7179. }
  7180. #u13247_input {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:0px;
  7186. height:0px;
  7187. opacity:0;
  7188. }
  7189. #u13248 label {
  7190. left:0px;
  7191. width:100%;
  7192. }
  7193. #u13248_img {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:4px;
  7198. width:12px;
  7199. height:12px;
  7200. }
  7201. #u13248 {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:1346px;
  7205. top:737px;
  7206. width:118px;
  7207. height:20px;
  7208. display:flex;
  7209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. font-size:14px;
  7213. }
  7214. #u13248 .text {
  7215. position:absolute;
  7216. align-self:center;
  7217. padding:0px 2px 0px 2px;
  7218. box-sizing:border-box;
  7219. }
  7220. #u13248_img.selected {
  7221. }
  7222. #u13248.selected {
  7223. }
  7224. #u13248_img.disabled {
  7225. }
  7226. #u13248.disabled {
  7227. }
  7228. #u13248_img.selectedDisabled {
  7229. }
  7230. #u13248.selectedDisabled {
  7231. }
  7232. #u13248_text {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:14px;
  7236. top:0px;
  7237. width:102px;
  7238. word-wrap:break-word;
  7239. text-transform:none;
  7240. }
  7241. #u13248_input {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:0px;
  7245. top:0px;
  7246. width:0px;
  7247. height:0px;
  7248. opacity:0;
  7249. }
  7250. #u13249_div {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:225px;
  7256. height:61px;
  7257. background:inherit;
  7258. background-color:rgba(255, 255, 255, 0);
  7259. border:none;
  7260. border-top:0px;
  7261. border-right:0px;
  7262. border-bottom:0px;
  7263. border-radius:0px;
  7264. border-top-left-radius:0px;
  7265. border-bottom-left-radius:0px;
  7266. -moz-box-shadow:none;
  7267. -webkit-box-shadow:none;
  7268. box-shadow:none;
  7269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:12px;
  7273. }
  7274. #u13249 {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:1361px;
  7278. top:765px;
  7279. width:225px;
  7280. height:61px;
  7281. display:flex;
  7282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. font-size:12px;
  7286. }
  7287. #u13249 .text {
  7288. position:absolute;
  7289. align-self:center;
  7290. padding:5px 10px 5px 0px;
  7291. box-sizing:border-box;
  7292. width:100%;
  7293. }
  7294. #u13249_text {
  7295. border-width:0px;
  7296. word-wrap:break-word;
  7297. text-transform:none;
  7298. }
  7299. #u13250 label {
  7300. left:0px;
  7301. width:100%;
  7302. }
  7303. #u13250_img {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:4px;
  7308. width:12px;
  7309. height:12px;
  7310. }
  7311. #u13250 {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:1346px;
  7315. top:911px;
  7316. width:118px;
  7317. height:20px;
  7318. display:flex;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:14px;
  7323. }
  7324. #u13250 .text {
  7325. position:absolute;
  7326. align-self:center;
  7327. padding:0px 2px 0px 2px;
  7328. box-sizing:border-box;
  7329. }
  7330. #u13250_img.selected {
  7331. }
  7332. #u13250.selected {
  7333. }
  7334. #u13250_img.disabled {
  7335. }
  7336. #u13250.disabled {
  7337. }
  7338. #u13250_img.selectedDisabled {
  7339. }
  7340. #u13250.selectedDisabled {
  7341. }
  7342. #u13250_text {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:14px;
  7346. top:0px;
  7347. width:102px;
  7348. word-wrap:break-word;
  7349. text-transform:none;
  7350. }
  7351. #u13250_input {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:0px;
  7357. height:0px;
  7358. opacity:0;
  7359. }
  7360. #u13251 label {
  7361. left:0px;
  7362. width:100%;
  7363. }
  7364. #u13251_img {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:0px;
  7368. top:3px;
  7369. width:12px;
  7370. height:12px;
  7371. }
  7372. #u13251 {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:1361px;
  7376. top:942px;
  7377. width:100px;
  7378. height:18px;
  7379. display:flex;
  7380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7381. font-weight:400;
  7382. font-style:normal;
  7383. }
  7384. #u13251 .text {
  7385. position:absolute;
  7386. align-self:center;
  7387. padding:0px 2px 0px 2px;
  7388. box-sizing:border-box;
  7389. }
  7390. #u13251_img.selected {
  7391. }
  7392. #u13251.selected {
  7393. }
  7394. #u13251_img.disabled {
  7395. }
  7396. #u13251.disabled {
  7397. }
  7398. #u13251_img.selectedDisabled {
  7399. }
  7400. #u13251.selectedDisabled {
  7401. }
  7402. #u13251_text {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:14px;
  7406. top:0px;
  7407. width:84px;
  7408. word-wrap:break-word;
  7409. text-transform:none;
  7410. }
  7411. #u13251_input {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:0px;
  7417. height:0px;
  7418. opacity:0;
  7419. }
  7420. #u13252 label {
  7421. left:0px;
  7422. width:100%;
  7423. }
  7424. #u13252_img {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:0px;
  7428. top:3px;
  7429. width:12px;
  7430. height:12px;
  7431. }
  7432. #u13252 {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:1361px;
  7436. top:970px;
  7437. width:100px;
  7438. height:18px;
  7439. display:flex;
  7440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. }
  7444. #u13252 .text {
  7445. position:absolute;
  7446. align-self:center;
  7447. padding:0px 2px 0px 2px;
  7448. box-sizing:border-box;
  7449. }
  7450. #u13252_img.selected {
  7451. }
  7452. #u13252.selected {
  7453. }
  7454. #u13252_img.disabled {
  7455. }
  7456. #u13252.disabled {
  7457. }
  7458. #u13252_img.selectedDisabled {
  7459. }
  7460. #u13252.selectedDisabled {
  7461. }
  7462. #u13252_text {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:14px;
  7466. top:0px;
  7467. width:84px;
  7468. word-wrap:break-word;
  7469. text-transform:none;
  7470. }
  7471. #u13252_input {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:0px;
  7476. width:0px;
  7477. height:0px;
  7478. opacity:0;
  7479. }
  7480. #u13253 label {
  7481. left:0px;
  7482. width:100%;
  7483. }
  7484. #u13253_img {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:3px;
  7489. width:12px;
  7490. height:12px;
  7491. }
  7492. #u13253 {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:1361px;
  7496. top:998px;
  7497. width:100px;
  7498. height:18px;
  7499. display:flex;
  7500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7501. font-weight:400;
  7502. font-style:normal;
  7503. }
  7504. #u13253 .text {
  7505. position:absolute;
  7506. align-self:center;
  7507. padding:0px 2px 0px 2px;
  7508. box-sizing:border-box;
  7509. }
  7510. #u13253_img.selected {
  7511. }
  7512. #u13253.selected {
  7513. }
  7514. #u13253_img.disabled {
  7515. }
  7516. #u13253.disabled {
  7517. }
  7518. #u13253_img.selectedDisabled {
  7519. }
  7520. #u13253.selectedDisabled {
  7521. }
  7522. #u13253_text {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:14px;
  7526. top:0px;
  7527. width:84px;
  7528. word-wrap:break-word;
  7529. text-transform:none;
  7530. }
  7531. #u13253_input {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:0px;
  7537. height:0px;
  7538. opacity:0;
  7539. }
  7540. #u13254 label {
  7541. left:0px;
  7542. width:100%;
  7543. }
  7544. #u13254_img {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:3px;
  7549. width:12px;
  7550. height:12px;
  7551. }
  7552. #u13254 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:1361px;
  7556. top:1026px;
  7557. width:100px;
  7558. height:18px;
  7559. display:flex;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. }
  7564. #u13254 .text {
  7565. position:absolute;
  7566. align-self:center;
  7567. padding:0px 2px 0px 2px;
  7568. box-sizing:border-box;
  7569. }
  7570. #u13254_img.selected {
  7571. }
  7572. #u13254.selected {
  7573. }
  7574. #u13254_img.disabled {
  7575. }
  7576. #u13254.disabled {
  7577. }
  7578. #u13254_img.selectedDisabled {
  7579. }
  7580. #u13254.selectedDisabled {
  7581. }
  7582. #u13254_text {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:14px;
  7586. top:0px;
  7587. width:84px;
  7588. word-wrap:break-word;
  7589. text-transform:none;
  7590. }
  7591. #u13254_input {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:0px;
  7595. top:0px;
  7596. width:0px;
  7597. height:0px;
  7598. opacity:0;
  7599. }
  7600. #u13255 label {
  7601. left:0px;
  7602. width:100%;
  7603. }
  7604. #u13255_img {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:0px;
  7608. top:3px;
  7609. width:12px;
  7610. height:12px;
  7611. }
  7612. #u13255 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:1361px;
  7616. top:1054px;
  7617. width:100px;
  7618. height:18px;
  7619. display:flex;
  7620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. }
  7624. #u13255 .text {
  7625. position:absolute;
  7626. align-self:center;
  7627. padding:0px 2px 0px 2px;
  7628. box-sizing:border-box;
  7629. }
  7630. #u13255_img.selected {
  7631. }
  7632. #u13255.selected {
  7633. }
  7634. #u13255_img.disabled {
  7635. }
  7636. #u13255.disabled {
  7637. }
  7638. #u13255_img.selectedDisabled {
  7639. }
  7640. #u13255.selectedDisabled {
  7641. }
  7642. #u13255_text {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:14px;
  7646. top:0px;
  7647. width:84px;
  7648. word-wrap:break-word;
  7649. text-transform:none;
  7650. }
  7651. #u13255_input {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:0px;
  7655. top:0px;
  7656. width:0px;
  7657. height:0px;
  7658. opacity:0;
  7659. }
  7660. #u13256 label {
  7661. left:0px;
  7662. width:100%;
  7663. }
  7664. #u13256_img {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:0px;
  7668. top:3px;
  7669. width:12px;
  7670. height:12px;
  7671. }
  7672. #u13256 {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:1361px;
  7676. top:1082px;
  7677. width:100px;
  7678. height:18px;
  7679. display:flex;
  7680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7681. font-weight:400;
  7682. font-style:normal;
  7683. }
  7684. #u13256 .text {
  7685. position:absolute;
  7686. align-self:center;
  7687. padding:0px 2px 0px 2px;
  7688. box-sizing:border-box;
  7689. }
  7690. #u13256_img.selected {
  7691. }
  7692. #u13256.selected {
  7693. }
  7694. #u13256_img.disabled {
  7695. }
  7696. #u13256.disabled {
  7697. }
  7698. #u13256_img.selectedDisabled {
  7699. }
  7700. #u13256.selectedDisabled {
  7701. }
  7702. #u13256_text {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:14px;
  7706. top:0px;
  7707. width:84px;
  7708. word-wrap:break-word;
  7709. text-transform:none;
  7710. }
  7711. #u13256_input {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:0px;
  7715. top:0px;
  7716. width:0px;
  7717. height:0px;
  7718. opacity:0;
  7719. }
  7720. #u13257 label {
  7721. left:0px;
  7722. width:100%;
  7723. }
  7724. #u13257_img {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:3px;
  7729. width:12px;
  7730. height:12px;
  7731. }
  7732. #u13257 {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:1361px;
  7736. top:1110px;
  7737. width:100px;
  7738. height:18px;
  7739. display:flex;
  7740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7741. font-weight:400;
  7742. font-style:normal;
  7743. }
  7744. #u13257 .text {
  7745. position:absolute;
  7746. align-self:center;
  7747. padding:0px 2px 0px 2px;
  7748. box-sizing:border-box;
  7749. }
  7750. #u13257_img.selected {
  7751. }
  7752. #u13257.selected {
  7753. }
  7754. #u13257_img.disabled {
  7755. }
  7756. #u13257.disabled {
  7757. }
  7758. #u13257_img.selectedDisabled {
  7759. }
  7760. #u13257.selectedDisabled {
  7761. }
  7762. #u13257_text {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:14px;
  7766. top:0px;
  7767. width:84px;
  7768. word-wrap:break-word;
  7769. text-transform:none;
  7770. }
  7771. #u13257_input {
  7772. border-width:0px;
  7773. position:absolute;
  7774. left:0px;
  7775. top:0px;
  7776. width:0px;
  7777. height:0px;
  7778. opacity:0;
  7779. }
  7780. #u13258_div {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:205px;
  7786. height:78px;
  7787. background:inherit;
  7788. background-color:rgba(255, 255, 255, 0);
  7789. border:none;
  7790. border-top:0px;
  7791. border-right:0px;
  7792. border-bottom:0px;
  7793. border-radius:0px;
  7794. border-top-left-radius:0px;
  7795. border-bottom-left-radius:0px;
  7796. -moz-box-shadow:none;
  7797. -webkit-box-shadow:none;
  7798. box-shadow:none;
  7799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7800. font-weight:400;
  7801. font-style:normal;
  7802. font-size:12px;
  7803. }
  7804. #u13258 {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:1375px;
  7808. top:1134px;
  7809. width:205px;
  7810. height:78px;
  7811. display:flex;
  7812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7813. font-weight:400;
  7814. font-style:normal;
  7815. font-size:12px;
  7816. }
  7817. #u13258 .text {
  7818. position:absolute;
  7819. align-self:center;
  7820. padding:5px 10px 5px 0px;
  7821. box-sizing:border-box;
  7822. width:100%;
  7823. }
  7824. #u13258_text {
  7825. border-width:0px;
  7826. word-wrap:break-word;
  7827. text-transform:none;
  7828. }
  7829. #u13259 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:0px;
  7833. top:0px;
  7834. width:0px;
  7835. height:0px;
  7836. }
  7837. #u13260_div {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:0px;
  7841. top:0px;
  7842. width:59px;
  7843. height:27px;
  7844. background:inherit;
  7845. background-color:rgba(255, 255, 255, 0);
  7846. border:none;
  7847. border-top:0px;
  7848. border-right:0px;
  7849. border-bottom:0px;
  7850. border-radius:0px;
  7851. border-top-left-radius:0px;
  7852. border-bottom-left-radius:0px;
  7853. -moz-box-shadow:none;
  7854. -webkit-box-shadow:none;
  7855. box-shadow:none;
  7856. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7857. font-weight:500;
  7858. font-style:normal;
  7859. font-size:12px;
  7860. }
  7861. #u13260 {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:1344px;
  7865. top:597px;
  7866. width:59px;
  7867. height:27px;
  7868. display:flex;
  7869. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7870. font-weight:500;
  7871. font-style:normal;
  7872. font-size:12px;
  7873. }
  7874. #u13260 .text {
  7875. position:absolute;
  7876. align-self:center;
  7877. padding:5px 10px 5px 0px;
  7878. box-sizing:border-box;
  7879. width:100%;
  7880. }
  7881. #u13260_text {
  7882. border-width:0px;
  7883. white-space:nowrap;
  7884. text-transform:none;
  7885. }
  7886. #u13261_div {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:0px;
  7890. top:0px;
  7891. width:236px;
  7892. height:30px;
  7893. background:inherit;
  7894. background-color:rgba(255, 255, 255, 1);
  7895. box-sizing:border-box;
  7896. border-width:1px;
  7897. border-style:solid;
  7898. border-color:rgba(215, 215, 215, 1);
  7899. border-radius:2px;
  7900. -moz-box-shadow:none;
  7901. -webkit-box-shadow:none;
  7902. box-shadow:none;
  7903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7904. font-weight:400;
  7905. font-style:normal;
  7906. font-size:12px;
  7907. text-align:left;
  7908. }
  7909. #u13261 {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:1344px;
  7913. top:624px;
  7914. width:236px;
  7915. height:30px;
  7916. display:flex;
  7917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7918. font-weight:400;
  7919. font-style:normal;
  7920. font-size:12px;
  7921. text-align:left;
  7922. }
  7923. #u13261 .text {
  7924. position:absolute;
  7925. align-self:center;
  7926. padding:5px 15px 5px 30px;
  7927. box-sizing:border-box;
  7928. width:100%;
  7929. }
  7930. #u13261_text {
  7931. border-width:0px;
  7932. word-wrap:break-word;
  7933. text-transform:none;
  7934. visibility:hidden;
  7935. }
  7936. #u13262_input {
  7937. position:absolute;
  7938. left:0px;
  7939. top:0px;
  7940. width:212px;
  7941. height:28px;
  7942. padding:2px 2px 2px 2px;
  7943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7944. font-weight:400;
  7945. font-style:normal;
  7946. font-size:14px;
  7947. letter-spacing:normal;
  7948. color:#000000;
  7949. vertical-align:none;
  7950. text-align:left;
  7951. text-transform:none;
  7952. background-color:transparent;
  7953. border-color:transparent;
  7954. }
  7955. #u13262_input.disabled {
  7956. position:absolute;
  7957. left:0px;
  7958. top:0px;
  7959. width:212px;
  7960. height:28px;
  7961. padding:2px 2px 2px 2px;
  7962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7963. font-weight:400;
  7964. font-style:normal;
  7965. font-size:14px;
  7966. letter-spacing:normal;
  7967. color:#000000;
  7968. vertical-align:none;
  7969. text-align:left;
  7970. text-transform:none;
  7971. background-color:transparent;
  7972. border-color:transparent;
  7973. }
  7974. #u13262_div {
  7975. border-width:0px;
  7976. position:absolute;
  7977. left:0px;
  7978. top:0px;
  7979. width:212px;
  7980. height:28px;
  7981. background:inherit;
  7982. background-color:rgba(255, 255, 255, 0);
  7983. border:none;
  7984. border-radius:0px;
  7985. -moz-box-shadow:none;
  7986. -webkit-box-shadow:none;
  7987. box-shadow:none;
  7988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7989. font-weight:400;
  7990. font-style:normal;
  7991. font-size:14px;
  7992. }
  7993. #u13262 {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:1355px;
  7997. top:625px;
  7998. width:212px;
  7999. height:28px;
  8000. display:flex;
  8001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8002. font-weight:400;
  8003. font-style:normal;
  8004. font-size:14px;
  8005. }
  8006. #u13262 .text {
  8007. position:absolute;
  8008. align-self:center;
  8009. padding:2px 2px 2px 2px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u13262_div.disabled {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:212px;
  8019. height:28px;
  8020. background:inherit;
  8021. background-color:rgba(240, 240, 240, 1);
  8022. border:none;
  8023. border-radius:0px;
  8024. -moz-box-shadow:none;
  8025. -webkit-box-shadow:none;
  8026. box-shadow:none;
  8027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8028. font-weight:400;
  8029. font-style:normal;
  8030. font-size:14px;
  8031. }
  8032. #u13262.disabled {
  8033. }
  8034. #u13263 label {
  8035. left:0px;
  8036. width:100%;
  8037. }
  8038. #u13263_img {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:0px;
  8042. top:4px;
  8043. width:12px;
  8044. height:12px;
  8045. }
  8046. #u13263 {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:1346px;
  8050. top:1287px;
  8051. width:118px;
  8052. height:20px;
  8053. display:flex;
  8054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8055. font-weight:400;
  8056. font-style:normal;
  8057. font-size:14px;
  8058. }
  8059. #u13263 .text {
  8060. position:absolute;
  8061. align-self:center;
  8062. padding:0px 2px 0px 2px;
  8063. box-sizing:border-box;
  8064. }
  8065. #u13263_img.selected {
  8066. }
  8067. #u13263.selected {
  8068. }
  8069. #u13263_img.disabled {
  8070. }
  8071. #u13263.disabled {
  8072. }
  8073. #u13263_img.selectedDisabled {
  8074. }
  8075. #u13263.selectedDisabled {
  8076. }
  8077. #u13263_text {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:14px;
  8081. top:0px;
  8082. width:102px;
  8083. word-wrap:break-word;
  8084. text-transform:none;
  8085. }
  8086. #u13263_input {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:0px;
  8090. top:0px;
  8091. width:0px;
  8092. height:0px;
  8093. opacity:0;
  8094. }
  8095. #u13264_img {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:0px;
  8099. top:0px;
  8100. width:11px;
  8101. height:11px;
  8102. }
  8103. #u13264 {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:1407px;
  8107. top:180px;
  8108. width:11px;
  8109. height:11px;
  8110. display:flex;
  8111. }
  8112. #u13264 .text {
  8113. position:absolute;
  8114. align-self:center;
  8115. padding:2px 2px 2px 2px;
  8116. box-sizing:border-box;
  8117. width:100%;
  8118. }
  8119. #u13264_text {
  8120. border-width:0px;
  8121. word-wrap:break-word;
  8122. text-transform:none;
  8123. visibility:hidden;
  8124. }
  8125. #u13265 label {
  8126. left:0px;
  8127. width:100%;
  8128. }
  8129. #u13265_img {
  8130. border-width:0px;
  8131. position:absolute;
  8132. left:0px;
  8133. top:4px;
  8134. width:12px;
  8135. height:12px;
  8136. }
  8137. #u13265 {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:1346px;
  8141. top:1317px;
  8142. width:118px;
  8143. height:20px;
  8144. display:flex;
  8145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8146. font-weight:400;
  8147. font-style:normal;
  8148. font-size:14px;
  8149. }
  8150. #u13265 .text {
  8151. position:absolute;
  8152. align-self:center;
  8153. padding:0px 2px 0px 2px;
  8154. box-sizing:border-box;
  8155. }
  8156. #u13265_img.selected {
  8157. }
  8158. #u13265.selected {
  8159. }
  8160. #u13265_img.disabled {
  8161. }
  8162. #u13265.disabled {
  8163. }
  8164. #u13265_img.selectedDisabled {
  8165. }
  8166. #u13265.selectedDisabled {
  8167. }
  8168. #u13265_text {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:14px;
  8172. top:0px;
  8173. width:102px;
  8174. word-wrap:break-word;
  8175. text-transform:none;
  8176. }
  8177. #u13265_input {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:0px;
  8181. top:0px;
  8182. width:0px;
  8183. height:0px;
  8184. opacity:0;
  8185. }
  8186. #u13266_div {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:0px;
  8190. top:0px;
  8191. width:93px;
  8192. height:40px;
  8193. background:inherit;
  8194. background-color:rgba(255, 255, 255, 1);
  8195. box-sizing:border-box;
  8196. border-width:3px;
  8197. border-style:solid;
  8198. border-color:rgba(25, 140, 251, 1);
  8199. border-left:0px;
  8200. border-top:0px;
  8201. border-right:0px;
  8202. border-radius:0px;
  8203. border-bottom-right-radius:0px;
  8204. border-bottom-left-radius:0px;
  8205. -moz-box-shadow:none;
  8206. -webkit-box-shadow:none;
  8207. box-shadow:none;
  8208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:14px;
  8212. color:#198CFB;
  8213. text-align:center;
  8214. line-height:30px;
  8215. }
  8216. #u13266 {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:1321px;
  8220. top:110px;
  8221. width:93px;
  8222. height:40px;
  8223. display:flex;
  8224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8225. font-weight:400;
  8226. font-style:normal;
  8227. font-size:14px;
  8228. color:#198CFB;
  8229. text-align:center;
  8230. line-height:30px;
  8231. }
  8232. #u13266 .text {
  8233. position:absolute;
  8234. align-self:center;
  8235. padding:5px 10px 5px 10px;
  8236. box-sizing:border-box;
  8237. width:100%;
  8238. }
  8239. #u13266_text {
  8240. border-width:0px;
  8241. word-wrap:break-word;
  8242. text-transform:none;
  8243. }
  8244. #u13267_div {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:0px;
  8248. top:0px;
  8249. width:93px;
  8250. height:40px;
  8251. background:inherit;
  8252. background-color:rgba(255, 255, 255, 1);
  8253. border:none;
  8254. border-left:0px;
  8255. border-top:0px;
  8256. border-right:0px;
  8257. border-radius:0px;
  8258. border-bottom-right-radius:0px;
  8259. border-bottom-left-radius:0px;
  8260. -moz-box-shadow:none;
  8261. -webkit-box-shadow:none;
  8262. box-shadow:none;
  8263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8264. font-weight:400;
  8265. font-style:normal;
  8266. font-size:14px;
  8267. text-align:center;
  8268. line-height:30px;
  8269. }
  8270. #u13267 {
  8271. border-width:0px;
  8272. position:absolute;
  8273. left:1507px;
  8274. top:109px;
  8275. width:93px;
  8276. height:40px;
  8277. display:flex;
  8278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8279. font-weight:400;
  8280. font-style:normal;
  8281. font-size:14px;
  8282. text-align:center;
  8283. line-height:30px;
  8284. }
  8285. #u13267 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:5px 10px 5px 10px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u13267_text {
  8293. border-width:0px;
  8294. word-wrap:break-word;
  8295. text-transform:none;
  8296. }
  8297. #u13268_div {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:93px;
  8303. height:40px;
  8304. background:inherit;
  8305. background-color:rgba(255, 255, 255, 1);
  8306. border:none;
  8307. border-left:0px;
  8308. border-top:0px;
  8309. border-right:0px;
  8310. border-radius:0px;
  8311. border-bottom-right-radius:0px;
  8312. border-bottom-left-radius:0px;
  8313. -moz-box-shadow:none;
  8314. -webkit-box-shadow:none;
  8315. box-shadow:none;
  8316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8317. font-weight:400;
  8318. font-style:normal;
  8319. font-size:14px;
  8320. text-align:center;
  8321. line-height:30px;
  8322. }
  8323. #u13268 {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:1414px;
  8327. top:109px;
  8328. width:93px;
  8329. height:40px;
  8330. display:flex;
  8331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8332. font-weight:400;
  8333. font-style:normal;
  8334. font-size:14px;
  8335. text-align:center;
  8336. line-height:30px;
  8337. }
  8338. #u13268 .text {
  8339. position:absolute;
  8340. align-self:center;
  8341. padding:5px 10px 5px 10px;
  8342. box-sizing:border-box;
  8343. width:100%;
  8344. }
  8345. #u13268_text {
  8346. border-width:0px;
  8347. word-wrap:break-word;
  8348. text-transform:none;
  8349. }