styles.css 125 KB

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