styles.css 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2023px;
  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. #u18564_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. #u18564 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u18564 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u18564_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u18565_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. #u18565 {
  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. #u18565 .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. #u18565_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u18566_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. #u18566 {
  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. #u18566 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u18566_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u18567 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u18568_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u18568 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u18568 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u18568_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u18569_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. #u18569 {
  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. #u18569 .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. #u18569_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u18570_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. #u18570 {
  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. #u18570 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u18570_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u18571 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u18572_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. #u18572 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  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. #u18572 .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. #u18572_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u18573_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u18573 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u18573 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u18573_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u18574 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u18575_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. #u18575 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  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. #u18575 .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. #u18575_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u18576_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u18576 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u18576 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u18576_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u18577 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u18578_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  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. #u18578 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  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. #u18578 .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. #u18578_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u18579_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u18579 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u18579 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u18579_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u18580 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u18581_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  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. #u18581 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  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. #u18581 .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. #u18581_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u18582_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u18582 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u18582 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u18582_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u18583 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u18584_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. #u18584 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  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. #u18584 .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. #u18584_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u18585_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u18585 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u18585 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u18585_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u18586 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u18587_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. #u18587 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  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. #u18587 .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. #u18587_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u18588_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u18588 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u18588 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u18588_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u18589 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u18590_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. #u18590 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  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. #u18590 .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. #u18590_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u18591_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u18591 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u18591 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u18591_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u18592 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u18593_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. #u18593 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  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. #u18593 .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. #u18593_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u18594_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u18594 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u18594 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u18594_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u18595 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u18596_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  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. color:#FFFFFF;
  955. }
  956. #u18596 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u18596 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u18596_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u18597_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u18597 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u18597 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u18597_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u18598 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u18599_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u18599 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u18599 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u18599_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u18600_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u18600 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u18600 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u18600_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u18601 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u18602_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u18602 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u18602 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u18602_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u18603_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u18603 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u18603 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u18603_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u18604 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u18605_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u18605_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u18605_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u18605 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u18605 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u18605_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u18605.disabled {
  1276. }
  1277. .u18605_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u18606_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u18606 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u18606 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u18606_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u18607_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u18607 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u18607 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u18607_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u18608_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u18608 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u18608 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u18608_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u18609 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u18610_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u18610 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u18610 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u18610_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u18611_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u18611 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u18611 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u18611_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u18612_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u18612 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u18612 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u18612_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u18613_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u18613 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u18613 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u18613_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u18614_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u18614 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u18614 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u18614_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u18615 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u18616_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u18616 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u18616 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u18616_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u18617_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u18617 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u18617 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u18617_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u18618_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1259px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u18618 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:330px;
  1661. top:50px;
  1662. width:1259px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u18618 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u18618_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u18619 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:350px;
  1683. top:237px;
  1684. width:1219px;
  1685. height:311px;
  1686. }
  1687. #u18620_img {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:129px;
  1693. height:38px;
  1694. }
  1695. #u18620 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:129px;
  1701. height:38px;
  1702. display:flex;
  1703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1704. font-weight:400;
  1705. font-style:normal;
  1706. font-size:12px;
  1707. color:#FFFFFF;
  1708. }
  1709. #u18620 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 0px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u18620_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. }
  1721. #u18621_img {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:122px;
  1727. height:38px;
  1728. }
  1729. #u18621 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:129px;
  1733. top:0px;
  1734. width:122px;
  1735. height:38px;
  1736. display:flex;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. font-size:12px;
  1741. color:#FFFFFF;
  1742. }
  1743. #u18621 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:2px 2px 2px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u18621_text {
  1751. border-width:0px;
  1752. word-wrap:break-word;
  1753. text-transform:none;
  1754. }
  1755. #u18622_img {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:119px;
  1761. height:38px;
  1762. }
  1763. #u18622 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:251px;
  1767. top:0px;
  1768. width:119px;
  1769. height:38px;
  1770. display:flex;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:12px;
  1775. color:#FFFFFF;
  1776. }
  1777. #u18622 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:2px 2px 2px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u18622_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. }
  1789. #u18623_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:122px;
  1795. height:38px;
  1796. }
  1797. #u18623 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:370px;
  1801. top:0px;
  1802. width:122px;
  1803. height:38px;
  1804. display:flex;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:12px;
  1809. color:#FFFFFF;
  1810. }
  1811. #u18623 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 0px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u18623_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u18624_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:121px;
  1829. height:38px;
  1830. }
  1831. #u18624 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:492px;
  1835. top:0px;
  1836. width:121px;
  1837. height:38px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:12px;
  1843. color:#FFFFFF;
  1844. }
  1845. #u18624 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u18624_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u18625_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:122px;
  1863. height:38px;
  1864. }
  1865. #u18625 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:613px;
  1869. top:0px;
  1870. width:122px;
  1871. height:38px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:12px;
  1877. color:#FFFFFF;
  1878. }
  1879. #u18625 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u18625_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u18626_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:119px;
  1897. height:38px;
  1898. }
  1899. #u18626 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:735px;
  1903. top:0px;
  1904. width:119px;
  1905. height:38px;
  1906. display:flex;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:12px;
  1911. color:#FFFFFF;
  1912. }
  1913. #u18626 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u18626_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u18627_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:119px;
  1931. height:38px;
  1932. }
  1933. #u18627 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:854px;
  1937. top:0px;
  1938. width:119px;
  1939. height:38px;
  1940. display:flex;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:12px;
  1945. color:#FFFFFF;
  1946. }
  1947. #u18627 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u18627_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u18628_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:122px;
  1965. height:38px;
  1966. }
  1967. #u18628 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:973px;
  1971. top:0px;
  1972. width:122px;
  1973. height:38px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:12px;
  1979. color:#FFFFFF;
  1980. }
  1981. #u18628 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u18628_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u18629_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:124px;
  1999. height:38px;
  2000. }
  2001. #u18629 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:1095px;
  2005. top:0px;
  2006. width:124px;
  2007. height:38px;
  2008. display:flex;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. color:#FFFFFF;
  2014. }
  2015. #u18629 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u18629_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u18630_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:129px;
  2033. height:39px;
  2034. }
  2035. #u18630 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:38px;
  2040. width:129px;
  2041. height:39px;
  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. line-height:40px;
  2049. }
  2050. #u18630 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 0px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u18630_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. visibility:hidden;
  2062. }
  2063. #u18631_img {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:122px;
  2069. height:39px;
  2070. }
  2071. #u18631 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:129px;
  2075. top:38px;
  2076. width:122px;
  2077. height:39px;
  2078. display:flex;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:12px;
  2083. }
  2084. #u18631 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 0px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u18631_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. }
  2096. #u18632_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:119px;
  2102. height:39px;
  2103. }
  2104. #u18632 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:251px;
  2108. top:38px;
  2109. width:119px;
  2110. height:39px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. }
  2117. #u18632 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 0px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u18632_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. }
  2129. #u18633_img {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:122px;
  2135. height:39px;
  2136. }
  2137. #u18633 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:370px;
  2141. top:38px;
  2142. width:122px;
  2143. height:39px;
  2144. display:flex;
  2145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:12px;
  2149. }
  2150. #u18633 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 0px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u18633_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. visibility:hidden;
  2162. }
  2163. #u18634_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:121px;
  2169. height:39px;
  2170. }
  2171. #u18634 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:492px;
  2175. top:38px;
  2176. width:121px;
  2177. height:39px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. }
  2184. #u18634 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 0px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u18634_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. visibility:hidden;
  2196. }
  2197. #u18635_img {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:122px;
  2203. height:39px;
  2204. }
  2205. #u18635 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:613px;
  2209. top:38px;
  2210. width:122px;
  2211. height:39px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:12px;
  2217. }
  2218. #u18635 .text {
  2219. position:absolute;
  2220. align-self:center;
  2221. padding:2px 2px 2px 0px;
  2222. box-sizing:border-box;
  2223. width:100%;
  2224. }
  2225. #u18635_text {
  2226. border-width:0px;
  2227. word-wrap:break-word;
  2228. text-transform:none;
  2229. visibility:hidden;
  2230. }
  2231. #u18636_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:119px;
  2237. height:39px;
  2238. }
  2239. #u18636 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:735px;
  2243. top:38px;
  2244. width:119px;
  2245. height:39px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. color:#606266;
  2252. }
  2253. #u18636 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 0px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u18636_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. visibility:hidden;
  2265. }
  2266. #u18637_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:119px;
  2272. height:39px;
  2273. }
  2274. #u18637 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:854px;
  2278. top:38px;
  2279. width:119px;
  2280. height:39px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#333333;
  2287. }
  2288. #u18637 .text {
  2289. position:absolute;
  2290. align-self:center;
  2291. padding:2px 2px 2px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u18637_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. visibility:hidden;
  2300. }
  2301. #u18638_img {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:122px;
  2307. height:39px;
  2308. }
  2309. #u18638 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:973px;
  2313. top:38px;
  2314. width:122px;
  2315. height:39px;
  2316. display:flex;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:12px;
  2321. color:#333333;
  2322. }
  2323. #u18638 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 0px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u18638_text {
  2331. border-width:0px;
  2332. word-wrap:break-word;
  2333. text-transform:none;
  2334. visibility:hidden;
  2335. }
  2336. #u18639_img {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:124px;
  2342. height:39px;
  2343. }
  2344. #u18639 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:1095px;
  2348. top:38px;
  2349. width:124px;
  2350. height:39px;
  2351. display:flex;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:12px;
  2356. color:#298FFF;
  2357. line-height:35px;
  2358. }
  2359. #u18639 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:2px 2px 2px 0px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u18639_text {
  2367. border-width:0px;
  2368. word-wrap:break-word;
  2369. text-transform:none;
  2370. }
  2371. #u18640_img {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:129px;
  2377. height:44px;
  2378. }
  2379. #u18640 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:77px;
  2384. width:129px;
  2385. height:44px;
  2386. display:flex;
  2387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2388. font-weight:400;
  2389. font-style:normal;
  2390. font-size:12px;
  2391. color:#333333;
  2392. line-height:40px;
  2393. }
  2394. #u18640 .text {
  2395. position:absolute;
  2396. align-self:center;
  2397. padding:2px 2px 2px 0px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u18640_text {
  2402. border-width:0px;
  2403. word-wrap:break-word;
  2404. text-transform:none;
  2405. visibility:hidden;
  2406. }
  2407. #u18641_img {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:122px;
  2413. height:44px;
  2414. }
  2415. #u18641 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:129px;
  2419. top:77px;
  2420. width:122px;
  2421. height:44px;
  2422. display:flex;
  2423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:12px;
  2427. }
  2428. #u18641 .text {
  2429. position:absolute;
  2430. align-self:center;
  2431. padding:2px 2px 2px 0px;
  2432. box-sizing:border-box;
  2433. width:100%;
  2434. }
  2435. #u18641_text {
  2436. border-width:0px;
  2437. word-wrap:break-word;
  2438. text-transform:none;
  2439. visibility:hidden;
  2440. }
  2441. #u18642_img {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:119px;
  2447. height:44px;
  2448. }
  2449. #u18642 {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:251px;
  2453. top:77px;
  2454. width:119px;
  2455. height:44px;
  2456. display:flex;
  2457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2458. font-weight:400;
  2459. font-style:normal;
  2460. font-size:12px;
  2461. }
  2462. #u18642 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 0px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u18642_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. visibility:hidden;
  2474. }
  2475. #u18643_img {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:122px;
  2481. height:44px;
  2482. }
  2483. #u18643 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:370px;
  2487. top:77px;
  2488. width:122px;
  2489. height:44px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:12px;
  2495. }
  2496. #u18643 .text {
  2497. position:absolute;
  2498. align-self:center;
  2499. padding:2px 2px 2px 0px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u18643_text {
  2504. border-width:0px;
  2505. word-wrap:break-word;
  2506. text-transform:none;
  2507. visibility:hidden;
  2508. }
  2509. #u18644_img {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:121px;
  2515. height:44px;
  2516. }
  2517. #u18644 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:492px;
  2521. top:77px;
  2522. width:121px;
  2523. height:44px;
  2524. display:flex;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:12px;
  2529. }
  2530. #u18644 .text {
  2531. position:absolute;
  2532. align-self:center;
  2533. padding:2px 2px 2px 0px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u18644_text {
  2538. border-width:0px;
  2539. word-wrap:break-word;
  2540. text-transform:none;
  2541. visibility:hidden;
  2542. }
  2543. #u18645_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:122px;
  2549. height:44px;
  2550. }
  2551. #u18645 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:613px;
  2555. top:77px;
  2556. width:122px;
  2557. height:44px;
  2558. display:flex;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:12px;
  2563. }
  2564. #u18645 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:2px 2px 2px 0px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u18645_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. visibility:hidden;
  2576. }
  2577. #u18646_img {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:119px;
  2583. height:44px;
  2584. }
  2585. #u18646 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:735px;
  2589. top:77px;
  2590. width:119px;
  2591. height:44px;
  2592. display:flex;
  2593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:12px;
  2597. color:#606266;
  2598. }
  2599. #u18646 .text {
  2600. position:absolute;
  2601. align-self:center;
  2602. padding:2px 2px 2px 0px;
  2603. box-sizing:border-box;
  2604. width:100%;
  2605. }
  2606. #u18646_text {
  2607. border-width:0px;
  2608. word-wrap:break-word;
  2609. text-transform:none;
  2610. visibility:hidden;
  2611. }
  2612. #u18647_img {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:119px;
  2618. height:44px;
  2619. }
  2620. #u18647 {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:854px;
  2624. top:77px;
  2625. width:119px;
  2626. height:44px;
  2627. display:flex;
  2628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2629. font-weight:400;
  2630. font-style:normal;
  2631. font-size:12px;
  2632. color:#333333;
  2633. }
  2634. #u18647 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 0px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u18647_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u18648_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:122px;
  2653. height:44px;
  2654. }
  2655. #u18648 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:973px;
  2659. top:77px;
  2660. width:122px;
  2661. height:44px;
  2662. display:flex;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. color:#333333;
  2668. }
  2669. #u18648 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 0px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u18648_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. visibility:hidden;
  2681. }
  2682. #u18649_img {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:124px;
  2688. height:44px;
  2689. }
  2690. #u18649 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:1095px;
  2694. top:77px;
  2695. width:124px;
  2696. height:44px;
  2697. display:flex;
  2698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2699. font-weight:400;
  2700. font-style:normal;
  2701. font-size:12px;
  2702. color:#1890FF;
  2703. }
  2704. #u18649 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:2px 2px 2px 0px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u18649_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. visibility:hidden;
  2716. }
  2717. #u18650_img {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:129px;
  2723. height:38px;
  2724. }
  2725. #u18650 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:121px;
  2730. width:129px;
  2731. height:38px;
  2732. display:flex;
  2733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:12px;
  2737. color:#333333;
  2738. line-height:40px;
  2739. }
  2740. #u18650 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 2px 2px 0px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u18650_text {
  2748. border-width:0px;
  2749. word-wrap:break-word;
  2750. text-transform:none;
  2751. visibility:hidden;
  2752. }
  2753. #u18651_img {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:122px;
  2759. height:38px;
  2760. }
  2761. #u18651 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:129px;
  2765. top:121px;
  2766. width:122px;
  2767. height:38px;
  2768. display:flex;
  2769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:12px;
  2773. color:#606266;
  2774. }
  2775. #u18651 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 0px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u18651_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u18652_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:119px;
  2794. height:38px;
  2795. }
  2796. #u18652 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:251px;
  2800. top:121px;
  2801. width:119px;
  2802. height:38px;
  2803. display:flex;
  2804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2805. font-weight:400;
  2806. font-style:normal;
  2807. font-size:12px;
  2808. color:#606266;
  2809. }
  2810. #u18652 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 0px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u18652_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. visibility:hidden;
  2822. }
  2823. #u18653_img {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:122px;
  2829. height:38px;
  2830. }
  2831. #u18653 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:370px;
  2835. top:121px;
  2836. width:122px;
  2837. height:38px;
  2838. display:flex;
  2839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2840. font-weight:400;
  2841. font-style:normal;
  2842. font-size:12px;
  2843. color:#606266;
  2844. }
  2845. #u18653 .text {
  2846. position:absolute;
  2847. align-self:center;
  2848. padding:2px 2px 2px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u18653_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. visibility:hidden;
  2857. }
  2858. #u18654_img {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:121px;
  2864. height:38px;
  2865. }
  2866. #u18654 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:492px;
  2870. top:121px;
  2871. width:121px;
  2872. height:38px;
  2873. display:flex;
  2874. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:12px;
  2878. color:#606266;
  2879. }
  2880. #u18654 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 0px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u18654_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. visibility:hidden;
  2892. }
  2893. #u18655_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:122px;
  2899. height:38px;
  2900. }
  2901. #u18655 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:613px;
  2905. top:121px;
  2906. width:122px;
  2907. height:38px;
  2908. display:flex;
  2909. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:12px;
  2913. color:#606266;
  2914. }
  2915. #u18655 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:2px 2px 2px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u18655_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. visibility:hidden;
  2927. }
  2928. #u18656_img {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:119px;
  2934. height:38px;
  2935. }
  2936. #u18656 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:735px;
  2940. top:121px;
  2941. width:119px;
  2942. height:38px;
  2943. display:flex;
  2944. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:12px;
  2948. color:#606266;
  2949. }
  2950. #u18656 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:2px 2px 2px 0px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u18656_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. visibility:hidden;
  2962. }
  2963. #u18657_img {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:119px;
  2969. height:38px;
  2970. }
  2971. #u18657 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:854px;
  2975. top:121px;
  2976. width:119px;
  2977. height:38px;
  2978. display:flex;
  2979. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:12px;
  2983. color:#606266;
  2984. }
  2985. #u18657 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 2px 2px 0px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u18657_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. visibility:hidden;
  2997. }
  2998. #u18658_img {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:122px;
  3004. height:38px;
  3005. }
  3006. #u18658 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:973px;
  3010. top:121px;
  3011. width:122px;
  3012. height:38px;
  3013. display:flex;
  3014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3015. font-weight:400;
  3016. font-style:normal;
  3017. font-size:12px;
  3018. color:#606266;
  3019. }
  3020. #u18658 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:2px 2px 2px 0px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u18658_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. visibility:hidden;
  3032. }
  3033. #u18659_img {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:124px;
  3039. height:38px;
  3040. }
  3041. #u18659 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:1095px;
  3045. top:121px;
  3046. width:124px;
  3047. height:38px;
  3048. display:flex;
  3049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3050. font-weight:400;
  3051. font-style:normal;
  3052. font-size:12px;
  3053. color:#1890FF;
  3054. }
  3055. #u18659 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 0px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u18659_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. visibility:hidden;
  3067. }
  3068. #u18660_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:129px;
  3074. height:38px;
  3075. }
  3076. #u18660 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:159px;
  3081. width:129px;
  3082. height:38px;
  3083. display:flex;
  3084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:12px;
  3088. color:#606266;
  3089. }
  3090. #u18660 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u18660_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u18661_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:122px;
  3109. height:38px;
  3110. }
  3111. #u18661 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:129px;
  3115. top:159px;
  3116. width:122px;
  3117. height:38px;
  3118. display:flex;
  3119. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:12px;
  3123. color:#606266;
  3124. }
  3125. #u18661 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 0px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u18661_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u18662_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:119px;
  3144. height:38px;
  3145. }
  3146. #u18662 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:251px;
  3150. top:159px;
  3151. width:119px;
  3152. height:38px;
  3153. display:flex;
  3154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. color:#606266;
  3159. }
  3160. #u18662 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u18662_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. visibility:hidden;
  3172. }
  3173. #u18663_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:122px;
  3179. height:38px;
  3180. }
  3181. #u18663 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:370px;
  3185. top:159px;
  3186. width:122px;
  3187. height:38px;
  3188. display:flex;
  3189. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:12px;
  3193. color:#606266;
  3194. }
  3195. #u18663 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 0px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u18663_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u18664_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:121px;
  3214. height:38px;
  3215. }
  3216. #u18664 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:492px;
  3220. top:159px;
  3221. width:121px;
  3222. height:38px;
  3223. display:flex;
  3224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:12px;
  3228. color:#606266;
  3229. }
  3230. #u18664 .text {
  3231. position:absolute;
  3232. align-self:center;
  3233. padding:2px 2px 2px 0px;
  3234. box-sizing:border-box;
  3235. width:100%;
  3236. }
  3237. #u18664_text {
  3238. border-width:0px;
  3239. word-wrap:break-word;
  3240. text-transform:none;
  3241. visibility:hidden;
  3242. }
  3243. #u18665_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:122px;
  3249. height:38px;
  3250. }
  3251. #u18665 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:613px;
  3255. top:159px;
  3256. width:122px;
  3257. height:38px;
  3258. display:flex;
  3259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:12px;
  3263. color:#606266;
  3264. }
  3265. #u18665 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 0px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u18665_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u18666_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:119px;
  3284. height:38px;
  3285. }
  3286. #u18666 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:735px;
  3290. top:159px;
  3291. width:119px;
  3292. height:38px;
  3293. display:flex;
  3294. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:12px;
  3298. color:#606266;
  3299. }
  3300. #u18666 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u18666_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u18667_img {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:119px;
  3319. height:38px;
  3320. }
  3321. #u18667 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:854px;
  3325. top:159px;
  3326. width:119px;
  3327. height:38px;
  3328. display:flex;
  3329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:12px;
  3333. color:#606266;
  3334. }
  3335. #u18667 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u18667_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. visibility:hidden;
  3347. }
  3348. #u18668_img {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:122px;
  3354. height:38px;
  3355. }
  3356. #u18668 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:973px;
  3360. top:159px;
  3361. width:122px;
  3362. height:38px;
  3363. display:flex;
  3364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:12px;
  3368. color:#606266;
  3369. }
  3370. #u18668 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 0px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u18668_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u18669_img {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:124px;
  3389. height:38px;
  3390. }
  3391. #u18669 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:1095px;
  3395. top:159px;
  3396. width:124px;
  3397. height:38px;
  3398. display:flex;
  3399. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3400. font-weight:400;
  3401. font-style:normal;
  3402. font-size:12px;
  3403. color:#606266;
  3404. }
  3405. #u18669 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 0px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u18669_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u18670_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:129px;
  3424. height:38px;
  3425. }
  3426. #u18670 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:197px;
  3431. width:129px;
  3432. height:38px;
  3433. display:flex;
  3434. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:12px;
  3438. color:#606266;
  3439. }
  3440. #u18670 .text {
  3441. position:absolute;
  3442. align-self:center;
  3443. padding:2px 2px 2px 0px;
  3444. box-sizing:border-box;
  3445. width:100%;
  3446. }
  3447. #u18670_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. visibility:hidden;
  3452. }
  3453. #u18671_img {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:122px;
  3459. height:38px;
  3460. }
  3461. #u18671 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:129px;
  3465. top:197px;
  3466. width:122px;
  3467. height:38px;
  3468. display:flex;
  3469. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. color:#606266;
  3474. }
  3475. #u18671 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 0px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u18671_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u18672_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:119px;
  3494. height:38px;
  3495. }
  3496. #u18672 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:251px;
  3500. top:197px;
  3501. width:119px;
  3502. height:38px;
  3503. display:flex;
  3504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:12px;
  3508. color:#606266;
  3509. }
  3510. #u18672 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u18672_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u18673_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:122px;
  3529. height:38px;
  3530. }
  3531. #u18673 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:370px;
  3535. top:197px;
  3536. width:122px;
  3537. height:38px;
  3538. display:flex;
  3539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#606266;
  3544. }
  3545. #u18673 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u18673_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u18674_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:121px;
  3564. height:38px;
  3565. }
  3566. #u18674 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:492px;
  3570. top:197px;
  3571. width:121px;
  3572. height:38px;
  3573. display:flex;
  3574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. color:#606266;
  3579. }
  3580. #u18674 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u18674_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u18675_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:122px;
  3599. height:38px;
  3600. }
  3601. #u18675 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:613px;
  3605. top:197px;
  3606. width:122px;
  3607. height:38px;
  3608. display:flex;
  3609. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. color:#606266;
  3614. }
  3615. #u18675 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u18675_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. visibility:hidden;
  3627. }
  3628. #u18676_img {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:119px;
  3634. height:38px;
  3635. }
  3636. #u18676 {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:735px;
  3640. top:197px;
  3641. width:119px;
  3642. height:38px;
  3643. display:flex;
  3644. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:12px;
  3648. color:#606266;
  3649. }
  3650. #u18676 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:2px 2px 2px 0px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u18676_text {
  3658. border-width:0px;
  3659. word-wrap:break-word;
  3660. text-transform:none;
  3661. visibility:hidden;
  3662. }
  3663. #u18677_img {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:119px;
  3669. height:38px;
  3670. }
  3671. #u18677 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:854px;
  3675. top:197px;
  3676. width:119px;
  3677. height:38px;
  3678. display:flex;
  3679. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:12px;
  3683. color:#606266;
  3684. }
  3685. #u18677 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u18677_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u18678_img {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:122px;
  3704. height:38px;
  3705. }
  3706. #u18678 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:973px;
  3710. top:197px;
  3711. width:122px;
  3712. height:38px;
  3713. display:flex;
  3714. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:12px;
  3718. color:#606266;
  3719. }
  3720. #u18678 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 0px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u18678_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u18679_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:124px;
  3739. height:38px;
  3740. }
  3741. #u18679 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:1095px;
  3745. top:197px;
  3746. width:124px;
  3747. height:38px;
  3748. display:flex;
  3749. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3750. font-weight:400;
  3751. font-style:normal;
  3752. font-size:12px;
  3753. color:#606266;
  3754. }
  3755. #u18679 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 0px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u18679_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u18680_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:129px;
  3774. height:38px;
  3775. }
  3776. #u18680 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:235px;
  3781. width:129px;
  3782. height:38px;
  3783. display:flex;
  3784. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:12px;
  3788. color:#606266;
  3789. }
  3790. #u18680 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 2px 2px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u18680_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. visibility:hidden;
  3802. }
  3803. #u18681_img {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:122px;
  3809. height:38px;
  3810. }
  3811. #u18681 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:129px;
  3815. top:235px;
  3816. width:122px;
  3817. height:38px;
  3818. display:flex;
  3819. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:12px;
  3823. color:#606266;
  3824. }
  3825. #u18681 .text {
  3826. position:absolute;
  3827. align-self:center;
  3828. padding:2px 2px 2px 0px;
  3829. box-sizing:border-box;
  3830. width:100%;
  3831. }
  3832. #u18681_text {
  3833. border-width:0px;
  3834. word-wrap:break-word;
  3835. text-transform:none;
  3836. visibility:hidden;
  3837. }
  3838. #u18682_img {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:119px;
  3844. height:38px;
  3845. }
  3846. #u18682 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:251px;
  3850. top:235px;
  3851. width:119px;
  3852. height:38px;
  3853. display:flex;
  3854. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3855. font-weight:400;
  3856. font-style:normal;
  3857. font-size:12px;
  3858. color:#606266;
  3859. }
  3860. #u18682 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 0px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u18682_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. visibility:hidden;
  3872. }
  3873. #u18683_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:122px;
  3879. height:38px;
  3880. }
  3881. #u18683 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:370px;
  3885. top:235px;
  3886. width:122px;
  3887. height:38px;
  3888. display:flex;
  3889. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:12px;
  3893. color:#606266;
  3894. }
  3895. #u18683 .text {
  3896. position:absolute;
  3897. align-self:center;
  3898. padding:2px 2px 2px 0px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u18683_text {
  3903. border-width:0px;
  3904. word-wrap:break-word;
  3905. text-transform:none;
  3906. visibility:hidden;
  3907. }
  3908. #u18684_img {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:121px;
  3914. height:38px;
  3915. }
  3916. #u18684 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:492px;
  3920. top:235px;
  3921. width:121px;
  3922. height:38px;
  3923. display:flex;
  3924. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:12px;
  3928. color:#606266;
  3929. }
  3930. #u18684 .text {
  3931. position:absolute;
  3932. align-self:center;
  3933. padding:2px 2px 2px 0px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u18684_text {
  3938. border-width:0px;
  3939. word-wrap:break-word;
  3940. text-transform:none;
  3941. visibility:hidden;
  3942. }
  3943. #u18685_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:122px;
  3949. height:38px;
  3950. }
  3951. #u18685 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:613px;
  3955. top:235px;
  3956. width:122px;
  3957. height:38px;
  3958. display:flex;
  3959. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3960. font-weight:400;
  3961. font-style:normal;
  3962. font-size:12px;
  3963. color:#606266;
  3964. }
  3965. #u18685 .text {
  3966. position:absolute;
  3967. align-self:center;
  3968. padding:2px 2px 2px 0px;
  3969. box-sizing:border-box;
  3970. width:100%;
  3971. }
  3972. #u18685_text {
  3973. border-width:0px;
  3974. word-wrap:break-word;
  3975. text-transform:none;
  3976. visibility:hidden;
  3977. }
  3978. #u18686_img {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:119px;
  3984. height:38px;
  3985. }
  3986. #u18686 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:735px;
  3990. top:235px;
  3991. width:119px;
  3992. height:38px;
  3993. display:flex;
  3994. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:12px;
  3998. color:#606266;
  3999. }
  4000. #u18686 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:2px 2px 2px 0px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u18686_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. visibility:hidden;
  4012. }
  4013. #u18687_img {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:119px;
  4019. height:38px;
  4020. }
  4021. #u18687 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:854px;
  4025. top:235px;
  4026. width:119px;
  4027. height:38px;
  4028. display:flex;
  4029. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:12px;
  4033. color:#606266;
  4034. }
  4035. #u18687 .text {
  4036. position:absolute;
  4037. align-self:center;
  4038. padding:2px 2px 2px 0px;
  4039. box-sizing:border-box;
  4040. width:100%;
  4041. }
  4042. #u18687_text {
  4043. border-width:0px;
  4044. word-wrap:break-word;
  4045. text-transform:none;
  4046. visibility:hidden;
  4047. }
  4048. #u18688_img {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:122px;
  4054. height:38px;
  4055. }
  4056. #u18688 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:973px;
  4060. top:235px;
  4061. width:122px;
  4062. height:38px;
  4063. display:flex;
  4064. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:12px;
  4068. color:#606266;
  4069. }
  4070. #u18688 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:2px 2px 2px 0px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u18688_text {
  4078. border-width:0px;
  4079. word-wrap:break-word;
  4080. text-transform:none;
  4081. visibility:hidden;
  4082. }
  4083. #u18689_img {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:124px;
  4089. height:38px;
  4090. }
  4091. #u18689 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:1095px;
  4095. top:235px;
  4096. width:124px;
  4097. height:38px;
  4098. display:flex;
  4099. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:12px;
  4103. color:#606266;
  4104. }
  4105. #u18689 .text {
  4106. position:absolute;
  4107. align-self:center;
  4108. padding:2px 2px 2px 0px;
  4109. box-sizing:border-box;
  4110. width:100%;
  4111. }
  4112. #u18689_text {
  4113. border-width:0px;
  4114. word-wrap:break-word;
  4115. text-transform:none;
  4116. visibility:hidden;
  4117. }
  4118. #u18690_img {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:129px;
  4124. height:38px;
  4125. }
  4126. #u18690 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:273px;
  4131. width:129px;
  4132. height:38px;
  4133. display:flex;
  4134. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4135. font-weight:400;
  4136. font-style:normal;
  4137. font-size:12px;
  4138. color:#606266;
  4139. }
  4140. #u18690 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 0px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u18690_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u18691_img {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:122px;
  4159. height:38px;
  4160. }
  4161. #u18691 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:129px;
  4165. top:273px;
  4166. width:122px;
  4167. height:38px;
  4168. display:flex;
  4169. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4170. font-weight:400;
  4171. font-style:normal;
  4172. font-size:12px;
  4173. color:#606266;
  4174. }
  4175. #u18691 .text {
  4176. position:absolute;
  4177. align-self:center;
  4178. padding:2px 2px 2px 0px;
  4179. box-sizing:border-box;
  4180. width:100%;
  4181. }
  4182. #u18691_text {
  4183. border-width:0px;
  4184. word-wrap:break-word;
  4185. text-transform:none;
  4186. visibility:hidden;
  4187. }
  4188. #u18692_img {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:119px;
  4194. height:38px;
  4195. }
  4196. #u18692 {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:251px;
  4200. top:273px;
  4201. width:119px;
  4202. height:38px;
  4203. display:flex;
  4204. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4205. font-weight:400;
  4206. font-style:normal;
  4207. font-size:12px;
  4208. color:#606266;
  4209. }
  4210. #u18692 .text {
  4211. position:absolute;
  4212. align-self:center;
  4213. padding:2px 2px 2px 0px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u18692_text {
  4218. border-width:0px;
  4219. word-wrap:break-word;
  4220. text-transform:none;
  4221. visibility:hidden;
  4222. }
  4223. #u18693_img {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:122px;
  4229. height:38px;
  4230. }
  4231. #u18693 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:370px;
  4235. top:273px;
  4236. width:122px;
  4237. height:38px;
  4238. display:flex;
  4239. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4240. font-weight:400;
  4241. font-style:normal;
  4242. font-size:12px;
  4243. color:#606266;
  4244. }
  4245. #u18693 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:2px 2px 2px 0px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u18693_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. visibility:hidden;
  4257. }
  4258. #u18694_img {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:121px;
  4264. height:38px;
  4265. }
  4266. #u18694 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:492px;
  4270. top:273px;
  4271. width:121px;
  4272. height:38px;
  4273. display:flex;
  4274. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:12px;
  4278. color:#606266;
  4279. }
  4280. #u18694 .text {
  4281. position:absolute;
  4282. align-self:center;
  4283. padding:2px 2px 2px 0px;
  4284. box-sizing:border-box;
  4285. width:100%;
  4286. }
  4287. #u18694_text {
  4288. border-width:0px;
  4289. word-wrap:break-word;
  4290. text-transform:none;
  4291. visibility:hidden;
  4292. }
  4293. #u18695_img {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:122px;
  4299. height:38px;
  4300. }
  4301. #u18695 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:613px;
  4305. top:273px;
  4306. width:122px;
  4307. height:38px;
  4308. display:flex;
  4309. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:12px;
  4313. color:#606266;
  4314. }
  4315. #u18695 .text {
  4316. position:absolute;
  4317. align-self:center;
  4318. padding:2px 2px 2px 0px;
  4319. box-sizing:border-box;
  4320. width:100%;
  4321. }
  4322. #u18695_text {
  4323. border-width:0px;
  4324. word-wrap:break-word;
  4325. text-transform:none;
  4326. visibility:hidden;
  4327. }
  4328. #u18696_img {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:0px;
  4332. top:0px;
  4333. width:119px;
  4334. height:38px;
  4335. }
  4336. #u18696 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:735px;
  4340. top:273px;
  4341. width:119px;
  4342. height:38px;
  4343. display:flex;
  4344. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:12px;
  4348. color:#606266;
  4349. }
  4350. #u18696 .text {
  4351. position:absolute;
  4352. align-self:center;
  4353. padding:2px 2px 2px 0px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u18696_text {
  4358. border-width:0px;
  4359. word-wrap:break-word;
  4360. text-transform:none;
  4361. visibility:hidden;
  4362. }
  4363. #u18697_img {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:119px;
  4369. height:38px;
  4370. }
  4371. #u18697 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:854px;
  4375. top:273px;
  4376. width:119px;
  4377. height:38px;
  4378. display:flex;
  4379. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:12px;
  4383. color:#606266;
  4384. }
  4385. #u18697 .text {
  4386. position:absolute;
  4387. align-self:center;
  4388. padding:2px 2px 2px 0px;
  4389. box-sizing:border-box;
  4390. width:100%;
  4391. }
  4392. #u18697_text {
  4393. border-width:0px;
  4394. word-wrap:break-word;
  4395. text-transform:none;
  4396. visibility:hidden;
  4397. }
  4398. #u18698_img {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:122px;
  4404. height:38px;
  4405. }
  4406. #u18698 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:973px;
  4410. top:273px;
  4411. width:122px;
  4412. height:38px;
  4413. display:flex;
  4414. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4415. font-weight:400;
  4416. font-style:normal;
  4417. font-size:12px;
  4418. color:#606266;
  4419. }
  4420. #u18698 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 2px 2px 0px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u18698_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. visibility:hidden;
  4432. }
  4433. #u18699_img {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:124px;
  4439. height:38px;
  4440. }
  4441. #u18699 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:1095px;
  4445. top:273px;
  4446. width:124px;
  4447. height:38px;
  4448. display:flex;
  4449. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4450. font-weight:400;
  4451. font-style:normal;
  4452. font-size:12px;
  4453. color:#606266;
  4454. }
  4455. #u18699 .text {
  4456. position:absolute;
  4457. align-self:center;
  4458. padding:2px 2px 2px 0px;
  4459. box-sizing:border-box;
  4460. width:100%;
  4461. }
  4462. #u18699_text {
  4463. border-width:0px;
  4464. word-wrap:break-word;
  4465. text-transform:none;
  4466. visibility:hidden;
  4467. }
  4468. #u18700_div {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:73px;
  4474. height:50px;
  4475. background:inherit;
  4476. background-color:rgba(255, 255, 255, 0);
  4477. border:none;
  4478. border-left:0px;
  4479. border-top:0px;
  4480. border-right:0px;
  4481. border-radius:0px;
  4482. border-bottom-right-radius:0px;
  4483. border-bottom-left-radius:0px;
  4484. -moz-box-shadow:none;
  4485. -webkit-box-shadow:none;
  4486. box-shadow:none;
  4487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4488. font-weight:400;
  4489. font-style:normal;
  4490. font-size:18px;
  4491. }
  4492. #u18700 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:349px;
  4496. top:52px;
  4497. width:73px;
  4498. height:50px;
  4499. display:flex;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:18px;
  4504. }
  4505. #u18700 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:0px 0px 0px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u18700_text {
  4513. border-width:0px;
  4514. white-space:nowrap;
  4515. text-transform:none;
  4516. }
  4517. #u18701 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:0px;
  4523. height:0px;
  4524. }
  4525. #u18702_div {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:60px;
  4531. height:30px;
  4532. background:inherit;
  4533. background-color:rgba(24, 144, 255, 1);
  4534. border:none;
  4535. border-radius:4px;
  4536. -moz-box-shadow:none;
  4537. -webkit-box-shadow:none;
  4538. box-shadow:none;
  4539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4540. font-weight:400;
  4541. font-style:normal;
  4542. font-size:14px;
  4543. color:#FFFFFF;
  4544. }
  4545. #u18702 {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:1400px;
  4549. top:140px;
  4550. width:60px;
  4551. height:30px;
  4552. display:flex;
  4553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:14px;
  4557. color:#FFFFFF;
  4558. }
  4559. #u18702 .text {
  4560. position:absolute;
  4561. align-self:center;
  4562. padding:2px 2px 2px 2px;
  4563. box-sizing:border-box;
  4564. width:100%;
  4565. }
  4566. #u18702_text {
  4567. border-width:0px;
  4568. word-wrap:break-word;
  4569. text-transform:none;
  4570. }
  4571. #u18703_div {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:60px;
  4577. height:30px;
  4578. background:inherit;
  4579. background-color:rgba(255, 255, 255, 1);
  4580. box-sizing:border-box;
  4581. border-width:1px;
  4582. border-style:solid;
  4583. border-color:rgba(170, 170, 170, 1);
  4584. border-radius:4px;
  4585. -moz-box-shadow:none;
  4586. -webkit-box-shadow:none;
  4587. box-shadow:none;
  4588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4589. font-weight:400;
  4590. font-style:normal;
  4591. font-size:14px;
  4592. }
  4593. #u18703 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:1470px;
  4597. top:140px;
  4598. width:60px;
  4599. height:30px;
  4600. display:flex;
  4601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:14px;
  4605. }
  4606. #u18703 .text {
  4607. position:absolute;
  4608. align-self:center;
  4609. padding:2px 2px 2px 2px;
  4610. box-sizing:border-box;
  4611. width:100%;
  4612. }
  4613. #u18703_text {
  4614. border-width:0px;
  4615. word-wrap:break-word;
  4616. text-transform:none;
  4617. }
  4618. #u18704 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:0px;
  4624. height:0px;
  4625. }
  4626. #u18705_div {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:140px;
  4632. height:30px;
  4633. background:inherit;
  4634. background-color:rgba(255, 255, 255, 1);
  4635. box-sizing:border-box;
  4636. border-width:1px;
  4637. border-style:solid;
  4638. border-color:rgba(215, 215, 215, 1);
  4639. border-radius:4px;
  4640. -moz-box-shadow:none;
  4641. -webkit-box-shadow:none;
  4642. box-shadow:none;
  4643. font-size:14px;
  4644. }
  4645. #u18705 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:350px;
  4649. top:140px;
  4650. width:140px;
  4651. height:30px;
  4652. display:flex;
  4653. font-size:14px;
  4654. }
  4655. #u18705 .text {
  4656. position:absolute;
  4657. align-self:center;
  4658. padding:2px 2px 2px 2px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u18705_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. visibility:hidden;
  4667. }
  4668. #u18706_input {
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:134px;
  4673. height:23px;
  4674. padding:2px 2px 2px 2px;
  4675. font-family:'ArialMT', 'Arial', sans-serif;
  4676. font-weight:400;
  4677. font-style:normal;
  4678. font-size:14px;
  4679. letter-spacing:normal;
  4680. color:#AAAAAA;
  4681. vertical-align:none;
  4682. text-align:left;
  4683. text-transform:none;
  4684. background-color:transparent;
  4685. border-color:transparent;
  4686. }
  4687. #u18706_input.disabled {
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:134px;
  4692. height:23px;
  4693. padding:2px 2px 2px 2px;
  4694. font-family:'ArialMT', 'Arial', sans-serif;
  4695. font-weight:400;
  4696. font-style:normal;
  4697. font-size:14px;
  4698. letter-spacing:normal;
  4699. color:#AAAAAA;
  4700. vertical-align:none;
  4701. text-align:left;
  4702. text-transform:none;
  4703. background-color:transparent;
  4704. border-color:transparent;
  4705. }
  4706. #u18706_div {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:134px;
  4712. height:23px;
  4713. background:inherit;
  4714. background-color:rgba(255, 255, 255, 1);
  4715. border:none;
  4716. border-radius:0px;
  4717. -moz-box-shadow:none;
  4718. -webkit-box-shadow:none;
  4719. box-shadow:none;
  4720. font-size:14px;
  4721. color:#AAAAAA;
  4722. }
  4723. #u18706 {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:354px;
  4727. top:142px;
  4728. width:134px;
  4729. height:23px;
  4730. display:flex;
  4731. font-size:14px;
  4732. color:#AAAAAA;
  4733. }
  4734. #u18706 .text {
  4735. position:absolute;
  4736. align-self:flex-start;
  4737. padding:2px 2px 2px 2px;
  4738. box-sizing:border-box;
  4739. width:100%;
  4740. }
  4741. #u18706_div.disabled {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:134px;
  4747. height:23px;
  4748. background:inherit;
  4749. background-color:rgba(240, 240, 240, 1);
  4750. border:none;
  4751. border-radius:0px;
  4752. -moz-box-shadow:none;
  4753. -webkit-box-shadow:none;
  4754. box-shadow:none;
  4755. font-size:14px;
  4756. color:#AAAAAA;
  4757. }
  4758. #u18706.disabled {
  4759. }
  4760. .u18706_input_option {
  4761. font-size:14px;
  4762. }
  4763. #u18707 {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:0px;
  4769. height:0px;
  4770. }
  4771. #u18708_div {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:140px;
  4777. height:30px;
  4778. background:inherit;
  4779. background-color:rgba(255, 255, 255, 1);
  4780. box-sizing:border-box;
  4781. border-width:1px;
  4782. border-style:solid;
  4783. border-color:rgba(201, 201, 201, 1);
  4784. border-radius:4px;
  4785. -moz-box-shadow:none;
  4786. -webkit-box-shadow:none;
  4787. box-shadow:none;
  4788. font-family:'Microsoft YaHei', sans-serif;
  4789. font-weight:400;
  4790. font-style:normal;
  4791. font-size:14px;
  4792. color:#CCCCCC;
  4793. text-align:left;
  4794. }
  4795. #u18708 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:500px;
  4799. top:140px;
  4800. width:140px;
  4801. height:30px;
  4802. display:flex;
  4803. font-family:'Microsoft YaHei', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:14px;
  4807. color:#CCCCCC;
  4808. text-align:left;
  4809. }
  4810. #u18708 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:2px 8px 2px 8px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u18708_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. visibility:hidden;
  4822. }
  4823. #u18709_input {
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:127px;
  4828. height:25px;
  4829. padding:2px 2px 2px 2px;
  4830. font-family:'Microsoft YaHei', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:10px;
  4834. letter-spacing:normal;
  4835. color:#000000;
  4836. vertical-align:none;
  4837. text-align:left;
  4838. text-transform:none;
  4839. background-color:transparent;
  4840. border-color:transparent;
  4841. }
  4842. #u18709_input.disabled {
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:127px;
  4847. height:25px;
  4848. padding:2px 2px 2px 2px;
  4849. font-family:'Microsoft YaHei', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:10px;
  4853. letter-spacing:normal;
  4854. color:#000000;
  4855. vertical-align:none;
  4856. text-align:left;
  4857. text-transform:none;
  4858. background-color:transparent;
  4859. border-color:transparent;
  4860. }
  4861. #u18709_div {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:127px;
  4867. height:25px;
  4868. background:inherit;
  4869. background-color:rgba(255, 255, 255, 1);
  4870. border:none;
  4871. border-radius:0px;
  4872. -moz-box-shadow:none;
  4873. -webkit-box-shadow:none;
  4874. box-shadow:none;
  4875. font-family:'Microsoft YaHei', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:10px;
  4879. }
  4880. #u18709 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:508px;
  4884. top:141px;
  4885. width:127px;
  4886. height:25px;
  4887. display:flex;
  4888. font-family:'Microsoft YaHei', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:10px;
  4892. }
  4893. #u18709 .text {
  4894. position:absolute;
  4895. align-self:center;
  4896. padding:2px 2px 2px 2px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u18709_div.disabled {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:127px;
  4906. height:25px;
  4907. background:inherit;
  4908. background-color:rgba(240, 240, 240, 1);
  4909. border:none;
  4910. border-radius:0px;
  4911. -moz-box-shadow:none;
  4912. -webkit-box-shadow:none;
  4913. box-shadow:none;
  4914. font-family:'Microsoft YaHei', sans-serif;
  4915. font-weight:400;
  4916. font-style:normal;
  4917. font-size:10px;
  4918. }
  4919. #u18709.disabled {
  4920. }
  4921. #u18710 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:0px;
  4927. height:0px;
  4928. }
  4929. #u18711_div {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:140px;
  4935. height:30px;
  4936. background:inherit;
  4937. background-color:rgba(255, 255, 255, 1);
  4938. box-sizing:border-box;
  4939. border-width:1px;
  4940. border-style:solid;
  4941. border-color:rgba(201, 201, 201, 1);
  4942. border-radius:4px;
  4943. -moz-box-shadow:none;
  4944. -webkit-box-shadow:none;
  4945. box-shadow:none;
  4946. font-family:'Microsoft YaHei', sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:14px;
  4950. color:#CCCCCC;
  4951. text-align:left;
  4952. }
  4953. #u18711 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:650px;
  4957. top:140px;
  4958. width:140px;
  4959. height:30px;
  4960. display:flex;
  4961. font-family:'Microsoft YaHei', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:14px;
  4965. color:#CCCCCC;
  4966. text-align:left;
  4967. }
  4968. #u18711 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 8px 2px 8px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u18711_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. visibility:hidden;
  4980. }
  4981. #u18712_input {
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:127px;
  4986. height:25px;
  4987. padding:2px 2px 2px 2px;
  4988. font-family:'Microsoft YaHei', sans-serif;
  4989. font-weight:400;
  4990. font-style:normal;
  4991. font-size:10px;
  4992. letter-spacing:normal;
  4993. color:#000000;
  4994. vertical-align:none;
  4995. text-align:left;
  4996. text-transform:none;
  4997. background-color:transparent;
  4998. border-color:transparent;
  4999. }
  5000. #u18712_input.disabled {
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:127px;
  5005. height:25px;
  5006. padding:2px 2px 2px 2px;
  5007. font-family:'Microsoft YaHei', sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. font-size:10px;
  5011. letter-spacing:normal;
  5012. color:#000000;
  5013. vertical-align:none;
  5014. text-align:left;
  5015. text-transform:none;
  5016. background-color:transparent;
  5017. border-color:transparent;
  5018. }
  5019. #u18712_div {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:127px;
  5025. height:25px;
  5026. background:inherit;
  5027. background-color:rgba(255, 255, 255, 1);
  5028. border:none;
  5029. border-radius:0px;
  5030. -moz-box-shadow:none;
  5031. -webkit-box-shadow:none;
  5032. box-shadow:none;
  5033. font-family:'Microsoft YaHei', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:10px;
  5037. }
  5038. #u18712 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:658px;
  5042. top:141px;
  5043. width:127px;
  5044. height:25px;
  5045. display:flex;
  5046. font-family:'Microsoft YaHei', sans-serif;
  5047. font-weight:400;
  5048. font-style:normal;
  5049. font-size:10px;
  5050. }
  5051. #u18712 .text {
  5052. position:absolute;
  5053. align-self:center;
  5054. padding:2px 2px 2px 2px;
  5055. box-sizing:border-box;
  5056. width:100%;
  5057. }
  5058. #u18712_div.disabled {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:0px;
  5063. width:127px;
  5064. height:25px;
  5065. background:inherit;
  5066. background-color:rgba(240, 240, 240, 1);
  5067. border:none;
  5068. border-radius:0px;
  5069. -moz-box-shadow:none;
  5070. -webkit-box-shadow:none;
  5071. box-shadow:none;
  5072. font-family:'Microsoft YaHei', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:10px;
  5076. }
  5077. #u18712.disabled {
  5078. }
  5079. #u18713 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:0px;
  5085. height:0px;
  5086. }
  5087. #u18714_div {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:0px;
  5091. top:0px;
  5092. width:140px;
  5093. height:30px;
  5094. background:inherit;
  5095. background-color:rgba(255, 255, 255, 1);
  5096. box-sizing:border-box;
  5097. border-width:1px;
  5098. border-style:solid;
  5099. border-color:rgba(201, 201, 201, 1);
  5100. border-radius:4px;
  5101. -moz-box-shadow:none;
  5102. -webkit-box-shadow:none;
  5103. box-shadow:none;
  5104. font-family:'Microsoft YaHei', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:14px;
  5108. color:#CCCCCC;
  5109. text-align:left;
  5110. }
  5111. #u18714 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:800px;
  5115. top:140px;
  5116. width:140px;
  5117. height:30px;
  5118. display:flex;
  5119. font-family:'Microsoft YaHei', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:14px;
  5123. color:#CCCCCC;
  5124. text-align:left;
  5125. }
  5126. #u18714 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:2px 8px 2px 8px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u18714_text {
  5134. border-width:0px;
  5135. word-wrap:break-word;
  5136. text-transform:none;
  5137. visibility:hidden;
  5138. }
  5139. #u18715_input {
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:127px;
  5144. height:25px;
  5145. padding:2px 2px 2px 2px;
  5146. font-family:'Microsoft YaHei', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:10px;
  5150. letter-spacing:normal;
  5151. color:#000000;
  5152. vertical-align:none;
  5153. text-align:left;
  5154. text-transform:none;
  5155. background-color:transparent;
  5156. border-color:transparent;
  5157. }
  5158. #u18715_input.disabled {
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:127px;
  5163. height:25px;
  5164. padding:2px 2px 2px 2px;
  5165. font-family:'Microsoft YaHei', sans-serif;
  5166. font-weight:400;
  5167. font-style:normal;
  5168. font-size:10px;
  5169. letter-spacing:normal;
  5170. color:#000000;
  5171. vertical-align:none;
  5172. text-align:left;
  5173. text-transform:none;
  5174. background-color:transparent;
  5175. border-color:transparent;
  5176. }
  5177. #u18715_div {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:0px;
  5181. top:0px;
  5182. width:127px;
  5183. height:25px;
  5184. background:inherit;
  5185. background-color:rgba(255, 255, 255, 1);
  5186. border:none;
  5187. border-radius:0px;
  5188. -moz-box-shadow:none;
  5189. -webkit-box-shadow:none;
  5190. box-shadow:none;
  5191. font-family:'Microsoft YaHei', sans-serif;
  5192. font-weight:400;
  5193. font-style:normal;
  5194. font-size:10px;
  5195. }
  5196. #u18715 {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:808px;
  5200. top:141px;
  5201. width:127px;
  5202. height:25px;
  5203. display:flex;
  5204. font-family:'Microsoft YaHei', sans-serif;
  5205. font-weight:400;
  5206. font-style:normal;
  5207. font-size:10px;
  5208. }
  5209. #u18715 .text {
  5210. position:absolute;
  5211. align-self:center;
  5212. padding:2px 2px 2px 2px;
  5213. box-sizing:border-box;
  5214. width:100%;
  5215. }
  5216. #u18715_div.disabled {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:127px;
  5222. height:25px;
  5223. background:inherit;
  5224. background-color:rgba(240, 240, 240, 1);
  5225. border:none;
  5226. border-radius:0px;
  5227. -moz-box-shadow:none;
  5228. -webkit-box-shadow:none;
  5229. box-shadow:none;
  5230. font-family:'Microsoft YaHei', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:10px;
  5234. }
  5235. #u18715.disabled {
  5236. }
  5237. #u18716_div {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:60px;
  5243. height:30px;
  5244. background:inherit;
  5245. background-color:rgba(24, 144, 255, 1);
  5246. border:none;
  5247. border-radius:4px;
  5248. -moz-box-shadow:none;
  5249. -webkit-box-shadow:none;
  5250. box-shadow:none;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:14px;
  5255. color:#FFFFFF;
  5256. }
  5257. #u18716 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:-79px;
  5262. width:60px;
  5263. height:30px;
  5264. display:flex;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:14px;
  5269. color:#FFFFFF;
  5270. }
  5271. #u18716 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:2px 2px 2px 2px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u18716_text {
  5279. border-width:0px;
  5280. word-wrap:break-word;
  5281. text-transform:none;
  5282. }
  5283. #u18717 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:0px;
  5289. height:0px;
  5290. }
  5291. #u18718_div {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:140px;
  5297. height:30px;
  5298. background:inherit;
  5299. background-color:rgba(255, 255, 255, 1);
  5300. box-sizing:border-box;
  5301. border-width:1px;
  5302. border-style:solid;
  5303. border-color:rgba(215, 215, 215, 1);
  5304. border-radius:4px;
  5305. -moz-box-shadow:none;
  5306. -webkit-box-shadow:none;
  5307. box-shadow:none;
  5308. font-size:14px;
  5309. }
  5310. #u18718 {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:1100px;
  5314. top:140px;
  5315. width:140px;
  5316. height:30px;
  5317. display:flex;
  5318. font-size:14px;
  5319. }
  5320. #u18718 .text {
  5321. position:absolute;
  5322. align-self:center;
  5323. padding:2px 2px 2px 2px;
  5324. box-sizing:border-box;
  5325. width:100%;
  5326. }
  5327. #u18718_text {
  5328. border-width:0px;
  5329. word-wrap:break-word;
  5330. text-transform:none;
  5331. visibility:hidden;
  5332. }
  5333. #u18719_input {
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:134px;
  5338. height:23px;
  5339. padding:2px 2px 2px 2px;
  5340. font-family:'ArialMT', 'Arial', sans-serif;
  5341. font-weight:400;
  5342. font-style:normal;
  5343. font-size:14px;
  5344. letter-spacing:normal;
  5345. color:#AAAAAA;
  5346. vertical-align:none;
  5347. text-align:left;
  5348. text-transform:none;
  5349. background-color:transparent;
  5350. border-color:transparent;
  5351. }
  5352. #u18719_input.disabled {
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:134px;
  5357. height:23px;
  5358. padding:2px 2px 2px 2px;
  5359. font-family:'ArialMT', 'Arial', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:14px;
  5363. letter-spacing:normal;
  5364. color:#AAAAAA;
  5365. vertical-align:none;
  5366. text-align:left;
  5367. text-transform:none;
  5368. background-color:transparent;
  5369. border-color:transparent;
  5370. }
  5371. #u18719_div {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:134px;
  5377. height:23px;
  5378. background:inherit;
  5379. background-color:rgba(255, 255, 255, 1);
  5380. border:none;
  5381. border-radius:0px;
  5382. -moz-box-shadow:none;
  5383. -webkit-box-shadow:none;
  5384. box-shadow:none;
  5385. font-size:14px;
  5386. color:#AAAAAA;
  5387. }
  5388. #u18719 {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:1104px;
  5392. top:142px;
  5393. width:134px;
  5394. height:23px;
  5395. display:flex;
  5396. font-size:14px;
  5397. color:#AAAAAA;
  5398. }
  5399. #u18719 .text {
  5400. position:absolute;
  5401. align-self:flex-start;
  5402. padding:2px 2px 2px 2px;
  5403. box-sizing:border-box;
  5404. width:100%;
  5405. }
  5406. #u18719_div.disabled {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:134px;
  5412. height:23px;
  5413. background:inherit;
  5414. background-color:rgba(240, 240, 240, 1);
  5415. border:none;
  5416. border-radius:0px;
  5417. -moz-box-shadow:none;
  5418. -webkit-box-shadow:none;
  5419. box-shadow:none;
  5420. font-size:14px;
  5421. color:#AAAAAA;
  5422. }
  5423. #u18719.disabled {
  5424. }
  5425. .u18719_input_option {
  5426. font-size:14px;
  5427. }
  5428. #u18720_div {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:1196px;
  5434. height:420px;
  5435. background:inherit;
  5436. background-color:rgba(255, 255, 255, 0);
  5437. border:none;
  5438. border-left:0px;
  5439. border-top:0px;
  5440. border-right:0px;
  5441. border-radius:0px;
  5442. border-bottom-right-radius:0px;
  5443. border-bottom-left-radius:0px;
  5444. -moz-box-shadow:none;
  5445. -webkit-box-shadow:none;
  5446. box-shadow:none;
  5447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:18px;
  5451. line-height:30px;
  5452. }
  5453. #u18720 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:373px;
  5457. top:576px;
  5458. width:1196px;
  5459. height:420px;
  5460. display:flex;
  5461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. font-size:18px;
  5465. line-height:30px;
  5466. }
  5467. #u18720 .text {
  5468. position:absolute;
  5469. align-self:flex-start;
  5470. padding:0px 0px 0px 0px;
  5471. box-sizing:border-box;
  5472. width:100%;
  5473. }
  5474. #u18720_text {
  5475. border-width:0px;
  5476. word-wrap:break-word;
  5477. text-transform:none;
  5478. }
  5479. #u18722 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:0px;
  5485. height:0px;
  5486. }
  5487. #u18723_div {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:200px;
  5493. height:1190px;
  5494. background:inherit;
  5495. background-color:rgba(255, 255, 255, 1);
  5496. border:none;
  5497. border-radius:0px;
  5498. -moz-box-shadow:none;
  5499. -webkit-box-shadow:none;
  5500. box-shadow:none;
  5501. }
  5502. #u18723 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:120px;
  5506. top:50px;
  5507. width:200px;
  5508. height:1190px;
  5509. display:flex;
  5510. }
  5511. #u18723 .text {
  5512. position:absolute;
  5513. align-self:center;
  5514. padding:2px 2px 2px 2px;
  5515. box-sizing:border-box;
  5516. width:100%;
  5517. }
  5518. #u18723_text {
  5519. border-width:0px;
  5520. word-wrap:break-word;
  5521. text-transform:none;
  5522. visibility:hidden;
  5523. }
  5524. #u18724_div {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:200px;
  5530. height:60px;
  5531. background:inherit;
  5532. background-color:rgba(224, 231, 247, 1);
  5533. border:none;
  5534. border-radius:0px;
  5535. -moz-box-shadow:none;
  5536. -webkit-box-shadow:none;
  5537. box-shadow:none;
  5538. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5539. font-weight:500;
  5540. font-style:normal;
  5541. font-size:18px;
  5542. }
  5543. #u18724 {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:120px;
  5547. top:50px;
  5548. width:200px;
  5549. height:60px;
  5550. display:flex;
  5551. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5552. font-weight:500;
  5553. font-style:normal;
  5554. font-size:18px;
  5555. }
  5556. #u18724 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:0px 0px 0px 20px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u18724_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. }
  5568. #u18725_div {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:65px;
  5574. height:22px;
  5575. background:inherit;
  5576. background-color:rgba(255, 255, 255, 0);
  5577. border:none;
  5578. border-radius:0px;
  5579. -moz-box-shadow:none;
  5580. -webkit-box-shadow:none;
  5581. box-shadow:none;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:16px;
  5586. }
  5587. #u18725 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:145px;
  5591. top:536px;
  5592. width:65px;
  5593. height:22px;
  5594. display:flex;
  5595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:16px;
  5599. }
  5600. #u18725 .text {
  5601. position:absolute;
  5602. align-self:flex-start;
  5603. padding:0px 0px 0px 0px;
  5604. box-sizing:border-box;
  5605. width:100%;
  5606. }
  5607. #u18725_text {
  5608. border-width:0px;
  5609. white-space:nowrap;
  5610. text-transform:none;
  5611. }
  5612. #u18726_div {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:49px;
  5618. height:17px;
  5619. background:inherit;
  5620. background-color:rgba(255, 255, 255, 0);
  5621. border:none;
  5622. border-radius:0px;
  5623. -moz-box-shadow:none;
  5624. -webkit-box-shadow:none;
  5625. box-shadow:none;
  5626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. font-size:12px;
  5630. color:#AAAAAA;
  5631. }
  5632. #u18726 {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:143px;
  5636. top:499px;
  5637. width:49px;
  5638. height:17px;
  5639. display:flex;
  5640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. font-size:12px;
  5644. color:#AAAAAA;
  5645. }
  5646. #u18726 .text {
  5647. position:absolute;
  5648. align-self:flex-start;
  5649. padding:0px 0px 0px 0px;
  5650. box-sizing:border-box;
  5651. width:100%;
  5652. }
  5653. #u18726_text {
  5654. border-width:0px;
  5655. white-space:nowrap;
  5656. text-transform:none;
  5657. }
  5658. #u18727_div {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:49px;
  5664. height:17px;
  5665. background:inherit;
  5666. background-color:rgba(255, 255, 255, 0);
  5667. border:none;
  5668. border-radius:0px;
  5669. -moz-box-shadow:none;
  5670. -webkit-box-shadow:none;
  5671. box-shadow:none;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:12px;
  5676. color:#AAAAAA;
  5677. }
  5678. #u18727 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:144px;
  5682. top:131px;
  5683. width:49px;
  5684. height:17px;
  5685. display:flex;
  5686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5687. font-weight:400;
  5688. font-style:normal;
  5689. font-size:12px;
  5690. color:#AAAAAA;
  5691. }
  5692. #u18727 .text {
  5693. position:absolute;
  5694. align-self:flex-start;
  5695. padding:0px 0px 0px 0px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u18727_text {
  5700. border-width:0px;
  5701. white-space:nowrap;
  5702. text-transform:none;
  5703. }
  5704. #u18728_div {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:65px;
  5710. height:22px;
  5711. background:inherit;
  5712. background-color:rgba(255, 255, 255, 0);
  5713. border:none;
  5714. border-radius:0px;
  5715. -moz-box-shadow:none;
  5716. -webkit-box-shadow:none;
  5717. box-shadow:none;
  5718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5719. font-weight:400;
  5720. font-style:normal;
  5721. font-size:16px;
  5722. }
  5723. #u18728 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:146px;
  5727. top:168px;
  5728. width:65px;
  5729. height:22px;
  5730. display:flex;
  5731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5732. font-weight:400;
  5733. font-style:normal;
  5734. font-size:16px;
  5735. }
  5736. #u18728 .text {
  5737. position:absolute;
  5738. align-self:flex-start;
  5739. padding:0px 0px 0px 0px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u18728_text {
  5744. border-width:0px;
  5745. white-space:nowrap;
  5746. text-transform:none;
  5747. }
  5748. #u18729_img {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:201px;
  5754. height:2px;
  5755. }
  5756. #u18729 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:120px;
  5760. top:478px;
  5761. width:200px;
  5762. height:1px;
  5763. display:flex;
  5764. }
  5765. #u18729 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:2px 2px 2px 2px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u18729_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. visibility:hidden;
  5777. }
  5778. #u18730_div {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:65px;
  5784. height:22px;
  5785. background:inherit;
  5786. background-color:rgba(255, 255, 255, 0);
  5787. border:none;
  5788. border-radius:0px;
  5789. -moz-box-shadow:none;
  5790. -webkit-box-shadow:none;
  5791. box-shadow:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:16px;
  5796. }
  5797. #u18730 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:145px;
  5801. top:578px;
  5802. width:65px;
  5803. height:22px;
  5804. display:flex;
  5805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:16px;
  5809. }
  5810. #u18730 .text {
  5811. position:absolute;
  5812. align-self:flex-start;
  5813. padding:0px 0px 0px 0px;
  5814. box-sizing:border-box;
  5815. width:100%;
  5816. }
  5817. #u18730_text {
  5818. border-width:0px;
  5819. white-space:nowrap;
  5820. text-transform:none;
  5821. }
  5822. #u18731_div {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:49px;
  5828. height:17px;
  5829. background:inherit;
  5830. background-color:rgba(255, 255, 255, 0);
  5831. border:none;
  5832. border-radius:0px;
  5833. -moz-box-shadow:none;
  5834. -webkit-box-shadow:none;
  5835. box-shadow:none;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:12px;
  5840. color:#AAAAAA;
  5841. }
  5842. #u18731 {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:144px;
  5846. top:315px;
  5847. width:49px;
  5848. height:17px;
  5849. display:flex;
  5850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5851. font-weight:400;
  5852. font-style:normal;
  5853. font-size:12px;
  5854. color:#AAAAAA;
  5855. }
  5856. #u18731 .text {
  5857. position:absolute;
  5858. align-self:flex-start;
  5859. padding:0px 0px 0px 0px;
  5860. box-sizing:border-box;
  5861. width:100%;
  5862. }
  5863. #u18731_text {
  5864. border-width:0px;
  5865. white-space:nowrap;
  5866. text-transform:none;
  5867. }
  5868. #u18732_img {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:201px;
  5874. height:2px;
  5875. }
  5876. #u18732 {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:121px;
  5880. top:294px;
  5881. width:200px;
  5882. height:1px;
  5883. display:flex;
  5884. }
  5885. #u18732 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 2px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u18732_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. visibility:hidden;
  5897. }
  5898. #u18733_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:65px;
  5904. height:22px;
  5905. background:inherit;
  5906. background-color:rgba(255, 255, 255, 0);
  5907. border:none;
  5908. border-radius:0px;
  5909. -moz-box-shadow:none;
  5910. -webkit-box-shadow:none;
  5911. box-shadow:none;
  5912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:16px;
  5916. }
  5917. #u18733 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:146px;
  5921. top:352px;
  5922. width:65px;
  5923. height:22px;
  5924. display:flex;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:16px;
  5929. }
  5930. #u18733 .text {
  5931. position:absolute;
  5932. align-self:flex-start;
  5933. padding:0px 0px 0px 0px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u18733_text {
  5938. border-width:0px;
  5939. white-space:nowrap;
  5940. text-transform:none;
  5941. }
  5942. #u18734_div {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:65px;
  5948. height:22px;
  5949. background:inherit;
  5950. background-color:rgba(255, 255, 255, 0);
  5951. border:none;
  5952. border-radius:0px;
  5953. -moz-box-shadow:none;
  5954. -webkit-box-shadow:none;
  5955. box-shadow:none;
  5956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5957. font-weight:400;
  5958. font-style:normal;
  5959. font-size:16px;
  5960. }
  5961. #u18734 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:146px;
  5965. top:394px;
  5966. width:65px;
  5967. height:22px;
  5968. display:flex;
  5969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:16px;
  5973. }
  5974. #u18734 .text {
  5975. position:absolute;
  5976. align-self:flex-start;
  5977. padding:0px 0px 0px 0px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u18734_text {
  5982. border-width:0px;
  5983. white-space:nowrap;
  5984. text-transform:none;
  5985. }
  5986. #u18735_div {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:65px;
  5992. height:22px;
  5993. background:inherit;
  5994. background-color:rgba(255, 255, 255, 0);
  5995. border:none;
  5996. border-radius:0px;
  5997. -moz-box-shadow:none;
  5998. -webkit-box-shadow:none;
  5999. box-shadow:none;
  6000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:16px;
  6004. }
  6005. #u18735 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:145px;
  6009. top:886px;
  6010. width:65px;
  6011. height:22px;
  6012. display:flex;
  6013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. font-size:16px;
  6017. }
  6018. #u18735 .text {
  6019. position:absolute;
  6020. align-self:flex-start;
  6021. padding:0px 0px 0px 0px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u18735_text {
  6026. border-width:0px;
  6027. white-space:nowrap;
  6028. text-transform:none;
  6029. }
  6030. #u18736_div {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:97px;
  6036. height:22px;
  6037. background:inherit;
  6038. background-color:rgba(255, 255, 255, 0);
  6039. border:none;
  6040. border-radius:0px;
  6041. -moz-box-shadow:none;
  6042. -webkit-box-shadow:none;
  6043. box-shadow:none;
  6044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6045. font-weight:400;
  6046. font-style:normal;
  6047. font-size:16px;
  6048. }
  6049. #u18736 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:145px;
  6053. top:678px;
  6054. width:97px;
  6055. height:22px;
  6056. display:flex;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:16px;
  6061. }
  6062. #u18736 .text {
  6063. position:absolute;
  6064. align-self:flex-start;
  6065. padding:0px 0px 0px 0px;
  6066. box-sizing:border-box;
  6067. width:100%;
  6068. }
  6069. #u18736_text {
  6070. border-width:0px;
  6071. white-space:nowrap;
  6072. text-transform:none;
  6073. }
  6074. #u18737_div {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:49px;
  6080. height:17px;
  6081. background:inherit;
  6082. background-color:rgba(255, 255, 255, 0);
  6083. border:none;
  6084. border-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:12px;
  6092. color:#AAAAAA;
  6093. }
  6094. #u18737 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:143px;
  6098. top:641px;
  6099. width:49px;
  6100. height:17px;
  6101. display:flex;
  6102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:12px;
  6106. color:#AAAAAA;
  6107. }
  6108. #u18737 .text {
  6109. position:absolute;
  6110. align-self:flex-start;
  6111. padding:0px 0px 0px 0px;
  6112. box-sizing:border-box;
  6113. width:100%;
  6114. }
  6115. #u18737_text {
  6116. border-width:0px;
  6117. white-space:nowrap;
  6118. text-transform:none;
  6119. }
  6120. #u18738_img {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:0px;
  6124. top:0px;
  6125. width:201px;
  6126. height:2px;
  6127. }
  6128. #u18738 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:120px;
  6132. top:620px;
  6133. width:200px;
  6134. height:1px;
  6135. display:flex;
  6136. }
  6137. #u18738 .text {
  6138. position:absolute;
  6139. align-self:center;
  6140. padding:2px 2px 2px 2px;
  6141. box-sizing:border-box;
  6142. width:100%;
  6143. }
  6144. #u18738_text {
  6145. border-width:0px;
  6146. word-wrap:break-word;
  6147. text-transform:none;
  6148. visibility:hidden;
  6149. }
  6150. #u18739_div {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:97px;
  6156. height:22px;
  6157. background:inherit;
  6158. background-color:rgba(255, 255, 255, 0);
  6159. border:none;
  6160. border-radius:0px;
  6161. -moz-box-shadow:none;
  6162. -webkit-box-shadow:none;
  6163. box-shadow:none;
  6164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6165. font-weight:400;
  6166. font-style:normal;
  6167. font-size:16px;
  6168. }
  6169. #u18739 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:145px;
  6173. top:760px;
  6174. width:97px;
  6175. height:22px;
  6176. display:flex;
  6177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:16px;
  6181. }
  6182. #u18739 .text {
  6183. position:absolute;
  6184. align-self:flex-start;
  6185. padding:0px 0px 0px 0px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u18739_text {
  6190. border-width:0px;
  6191. white-space:nowrap;
  6192. text-transform:none;
  6193. }
  6194. #u18740_div {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:97px;
  6200. height:22px;
  6201. background:inherit;
  6202. background-color:rgba(255, 255, 255, 0);
  6203. border:none;
  6204. border-radius:0px;
  6205. -moz-box-shadow:none;
  6206. -webkit-box-shadow:none;
  6207. box-shadow:none;
  6208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:16px;
  6212. }
  6213. #u18740 {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:145px;
  6217. top:802px;
  6218. width:97px;
  6219. height:22px;
  6220. display:flex;
  6221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:16px;
  6225. }
  6226. #u18740 .text {
  6227. position:absolute;
  6228. align-self:flex-start;
  6229. padding:0px 0px 0px 0px;
  6230. box-sizing:border-box;
  6231. width:100%;
  6232. }
  6233. #u18740_text {
  6234. border-width:0px;
  6235. white-space:nowrap;
  6236. text-transform:none;
  6237. }
  6238. #u18741_div {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:65px;
  6244. height:22px;
  6245. background:inherit;
  6246. background-color:rgba(255, 255, 255, 0);
  6247. border:none;
  6248. border-radius:0px;
  6249. -moz-box-shadow:none;
  6250. -webkit-box-shadow:none;
  6251. box-shadow:none;
  6252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6253. font-weight:400;
  6254. font-style:normal;
  6255. font-size:16px;
  6256. }
  6257. #u18741 {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:145px;
  6261. top:986px;
  6262. width:65px;
  6263. height:22px;
  6264. display:flex;
  6265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6266. font-weight:400;
  6267. font-style:normal;
  6268. font-size:16px;
  6269. }
  6270. #u18741 .text {
  6271. position:absolute;
  6272. align-self:flex-start;
  6273. padding:0px 0px 0px 0px;
  6274. box-sizing:border-box;
  6275. width:100%;
  6276. }
  6277. #u18741_text {
  6278. border-width:0px;
  6279. white-space:nowrap;
  6280. text-transform:none;
  6281. }
  6282. #u18742_div {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:49px;
  6288. height:17px;
  6289. background:inherit;
  6290. background-color:rgba(255, 255, 255, 0);
  6291. border:none;
  6292. border-radius:0px;
  6293. -moz-box-shadow:none;
  6294. -webkit-box-shadow:none;
  6295. box-shadow:none;
  6296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6297. font-weight:400;
  6298. font-style:normal;
  6299. font-size:12px;
  6300. color:#AAAAAA;
  6301. }
  6302. #u18742 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:143px;
  6306. top:949px;
  6307. width:49px;
  6308. height:17px;
  6309. display:flex;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:12px;
  6314. color:#AAAAAA;
  6315. }
  6316. #u18742 .text {
  6317. position:absolute;
  6318. align-self:flex-start;
  6319. padding:0px 0px 0px 0px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u18742_text {
  6324. border-width:0px;
  6325. white-space:nowrap;
  6326. text-transform:none;
  6327. }
  6328. #u18743_img {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:201px;
  6334. height:2px;
  6335. }
  6336. #u18743 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:120px;
  6340. top:928px;
  6341. width:200px;
  6342. height:1px;
  6343. display:flex;
  6344. }
  6345. #u18743 .text {
  6346. position:absolute;
  6347. align-self:center;
  6348. padding:2px 2px 2px 2px;
  6349. box-sizing:border-box;
  6350. width:100%;
  6351. }
  6352. #u18743_text {
  6353. border-width:0px;
  6354. word-wrap:break-word;
  6355. text-transform:none;
  6356. visibility:hidden;
  6357. }
  6358. #u18744_div {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:65px;
  6364. height:22px;
  6365. background:inherit;
  6366. background-color:rgba(255, 255, 255, 0);
  6367. border:none;
  6368. border-radius:0px;
  6369. -moz-box-shadow:none;
  6370. -webkit-box-shadow:none;
  6371. box-shadow:none;
  6372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6373. font-weight:400;
  6374. font-style:normal;
  6375. font-size:16px;
  6376. }
  6377. #u18744 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:145px;
  6381. top:1028px;
  6382. width:65px;
  6383. height:22px;
  6384. display:flex;
  6385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:16px;
  6389. }
  6390. #u18744 .text {
  6391. position:absolute;
  6392. align-self:flex-start;
  6393. padding:0px 0px 0px 0px;
  6394. box-sizing:border-box;
  6395. width:100%;
  6396. }
  6397. #u18744_text {
  6398. border-width:0px;
  6399. white-space:nowrap;
  6400. text-transform:none;
  6401. }
  6402. #u18745_div {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:0px;
  6406. top:0px;
  6407. width:97px;
  6408. height:22px;
  6409. background:inherit;
  6410. background-color:rgba(255, 255, 255, 0);
  6411. border:none;
  6412. border-radius:0px;
  6413. -moz-box-shadow:none;
  6414. -webkit-box-shadow:none;
  6415. box-shadow:none;
  6416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6417. font-weight:400;
  6418. font-style:normal;
  6419. font-size:16px;
  6420. }
  6421. #u18745 {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:145px;
  6425. top:844px;
  6426. width:97px;
  6427. height:22px;
  6428. display:flex;
  6429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6430. font-weight:400;
  6431. font-style:normal;
  6432. font-size:16px;
  6433. }
  6434. #u18745 .text {
  6435. position:absolute;
  6436. align-self:flex-start;
  6437. padding:0px 0px 0px 0px;
  6438. box-sizing:border-box;
  6439. width:100%;
  6440. }
  6441. #u18745_text {
  6442. border-width:0px;
  6443. white-space:nowrap;
  6444. text-transform:none;
  6445. }
  6446. #u18746_div {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:81px;
  6452. height:22px;
  6453. background:inherit;
  6454. background-color:rgba(255, 255, 255, 0);
  6455. border:none;
  6456. border-radius:0px;
  6457. -moz-box-shadow:none;
  6458. -webkit-box-shadow:none;
  6459. box-shadow:none;
  6460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6461. font-weight:400;
  6462. font-style:normal;
  6463. font-size:16px;
  6464. }
  6465. #u18746 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:146px;
  6469. top:436px;
  6470. width:81px;
  6471. height:22px;
  6472. display:flex;
  6473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. font-size:16px;
  6477. }
  6478. #u18746 .text {
  6479. position:absolute;
  6480. align-self:flex-start;
  6481. padding:0px 0px 0px 0px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u18746_text {
  6486. border-width:0px;
  6487. white-space:nowrap;
  6488. text-transform:none;
  6489. }
  6490. #u18747_div {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:97px;
  6496. height:22px;
  6497. background:inherit;
  6498. background-color:rgba(255, 255, 255, 0);
  6499. border:none;
  6500. border-radius:0px;
  6501. -moz-box-shadow:none;
  6502. -webkit-box-shadow:none;
  6503. box-shadow:none;
  6504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6505. font-weight:400;
  6506. font-style:normal;
  6507. font-size:16px;
  6508. }
  6509. #u18747 {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:145px;
  6513. top:720px;
  6514. width:97px;
  6515. height:22px;
  6516. display:flex;
  6517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6518. font-weight:400;
  6519. font-style:normal;
  6520. font-size:16px;
  6521. }
  6522. #u18747 .text {
  6523. position:absolute;
  6524. align-self:flex-start;
  6525. padding:0px 0px 0px 0px;
  6526. box-sizing:border-box;
  6527. width:100%;
  6528. }
  6529. #u18747_text {
  6530. border-width:0px;
  6531. white-space:nowrap;
  6532. text-transform:none;
  6533. }
  6534. #u18748_div {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:65px;
  6540. height:22px;
  6541. background:inherit;
  6542. background-color:rgba(255, 255, 255, 0);
  6543. border:none;
  6544. border-radius:0px;
  6545. -moz-box-shadow:none;
  6546. -webkit-box-shadow:none;
  6547. box-shadow:none;
  6548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6549. font-weight:400;
  6550. font-style:normal;
  6551. font-size:16px;
  6552. }
  6553. #u18748 {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:145px;
  6557. top:210px;
  6558. width:65px;
  6559. height:22px;
  6560. display:flex;
  6561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. font-size:16px;
  6565. }
  6566. #u18748 .text {
  6567. position:absolute;
  6568. align-self:flex-start;
  6569. padding:0px 0px 0px 0px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u18748_text {
  6574. border-width:0px;
  6575. white-space:nowrap;
  6576. text-transform:none;
  6577. }
  6578. #u18749_div {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:65px;
  6584. height:22px;
  6585. background:inherit;
  6586. background-color:rgba(255, 255, 255, 0);
  6587. border:none;
  6588. border-radius:0px;
  6589. -moz-box-shadow:none;
  6590. -webkit-box-shadow:none;
  6591. box-shadow:none;
  6592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. font-size:16px;
  6596. }
  6597. #u18749 {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:146px;
  6601. top:252px;
  6602. width:65px;
  6603. height:22px;
  6604. display:flex;
  6605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6606. font-weight:400;
  6607. font-style:normal;
  6608. font-size:16px;
  6609. }
  6610. #u18749 .text {
  6611. position:absolute;
  6612. align-self:flex-start;
  6613. padding:0px 0px 0px 0px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u18749_text {
  6618. border-width:0px;
  6619. white-space:nowrap;
  6620. text-transform:none;
  6621. }
  6622. #u18750_div {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:575px;
  6628. height:20px;
  6629. background:inherit;
  6630. background-color:rgba(255, 255, 255, 0);
  6631. border:none;
  6632. border-left:0px;
  6633. border-top:0px;
  6634. border-right:0px;
  6635. border-radius:0px;
  6636. border-bottom-right-radius:0px;
  6637. border-bottom-left-radius:0px;
  6638. -moz-box-shadow:none;
  6639. -webkit-box-shadow:none;
  6640. box-shadow:none;
  6641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6642. font-weight:400;
  6643. font-style:normal;
  6644. font-size:14px;
  6645. color:#7F7F7F;
  6646. }
  6647. #u18750 {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:352px;
  6651. top:100px;
  6652. width:575px;
  6653. height:20px;
  6654. display:flex;
  6655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6656. font-weight:400;
  6657. font-style:normal;
  6658. font-size:14px;
  6659. color:#7F7F7F;
  6660. }
  6661. #u18750 .text {
  6662. position:absolute;
  6663. align-self:center;
  6664. padding:0px 0px 0px 0px;
  6665. box-sizing:border-box;
  6666. width:100%;
  6667. }
  6668. #u18750_text {
  6669. border-width:0px;
  6670. white-space:nowrap;
  6671. text-transform:none;
  6672. }
  6673. #u18751 {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:0px;
  6677. top:0px;
  6678. width:0px;
  6679. height:0px;
  6680. }
  6681. #u18752_div {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:80px;
  6687. height:100px;
  6688. background:inherit;
  6689. background-color:rgba(255, 255, 255, 1);
  6690. box-sizing:border-box;
  6691. border-width:1px;
  6692. border-style:solid;
  6693. border-color:rgba(242, 242, 242, 1);
  6694. border-radius:4px;
  6695. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6696. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6697. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6699. font-weight:400;
  6700. font-style:normal;
  6701. font-size:14px;
  6702. text-align:left;
  6703. }
  6704. #u18752 {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:1467px;
  6708. top:305px;
  6709. width:80px;
  6710. height:100px;
  6711. display:flex;
  6712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6713. font-weight:400;
  6714. font-style:normal;
  6715. font-size:14px;
  6716. text-align:left;
  6717. }
  6718. #u18752 .text {
  6719. position:absolute;
  6720. align-self:center;
  6721. padding:2px 2px 2px 2px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u18752_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. visibility:hidden;
  6730. }
  6731. #u18753_div {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:68px;
  6737. height:40px;
  6738. background:inherit;
  6739. background-color:rgba(255, 255, 255, 1);
  6740. box-sizing:border-box;
  6741. border-width:1px;
  6742. border-style:solid;
  6743. border-color:rgba(215, 215, 215, 1);
  6744. border-left:0px;
  6745. border-top:0px;
  6746. border-right:0px;
  6747. border-radius:0px;
  6748. border-bottom-right-radius:0px;
  6749. border-bottom-left-radius:0px;
  6750. -moz-box-shadow:none;
  6751. -webkit-box-shadow:none;
  6752. box-shadow:none;
  6753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. font-size:14px;
  6757. }
  6758. #u18753 {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:1473px;
  6762. top:315px;
  6763. width:68px;
  6764. height:40px;
  6765. display:flex;
  6766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6767. font-weight:400;
  6768. font-style:normal;
  6769. font-size:14px;
  6770. }
  6771. #u18753 .text {
  6772. position:absolute;
  6773. align-self:center;
  6774. padding:2px 2px 2px 2px;
  6775. box-sizing:border-box;
  6776. width:100%;
  6777. }
  6778. #u18753_text {
  6779. border-width:0px;
  6780. word-wrap:break-word;
  6781. text-transform:none;
  6782. }
  6783. #u18754_div {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:68px;
  6789. height:40px;
  6790. background:inherit;
  6791. background-color:rgba(255, 255, 255, 1);
  6792. border:none;
  6793. border-left:0px;
  6794. border-top:0px;
  6795. border-right:0px;
  6796. border-radius:0px;
  6797. border-bottom-right-radius:0px;
  6798. border-bottom-left-radius:0px;
  6799. -moz-box-shadow:none;
  6800. -webkit-box-shadow:none;
  6801. box-shadow:none;
  6802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6803. font-weight:400;
  6804. font-style:normal;
  6805. font-size:14px;
  6806. }
  6807. #u18754 {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:1473px;
  6811. top:355px;
  6812. width:68px;
  6813. height:40px;
  6814. display:flex;
  6815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:14px;
  6819. }
  6820. #u18754 .text {
  6821. position:absolute;
  6822. align-self:center;
  6823. padding:2px 2px 2px 2px;
  6824. box-sizing:border-box;
  6825. width:100%;
  6826. }
  6827. #u18754_text {
  6828. border-width:0px;
  6829. word-wrap:break-word;
  6830. text-transform:none;
  6831. }
  6832. #u18755_div {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:55px;
  6838. height:30px;
  6839. background:inherit;
  6840. background-color:rgba(255, 255, 255, 1);
  6841. box-sizing:border-box;
  6842. border-width:1px;
  6843. border-style:solid;
  6844. border-color:rgba(170, 170, 170, 1);
  6845. border-radius:4px;
  6846. -moz-box-shadow:none;
  6847. -webkit-box-shadow:none;
  6848. box-shadow:none;
  6849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:12px;
  6853. color:#555555;
  6854. }
  6855. #u18755 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:419px;
  6859. top:190px;
  6860. width:55px;
  6861. height:30px;
  6862. display:flex;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:12px;
  6867. color:#555555;
  6868. }
  6869. #u18755 .text {
  6870. position:absolute;
  6871. align-self:center;
  6872. padding:5px 15px 5px 15px;
  6873. box-sizing:border-box;
  6874. width:100%;
  6875. }
  6876. #u18755_text {
  6877. border-width:0px;
  6878. white-space:nowrap;
  6879. text-transform:none;
  6880. }
  6881. #u18756_div {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:0px;
  6885. top:0px;
  6886. width:59px;
  6887. height:30px;
  6888. background:inherit;
  6889. background-color:rgba(255, 255, 255, 1);
  6890. box-sizing:border-box;
  6891. border-width:1px;
  6892. border-style:solid;
  6893. border-color:rgba(170, 170, 170, 1);
  6894. border-radius:4px;
  6895. -moz-box-shadow:none;
  6896. -webkit-box-shadow:none;
  6897. box-shadow:none;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:14px;
  6902. color:#555555;
  6903. }
  6904. #u18756 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:350px;
  6908. top:190px;
  6909. width:59px;
  6910. height:30px;
  6911. display:flex;
  6912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:14px;
  6916. color:#555555;
  6917. }
  6918. #u18756 .text {
  6919. position:absolute;
  6920. align-self:center;
  6921. padding:5px 15px 5px 15px;
  6922. box-sizing:border-box;
  6923. width:100%;
  6924. }
  6925. #u18756_text {
  6926. border-width:0px;
  6927. white-space:nowrap;
  6928. text-transform:none;
  6929. }
  6930. #u18757 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:0px;
  6936. height:0px;
  6937. }
  6938. #u18758 {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:0px;
  6942. top:0px;
  6943. width:0px;
  6944. height:0px;
  6945. }
  6946. #u18759_div {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:380px;
  6952. height:140px;
  6953. background:inherit;
  6954. background-color:rgba(255, 255, 255, 1);
  6955. box-sizing:border-box;
  6956. border-width:1px;
  6957. border-style:solid;
  6958. border-color:rgba(204, 204, 204, 1);
  6959. border-radius:4px;
  6960. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6961. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6962. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6963. font-family:'Microsoft YaHei', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. }
  6967. #u18759 {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:1643px;
  6971. top:231px;
  6972. width:380px;
  6973. height:140px;
  6974. display:flex;
  6975. font-family:'Microsoft YaHei', sans-serif;
  6976. font-weight:400;
  6977. font-style:normal;
  6978. }
  6979. #u18759 .text {
  6980. position:absolute;
  6981. align-self:center;
  6982. padding:2px 2px 2px 2px;
  6983. box-sizing:border-box;
  6984. width:100%;
  6985. }
  6986. #u18759_text {
  6987. border-width:0px;
  6988. word-wrap:break-word;
  6989. text-transform:none;
  6990. visibility:hidden;
  6991. }
  6992. #u18760_div {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:0px;
  6996. top:0px;
  6997. width:299px;
  6998. height:22px;
  6999. background:inherit;
  7000. background-color:rgba(255, 255, 255, 0);
  7001. border:none;
  7002. border-radius:0px;
  7003. -moz-box-shadow:none;
  7004. -webkit-box-shadow:none;
  7005. box-shadow:none;
  7006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7007. font-weight:400;
  7008. font-style:normal;
  7009. font-size:14px;
  7010. color:#666666;
  7011. line-height:22px;
  7012. }
  7013. #u18760 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:1703px;
  7017. top:286px;
  7018. width:299px;
  7019. height:22px;
  7020. display:flex;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. font-size:14px;
  7025. color:#666666;
  7026. line-height:22px;
  7027. }
  7028. #u18760 .text {
  7029. position:absolute;
  7030. align-self:flex-start;
  7031. padding:0px 0px 0px 0px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u18760_text {
  7036. border-width:0px;
  7037. word-wrap:break-word;
  7038. text-transform:none;
  7039. }
  7040. #u18761_div {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:127px;
  7046. height:21px;
  7047. background:inherit;
  7048. background-color:rgba(255, 255, 255, 0);
  7049. border:none;
  7050. border-radius:0px;
  7051. -moz-box-shadow:none;
  7052. -webkit-box-shadow:none;
  7053. box-shadow:none;
  7054. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7055. font-weight:650;
  7056. font-style:normal;
  7057. font-size:18px;
  7058. color:#000000;
  7059. line-height:22px;
  7060. }
  7061. #u18761 {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:1703px;
  7065. top:256px;
  7066. width:127px;
  7067. height:21px;
  7068. display:flex;
  7069. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7070. font-weight:650;
  7071. font-style:normal;
  7072. font-size:18px;
  7073. color:#000000;
  7074. line-height:22px;
  7075. }
  7076. #u18761 .text {
  7077. position:absolute;
  7078. align-self:flex-start;
  7079. padding:0px 0px 0px 0px;
  7080. box-sizing:border-box;
  7081. width:100%;
  7082. }
  7083. #u18761_text {
  7084. border-width:0px;
  7085. white-space:nowrap;
  7086. text-transform:none;
  7087. }
  7088. #u18762_div {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:0px;
  7092. top:0px;
  7093. width:61px;
  7094. height:30px;
  7095. background:inherit;
  7096. background-color:rgba(24, 144, 255, 1);
  7097. border:none;
  7098. border-radius:4px;
  7099. -moz-box-shadow:none;
  7100. -webkit-box-shadow:none;
  7101. box-shadow:none;
  7102. font-family:'Microsoft YaHei', sans-serif;
  7103. font-weight:400;
  7104. font-style:normal;
  7105. font-size:14px;
  7106. color:#FFFFFF;
  7107. }
  7108. #u18762 {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:1945px;
  7112. top:326px;
  7113. width:61px;
  7114. height:30px;
  7115. display:flex;
  7116. font-family:'Microsoft YaHei', sans-serif;
  7117. font-weight:400;
  7118. font-style:normal;
  7119. font-size:14px;
  7120. color:#FFFFFF;
  7121. }
  7122. #u18762 .text {
  7123. position:absolute;
  7124. align-self:center;
  7125. padding:2px 16px 2px 16px;
  7126. box-sizing:border-box;
  7127. width:100%;
  7128. }
  7129. #u18762_text {
  7130. border-width:0px;
  7131. white-space:nowrap;
  7132. text-transform:none;
  7133. }
  7134. #u18763_div {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:0px;
  7138. top:0px;
  7139. width:66px;
  7140. height:30px;
  7141. background:inherit;
  7142. background-color:rgba(255, 255, 255, 1);
  7143. box-sizing:border-box;
  7144. border-width:1px;
  7145. border-style:solid;
  7146. border-color:rgba(217, 217, 217, 1);
  7147. border-radius:4px;
  7148. -moz-box-shadow:none;
  7149. -webkit-box-shadow:none;
  7150. box-shadow:none;
  7151. font-family:'Microsoft YaHei', sans-serif;
  7152. font-weight:400;
  7153. font-style:normal;
  7154. font-size:14px;
  7155. color:rgba(0, 0, 0, 0.647058823529412);
  7156. line-height:21px;
  7157. }
  7158. #u18763 {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:1863px;
  7162. top:326px;
  7163. width:66px;
  7164. height:30px;
  7165. display:flex;
  7166. font-family:'Microsoft YaHei', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. font-size:14px;
  7170. color:rgba(0, 0, 0, 0.647058823529412);
  7171. line-height:21px;
  7172. }
  7173. #u18763 .text {
  7174. position:absolute;
  7175. align-self:center;
  7176. padding:2px 16px 2px 16px;
  7177. box-sizing:border-box;
  7178. width:100%;
  7179. }
  7180. #u18763_text {
  7181. border-width:0px;
  7182. white-space:nowrap;
  7183. text-transform:none;
  7184. }
  7185. #u18764_img {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:0px;
  7189. top:0px;
  7190. width:20px;
  7191. height:20px;
  7192. }
  7193. #u18764 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:1672px;
  7197. top:260px;
  7198. width:20px;
  7199. height:20px;
  7200. display:flex;
  7201. }
  7202. #u18764 .text {
  7203. position:absolute;
  7204. align-self:center;
  7205. padding:2px 2px 2px 2px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u18764_text {
  7210. border-width:0px;
  7211. word-wrap:break-word;
  7212. text-transform:none;
  7213. visibility:hidden;
  7214. }
  7215. #u18765 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:0px;
  7221. height:0px;
  7222. }
  7223. #u18766_div {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:0px;
  7227. top:0px;
  7228. width:380px;
  7229. height:140px;
  7230. background:inherit;
  7231. background-color:rgba(255, 255, 255, 1);
  7232. box-sizing:border-box;
  7233. border-width:1px;
  7234. border-style:solid;
  7235. border-color:rgba(204, 204, 204, 1);
  7236. border-radius:4px;
  7237. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7238. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7239. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7240. font-family:'Microsoft YaHei', sans-serif;
  7241. font-weight:400;
  7242. font-style:normal;
  7243. }
  7244. #u18766 {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:1643px;
  7248. top:385px;
  7249. width:380px;
  7250. height:140px;
  7251. display:flex;
  7252. font-family:'Microsoft YaHei', sans-serif;
  7253. font-weight:400;
  7254. font-style:normal;
  7255. }
  7256. #u18766 .text {
  7257. position:absolute;
  7258. align-self:center;
  7259. padding:2px 2px 2px 2px;
  7260. box-sizing:border-box;
  7261. width:100%;
  7262. }
  7263. #u18766_text {
  7264. border-width:0px;
  7265. word-wrap:break-word;
  7266. text-transform:none;
  7267. visibility:hidden;
  7268. }
  7269. #u18767_div {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:288px;
  7275. height:22px;
  7276. background:inherit;
  7277. background-color:rgba(255, 255, 255, 0);
  7278. border:none;
  7279. border-radius:0px;
  7280. -moz-box-shadow:none;
  7281. -webkit-box-shadow:none;
  7282. box-shadow:none;
  7283. font-size:14px;
  7284. color:#666666;
  7285. line-height:22px;
  7286. }
  7287. #u18767 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:1703px;
  7291. top:440px;
  7292. width:288px;
  7293. height:22px;
  7294. display:flex;
  7295. font-size:14px;
  7296. color:#666666;
  7297. line-height:22px;
  7298. }
  7299. #u18767 .text {
  7300. position:absolute;
  7301. align-self:flex-start;
  7302. padding:0px 0px 0px 0px;
  7303. box-sizing:border-box;
  7304. width:100%;
  7305. }
  7306. #u18767_text {
  7307. border-width:0px;
  7308. word-wrap:break-word;
  7309. text-transform:none;
  7310. }
  7311. #u18768_div {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:91px;
  7317. height:21px;
  7318. background:inherit;
  7319. background-color:rgba(255, 255, 255, 0);
  7320. border:none;
  7321. border-radius:0px;
  7322. -moz-box-shadow:none;
  7323. -webkit-box-shadow:none;
  7324. box-shadow:none;
  7325. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7326. font-weight:650;
  7327. font-style:normal;
  7328. font-size:18px;
  7329. color:#000000;
  7330. line-height:22px;
  7331. }
  7332. #u18768 {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:1703px;
  7336. top:410px;
  7337. width:91px;
  7338. height:21px;
  7339. display:flex;
  7340. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7341. font-weight:650;
  7342. font-style:normal;
  7343. font-size:18px;
  7344. color:#000000;
  7345. line-height:22px;
  7346. }
  7347. #u18768 .text {
  7348. position:absolute;
  7349. align-self:flex-start;
  7350. padding:0px 0px 0px 0px;
  7351. box-sizing:border-box;
  7352. width:100%;
  7353. }
  7354. #u18768_text {
  7355. border-width:0px;
  7356. white-space:nowrap;
  7357. text-transform:none;
  7358. }
  7359. #u18769_div {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:0px;
  7363. top:0px;
  7364. width:61px;
  7365. height:30px;
  7366. background:inherit;
  7367. background-color:rgba(24, 144, 255, 1);
  7368. border:none;
  7369. border-radius:4px;
  7370. -moz-box-shadow:none;
  7371. -webkit-box-shadow:none;
  7372. box-shadow:none;
  7373. font-family:'Microsoft YaHei', sans-serif;
  7374. font-weight:400;
  7375. font-style:normal;
  7376. font-size:14px;
  7377. color:#FFFFFF;
  7378. }
  7379. #u18769 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:1942px;
  7383. top:480px;
  7384. width:61px;
  7385. height:30px;
  7386. display:flex;
  7387. font-family:'Microsoft YaHei', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:14px;
  7391. color:#FFFFFF;
  7392. }
  7393. #u18769 .text {
  7394. position:absolute;
  7395. align-self:center;
  7396. padding:2px 16px 2px 16px;
  7397. box-sizing:border-box;
  7398. width:100%;
  7399. }
  7400. #u18769_text {
  7401. border-width:0px;
  7402. white-space:nowrap;
  7403. text-transform:none;
  7404. }
  7405. #u18770_div {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:0px;
  7409. top:0px;
  7410. width:66px;
  7411. height:30px;
  7412. background:inherit;
  7413. background-color:rgba(255, 255, 255, 1);
  7414. box-sizing:border-box;
  7415. border-width:1px;
  7416. border-style:solid;
  7417. border-color:rgba(217, 217, 217, 1);
  7418. border-radius:4px;
  7419. -moz-box-shadow:none;
  7420. -webkit-box-shadow:none;
  7421. box-shadow:none;
  7422. font-family:'Microsoft YaHei', sans-serif;
  7423. font-weight:400;
  7424. font-style:normal;
  7425. font-size:14px;
  7426. color:rgba(0, 0, 0, 0.647058823529412);
  7427. line-height:21px;
  7428. }
  7429. #u18770 {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:1863px;
  7433. top:480px;
  7434. width:66px;
  7435. height:30px;
  7436. display:flex;
  7437. font-family:'Microsoft YaHei', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:14px;
  7441. color:rgba(0, 0, 0, 0.647058823529412);
  7442. line-height:21px;
  7443. }
  7444. #u18770 .text {
  7445. position:absolute;
  7446. align-self:center;
  7447. padding:2px 16px 2px 16px;
  7448. box-sizing:border-box;
  7449. width:100%;
  7450. }
  7451. #u18770_text {
  7452. border-width:0px;
  7453. white-space:nowrap;
  7454. text-transform:none;
  7455. }
  7456. #u18771_img {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:20px;
  7462. height:20px;
  7463. }
  7464. #u18771 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:1672px;
  7468. top:412px;
  7469. width:20px;
  7470. height:20px;
  7471. display:flex;
  7472. }
  7473. #u18771 .text {
  7474. position:absolute;
  7475. align-self:center;
  7476. padding:2px 2px 2px 2px;
  7477. box-sizing:border-box;
  7478. width:100%;
  7479. }
  7480. #u18771_text {
  7481. border-width:0px;
  7482. word-wrap:break-word;
  7483. text-transform:none;
  7484. visibility:hidden;
  7485. }
  7486. #u18772 {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:0px;
  7492. height:0px;
  7493. }
  7494. #u18773_div {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:0px;
  7498. top:0px;
  7499. width:140px;
  7500. height:30px;
  7501. background:inherit;
  7502. background-color:rgba(255, 255, 255, 1);
  7503. box-sizing:border-box;
  7504. border-width:1px;
  7505. border-style:solid;
  7506. border-color:rgba(201, 201, 201, 1);
  7507. border-radius:4px;
  7508. -moz-box-shadow:none;
  7509. -webkit-box-shadow:none;
  7510. box-shadow:none;
  7511. font-family:'Microsoft YaHei', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:14px;
  7515. color:#CCCCCC;
  7516. text-align:left;
  7517. }
  7518. #u18773 {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:950px;
  7522. top:140px;
  7523. width:140px;
  7524. height:30px;
  7525. display:flex;
  7526. font-family:'Microsoft YaHei', sans-serif;
  7527. font-weight:400;
  7528. font-style:normal;
  7529. font-size:14px;
  7530. color:#CCCCCC;
  7531. text-align:left;
  7532. }
  7533. #u18773 .text {
  7534. position:absolute;
  7535. align-self:center;
  7536. padding:2px 8px 2px 8px;
  7537. box-sizing:border-box;
  7538. width:100%;
  7539. }
  7540. #u18773_text {
  7541. border-width:0px;
  7542. word-wrap:break-word;
  7543. text-transform:none;
  7544. visibility:hidden;
  7545. }
  7546. #u18774_input {
  7547. position:absolute;
  7548. left:0px;
  7549. top:0px;
  7550. width:127px;
  7551. height:25px;
  7552. padding:2px 2px 2px 2px;
  7553. font-family:'Microsoft YaHei', sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. font-size:10px;
  7557. letter-spacing:normal;
  7558. color:#000000;
  7559. vertical-align:none;
  7560. text-align:left;
  7561. text-transform:none;
  7562. background-color:transparent;
  7563. border-color:transparent;
  7564. }
  7565. #u18774_input.disabled {
  7566. position:absolute;
  7567. left:0px;
  7568. top:0px;
  7569. width:127px;
  7570. height:25px;
  7571. padding:2px 2px 2px 2px;
  7572. font-family:'Microsoft YaHei', sans-serif;
  7573. font-weight:400;
  7574. font-style:normal;
  7575. font-size:10px;
  7576. letter-spacing:normal;
  7577. color:#000000;
  7578. vertical-align:none;
  7579. text-align:left;
  7580. text-transform:none;
  7581. background-color:transparent;
  7582. border-color:transparent;
  7583. }
  7584. #u18774_div {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:0px;
  7588. top:0px;
  7589. width:127px;
  7590. height:25px;
  7591. background:inherit;
  7592. background-color:rgba(255, 255, 255, 1);
  7593. border:none;
  7594. border-radius:0px;
  7595. -moz-box-shadow:none;
  7596. -webkit-box-shadow:none;
  7597. box-shadow:none;
  7598. font-family:'Microsoft YaHei', sans-serif;
  7599. font-weight:400;
  7600. font-style:normal;
  7601. font-size:10px;
  7602. }
  7603. #u18774 {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:958px;
  7607. top:141px;
  7608. width:127px;
  7609. height:25px;
  7610. display:flex;
  7611. font-family:'Microsoft YaHei', sans-serif;
  7612. font-weight:400;
  7613. font-style:normal;
  7614. font-size:10px;
  7615. }
  7616. #u18774 .text {
  7617. position:absolute;
  7618. align-self:center;
  7619. padding:2px 2px 2px 2px;
  7620. box-sizing:border-box;
  7621. width:100%;
  7622. }
  7623. #u18774_div.disabled {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:0px;
  7627. top:0px;
  7628. width:127px;
  7629. height:25px;
  7630. background:inherit;
  7631. background-color:rgba(240, 240, 240, 1);
  7632. border:none;
  7633. border-radius:0px;
  7634. -moz-box-shadow:none;
  7635. -webkit-box-shadow:none;
  7636. box-shadow:none;
  7637. font-family:'Microsoft YaHei', sans-serif;
  7638. font-weight:400;
  7639. font-style:normal;
  7640. font-size:10px;
  7641. }
  7642. #u18774.disabled {
  7643. }
  7644. #u18775 {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:0px;
  7650. height:0px;
  7651. }
  7652. #u18776_div {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:140px;
  7658. height:30px;
  7659. background:inherit;
  7660. background-color:rgba(255, 255, 255, 1);
  7661. box-sizing:border-box;
  7662. border-width:1px;
  7663. border-style:solid;
  7664. border-color:rgba(215, 215, 215, 1);
  7665. border-radius:4px;
  7666. -moz-box-shadow:none;
  7667. -webkit-box-shadow:none;
  7668. box-shadow:none;
  7669. font-size:14px;
  7670. }
  7671. #u18776 {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:1250px;
  7675. top:140px;
  7676. width:140px;
  7677. height:30px;
  7678. display:flex;
  7679. font-size:14px;
  7680. }
  7681. #u18776 .text {
  7682. position:absolute;
  7683. align-self:center;
  7684. padding:2px 2px 2px 2px;
  7685. box-sizing:border-box;
  7686. width:100%;
  7687. }
  7688. #u18776_text {
  7689. border-width:0px;
  7690. word-wrap:break-word;
  7691. text-transform:none;
  7692. visibility:hidden;
  7693. }
  7694. #u18777_input {
  7695. position:absolute;
  7696. left:0px;
  7697. top:0px;
  7698. width:134px;
  7699. height:23px;
  7700. padding:2px 2px 2px 2px;
  7701. font-family:'ArialMT', 'Arial', sans-serif;
  7702. font-weight:400;
  7703. font-style:normal;
  7704. font-size:14px;
  7705. letter-spacing:normal;
  7706. color:#AAAAAA;
  7707. vertical-align:none;
  7708. text-align:left;
  7709. text-transform:none;
  7710. background-color:transparent;
  7711. border-color:transparent;
  7712. }
  7713. #u18777_input.disabled {
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:134px;
  7718. height:23px;
  7719. padding:2px 2px 2px 2px;
  7720. font-family:'ArialMT', 'Arial', sans-serif;
  7721. font-weight:400;
  7722. font-style:normal;
  7723. font-size:14px;
  7724. letter-spacing:normal;
  7725. color:#AAAAAA;
  7726. vertical-align:none;
  7727. text-align:left;
  7728. text-transform:none;
  7729. background-color:transparent;
  7730. border-color:transparent;
  7731. }
  7732. #u18777_div {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:0px;
  7736. top:0px;
  7737. width:134px;
  7738. height:23px;
  7739. background:inherit;
  7740. background-color:rgba(255, 255, 255, 1);
  7741. border:none;
  7742. border-radius:0px;
  7743. -moz-box-shadow:none;
  7744. -webkit-box-shadow:none;
  7745. box-shadow:none;
  7746. font-size:14px;
  7747. color:#AAAAAA;
  7748. }
  7749. #u18777 {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:1254px;
  7753. top:142px;
  7754. width:134px;
  7755. height:23px;
  7756. display:flex;
  7757. font-size:14px;
  7758. color:#AAAAAA;
  7759. }
  7760. #u18777 .text {
  7761. position:absolute;
  7762. align-self:flex-start;
  7763. padding:2px 2px 2px 2px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u18777_div.disabled {
  7768. border-width:0px;
  7769. position:absolute;
  7770. left:0px;
  7771. top:0px;
  7772. width:134px;
  7773. height:23px;
  7774. background:inherit;
  7775. background-color:rgba(240, 240, 240, 1);
  7776. border:none;
  7777. border-radius:0px;
  7778. -moz-box-shadow:none;
  7779. -webkit-box-shadow:none;
  7780. box-shadow:none;
  7781. font-size:14px;
  7782. color:#AAAAAA;
  7783. }
  7784. #u18777.disabled {
  7785. }
  7786. .u18777_input_option {
  7787. font-size:14px;
  7788. }