styles.css 136 KB

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