styles.css 132 KB

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