styles.css 136 KB

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