styles.css 108 KB

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