styles.css 112 KB

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