styles.css 243 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-143px;
  6. width:4185px;
  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. #u31725 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u31726_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1201px;
  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(215, 215, 215, 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. #u31726 {
  53. border-width:0px;
  54. position:absolute;
  55. left:3328px;
  56. top:119px;
  57. width:1000px;
  58. height:1201px;
  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. #u31726 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u31726_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u31727_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. #u31727 {
  106. border-width:0px;
  107. position:absolute;
  108. left:3348px;
  109. top:137px;
  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. #u31727 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u31727_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u31728 {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:0px;
  136. height:0px;
  137. }
  138. #u31729_div {
  139. border-width:0px;
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:40px;
  144. height:40px;
  145. background:inherit;
  146. background-color:rgba(255, 255, 255, 0);
  147. border:none;
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  158. font-weight:500;
  159. font-style:normal;
  160. font-size:14px;
  161. text-align:center;
  162. }
  163. #u31729 {
  164. border-width:0px;
  165. position:absolute;
  166. left:4288px;
  167. top:119px;
  168. width:40px;
  169. height:40px;
  170. display:flex;
  171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  172. font-weight:500;
  173. font-style:normal;
  174. font-size:14px;
  175. text-align:center;
  176. }
  177. #u31729 .text {
  178. position:absolute;
  179. align-self:center;
  180. padding:5px 10px 5px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u31729_text {
  185. border-width:0px;
  186. word-wrap:break-word;
  187. text-transform:none;
  188. }
  189. #u31730_img {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:13px;
  195. height:13px;
  196. }
  197. #u31730 {
  198. border-width:0px;
  199. position:absolute;
  200. left:4276px;
  201. top:135px;
  202. width:13px;
  203. height:13px;
  204. display:flex;
  205. font-size:14px;
  206. }
  207. #u31730 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u31730_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u31731_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:83px;
  226. height:35px;
  227. background:inherit;
  228. background-color:rgba(255, 255, 255, 0);
  229. border:none;
  230. border-top:0px;
  231. border-right:0px;
  232. border-bottom:0px;
  233. border-radius:0px;
  234. border-top-left-radius:0px;
  235. border-bottom-left-radius:0px;
  236. -moz-box-shadow:none;
  237. -webkit-box-shadow:none;
  238. box-shadow:none;
  239. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  240. font-weight:500;
  241. font-style:normal;
  242. font-size:18px;
  243. }
  244. #u31731 {
  245. border-width:0px;
  246. position:absolute;
  247. left:3361px;
  248. top:189px;
  249. width:83px;
  250. height:35px;
  251. display:flex;
  252. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  253. font-weight:500;
  254. font-style:normal;
  255. font-size:18px;
  256. }
  257. #u31731 .text {
  258. position:absolute;
  259. align-self:center;
  260. padding:5px 10px 5px 0px;
  261. box-sizing:border-box;
  262. width:100%;
  263. }
  264. #u31731_text {
  265. border-width:0px;
  266. white-space:nowrap;
  267. text-transform:none;
  268. }
  269. #u31732 {
  270. border-width:0px;
  271. position:absolute;
  272. left:0px;
  273. top:0px;
  274. width:0px;
  275. height:0px;
  276. }
  277. #u31733_div {
  278. border-width:0px;
  279. position:absolute;
  280. left:0px;
  281. top:0px;
  282. width:200px;
  283. height:30px;
  284. background:inherit;
  285. background-color:rgba(255, 255, 255, 1);
  286. box-sizing:border-box;
  287. border-width:1px;
  288. border-style:solid;
  289. border-color:rgba(215, 215, 215, 1);
  290. border-radius:4px;
  291. -moz-box-shadow:none;
  292. -webkit-box-shadow:none;
  293. box-shadow:none;
  294. font-size:12px;
  295. }
  296. #u31733 {
  297. border-width:0px;
  298. position:absolute;
  299. left:3457px;
  300. top:244px;
  301. width:200px;
  302. height:30px;
  303. display:flex;
  304. font-size:12px;
  305. }
  306. #u31733 .text {
  307. position:absolute;
  308. align-self:center;
  309. padding:2px 2px 2px 2px;
  310. box-sizing:border-box;
  311. width:100%;
  312. }
  313. #u31733_text {
  314. border-width:0px;
  315. word-wrap:break-word;
  316. text-transform:none;
  317. visibility:hidden;
  318. }
  319. #u31734_input {
  320. position:absolute;
  321. left:0px;
  322. top:0px;
  323. width:191px;
  324. height:23px;
  325. padding:2px 2px 2px 2px;
  326. font-family:'ArialMT', 'Arial', sans-serif;
  327. font-weight:400;
  328. font-style:normal;
  329. font-size:12px;
  330. letter-spacing:normal;
  331. color:#AAAAAA;
  332. vertical-align:none;
  333. text-align:left;
  334. text-transform:none;
  335. background-color:transparent;
  336. border-color:transparent;
  337. }
  338. #u31734_input.disabled {
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:191px;
  343. height:23px;
  344. padding:2px 2px 2px 2px;
  345. font-family:'ArialMT', 'Arial', sans-serif;
  346. font-weight:400;
  347. font-style:normal;
  348. font-size:12px;
  349. letter-spacing:normal;
  350. color:#AAAAAA;
  351. vertical-align:none;
  352. text-align:left;
  353. text-transform:none;
  354. background-color:transparent;
  355. border-color:transparent;
  356. }
  357. #u31734_div {
  358. border-width:0px;
  359. position:absolute;
  360. left:0px;
  361. top:0px;
  362. width:191px;
  363. height:23px;
  364. background:inherit;
  365. background-color:rgba(255, 255, 255, 1);
  366. border:none;
  367. border-radius:0px;
  368. -moz-box-shadow:none;
  369. -webkit-box-shadow:none;
  370. box-shadow:none;
  371. font-size:12px;
  372. color:#AAAAAA;
  373. }
  374. #u31734 {
  375. border-width:0px;
  376. position:absolute;
  377. left:3460px;
  378. top:246px;
  379. width:191px;
  380. height:23px;
  381. display:flex;
  382. font-size:12px;
  383. color:#AAAAAA;
  384. }
  385. #u31734 .text {
  386. position:absolute;
  387. align-self:flex-start;
  388. padding:2px 2px 2px 2px;
  389. box-sizing:border-box;
  390. width:100%;
  391. }
  392. #u31734_div.disabled {
  393. border-width:0px;
  394. position:absolute;
  395. left:0px;
  396. top:0px;
  397. width:191px;
  398. height:23px;
  399. background:inherit;
  400. background-color:rgba(240, 240, 240, 1);
  401. border:none;
  402. border-radius:0px;
  403. -moz-box-shadow:none;
  404. -webkit-box-shadow:none;
  405. box-shadow:none;
  406. font-size:12px;
  407. color:#AAAAAA;
  408. }
  409. #u31734.disabled {
  410. }
  411. .u31734_input_option {
  412. font-size:12px;
  413. }
  414. #u31735_div {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:100px;
  420. height:30px;
  421. background:inherit;
  422. background-color:rgba(255, 255, 255, 0);
  423. border:none;
  424. border-top:0px;
  425. border-right:0px;
  426. border-bottom:0px;
  427. border-radius:0px;
  428. border-top-left-radius:0px;
  429. border-bottom-left-radius:0px;
  430. -moz-box-shadow:none;
  431. -webkit-box-shadow:none;
  432. box-shadow:none;
  433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  434. font-weight:400;
  435. font-style:normal;
  436. font-size:14px;
  437. color:#7F7F7F;
  438. }
  439. #u31735 {
  440. border-width:0px;
  441. position:absolute;
  442. left:3361px;
  443. top:244px;
  444. width:100px;
  445. height:30px;
  446. display:flex;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:14px;
  451. color:#7F7F7F;
  452. }
  453. #u31735 .text {
  454. position:absolute;
  455. align-self:center;
  456. padding:5px 10px 5px 0px;
  457. box-sizing:border-box;
  458. width:100%;
  459. }
  460. #u31735_text {
  461. border-width:0px;
  462. word-wrap:break-word;
  463. text-transform:none;
  464. }
  465. #u31736 {
  466. border-width:0px;
  467. position:absolute;
  468. left:0px;
  469. top:0px;
  470. width:0px;
  471. height:0px;
  472. }
  473. #u31737_div {
  474. border-width:0px;
  475. position:absolute;
  476. left:0px;
  477. top:0px;
  478. width:1000px;
  479. height:60px;
  480. background:inherit;
  481. background-color:rgba(255, 255, 255, 1);
  482. box-sizing:border-box;
  483. border-width:1px;
  484. border-style:solid;
  485. border-color:rgba(215, 215, 215, 1);
  486. border-radius:0px;
  487. -moz-box-shadow:none;
  488. -webkit-box-shadow:none;
  489. box-shadow:none;
  490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  491. font-weight:400;
  492. font-style:normal;
  493. font-size:14px;
  494. color:#AAAAAA;
  495. text-align:center;
  496. line-height:30px;
  497. }
  498. #u31737 {
  499. border-width:0px;
  500. position:absolute;
  501. left:3328px;
  502. top:1260px;
  503. width:1000px;
  504. height:60px;
  505. display:flex;
  506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  507. font-weight:400;
  508. font-style:normal;
  509. font-size:14px;
  510. color:#AAAAAA;
  511. text-align:center;
  512. line-height:30px;
  513. }
  514. #u31737 .text {
  515. position:absolute;
  516. align-self:center;
  517. padding:5px 10px 5px 10px;
  518. box-sizing:border-box;
  519. width:100%;
  520. }
  521. #u31737_text {
  522. border-width:0px;
  523. word-wrap:break-word;
  524. text-transform:none;
  525. visibility:hidden;
  526. }
  527. #u31738_div {
  528. border-width:0px;
  529. position:absolute;
  530. left:0px;
  531. top:0px;
  532. width:80px;
  533. height:30px;
  534. background:inherit;
  535. background-color:rgba(255, 255, 255, 1);
  536. box-sizing:border-box;
  537. border-width:1px;
  538. border-style:solid;
  539. border-color:rgba(170, 170, 170, 1);
  540. border-radius:4px;
  541. -moz-box-shadow:none;
  542. -webkit-box-shadow:none;
  543. box-shadow:none;
  544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  545. font-weight:400;
  546. font-style:normal;
  547. font-size:14px;
  548. }
  549. #u31738 {
  550. border-width:0px;
  551. position:absolute;
  552. left:4108px;
  553. top:1275px;
  554. width:80px;
  555. height:30px;
  556. display:flex;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:14px;
  561. }
  562. #u31738 .text {
  563. position:absolute;
  564. align-self:center;
  565. padding:2px 2px 2px 2px;
  566. box-sizing:border-box;
  567. width:100%;
  568. }
  569. #u31738_text {
  570. border-width:0px;
  571. word-wrap:break-word;
  572. text-transform:none;
  573. }
  574. #u31739_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:100px;
  580. height:30px;
  581. background:inherit;
  582. background-color:rgba(24, 144, 255, 1);
  583. border:none;
  584. border-radius:4px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:14px;
  592. color:#FFFFFF;
  593. }
  594. #u31739 {
  595. border-width:0px;
  596. position:absolute;
  597. left:4198px;
  598. top:1275px;
  599. width:100px;
  600. height:30px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:14px;
  606. color:#FFFFFF;
  607. }
  608. #u31739 .text {
  609. position:absolute;
  610. align-self:center;
  611. padding:2px 2px 2px 2px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u31739_text {
  616. border-width:0px;
  617. word-wrap:break-word;
  618. text-transform:none;
  619. }
  620. #u31740 {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:0px;
  626. height:0px;
  627. }
  628. #u31741_div {
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:200px;
  634. height:30px;
  635. background:inherit;
  636. background-color:rgba(255, 255, 255, 1);
  637. box-sizing:border-box;
  638. border-width:1px;
  639. border-style:solid;
  640. border-color:rgba(215, 215, 215, 1);
  641. border-radius:4px;
  642. -moz-box-shadow:none;
  643. -webkit-box-shadow:none;
  644. box-shadow:none;
  645. font-size:12px;
  646. }
  647. #u31741 {
  648. border-width:0px;
  649. position:absolute;
  650. left:3773px;
  651. top:244px;
  652. width:200px;
  653. height:30px;
  654. display:flex;
  655. font-size:12px;
  656. }
  657. #u31741 .text {
  658. position:absolute;
  659. align-self:center;
  660. padding:2px 2px 2px 2px;
  661. box-sizing:border-box;
  662. width:100%;
  663. }
  664. #u31741_text {
  665. border-width:0px;
  666. word-wrap:break-word;
  667. text-transform:none;
  668. visibility:hidden;
  669. }
  670. #u31742_input {
  671. position:absolute;
  672. left:0px;
  673. top:0px;
  674. width:191px;
  675. height:23px;
  676. padding:2px 2px 2px 2px;
  677. font-family:'ArialMT', 'Arial', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. letter-spacing:normal;
  682. color:#AAAAAA;
  683. vertical-align:none;
  684. text-align:left;
  685. text-transform:none;
  686. background-color:transparent;
  687. border-color:transparent;
  688. }
  689. #u31742_input.disabled {
  690. position:absolute;
  691. left:0px;
  692. top:0px;
  693. width:191px;
  694. height:23px;
  695. padding:2px 2px 2px 2px;
  696. font-family:'ArialMT', 'Arial', sans-serif;
  697. font-weight:400;
  698. font-style:normal;
  699. font-size:12px;
  700. letter-spacing:normal;
  701. color:#AAAAAA;
  702. vertical-align:none;
  703. text-align:left;
  704. text-transform:none;
  705. background-color:transparent;
  706. border-color:transparent;
  707. }
  708. #u31742_div {
  709. border-width:0px;
  710. position:absolute;
  711. left:0px;
  712. top:0px;
  713. width:191px;
  714. height:23px;
  715. background:inherit;
  716. background-color:rgba(255, 255, 255, 1);
  717. border:none;
  718. border-radius:0px;
  719. -moz-box-shadow:none;
  720. -webkit-box-shadow:none;
  721. box-shadow:none;
  722. font-size:12px;
  723. color:#AAAAAA;
  724. }
  725. #u31742 {
  726. border-width:0px;
  727. position:absolute;
  728. left:3776px;
  729. top:246px;
  730. width:191px;
  731. height:23px;
  732. display:flex;
  733. font-size:12px;
  734. color:#AAAAAA;
  735. }
  736. #u31742 .text {
  737. position:absolute;
  738. align-self:flex-start;
  739. padding:2px 2px 2px 2px;
  740. box-sizing:border-box;
  741. width:100%;
  742. }
  743. #u31742_div.disabled {
  744. border-width:0px;
  745. position:absolute;
  746. left:0px;
  747. top:0px;
  748. width:191px;
  749. height:23px;
  750. background:inherit;
  751. background-color:rgba(240, 240, 240, 1);
  752. border:none;
  753. border-radius:0px;
  754. -moz-box-shadow:none;
  755. -webkit-box-shadow:none;
  756. box-shadow:none;
  757. font-size:12px;
  758. color:#AAAAAA;
  759. }
  760. #u31742.disabled {
  761. }
  762. .u31742_input_option {
  763. font-size:12px;
  764. }
  765. #u31743_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:100px;
  771. height:30px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-top:0px;
  776. border-right:0px;
  777. border-bottom:0px;
  778. border-radius:0px;
  779. border-top-left-radius:0px;
  780. border-bottom-left-radius:0px;
  781. -moz-box-shadow:none;
  782. -webkit-box-shadow:none;
  783. box-shadow:none;
  784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  785. font-weight:400;
  786. font-style:normal;
  787. font-size:14px;
  788. color:#7F7F7F;
  789. }
  790. #u31743 {
  791. border-width:0px;
  792. position:absolute;
  793. left:3677px;
  794. top:244px;
  795. width:100px;
  796. height:30px;
  797. display:flex;
  798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  799. font-weight:400;
  800. font-style:normal;
  801. font-size:14px;
  802. color:#7F7F7F;
  803. }
  804. #u31743 .text {
  805. position:absolute;
  806. align-self:center;
  807. padding:5px 10px 5px 0px;
  808. box-sizing:border-box;
  809. width:100%;
  810. }
  811. #u31743_text {
  812. border-width:0px;
  813. word-wrap:break-word;
  814. text-transform:none;
  815. }
  816. #u31744 {
  817. border-width:0px;
  818. position:absolute;
  819. left:0px;
  820. top:0px;
  821. width:0px;
  822. height:0px;
  823. }
  824. #u31745_div {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:200px;
  830. height:30px;
  831. background:inherit;
  832. background-color:rgba(255, 255, 255, 1);
  833. box-sizing:border-box;
  834. border-width:1px;
  835. border-style:solid;
  836. border-color:rgba(215, 215, 215, 1);
  837. border-radius:4px;
  838. -moz-box-shadow:none;
  839. -webkit-box-shadow:none;
  840. box-shadow:none;
  841. font-size:12px;
  842. }
  843. #u31745 {
  844. border-width:0px;
  845. position:absolute;
  846. left:4099px;
  847. top:244px;
  848. width:200px;
  849. height:30px;
  850. display:flex;
  851. font-size:12px;
  852. }
  853. #u31745 .text {
  854. position:absolute;
  855. align-self:center;
  856. padding:2px 2px 2px 2px;
  857. box-sizing:border-box;
  858. width:100%;
  859. }
  860. #u31745_text {
  861. border-width:0px;
  862. word-wrap:break-word;
  863. text-transform:none;
  864. visibility:hidden;
  865. }
  866. #u31746_input {
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:191px;
  871. height:23px;
  872. padding:2px 2px 2px 2px;
  873. font-family:'ArialMT', 'Arial', sans-serif;
  874. font-weight:400;
  875. font-style:normal;
  876. font-size:12px;
  877. letter-spacing:normal;
  878. color:#AAAAAA;
  879. vertical-align:none;
  880. text-align:left;
  881. text-transform:none;
  882. background-color:transparent;
  883. border-color:transparent;
  884. }
  885. #u31746_input.disabled {
  886. position:absolute;
  887. left:0px;
  888. top:0px;
  889. width:191px;
  890. height:23px;
  891. padding:2px 2px 2px 2px;
  892. font-family:'ArialMT', 'Arial', sans-serif;
  893. font-weight:400;
  894. font-style:normal;
  895. font-size:12px;
  896. letter-spacing:normal;
  897. color:#AAAAAA;
  898. vertical-align:none;
  899. text-align:left;
  900. text-transform:none;
  901. background-color:transparent;
  902. border-color:transparent;
  903. }
  904. #u31746_div {
  905. border-width:0px;
  906. position:absolute;
  907. left:0px;
  908. top:0px;
  909. width:191px;
  910. height:23px;
  911. background:inherit;
  912. background-color:rgba(255, 255, 255, 1);
  913. border:none;
  914. border-radius:0px;
  915. -moz-box-shadow:none;
  916. -webkit-box-shadow:none;
  917. box-shadow:none;
  918. font-size:12px;
  919. color:#AAAAAA;
  920. }
  921. #u31746 {
  922. border-width:0px;
  923. position:absolute;
  924. left:4102px;
  925. top:246px;
  926. width:191px;
  927. height:23px;
  928. display:flex;
  929. font-size:12px;
  930. color:#AAAAAA;
  931. }
  932. #u31746 .text {
  933. position:absolute;
  934. align-self:flex-start;
  935. padding:2px 2px 2px 2px;
  936. box-sizing:border-box;
  937. width:100%;
  938. }
  939. #u31746_div.disabled {
  940. border-width:0px;
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:191px;
  945. height:23px;
  946. background:inherit;
  947. background-color:rgba(240, 240, 240, 1);
  948. border:none;
  949. border-radius:0px;
  950. -moz-box-shadow:none;
  951. -webkit-box-shadow:none;
  952. box-shadow:none;
  953. font-size:12px;
  954. color:#AAAAAA;
  955. }
  956. #u31746.disabled {
  957. }
  958. .u31746_input_option {
  959. font-size:12px;
  960. }
  961. #u31747_div {
  962. border-width:0px;
  963. position:absolute;
  964. left:0px;
  965. top:0px;
  966. width:100px;
  967. height:30px;
  968. background:inherit;
  969. background-color:rgba(255, 255, 255, 0);
  970. border:none;
  971. border-top:0px;
  972. border-right:0px;
  973. border-bottom:0px;
  974. border-radius:0px;
  975. border-top-left-radius:0px;
  976. border-bottom-left-radius:0px;
  977. -moz-box-shadow:none;
  978. -webkit-box-shadow:none;
  979. box-shadow:none;
  980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  981. font-weight:400;
  982. font-style:normal;
  983. font-size:14px;
  984. color:#7F7F7F;
  985. }
  986. #u31747 {
  987. border-width:0px;
  988. position:absolute;
  989. left:4003px;
  990. top:244px;
  991. width:100px;
  992. height:30px;
  993. display:flex;
  994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  995. font-weight:400;
  996. font-style:normal;
  997. font-size:14px;
  998. color:#7F7F7F;
  999. }
  1000. #u31747 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:5px 10px 5px 0px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u31747_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. }
  1012. #u31748 {
  1013. border-width:0px;
  1014. position:absolute;
  1015. left:0px;
  1016. top:0px;
  1017. width:0px;
  1018. height:0px;
  1019. }
  1020. #u31749_div {
  1021. border-width:0px;
  1022. position:absolute;
  1023. left:0px;
  1024. top:0px;
  1025. width:200px;
  1026. height:30px;
  1027. background:inherit;
  1028. background-color:rgba(255, 255, 255, 1);
  1029. box-sizing:border-box;
  1030. border-width:1px;
  1031. border-style:solid;
  1032. border-color:rgba(188, 188, 188, 1);
  1033. border-radius:4px;
  1034. -moz-box-shadow:none;
  1035. -webkit-box-shadow:none;
  1036. box-shadow:none;
  1037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1038. font-weight:400;
  1039. font-style:normal;
  1040. font-size:12px;
  1041. color:#FFFFFF;
  1042. }
  1043. #u31749 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:3457px;
  1047. top:284px;
  1048. width:200px;
  1049. height:30px;
  1050. display:flex;
  1051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1052. font-weight:400;
  1053. font-style:normal;
  1054. font-size:12px;
  1055. color:#FFFFFF;
  1056. }
  1057. #u31749 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:8px 15px 8px 15px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u31749_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u31750_div {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:73px;
  1076. height:17px;
  1077. background:inherit;
  1078. background-color:rgba(255, 255, 255, 0);
  1079. border:none;
  1080. border-radius:0px;
  1081. -moz-box-shadow:none;
  1082. -webkit-box-shadow:none;
  1083. box-shadow:none;
  1084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1085. font-weight:400;
  1086. font-style:normal;
  1087. font-size:12px;
  1088. color:#BCBCBC;
  1089. }
  1090. #u31750 {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:3466px;
  1094. top:289px;
  1095. width:73px;
  1096. height:17px;
  1097. display:flex;
  1098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1099. font-weight:400;
  1100. font-style:normal;
  1101. font-size:12px;
  1102. color:#BCBCBC;
  1103. }
  1104. #u31750 .text {
  1105. position:absolute;
  1106. align-self:flex-start;
  1107. padding:0px 0px 0px 0px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u31750_text {
  1112. border-width:0px;
  1113. white-space:nowrap;
  1114. text-transform:none;
  1115. }
  1116. #u31751_img {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:0px;
  1120. top:0px;
  1121. width:14px;
  1122. height:14px;
  1123. }
  1124. #u31751 {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:3636px;
  1128. top:292px;
  1129. width:14px;
  1130. height:14px;
  1131. display:flex;
  1132. opacity:0.5;
  1133. font-size:12px;
  1134. }
  1135. #u31751 .text {
  1136. position:absolute;
  1137. align-self:center;
  1138. padding:2px 2px 2px 2px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u31751_text {
  1143. border-width:0px;
  1144. word-wrap:break-word;
  1145. text-transform:none;
  1146. visibility:hidden;
  1147. }
  1148. #u31752_div {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:0px;
  1152. top:0px;
  1153. width:100px;
  1154. height:30px;
  1155. background:inherit;
  1156. background-color:rgba(255, 255, 255, 0);
  1157. border:none;
  1158. border-top:0px;
  1159. border-right:0px;
  1160. border-bottom:0px;
  1161. border-radius:0px;
  1162. border-top-left-radius:0px;
  1163. border-bottom-left-radius:0px;
  1164. -moz-box-shadow:none;
  1165. -webkit-box-shadow:none;
  1166. box-shadow:none;
  1167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1168. font-weight:400;
  1169. font-style:normal;
  1170. font-size:14px;
  1171. color:#7F7F7F;
  1172. }
  1173. #u31752 {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:3361px;
  1177. top:284px;
  1178. width:100px;
  1179. height:30px;
  1180. display:flex;
  1181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1182. font-weight:400;
  1183. font-style:normal;
  1184. font-size:14px;
  1185. color:#7F7F7F;
  1186. }
  1187. #u31752 .text {
  1188. position:absolute;
  1189. align-self:center;
  1190. padding:5px 10px 5px 0px;
  1191. box-sizing:border-box;
  1192. width:100%;
  1193. }
  1194. #u31752_text {
  1195. border-width:0px;
  1196. word-wrap:break-word;
  1197. text-transform:none;
  1198. }
  1199. #u31753_div {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:0px;
  1203. top:0px;
  1204. width:83px;
  1205. height:35px;
  1206. background:inherit;
  1207. background-color:rgba(255, 255, 255, 0);
  1208. border:none;
  1209. border-top:0px;
  1210. border-right:0px;
  1211. border-bottom:0px;
  1212. border-radius:0px;
  1213. border-top-left-radius:0px;
  1214. border-bottom-left-radius:0px;
  1215. -moz-box-shadow:none;
  1216. -webkit-box-shadow:none;
  1217. box-shadow:none;
  1218. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1219. font-weight:500;
  1220. font-style:normal;
  1221. font-size:18px;
  1222. }
  1223. #u31753 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:3361px;
  1227. top:334px;
  1228. width:83px;
  1229. height:35px;
  1230. display:flex;
  1231. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1232. font-weight:500;
  1233. font-style:normal;
  1234. font-size:18px;
  1235. }
  1236. #u31753 .text {
  1237. position:absolute;
  1238. align-self:center;
  1239. padding:5px 10px 5px 0px;
  1240. box-sizing:border-box;
  1241. width:100%;
  1242. }
  1243. #u31753_text {
  1244. border-width:0px;
  1245. white-space:nowrap;
  1246. text-transform:none;
  1247. }
  1248. #u31754_div {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:100px;
  1254. height:30px;
  1255. background:inherit;
  1256. background-color:rgba(255, 255, 255, 0);
  1257. border:none;
  1258. border-top:0px;
  1259. border-right:0px;
  1260. border-bottom:0px;
  1261. border-radius:0px;
  1262. border-top-left-radius:0px;
  1263. border-bottom-left-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:14px;
  1271. color:#7F7F7F;
  1272. }
  1273. #u31754 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:3361px;
  1277. top:389px;
  1278. width:100px;
  1279. height:30px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:14px;
  1285. color:#7F7F7F;
  1286. }
  1287. #u31754 .text {
  1288. position:absolute;
  1289. align-self:center;
  1290. padding:5px 10px 5px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u31754_text {
  1295. border-width:0px;
  1296. word-wrap:break-word;
  1297. text-transform:none;
  1298. }
  1299. #u31755 {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:0px;
  1305. height:0px;
  1306. }
  1307. #u31756_div {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:0px;
  1311. top:0px;
  1312. width:200px;
  1313. height:30px;
  1314. background:inherit;
  1315. background-color:rgba(242, 242, 242, 1);
  1316. box-sizing:border-box;
  1317. border-width:1px;
  1318. border-style:solid;
  1319. border-color:rgba(201, 201, 201, 1);
  1320. border-radius:4px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:12px;
  1328. color:#CCCCCC;
  1329. text-align:right;
  1330. }
  1331. #u31756 {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:3457px;
  1335. top:389px;
  1336. width:200px;
  1337. height:30px;
  1338. display:flex;
  1339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1340. font-weight:400;
  1341. font-style:normal;
  1342. font-size:12px;
  1343. color:#CCCCCC;
  1344. text-align:right;
  1345. }
  1346. #u31756 .text {
  1347. position:absolute;
  1348. align-self:center;
  1349. padding:2px 8px 2px 8px;
  1350. box-sizing:border-box;
  1351. width:100%;
  1352. }
  1353. #u31756_text {
  1354. border-width:0px;
  1355. word-wrap:break-word;
  1356. text-transform:none;
  1357. visibility:hidden;
  1358. }
  1359. #u31757_input {
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:180px;
  1364. height:26px;
  1365. padding:2px 2px 2px 2px;
  1366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1367. font-weight:400;
  1368. font-style:normal;
  1369. font-size:12px;
  1370. letter-spacing:normal;
  1371. color:#7F7F7F;
  1372. vertical-align:none;
  1373. text-align:left;
  1374. text-transform:none;
  1375. background-color:transparent;
  1376. border-color:transparent;
  1377. }
  1378. #u31757_input.disabled {
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:180px;
  1383. height:26px;
  1384. padding:2px 2px 2px 2px;
  1385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1386. font-weight:400;
  1387. font-style:normal;
  1388. font-size:12px;
  1389. letter-spacing:normal;
  1390. color:#7F7F7F;
  1391. vertical-align:none;
  1392. text-align:left;
  1393. text-transform:none;
  1394. background-color:transparent;
  1395. border-color:transparent;
  1396. }
  1397. #u31757_div {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:180px;
  1403. height:26px;
  1404. background:inherit;
  1405. background-color:rgba(242, 242, 242, 1);
  1406. border:none;
  1407. border-radius:0px;
  1408. -moz-box-shadow:none;
  1409. -webkit-box-shadow:none;
  1410. box-shadow:none;
  1411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1412. font-weight:400;
  1413. font-style:normal;
  1414. font-size:12px;
  1415. color:#7F7F7F;
  1416. }
  1417. #u31757 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:3463px;
  1421. top:390px;
  1422. width:180px;
  1423. height:26px;
  1424. display:flex;
  1425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1426. font-weight:400;
  1427. font-style:normal;
  1428. font-size:12px;
  1429. color:#7F7F7F;
  1430. }
  1431. #u31757 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:2px 2px 2px 2px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u31757_div.disabled {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:180px;
  1444. height:26px;
  1445. background:inherit;
  1446. background-color:rgba(240, 240, 240, 1);
  1447. border:none;
  1448. border-radius:0px;
  1449. -moz-box-shadow:none;
  1450. -webkit-box-shadow:none;
  1451. box-shadow:none;
  1452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1453. font-weight:400;
  1454. font-style:normal;
  1455. font-size:12px;
  1456. color:#7F7F7F;
  1457. }
  1458. #u31757.disabled {
  1459. }
  1460. #u31758 {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:0px;
  1466. height:0px;
  1467. }
  1468. #u31759_div {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:200px;
  1474. height:30px;
  1475. background:inherit;
  1476. background-color:rgba(255, 255, 255, 1);
  1477. box-sizing:border-box;
  1478. border-width:1px;
  1479. border-style:solid;
  1480. border-color:rgba(215, 215, 215, 1);
  1481. border-radius:4px;
  1482. -moz-box-shadow:none;
  1483. -webkit-box-shadow:none;
  1484. box-shadow:none;
  1485. font-size:12px;
  1486. }
  1487. #u31759 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:3773px;
  1491. top:389px;
  1492. width:200px;
  1493. height:30px;
  1494. display:flex;
  1495. font-size:12px;
  1496. }
  1497. #u31759 .text {
  1498. position:absolute;
  1499. align-self:center;
  1500. padding:2px 2px 2px 2px;
  1501. box-sizing:border-box;
  1502. width:100%;
  1503. }
  1504. #u31759_text {
  1505. border-width:0px;
  1506. word-wrap:break-word;
  1507. text-transform:none;
  1508. visibility:hidden;
  1509. }
  1510. #u31760_input {
  1511. position:absolute;
  1512. left:0px;
  1513. top:0px;
  1514. width:191px;
  1515. height:23px;
  1516. padding:2px 2px 2px 2px;
  1517. font-family:'ArialMT', 'Arial', sans-serif;
  1518. font-weight:400;
  1519. font-style:normal;
  1520. font-size:12px;
  1521. letter-spacing:normal;
  1522. color:#AAAAAA;
  1523. vertical-align:none;
  1524. text-align:left;
  1525. text-transform:none;
  1526. background-color:transparent;
  1527. border-color:transparent;
  1528. }
  1529. #u31760_input.disabled {
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:191px;
  1534. height:23px;
  1535. padding:2px 2px 2px 2px;
  1536. font-family:'ArialMT', 'Arial', sans-serif;
  1537. font-weight:400;
  1538. font-style:normal;
  1539. font-size:12px;
  1540. letter-spacing:normal;
  1541. color:#AAAAAA;
  1542. vertical-align:none;
  1543. text-align:left;
  1544. text-transform:none;
  1545. background-color:transparent;
  1546. border-color:transparent;
  1547. }
  1548. #u31760_div {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:191px;
  1554. height:23px;
  1555. background:inherit;
  1556. background-color:rgba(255, 255, 255, 1);
  1557. border:none;
  1558. border-radius:0px;
  1559. -moz-box-shadow:none;
  1560. -webkit-box-shadow:none;
  1561. box-shadow:none;
  1562. font-size:12px;
  1563. color:#AAAAAA;
  1564. }
  1565. #u31760 {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:3776px;
  1569. top:391px;
  1570. width:191px;
  1571. height:23px;
  1572. display:flex;
  1573. font-size:12px;
  1574. color:#AAAAAA;
  1575. }
  1576. #u31760 .text {
  1577. position:absolute;
  1578. align-self:flex-start;
  1579. padding:2px 2px 2px 2px;
  1580. box-sizing:border-box;
  1581. width:100%;
  1582. }
  1583. #u31760_div.disabled {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:191px;
  1589. height:23px;
  1590. background:inherit;
  1591. background-color:rgba(240, 240, 240, 1);
  1592. border:none;
  1593. border-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. font-size:12px;
  1598. color:#AAAAAA;
  1599. }
  1600. #u31760.disabled {
  1601. }
  1602. .u31760_input_option {
  1603. font-size:12px;
  1604. }
  1605. #u31761_div {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:100px;
  1611. height:30px;
  1612. background:inherit;
  1613. background-color:rgba(255, 255, 255, 0);
  1614. border:none;
  1615. border-top:0px;
  1616. border-right:0px;
  1617. border-bottom:0px;
  1618. border-radius:0px;
  1619. border-top-left-radius:0px;
  1620. border-bottom-left-radius:0px;
  1621. -moz-box-shadow:none;
  1622. -webkit-box-shadow:none;
  1623. box-shadow:none;
  1624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1625. font-weight:400;
  1626. font-style:normal;
  1627. font-size:14px;
  1628. color:#7F7F7F;
  1629. }
  1630. #u31761 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:3677px;
  1634. top:389px;
  1635. width:100px;
  1636. height:30px;
  1637. display:flex;
  1638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1639. font-weight:400;
  1640. font-style:normal;
  1641. font-size:14px;
  1642. color:#7F7F7F;
  1643. }
  1644. #u31761 .text {
  1645. position:absolute;
  1646. align-self:center;
  1647. padding:5px 10px 5px 0px;
  1648. box-sizing:border-box;
  1649. width:100%;
  1650. }
  1651. #u31761_text {
  1652. border-width:0px;
  1653. word-wrap:break-word;
  1654. text-transform:none;
  1655. }
  1656. #u31762_div {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:0px;
  1660. top:0px;
  1661. width:100px;
  1662. height:30px;
  1663. background:inherit;
  1664. background-color:rgba(255, 255, 255, 0);
  1665. border:none;
  1666. border-top:0px;
  1667. border-right:0px;
  1668. border-bottom:0px;
  1669. border-radius:0px;
  1670. border-top-left-radius:0px;
  1671. border-bottom-left-radius:0px;
  1672. -moz-box-shadow:none;
  1673. -webkit-box-shadow:none;
  1674. box-shadow:none;
  1675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1676. font-weight:400;
  1677. font-style:normal;
  1678. font-size:14px;
  1679. color:#7F7F7F;
  1680. }
  1681. #u31762 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:4003px;
  1685. top:389px;
  1686. width:100px;
  1687. height:30px;
  1688. display:flex;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:14px;
  1693. color:#7F7F7F;
  1694. }
  1695. #u31762 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:5px 10px 5px 0px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u31762_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. }
  1707. #u31763 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:0px;
  1713. height:0px;
  1714. }
  1715. #u31764_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:200px;
  1721. height:30px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 1);
  1724. box-sizing:border-box;
  1725. border-width:1px;
  1726. border-style:solid;
  1727. border-color:rgba(201, 201, 201, 1);
  1728. border-radius:4px;
  1729. -moz-box-shadow:none;
  1730. -webkit-box-shadow:none;
  1731. box-shadow:none;
  1732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1733. font-weight:400;
  1734. font-style:normal;
  1735. font-size:12px;
  1736. color:#CCCCCC;
  1737. text-align:right;
  1738. }
  1739. #u31764 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:4099px;
  1743. top:389px;
  1744. width:200px;
  1745. height:30px;
  1746. display:flex;
  1747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:12px;
  1751. color:#CCCCCC;
  1752. text-align:right;
  1753. }
  1754. #u31764 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 8px 2px 8px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u31764_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. visibility:hidden;
  1766. }
  1767. #u31765_input {
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:180px;
  1772. height:26px;
  1773. padding:2px 2px 2px 2px;
  1774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:12px;
  1778. letter-spacing:normal;
  1779. color:#7F7F7F;
  1780. vertical-align:none;
  1781. text-align:left;
  1782. text-transform:none;
  1783. background-color:transparent;
  1784. border-color:transparent;
  1785. }
  1786. #u31765_input.disabled {
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:180px;
  1791. height:26px;
  1792. padding:2px 2px 2px 2px;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:12px;
  1797. letter-spacing:normal;
  1798. color:#7F7F7F;
  1799. vertical-align:none;
  1800. text-align:left;
  1801. text-transform:none;
  1802. background-color:transparent;
  1803. border-color:transparent;
  1804. }
  1805. #u31765_div {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:180px;
  1811. height:26px;
  1812. background:inherit;
  1813. background-color:rgba(255, 255, 255, 1);
  1814. border:none;
  1815. border-radius:0px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1820. font-weight:400;
  1821. font-style:normal;
  1822. font-size:12px;
  1823. color:#7F7F7F;
  1824. }
  1825. #u31765 {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:4105px;
  1829. top:390px;
  1830. width:180px;
  1831. height:26px;
  1832. display:flex;
  1833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1834. font-weight:400;
  1835. font-style:normal;
  1836. font-size:12px;
  1837. color:#7F7F7F;
  1838. }
  1839. #u31765 .text {
  1840. position:absolute;
  1841. align-self:center;
  1842. padding:2px 2px 2px 2px;
  1843. box-sizing:border-box;
  1844. width:100%;
  1845. }
  1846. #u31765_div.disabled {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:180px;
  1852. height:26px;
  1853. background:inherit;
  1854. background-color:rgba(240, 240, 240, 1);
  1855. border:none;
  1856. border-radius:0px;
  1857. -moz-box-shadow:none;
  1858. -webkit-box-shadow:none;
  1859. box-shadow:none;
  1860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1861. font-weight:400;
  1862. font-style:normal;
  1863. font-size:12px;
  1864. color:#7F7F7F;
  1865. }
  1866. #u31765.disabled {
  1867. }
  1868. #u31766 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:0px;
  1874. height:0px;
  1875. }
  1876. #u31767_div {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:200px;
  1882. height:30px;
  1883. background:inherit;
  1884. background-color:rgba(255, 255, 255, 1);
  1885. box-sizing:border-box;
  1886. border-width:1px;
  1887. border-style:solid;
  1888. border-color:rgba(215, 215, 215, 1);
  1889. border-radius:4px;
  1890. -moz-box-shadow:none;
  1891. -webkit-box-shadow:none;
  1892. box-shadow:none;
  1893. font-size:12px;
  1894. }
  1895. #u31767 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:3457px;
  1899. top:429px;
  1900. width:200px;
  1901. height:30px;
  1902. display:flex;
  1903. font-size:12px;
  1904. }
  1905. #u31767 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 2px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u31767_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. visibility:hidden;
  1917. }
  1918. #u31768_input {
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:191px;
  1923. height:23px;
  1924. padding:2px 2px 2px 2px;
  1925. font-family:'ArialMT', 'Arial', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:12px;
  1929. letter-spacing:normal;
  1930. color:#AAAAAA;
  1931. vertical-align:none;
  1932. text-align:left;
  1933. text-transform:none;
  1934. background-color:transparent;
  1935. border-color:transparent;
  1936. }
  1937. #u31768_input.disabled {
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:191px;
  1942. height:23px;
  1943. padding:2px 2px 2px 2px;
  1944. font-family:'ArialMT', 'Arial', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. font-size:12px;
  1948. letter-spacing:normal;
  1949. color:#AAAAAA;
  1950. vertical-align:none;
  1951. text-align:left;
  1952. text-transform:none;
  1953. background-color:transparent;
  1954. border-color:transparent;
  1955. }
  1956. #u31768_div {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:0px;
  1960. top:0px;
  1961. width:191px;
  1962. height:23px;
  1963. background:inherit;
  1964. background-color:rgba(255, 255, 255, 1);
  1965. border:none;
  1966. border-radius:0px;
  1967. -moz-box-shadow:none;
  1968. -webkit-box-shadow:none;
  1969. box-shadow:none;
  1970. font-size:12px;
  1971. color:#AAAAAA;
  1972. }
  1973. #u31768 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:3460px;
  1977. top:431px;
  1978. width:191px;
  1979. height:23px;
  1980. display:flex;
  1981. font-size:12px;
  1982. color:#AAAAAA;
  1983. }
  1984. #u31768 .text {
  1985. position:absolute;
  1986. align-self:flex-start;
  1987. padding:2px 2px 2px 2px;
  1988. box-sizing:border-box;
  1989. width:100%;
  1990. }
  1991. #u31768_div.disabled {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:191px;
  1997. height:23px;
  1998. background:inherit;
  1999. background-color:rgba(240, 240, 240, 1);
  2000. border:none;
  2001. border-radius:0px;
  2002. -moz-box-shadow:none;
  2003. -webkit-box-shadow:none;
  2004. box-shadow:none;
  2005. font-size:12px;
  2006. color:#AAAAAA;
  2007. }
  2008. #u31768.disabled {
  2009. }
  2010. .u31768_input_option {
  2011. font-size:12px;
  2012. }
  2013. #u31769_div {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:100px;
  2019. height:30px;
  2020. background:inherit;
  2021. background-color:rgba(255, 255, 255, 0);
  2022. border:none;
  2023. border-top:0px;
  2024. border-right:0px;
  2025. border-bottom:0px;
  2026. border-radius:0px;
  2027. border-top-left-radius:0px;
  2028. border-bottom-left-radius:0px;
  2029. -moz-box-shadow:none;
  2030. -webkit-box-shadow:none;
  2031. box-shadow:none;
  2032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2033. font-weight:400;
  2034. font-style:normal;
  2035. font-size:14px;
  2036. color:#7F7F7F;
  2037. }
  2038. #u31769 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:3361px;
  2042. top:429px;
  2043. width:100px;
  2044. height:30px;
  2045. display:flex;
  2046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2047. font-weight:400;
  2048. font-style:normal;
  2049. font-size:14px;
  2050. color:#7F7F7F;
  2051. }
  2052. #u31769 .text {
  2053. position:absolute;
  2054. align-self:center;
  2055. padding:5px 10px 5px 0px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u31769_text {
  2060. border-width:0px;
  2061. word-wrap:break-word;
  2062. text-transform:none;
  2063. }
  2064. #u31770_div {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:100px;
  2070. height:30px;
  2071. background:inherit;
  2072. background-color:rgba(255, 255, 255, 0);
  2073. border:none;
  2074. border-top:0px;
  2075. border-right:0px;
  2076. border-bottom:0px;
  2077. border-radius:0px;
  2078. border-top-left-radius:0px;
  2079. border-bottom-left-radius:0px;
  2080. -moz-box-shadow:none;
  2081. -webkit-box-shadow:none;
  2082. box-shadow:none;
  2083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:14px;
  2087. color:#7F7F7F;
  2088. }
  2089. #u31770 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:3677px;
  2093. top:429px;
  2094. width:100px;
  2095. height:30px;
  2096. display:flex;
  2097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2098. font-weight:400;
  2099. font-style:normal;
  2100. font-size:14px;
  2101. color:#7F7F7F;
  2102. }
  2103. #u31770 .text {
  2104. position:absolute;
  2105. align-self:center;
  2106. padding:5px 10px 5px 0px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u31770_text {
  2111. border-width:0px;
  2112. word-wrap:break-word;
  2113. text-transform:none;
  2114. }
  2115. #u31771 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:0px;
  2121. height:0px;
  2122. }
  2123. #u31772_div {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:200px;
  2129. height:30px;
  2130. background:inherit;
  2131. background-color:rgba(255, 255, 255, 1);
  2132. box-sizing:border-box;
  2133. border-width:1px;
  2134. border-style:solid;
  2135. border-color:rgba(201, 201, 201, 1);
  2136. border-radius:4px;
  2137. -moz-box-shadow:none;
  2138. -webkit-box-shadow:none;
  2139. box-shadow:none;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:12px;
  2144. color:#CCCCCC;
  2145. text-align:right;
  2146. }
  2147. #u31772 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:3773px;
  2151. top:429px;
  2152. width:200px;
  2153. height:30px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. color:#CCCCCC;
  2160. text-align:right;
  2161. }
  2162. #u31772 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 8px 2px 8px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u31772_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u31773_input {
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:180px;
  2180. height:26px;
  2181. padding:2px 2px 2px 2px;
  2182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:12px;
  2186. letter-spacing:normal;
  2187. color:#7F7F7F;
  2188. vertical-align:none;
  2189. text-align:left;
  2190. text-transform:none;
  2191. background-color:transparent;
  2192. border-color:transparent;
  2193. }
  2194. #u31773_input.disabled {
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:180px;
  2199. height:26px;
  2200. padding:2px 2px 2px 2px;
  2201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2202. font-weight:400;
  2203. font-style:normal;
  2204. font-size:12px;
  2205. letter-spacing:normal;
  2206. color:#7F7F7F;
  2207. vertical-align:none;
  2208. text-align:left;
  2209. text-transform:none;
  2210. background-color:transparent;
  2211. border-color:transparent;
  2212. }
  2213. #u31773_div {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:0px;
  2217. top:0px;
  2218. width:180px;
  2219. height:26px;
  2220. background:inherit;
  2221. background-color:rgba(255, 255, 255, 1);
  2222. border:none;
  2223. border-radius:0px;
  2224. -moz-box-shadow:none;
  2225. -webkit-box-shadow:none;
  2226. box-shadow:none;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:12px;
  2231. color:#7F7F7F;
  2232. }
  2233. #u31773 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:3779px;
  2237. top:430px;
  2238. width:180px;
  2239. height:26px;
  2240. display:flex;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:12px;
  2245. color:#7F7F7F;
  2246. }
  2247. #u31773 .text {
  2248. position:absolute;
  2249. align-self:center;
  2250. padding:2px 2px 2px 2px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u31773_div.disabled {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:180px;
  2260. height:26px;
  2261. background:inherit;
  2262. background-color:rgba(240, 240, 240, 1);
  2263. border:none;
  2264. border-radius:0px;
  2265. -moz-box-shadow:none;
  2266. -webkit-box-shadow:none;
  2267. box-shadow:none;
  2268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:12px;
  2272. color:#7F7F7F;
  2273. }
  2274. #u31773.disabled {
  2275. }
  2276. #u31774_div {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:100px;
  2282. height:30px;
  2283. background:inherit;
  2284. background-color:rgba(255, 255, 255, 0);
  2285. border:none;
  2286. border-top:0px;
  2287. border-right:0px;
  2288. border-bottom:0px;
  2289. border-radius:0px;
  2290. border-top-left-radius:0px;
  2291. border-bottom-left-radius:0px;
  2292. -moz-box-shadow:none;
  2293. -webkit-box-shadow:none;
  2294. box-shadow:none;
  2295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:14px;
  2299. color:#7F7F7F;
  2300. }
  2301. #u31774 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:4003px;
  2305. top:429px;
  2306. width:100px;
  2307. height:30px;
  2308. display:flex;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:14px;
  2313. color:#7F7F7F;
  2314. }
  2315. #u31774 .text {
  2316. position:absolute;
  2317. align-self:center;
  2318. padding:5px 10px 5px 0px;
  2319. box-sizing:border-box;
  2320. width:100%;
  2321. }
  2322. #u31774_text {
  2323. border-width:0px;
  2324. word-wrap:break-word;
  2325. text-transform:none;
  2326. }
  2327. #u31775 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:0px;
  2333. height:0px;
  2334. }
  2335. #u31776_div {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:200px;
  2341. height:30px;
  2342. background:inherit;
  2343. background-color:rgba(255, 255, 255, 1);
  2344. box-sizing:border-box;
  2345. border-width:1px;
  2346. border-style:solid;
  2347. border-color:rgba(201, 201, 201, 1);
  2348. border-radius:4px;
  2349. -moz-box-shadow:none;
  2350. -webkit-box-shadow:none;
  2351. box-shadow:none;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:12px;
  2356. color:#CCCCCC;
  2357. text-align:right;
  2358. }
  2359. #u31776 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:4099px;
  2363. top:429px;
  2364. width:200px;
  2365. height:30px;
  2366. display:flex;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:12px;
  2371. color:#CCCCCC;
  2372. text-align:right;
  2373. }
  2374. #u31776 .text {
  2375. position:absolute;
  2376. align-self:center;
  2377. padding:2px 8px 2px 8px;
  2378. box-sizing:border-box;
  2379. width:100%;
  2380. }
  2381. #u31776_text {
  2382. border-width:0px;
  2383. word-wrap:break-word;
  2384. text-transform:none;
  2385. visibility:hidden;
  2386. }
  2387. #u31777_input {
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:180px;
  2392. height:26px;
  2393. padding:2px 2px 2px 2px;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:12px;
  2398. letter-spacing:normal;
  2399. color:#7F7F7F;
  2400. vertical-align:none;
  2401. text-align:left;
  2402. text-transform:none;
  2403. background-color:transparent;
  2404. border-color:transparent;
  2405. }
  2406. #u31777_input.disabled {
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:180px;
  2411. height:26px;
  2412. padding:2px 2px 2px 2px;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:12px;
  2417. letter-spacing:normal;
  2418. color:#7F7F7F;
  2419. vertical-align:none;
  2420. text-align:left;
  2421. text-transform:none;
  2422. background-color:transparent;
  2423. border-color:transparent;
  2424. }
  2425. #u31777_div {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:180px;
  2431. height:26px;
  2432. background:inherit;
  2433. background-color:rgba(255, 255, 255, 1);
  2434. border:none;
  2435. border-radius:0px;
  2436. -moz-box-shadow:none;
  2437. -webkit-box-shadow:none;
  2438. box-shadow:none;
  2439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. font-size:12px;
  2443. color:#7F7F7F;
  2444. }
  2445. #u31777 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:4105px;
  2449. top:430px;
  2450. width:180px;
  2451. height:26px;
  2452. display:flex;
  2453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2454. font-weight:400;
  2455. font-style:normal;
  2456. font-size:12px;
  2457. color:#7F7F7F;
  2458. }
  2459. #u31777 .text {
  2460. position:absolute;
  2461. align-self:center;
  2462. padding:2px 2px 2px 2px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u31777_div.disabled {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:180px;
  2472. height:26px;
  2473. background:inherit;
  2474. background-color:rgba(240, 240, 240, 1);
  2475. border:none;
  2476. border-radius:0px;
  2477. -moz-box-shadow:none;
  2478. -webkit-box-shadow:none;
  2479. box-shadow:none;
  2480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:12px;
  2484. color:#7F7F7F;
  2485. }
  2486. #u31777.disabled {
  2487. }
  2488. #u31778 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:0px;
  2494. height:0px;
  2495. }
  2496. #u31779_div {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:200px;
  2502. height:30px;
  2503. background:inherit;
  2504. background-color:rgba(255, 255, 255, 1);
  2505. box-sizing:border-box;
  2506. border-width:1px;
  2507. border-style:solid;
  2508. border-color:rgba(215, 215, 215, 1);
  2509. border-radius:4px;
  2510. -moz-box-shadow:none;
  2511. -webkit-box-shadow:none;
  2512. box-shadow:none;
  2513. font-size:12px;
  2514. }
  2515. #u31779 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:3457px;
  2519. top:469px;
  2520. width:200px;
  2521. height:30px;
  2522. display:flex;
  2523. font-size:12px;
  2524. }
  2525. #u31779 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:2px 2px 2px 2px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u31779_text {
  2533. border-width:0px;
  2534. word-wrap:break-word;
  2535. text-transform:none;
  2536. visibility:hidden;
  2537. }
  2538. #u31780_input {
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:191px;
  2543. height:23px;
  2544. padding:2px 2px 2px 2px;
  2545. font-family:'ArialMT', 'Arial', sans-serif;
  2546. font-weight:400;
  2547. font-style:normal;
  2548. font-size:12px;
  2549. letter-spacing:normal;
  2550. color:#AAAAAA;
  2551. vertical-align:none;
  2552. text-align:left;
  2553. text-transform:none;
  2554. background-color:transparent;
  2555. border-color:transparent;
  2556. }
  2557. #u31780_input.disabled {
  2558. position:absolute;
  2559. left:0px;
  2560. top:0px;
  2561. width:191px;
  2562. height:23px;
  2563. padding:2px 2px 2px 2px;
  2564. font-family:'ArialMT', 'Arial', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. font-size:12px;
  2568. letter-spacing:normal;
  2569. color:#AAAAAA;
  2570. vertical-align:none;
  2571. text-align:left;
  2572. text-transform:none;
  2573. background-color:transparent;
  2574. border-color:transparent;
  2575. }
  2576. #u31780_div {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:191px;
  2582. height:23px;
  2583. background:inherit;
  2584. background-color:rgba(255, 255, 255, 1);
  2585. border:none;
  2586. border-radius:0px;
  2587. -moz-box-shadow:none;
  2588. -webkit-box-shadow:none;
  2589. box-shadow:none;
  2590. font-size:12px;
  2591. color:#AAAAAA;
  2592. }
  2593. #u31780 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:3460px;
  2597. top:471px;
  2598. width:191px;
  2599. height:23px;
  2600. display:flex;
  2601. font-size:12px;
  2602. color:#AAAAAA;
  2603. }
  2604. #u31780 .text {
  2605. position:absolute;
  2606. align-self:flex-start;
  2607. padding:2px 2px 2px 2px;
  2608. box-sizing:border-box;
  2609. width:100%;
  2610. }
  2611. #u31780_div.disabled {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:191px;
  2617. height:23px;
  2618. background:inherit;
  2619. background-color:rgba(240, 240, 240, 1);
  2620. border:none;
  2621. border-radius:0px;
  2622. -moz-box-shadow:none;
  2623. -webkit-box-shadow:none;
  2624. box-shadow:none;
  2625. font-size:12px;
  2626. color:#AAAAAA;
  2627. }
  2628. #u31780.disabled {
  2629. }
  2630. .u31780_input_option {
  2631. font-size:12px;
  2632. }
  2633. #u31781_div {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:100px;
  2639. height:26px;
  2640. background:inherit;
  2641. background-color:rgba(255, 255, 255, 0);
  2642. border:none;
  2643. border-top:0px;
  2644. border-right:0px;
  2645. border-bottom:0px;
  2646. border-radius:0px;
  2647. border-top-left-radius:0px;
  2648. border-bottom-left-radius:0px;
  2649. -moz-box-shadow:none;
  2650. -webkit-box-shadow:none;
  2651. box-shadow:none;
  2652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:11px;
  2656. color:#7F7F7F;
  2657. }
  2658. #u31781 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:3357px;
  2662. top:469px;
  2663. width:100px;
  2664. height:26px;
  2665. display:flex;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:11px;
  2670. color:#7F7F7F;
  2671. }
  2672. #u31781 .text {
  2673. position:absolute;
  2674. align-self:flex-start;
  2675. padding:5px 10px 5px 0px;
  2676. box-sizing:border-box;
  2677. width:100%;
  2678. }
  2679. #u31781_text {
  2680. border-width:0px;
  2681. word-wrap:break-word;
  2682. text-transform:none;
  2683. }
  2684. #u31782 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:0px;
  2690. height:0px;
  2691. }
  2692. #u31783_div {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:200px;
  2698. height:30px;
  2699. background:inherit;
  2700. background-color:rgba(255, 255, 255, 1);
  2701. box-sizing:border-box;
  2702. border-width:1px;
  2703. border-style:solid;
  2704. border-color:rgba(215, 215, 215, 1);
  2705. border-radius:4px;
  2706. -moz-box-shadow:none;
  2707. -webkit-box-shadow:none;
  2708. box-shadow:none;
  2709. font-size:12px;
  2710. }
  2711. #u31783 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:3773px;
  2715. top:469px;
  2716. width:200px;
  2717. height:30px;
  2718. display:flex;
  2719. font-size:12px;
  2720. }
  2721. #u31783 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:2px 2px 2px 2px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u31783_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u31784_input {
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:191px;
  2739. height:23px;
  2740. padding:2px 2px 2px 2px;
  2741. font-family:'ArialMT', 'Arial', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:12px;
  2745. letter-spacing:normal;
  2746. color:#AAAAAA;
  2747. vertical-align:none;
  2748. text-align:left;
  2749. text-transform:none;
  2750. background-color:transparent;
  2751. border-color:transparent;
  2752. }
  2753. #u31784_input.disabled {
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:191px;
  2758. height:23px;
  2759. padding:2px 2px 2px 2px;
  2760. font-family:'ArialMT', 'Arial', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:12px;
  2764. letter-spacing:normal;
  2765. color:#AAAAAA;
  2766. vertical-align:none;
  2767. text-align:left;
  2768. text-transform:none;
  2769. background-color:transparent;
  2770. border-color:transparent;
  2771. }
  2772. #u31784_div {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:191px;
  2778. height:23px;
  2779. background:inherit;
  2780. background-color:rgba(255, 255, 255, 1);
  2781. border:none;
  2782. border-radius:0px;
  2783. -moz-box-shadow:none;
  2784. -webkit-box-shadow:none;
  2785. box-shadow:none;
  2786. font-size:12px;
  2787. color:#AAAAAA;
  2788. }
  2789. #u31784 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:3776px;
  2793. top:471px;
  2794. width:191px;
  2795. height:23px;
  2796. display:flex;
  2797. font-size:12px;
  2798. color:#AAAAAA;
  2799. }
  2800. #u31784 .text {
  2801. position:absolute;
  2802. align-self:flex-start;
  2803. padding:2px 2px 2px 2px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u31784_div.disabled {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:0px;
  2811. top:0px;
  2812. width:191px;
  2813. height:23px;
  2814. background:inherit;
  2815. background-color:rgba(240, 240, 240, 1);
  2816. border:none;
  2817. border-radius:0px;
  2818. -moz-box-shadow:none;
  2819. -webkit-box-shadow:none;
  2820. box-shadow:none;
  2821. font-size:12px;
  2822. color:#AAAAAA;
  2823. }
  2824. #u31784.disabled {
  2825. }
  2826. .u31784_input_option {
  2827. font-size:12px;
  2828. }
  2829. #u31785_div {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:100px;
  2835. height:30px;
  2836. background:inherit;
  2837. background-color:rgba(255, 255, 255, 0);
  2838. border:none;
  2839. border-top:0px;
  2840. border-right:0px;
  2841. border-bottom:0px;
  2842. border-radius:0px;
  2843. border-top-left-radius:0px;
  2844. border-bottom-left-radius:0px;
  2845. -moz-box-shadow:none;
  2846. -webkit-box-shadow:none;
  2847. box-shadow:none;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:14px;
  2852. color:#7F7F7F;
  2853. }
  2854. #u31785 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:3673px;
  2858. top:469px;
  2859. width:100px;
  2860. height:30px;
  2861. display:flex;
  2862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2863. font-weight:400;
  2864. font-style:normal;
  2865. font-size:14px;
  2866. color:#7F7F7F;
  2867. }
  2868. #u31785 .text {
  2869. position:absolute;
  2870. align-self:flex-start;
  2871. padding:5px 10px 5px 0px;
  2872. box-sizing:border-box;
  2873. width:100%;
  2874. }
  2875. #u31785_text {
  2876. border-width:0px;
  2877. word-wrap:break-word;
  2878. text-transform:none;
  2879. }
  2880. #u31786 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:0px;
  2886. height:0px;
  2887. }
  2888. #u31787_div {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:200px;
  2894. height:30px;
  2895. background:inherit;
  2896. background-color:rgba(255, 255, 255, 1);
  2897. box-sizing:border-box;
  2898. border-width:1px;
  2899. border-style:solid;
  2900. border-color:rgba(215, 215, 215, 1);
  2901. border-radius:4px;
  2902. -moz-box-shadow:none;
  2903. -webkit-box-shadow:none;
  2904. box-shadow:none;
  2905. font-size:12px;
  2906. }
  2907. #u31787 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:4099px;
  2911. top:469px;
  2912. width:200px;
  2913. height:30px;
  2914. display:flex;
  2915. font-size:12px;
  2916. }
  2917. #u31787 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u31787_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u31788_input {
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:191px;
  2935. height:23px;
  2936. padding:2px 2px 2px 2px;
  2937. font-family:'ArialMT', 'Arial', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:12px;
  2941. letter-spacing:normal;
  2942. color:#AAAAAA;
  2943. vertical-align:none;
  2944. text-align:left;
  2945. text-transform:none;
  2946. background-color:transparent;
  2947. border-color:transparent;
  2948. }
  2949. #u31788_input.disabled {
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:191px;
  2954. height:23px;
  2955. padding:2px 2px 2px 2px;
  2956. font-family:'ArialMT', 'Arial', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:12px;
  2960. letter-spacing:normal;
  2961. color:#AAAAAA;
  2962. vertical-align:none;
  2963. text-align:left;
  2964. text-transform:none;
  2965. background-color:transparent;
  2966. border-color:transparent;
  2967. }
  2968. #u31788_div {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:191px;
  2974. height:23px;
  2975. background:inherit;
  2976. background-color:rgba(255, 255, 255, 1);
  2977. border:none;
  2978. border-radius:0px;
  2979. -moz-box-shadow:none;
  2980. -webkit-box-shadow:none;
  2981. box-shadow:none;
  2982. font-size:12px;
  2983. color:#AAAAAA;
  2984. }
  2985. #u31788 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:4102px;
  2989. top:471px;
  2990. width:191px;
  2991. height:23px;
  2992. display:flex;
  2993. font-size:12px;
  2994. color:#AAAAAA;
  2995. }
  2996. #u31788 .text {
  2997. position:absolute;
  2998. align-self:flex-start;
  2999. padding:2px 2px 2px 2px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u31788_div.disabled {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:191px;
  3009. height:23px;
  3010. background:inherit;
  3011. background-color:rgba(240, 240, 240, 1);
  3012. border:none;
  3013. border-radius:0px;
  3014. -moz-box-shadow:none;
  3015. -webkit-box-shadow:none;
  3016. box-shadow:none;
  3017. font-size:12px;
  3018. color:#AAAAAA;
  3019. }
  3020. #u31788.disabled {
  3021. }
  3022. .u31788_input_option {
  3023. font-size:12px;
  3024. }
  3025. #u31789_div {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:0px;
  3029. top:0px;
  3030. width:100px;
  3031. height:30px;
  3032. background:inherit;
  3033. background-color:rgba(255, 255, 255, 0);
  3034. border:none;
  3035. border-top:0px;
  3036. border-right:0px;
  3037. border-bottom:0px;
  3038. border-radius:0px;
  3039. border-top-left-radius:0px;
  3040. border-bottom-left-radius:0px;
  3041. -moz-box-shadow:none;
  3042. -webkit-box-shadow:none;
  3043. box-shadow:none;
  3044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3045. font-weight:400;
  3046. font-style:normal;
  3047. font-size:14px;
  3048. color:#7F7F7F;
  3049. }
  3050. #u31789 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:3999px;
  3054. top:469px;
  3055. width:100px;
  3056. height:30px;
  3057. display:flex;
  3058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. font-size:14px;
  3062. color:#7F7F7F;
  3063. }
  3064. #u31789 .text {
  3065. position:absolute;
  3066. align-self:flex-start;
  3067. padding:5px 10px 5px 0px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u31789_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. }
  3076. #u31790 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:0px;
  3082. height:0px;
  3083. }
  3084. #u31791_div {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:200px;
  3090. height:30px;
  3091. background:inherit;
  3092. background-color:rgba(255, 255, 255, 1);
  3093. box-sizing:border-box;
  3094. border-width:1px;
  3095. border-style:solid;
  3096. border-color:rgba(188, 188, 188, 1);
  3097. border-radius:4px;
  3098. -moz-box-shadow:none;
  3099. -webkit-box-shadow:none;
  3100. box-shadow:none;
  3101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:12px;
  3105. text-align:right;
  3106. }
  3107. #u31791 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:3457px;
  3111. top:509px;
  3112. width:200px;
  3113. height:30px;
  3114. display:flex;
  3115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:12px;
  3119. text-align:right;
  3120. }
  3121. #u31791 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:8px 15px 8px 15px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u31791_text {
  3129. border-width:0px;
  3130. word-wrap:break-word;
  3131. text-transform:none;
  3132. }
  3133. #u31792_input {
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:157px;
  3138. height:26px;
  3139. padding:2px 2px 2px 2px;
  3140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:12px;
  3144. letter-spacing:normal;
  3145. color:#7F7F7F;
  3146. vertical-align:none;
  3147. text-align:left;
  3148. text-transform:none;
  3149. background-color:transparent;
  3150. border-color:transparent;
  3151. }
  3152. #u31792_input.disabled {
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:157px;
  3157. height:26px;
  3158. padding:2px 2px 2px 2px;
  3159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3160. font-weight:400;
  3161. font-style:normal;
  3162. font-size:12px;
  3163. letter-spacing:normal;
  3164. color:#7F7F7F;
  3165. vertical-align:none;
  3166. text-align:left;
  3167. text-transform:none;
  3168. background-color:transparent;
  3169. border-color:transparent;
  3170. }
  3171. #u31792_div {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:157px;
  3177. height:26px;
  3178. background:inherit;
  3179. background-color:rgba(255, 255, 255, 1);
  3180. border:none;
  3181. border-radius:0px;
  3182. -moz-box-shadow:none;
  3183. -webkit-box-shadow:none;
  3184. box-shadow:none;
  3185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:12px;
  3189. color:#7F7F7F;
  3190. }
  3191. #u31792 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:3466px;
  3195. top:511px;
  3196. width:157px;
  3197. height:26px;
  3198. display:flex;
  3199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3200. font-weight:400;
  3201. font-style:normal;
  3202. font-size:12px;
  3203. color:#7F7F7F;
  3204. }
  3205. #u31792 .text {
  3206. position:absolute;
  3207. align-self:center;
  3208. padding:2px 2px 2px 2px;
  3209. box-sizing:border-box;
  3210. width:100%;
  3211. }
  3212. #u31792_div.disabled {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:157px;
  3218. height:26px;
  3219. background:inherit;
  3220. background-color:rgba(240, 240, 240, 1);
  3221. border:none;
  3222. border-radius:0px;
  3223. -moz-box-shadow:none;
  3224. -webkit-box-shadow:none;
  3225. box-shadow:none;
  3226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3227. font-weight:400;
  3228. font-style:normal;
  3229. font-size:12px;
  3230. color:#7F7F7F;
  3231. }
  3232. #u31792.disabled {
  3233. }
  3234. #u31793_div {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:100px;
  3240. height:27px;
  3241. background:inherit;
  3242. background-color:rgba(255, 255, 255, 0);
  3243. border:none;
  3244. border-top:0px;
  3245. border-right:0px;
  3246. border-bottom:0px;
  3247. border-radius:0px;
  3248. border-top-left-radius:0px;
  3249. border-bottom-left-radius:0px;
  3250. -moz-box-shadow:none;
  3251. -webkit-box-shadow:none;
  3252. box-shadow:none;
  3253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3254. font-weight:400;
  3255. font-style:normal;
  3256. font-size:12px;
  3257. color:#7F7F7F;
  3258. }
  3259. #u31793 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:3361px;
  3263. top:511px;
  3264. width:100px;
  3265. height:27px;
  3266. display:flex;
  3267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:12px;
  3271. color:#7F7F7F;
  3272. }
  3273. #u31793 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:5px 10px 5px 0px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u31793_text {
  3281. border-width:0px;
  3282. word-wrap:break-word;
  3283. text-transform:none;
  3284. }
  3285. #u31794 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:0px;
  3291. height:0px;
  3292. }
  3293. #u31795_div {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:200px;
  3299. height:30px;
  3300. background:inherit;
  3301. background-color:rgba(255, 255, 255, 1);
  3302. box-sizing:border-box;
  3303. border-width:1px;
  3304. border-style:solid;
  3305. border-color:rgba(188, 188, 188, 1);
  3306. border-radius:4px;
  3307. -moz-box-shadow:none;
  3308. -webkit-box-shadow:none;
  3309. box-shadow:none;
  3310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3311. font-weight:400;
  3312. font-style:normal;
  3313. font-size:12px;
  3314. text-align:right;
  3315. }
  3316. #u31795 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:3773px;
  3320. top:509px;
  3321. width:200px;
  3322. height:30px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. text-align:right;
  3329. }
  3330. #u31795 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:8px 15px 8px 15px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u31795_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. }
  3342. #u31796_input {
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:157px;
  3347. height:26px;
  3348. padding:2px 2px 2px 2px;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:12px;
  3353. letter-spacing:normal;
  3354. color:#7F7F7F;
  3355. vertical-align:none;
  3356. text-align:left;
  3357. text-transform:none;
  3358. background-color:transparent;
  3359. border-color:transparent;
  3360. }
  3361. #u31796_input.disabled {
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:157px;
  3366. height:26px;
  3367. padding:2px 2px 2px 2px;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:12px;
  3372. letter-spacing:normal;
  3373. color:#7F7F7F;
  3374. vertical-align:none;
  3375. text-align:left;
  3376. text-transform:none;
  3377. background-color:transparent;
  3378. border-color:transparent;
  3379. }
  3380. #u31796_div {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:157px;
  3386. height:26px;
  3387. background:inherit;
  3388. background-color:rgba(255, 255, 255, 1);
  3389. border:none;
  3390. border-radius:0px;
  3391. -moz-box-shadow:none;
  3392. -webkit-box-shadow:none;
  3393. box-shadow:none;
  3394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:12px;
  3398. color:#7F7F7F;
  3399. }
  3400. #u31796 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:3782px;
  3404. top:511px;
  3405. width:157px;
  3406. height:26px;
  3407. display:flex;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:12px;
  3412. color:#7F7F7F;
  3413. }
  3414. #u31796 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 2px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u31796_div.disabled {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:157px;
  3427. height:26px;
  3428. background:inherit;
  3429. background-color:rgba(240, 240, 240, 1);
  3430. border:none;
  3431. border-radius:0px;
  3432. -moz-box-shadow:none;
  3433. -webkit-box-shadow:none;
  3434. box-shadow:none;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:12px;
  3439. color:#7F7F7F;
  3440. }
  3441. #u31796.disabled {
  3442. }
  3443. #u31797_div {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:100px;
  3449. height:27px;
  3450. background:inherit;
  3451. background-color:rgba(255, 255, 255, 0);
  3452. border:none;
  3453. border-top:0px;
  3454. border-right:0px;
  3455. border-bottom:0px;
  3456. border-radius:0px;
  3457. border-top-left-radius:0px;
  3458. border-bottom-left-radius:0px;
  3459. -moz-box-shadow:none;
  3460. -webkit-box-shadow:none;
  3461. box-shadow:none;
  3462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:12px;
  3466. color:#7F7F7F;
  3467. }
  3468. #u31797 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:3677px;
  3472. top:511px;
  3473. width:100px;
  3474. height:27px;
  3475. display:flex;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:12px;
  3480. color:#7F7F7F;
  3481. }
  3482. #u31797 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:5px 10px 5px 0px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u31797_text {
  3490. border-width:0px;
  3491. word-wrap:break-word;
  3492. text-transform:none;
  3493. }
  3494. #u31798 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:0px;
  3500. height:0px;
  3501. }
  3502. #u31799_div {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:200px;
  3508. height:30px;
  3509. background:inherit;
  3510. background-color:rgba(255, 255, 255, 1);
  3511. box-sizing:border-box;
  3512. border-width:1px;
  3513. border-style:solid;
  3514. border-color:rgba(188, 188, 188, 1);
  3515. border-radius:4px;
  3516. -moz-box-shadow:none;
  3517. -webkit-box-shadow:none;
  3518. box-shadow:none;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:12px;
  3523. text-align:right;
  3524. }
  3525. #u31799 {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:4099px;
  3529. top:549px;
  3530. width:200px;
  3531. height:30px;
  3532. display:flex;
  3533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3534. font-weight:400;
  3535. font-style:normal;
  3536. font-size:12px;
  3537. text-align:right;
  3538. }
  3539. #u31799 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:8px 15px 8px 15px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u31799_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u31800_input {
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:157px;
  3557. height:26px;
  3558. padding:2px 2px 2px 2px;
  3559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:12px;
  3563. letter-spacing:normal;
  3564. color:#7F7F7F;
  3565. vertical-align:none;
  3566. text-align:left;
  3567. text-transform:none;
  3568. background-color:transparent;
  3569. border-color:transparent;
  3570. }
  3571. #u31800_input.disabled {
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:157px;
  3576. height:26px;
  3577. padding:2px 2px 2px 2px;
  3578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:12px;
  3582. letter-spacing:normal;
  3583. color:#7F7F7F;
  3584. vertical-align:none;
  3585. text-align:left;
  3586. text-transform:none;
  3587. background-color:transparent;
  3588. border-color:transparent;
  3589. }
  3590. #u31800_div {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:157px;
  3596. height:26px;
  3597. background:inherit;
  3598. background-color:rgba(255, 255, 255, 1);
  3599. border:none;
  3600. border-radius:0px;
  3601. -moz-box-shadow:none;
  3602. -webkit-box-shadow:none;
  3603. box-shadow:none;
  3604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:12px;
  3608. color:#7F7F7F;
  3609. }
  3610. #u31800 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:4108px;
  3614. top:551px;
  3615. width:157px;
  3616. height:26px;
  3617. display:flex;
  3618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. font-size:12px;
  3622. color:#7F7F7F;
  3623. }
  3624. #u31800 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 2px 2px 2px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u31800_div.disabled {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:157px;
  3637. height:26px;
  3638. background:inherit;
  3639. background-color:rgba(240, 240, 240, 1);
  3640. border:none;
  3641. border-radius:0px;
  3642. -moz-box-shadow:none;
  3643. -webkit-box-shadow:none;
  3644. box-shadow:none;
  3645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3646. font-weight:400;
  3647. font-style:normal;
  3648. font-size:12px;
  3649. color:#7F7F7F;
  3650. }
  3651. #u31800.disabled {
  3652. }
  3653. #u31801_div {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:100px;
  3659. height:27px;
  3660. background:inherit;
  3661. background-color:rgba(255, 255, 255, 0);
  3662. border:none;
  3663. border-top:0px;
  3664. border-right:0px;
  3665. border-bottom:0px;
  3666. border-radius:0px;
  3667. border-top-left-radius:0px;
  3668. border-bottom-left-radius:0px;
  3669. -moz-box-shadow:none;
  3670. -webkit-box-shadow:none;
  3671. box-shadow:none;
  3672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:12px;
  3676. color:#7F7F7F;
  3677. }
  3678. #u31801 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:4003px;
  3682. top:551px;
  3683. width:100px;
  3684. height:27px;
  3685. display:flex;
  3686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3687. font-weight:400;
  3688. font-style:normal;
  3689. font-size:12px;
  3690. color:#7F7F7F;
  3691. }
  3692. #u31801 .text {
  3693. position:absolute;
  3694. align-self:center;
  3695. padding:5px 10px 5px 0px;
  3696. box-sizing:border-box;
  3697. width:100%;
  3698. }
  3699. #u31801_text {
  3700. border-width:0px;
  3701. word-wrap:break-word;
  3702. text-transform:none;
  3703. }
  3704. #u31802 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:0px;
  3708. top:0px;
  3709. width:0px;
  3710. height:0px;
  3711. }
  3712. #u31803_div {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:200px;
  3718. height:30px;
  3719. background:inherit;
  3720. background-color:rgba(255, 255, 255, 1);
  3721. box-sizing:border-box;
  3722. border-width:1px;
  3723. border-style:solid;
  3724. border-color:rgba(215, 215, 215, 1);
  3725. border-radius:4px;
  3726. -moz-box-shadow:none;
  3727. -webkit-box-shadow:none;
  3728. box-shadow:none;
  3729. font-size:12px;
  3730. }
  3731. #u31803 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:3457px;
  3735. top:549px;
  3736. width:200px;
  3737. height:30px;
  3738. display:flex;
  3739. font-size:12px;
  3740. }
  3741. #u31803 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:2px 2px 2px 2px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u31803_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. visibility:hidden;
  3753. }
  3754. #u31804_input {
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:191px;
  3759. height:23px;
  3760. padding:2px 2px 2px 2px;
  3761. font-family:'ArialMT', 'Arial', sans-serif;
  3762. font-weight:400;
  3763. font-style:normal;
  3764. font-size:12px;
  3765. letter-spacing:normal;
  3766. color:#AAAAAA;
  3767. vertical-align:none;
  3768. text-align:left;
  3769. text-transform:none;
  3770. background-color:transparent;
  3771. border-color:transparent;
  3772. }
  3773. #u31804_input.disabled {
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:191px;
  3778. height:23px;
  3779. padding:2px 2px 2px 2px;
  3780. font-family:'ArialMT', 'Arial', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:12px;
  3784. letter-spacing:normal;
  3785. color:#AAAAAA;
  3786. vertical-align:none;
  3787. text-align:left;
  3788. text-transform:none;
  3789. background-color:transparent;
  3790. border-color:transparent;
  3791. }
  3792. #u31804_div {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:0px;
  3796. top:0px;
  3797. width:191px;
  3798. height:23px;
  3799. background:inherit;
  3800. background-color:rgba(255, 255, 255, 1);
  3801. border:none;
  3802. border-radius:0px;
  3803. -moz-box-shadow:none;
  3804. -webkit-box-shadow:none;
  3805. box-shadow:none;
  3806. font-size:12px;
  3807. color:#AAAAAA;
  3808. }
  3809. #u31804 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:3460px;
  3813. top:551px;
  3814. width:191px;
  3815. height:23px;
  3816. display:flex;
  3817. font-size:12px;
  3818. color:#AAAAAA;
  3819. }
  3820. #u31804 .text {
  3821. position:absolute;
  3822. align-self:flex-start;
  3823. padding:2px 2px 2px 2px;
  3824. box-sizing:border-box;
  3825. width:100%;
  3826. }
  3827. #u31804_div.disabled {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:191px;
  3833. height:23px;
  3834. background:inherit;
  3835. background-color:rgba(240, 240, 240, 1);
  3836. border:none;
  3837. border-radius:0px;
  3838. -moz-box-shadow:none;
  3839. -webkit-box-shadow:none;
  3840. box-shadow:none;
  3841. font-size:12px;
  3842. color:#AAAAAA;
  3843. }
  3844. #u31804.disabled {
  3845. }
  3846. .u31804_input_option {
  3847. font-size:12px;
  3848. }
  3849. #u31805_div {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:100px;
  3855. height:30px;
  3856. background:inherit;
  3857. background-color:rgba(255, 255, 255, 0);
  3858. border:none;
  3859. border-top:0px;
  3860. border-right:0px;
  3861. border-bottom:0px;
  3862. border-radius:0px;
  3863. border-top-left-radius:0px;
  3864. border-bottom-left-radius:0px;
  3865. -moz-box-shadow:none;
  3866. -webkit-box-shadow:none;
  3867. box-shadow:none;
  3868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:14px;
  3872. color:#7F7F7F;
  3873. }
  3874. #u31805 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:3361px;
  3878. top:549px;
  3879. width:100px;
  3880. height:30px;
  3881. display:flex;
  3882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3883. font-weight:400;
  3884. font-style:normal;
  3885. font-size:14px;
  3886. color:#7F7F7F;
  3887. }
  3888. #u31805 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:5px 10px 5px 0px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u31805_text {
  3896. border-width:0px;
  3897. word-wrap:break-word;
  3898. text-transform:none;
  3899. }
  3900. #u31806 {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:0px;
  3906. height:0px;
  3907. }
  3908. #u31807_div {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:200px;
  3914. height:30px;
  3915. background:inherit;
  3916. background-color:rgba(255, 255, 255, 1);
  3917. box-sizing:border-box;
  3918. border-width:1px;
  3919. border-style:solid;
  3920. border-color:rgba(188, 188, 188, 1);
  3921. border-radius:4px;
  3922. -moz-box-shadow:none;
  3923. -webkit-box-shadow:none;
  3924. box-shadow:none;
  3925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. font-size:12px;
  3929. text-align:right;
  3930. }
  3931. #u31807 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:3773px;
  3935. top:549px;
  3936. width:200px;
  3937. height:30px;
  3938. display:flex;
  3939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:12px;
  3943. text-align:right;
  3944. }
  3945. #u31807 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:8px 15px 8px 15px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u31807_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u31808_input {
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:157px;
  3963. height:26px;
  3964. padding:2px 2px 2px 2px;
  3965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:12px;
  3969. letter-spacing:normal;
  3970. color:#7F7F7F;
  3971. vertical-align:none;
  3972. text-align:left;
  3973. text-transform:none;
  3974. background-color:transparent;
  3975. border-color:transparent;
  3976. }
  3977. #u31808_input.disabled {
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:157px;
  3982. height:26px;
  3983. padding:2px 2px 2px 2px;
  3984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:12px;
  3988. letter-spacing:normal;
  3989. color:#7F7F7F;
  3990. vertical-align:none;
  3991. text-align:left;
  3992. text-transform:none;
  3993. background-color:transparent;
  3994. border-color:transparent;
  3995. }
  3996. #u31808_div {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:157px;
  4002. height:26px;
  4003. background:inherit;
  4004. background-color:rgba(255, 255, 255, 1);
  4005. border:none;
  4006. border-radius:0px;
  4007. -moz-box-shadow:none;
  4008. -webkit-box-shadow:none;
  4009. box-shadow:none;
  4010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4011. font-weight:400;
  4012. font-style:normal;
  4013. font-size:12px;
  4014. color:#7F7F7F;
  4015. }
  4016. #u31808 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:3782px;
  4020. top:551px;
  4021. width:157px;
  4022. height:26px;
  4023. display:flex;
  4024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:12px;
  4028. color:#7F7F7F;
  4029. }
  4030. #u31808 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:2px 2px 2px 2px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u31808_div.disabled {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:157px;
  4043. height:26px;
  4044. background:inherit;
  4045. background-color:rgba(240, 240, 240, 1);
  4046. border:none;
  4047. border-radius:0px;
  4048. -moz-box-shadow:none;
  4049. -webkit-box-shadow:none;
  4050. box-shadow:none;
  4051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:12px;
  4055. color:#7F7F7F;
  4056. }
  4057. #u31808.disabled {
  4058. }
  4059. #u31809_div {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:100px;
  4065. height:27px;
  4066. background:inherit;
  4067. background-color:rgba(255, 255, 255, 0);
  4068. border:none;
  4069. border-top:0px;
  4070. border-right:0px;
  4071. border-bottom:0px;
  4072. border-radius:0px;
  4073. border-top-left-radius:0px;
  4074. border-bottom-left-radius:0px;
  4075. -moz-box-shadow:none;
  4076. -webkit-box-shadow:none;
  4077. box-shadow:none;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:12px;
  4082. color:#7F7F7F;
  4083. }
  4084. #u31809 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:3677px;
  4088. top:551px;
  4089. width:100px;
  4090. height:27px;
  4091. display:flex;
  4092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:12px;
  4096. color:#7F7F7F;
  4097. }
  4098. #u31809 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:5px 10px 5px 0px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u31809_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. }
  4110. #u31810 {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:0px;
  4116. height:0px;
  4117. }
  4118. #u31811_div {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:200px;
  4124. height:30px;
  4125. background:inherit;
  4126. background-color:rgba(255, 255, 255, 1);
  4127. box-sizing:border-box;
  4128. border-width:1px;
  4129. border-style:solid;
  4130. border-color:rgba(188, 188, 188, 1);
  4131. border-radius:4px;
  4132. -moz-box-shadow:none;
  4133. -webkit-box-shadow:none;
  4134. box-shadow:none;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:12px;
  4139. color:#FFFFFF;
  4140. }
  4141. #u31811 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:4099px;
  4145. top:509px;
  4146. width:200px;
  4147. height:30px;
  4148. display:flex;
  4149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#FFFFFF;
  4154. }
  4155. #u31811 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:8px 15px 8px 15px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u31811_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u31812_div {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:61px;
  4174. height:17px;
  4175. background:inherit;
  4176. background-color:rgba(255, 255, 255, 0);
  4177. border:none;
  4178. border-radius:0px;
  4179. -moz-box-shadow:none;
  4180. -webkit-box-shadow:none;
  4181. box-shadow:none;
  4182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4183. font-weight:400;
  4184. font-style:normal;
  4185. font-size:12px;
  4186. color:#BCBCBC;
  4187. }
  4188. #u31812 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:4108px;
  4192. top:514px;
  4193. width:61px;
  4194. height:17px;
  4195. display:flex;
  4196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4197. font-weight:400;
  4198. font-style:normal;
  4199. font-size:12px;
  4200. color:#BCBCBC;
  4201. }
  4202. #u31812 .text {
  4203. position:absolute;
  4204. align-self:flex-start;
  4205. padding:0px 0px 0px 0px;
  4206. box-sizing:border-box;
  4207. width:100%;
  4208. }
  4209. #u31812_text {
  4210. border-width:0px;
  4211. white-space:nowrap;
  4212. text-transform:none;
  4213. }
  4214. #u31813_img {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:14px;
  4220. height:14px;
  4221. }
  4222. #u31813 {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:4278px;
  4226. top:517px;
  4227. width:14px;
  4228. height:14px;
  4229. display:flex;
  4230. opacity:0.5;
  4231. font-size:12px;
  4232. }
  4233. #u31813 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 2px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u31813_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. visibility:hidden;
  4245. }
  4246. #u31814_div {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:100px;
  4252. height:26px;
  4253. background:inherit;
  4254. background-color:rgba(255, 255, 255, 0);
  4255. border:none;
  4256. border-top:0px;
  4257. border-right:0px;
  4258. border-bottom:0px;
  4259. border-radius:0px;
  4260. border-top-left-radius:0px;
  4261. border-bottom-left-radius:0px;
  4262. -moz-box-shadow:none;
  4263. -webkit-box-shadow:none;
  4264. box-shadow:none;
  4265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:11px;
  4269. color:#7F7F7F;
  4270. }
  4271. #u31814 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:4003px;
  4275. top:511px;
  4276. width:100px;
  4277. height:26px;
  4278. display:flex;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:11px;
  4283. color:#7F7F7F;
  4284. }
  4285. #u31814 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:5px 10px 5px 0px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u31814_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. }
  4297. #u31815 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:0px;
  4303. height:0px;
  4304. }
  4305. #u31816_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:200px;
  4311. height:30px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 1);
  4314. box-sizing:border-box;
  4315. border-width:1px;
  4316. border-style:solid;
  4317. border-color:rgba(188, 188, 188, 1);
  4318. border-radius:4px;
  4319. -moz-box-shadow:none;
  4320. -webkit-box-shadow:none;
  4321. box-shadow:none;
  4322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:12px;
  4326. text-align:right;
  4327. }
  4328. #u31816 {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:3457px;
  4332. top:589px;
  4333. width:200px;
  4334. height:30px;
  4335. display:flex;
  4336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4337. font-weight:400;
  4338. font-style:normal;
  4339. font-size:12px;
  4340. text-align:right;
  4341. }
  4342. #u31816 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:8px 15px 8px 15px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u31816_text {
  4350. border-width:0px;
  4351. word-wrap:break-word;
  4352. text-transform:none;
  4353. }
  4354. #u31817_input {
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:157px;
  4359. height:26px;
  4360. padding:2px 2px 2px 2px;
  4361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4362. font-weight:400;
  4363. font-style:normal;
  4364. font-size:12px;
  4365. letter-spacing:normal;
  4366. color:#7F7F7F;
  4367. vertical-align:none;
  4368. text-align:left;
  4369. text-transform:none;
  4370. background-color:transparent;
  4371. border-color:transparent;
  4372. }
  4373. #u31817_input.disabled {
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:157px;
  4378. height:26px;
  4379. padding:2px 2px 2px 2px;
  4380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4381. font-weight:400;
  4382. font-style:normal;
  4383. font-size:12px;
  4384. letter-spacing:normal;
  4385. color:#7F7F7F;
  4386. vertical-align:none;
  4387. text-align:left;
  4388. text-transform:none;
  4389. background-color:transparent;
  4390. border-color:transparent;
  4391. }
  4392. #u31817_div {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:0px;
  4397. width:157px;
  4398. height:26px;
  4399. background:inherit;
  4400. background-color:rgba(255, 255, 255, 1);
  4401. border:none;
  4402. border-radius:0px;
  4403. -moz-box-shadow:none;
  4404. -webkit-box-shadow:none;
  4405. box-shadow:none;
  4406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4407. font-weight:400;
  4408. font-style:normal;
  4409. font-size:12px;
  4410. color:#7F7F7F;
  4411. }
  4412. #u31817 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:3466px;
  4416. top:591px;
  4417. width:157px;
  4418. height:26px;
  4419. display:flex;
  4420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:12px;
  4424. color:#7F7F7F;
  4425. }
  4426. #u31817 .text {
  4427. position:absolute;
  4428. align-self:center;
  4429. padding:2px 2px 2px 2px;
  4430. box-sizing:border-box;
  4431. width:100%;
  4432. }
  4433. #u31817_div.disabled {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:157px;
  4439. height:26px;
  4440. background:inherit;
  4441. background-color:rgba(240, 240, 240, 1);
  4442. border:none;
  4443. border-radius:0px;
  4444. -moz-box-shadow:none;
  4445. -webkit-box-shadow:none;
  4446. box-shadow:none;
  4447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4448. font-weight:400;
  4449. font-style:normal;
  4450. font-size:12px;
  4451. color:#7F7F7F;
  4452. }
  4453. #u31817.disabled {
  4454. }
  4455. #u31818_div {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:100px;
  4461. height:27px;
  4462. background:inherit;
  4463. background-color:rgba(255, 255, 255, 0);
  4464. border:none;
  4465. border-top:0px;
  4466. border-right:0px;
  4467. border-bottom:0px;
  4468. border-radius:0px;
  4469. border-top-left-radius:0px;
  4470. border-bottom-left-radius:0px;
  4471. -moz-box-shadow:none;
  4472. -webkit-box-shadow:none;
  4473. box-shadow:none;
  4474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4475. font-weight:400;
  4476. font-style:normal;
  4477. font-size:12px;
  4478. color:#7F7F7F;
  4479. }
  4480. #u31818 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:3361px;
  4484. top:591px;
  4485. width:100px;
  4486. height:27px;
  4487. display:flex;
  4488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:12px;
  4492. color:#7F7F7F;
  4493. }
  4494. #u31818 .text {
  4495. position:absolute;
  4496. align-self:center;
  4497. padding:5px 10px 5px 0px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u31818_text {
  4502. border-width:0px;
  4503. word-wrap:break-word;
  4504. text-transform:none;
  4505. }
  4506. #u31819 {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:0px;
  4512. height:0px;
  4513. }
  4514. #u31820_div {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:200px;
  4520. height:30px;
  4521. background:inherit;
  4522. background-color:rgba(255, 255, 255, 1);
  4523. box-sizing:border-box;
  4524. border-width:1px;
  4525. border-style:solid;
  4526. border-color:rgba(188, 188, 188, 1);
  4527. border-radius:4px;
  4528. -moz-box-shadow:none;
  4529. -webkit-box-shadow:none;
  4530. box-shadow:none;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:12px;
  4535. text-align:right;
  4536. }
  4537. #u31820 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:3773px;
  4541. top:587px;
  4542. width:200px;
  4543. height:30px;
  4544. display:flex;
  4545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4546. font-weight:400;
  4547. font-style:normal;
  4548. font-size:12px;
  4549. text-align:right;
  4550. }
  4551. #u31820 .text {
  4552. position:absolute;
  4553. align-self:center;
  4554. padding:8px 15px 8px 15px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u31820_text {
  4559. border-width:0px;
  4560. word-wrap:break-word;
  4561. text-transform:none;
  4562. visibility:hidden;
  4563. }
  4564. #u31821_input {
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:157px;
  4569. height:26px;
  4570. padding:2px 2px 2px 2px;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:12px;
  4575. letter-spacing:normal;
  4576. color:#7F7F7F;
  4577. vertical-align:none;
  4578. text-align:left;
  4579. text-transform:none;
  4580. background-color:transparent;
  4581. border-color:transparent;
  4582. }
  4583. #u31821_input.disabled {
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:157px;
  4588. height:26px;
  4589. padding:2px 2px 2px 2px;
  4590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4591. font-weight:400;
  4592. font-style:normal;
  4593. font-size:12px;
  4594. letter-spacing:normal;
  4595. color:#7F7F7F;
  4596. vertical-align:none;
  4597. text-align:left;
  4598. text-transform:none;
  4599. background-color:transparent;
  4600. border-color:transparent;
  4601. }
  4602. #u31821_div {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:157px;
  4608. height:26px;
  4609. background:inherit;
  4610. background-color:rgba(255, 255, 255, 1);
  4611. border:none;
  4612. border-radius:0px;
  4613. -moz-box-shadow:none;
  4614. -webkit-box-shadow:none;
  4615. box-shadow:none;
  4616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4617. font-weight:400;
  4618. font-style:normal;
  4619. font-size:12px;
  4620. color:#7F7F7F;
  4621. }
  4622. #u31821 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:3782px;
  4626. top:589px;
  4627. width:157px;
  4628. height:26px;
  4629. display:flex;
  4630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:12px;
  4634. color:#7F7F7F;
  4635. }
  4636. #u31821 .text {
  4637. position:absolute;
  4638. align-self:center;
  4639. padding:2px 2px 2px 2px;
  4640. box-sizing:border-box;
  4641. width:100%;
  4642. }
  4643. #u31821_div.disabled {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:157px;
  4649. height:26px;
  4650. background:inherit;
  4651. background-color:rgba(240, 240, 240, 1);
  4652. border:none;
  4653. border-radius:0px;
  4654. -moz-box-shadow:none;
  4655. -webkit-box-shadow:none;
  4656. box-shadow:none;
  4657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4658. font-weight:400;
  4659. font-style:normal;
  4660. font-size:12px;
  4661. color:#7F7F7F;
  4662. }
  4663. #u31821.disabled {
  4664. }
  4665. #u31822_div {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:100px;
  4671. height:27px;
  4672. background:inherit;
  4673. background-color:rgba(255, 255, 255, 0);
  4674. border:none;
  4675. border-top:0px;
  4676. border-right:0px;
  4677. border-bottom:0px;
  4678. border-radius:0px;
  4679. border-top-left-radius:0px;
  4680. border-bottom-left-radius:0px;
  4681. -moz-box-shadow:none;
  4682. -webkit-box-shadow:none;
  4683. box-shadow:none;
  4684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:12px;
  4688. color:#7F7F7F;
  4689. }
  4690. #u31822 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:3677px;
  4694. top:589px;
  4695. width:100px;
  4696. height:27px;
  4697. display:flex;
  4698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4699. font-weight:400;
  4700. font-style:normal;
  4701. font-size:12px;
  4702. color:#7F7F7F;
  4703. }
  4704. #u31822 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:5px 10px 5px 0px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u31822_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. }
  4716. #u31823 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:0px;
  4722. height:0px;
  4723. }
  4724. #u31824_div {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:0px;
  4728. top:0px;
  4729. width:200px;
  4730. height:30px;
  4731. background:inherit;
  4732. background-color:rgba(255, 255, 255, 1);
  4733. box-sizing:border-box;
  4734. border-width:1px;
  4735. border-style:solid;
  4736. border-color:rgba(188, 188, 188, 1);
  4737. border-radius:4px;
  4738. -moz-box-shadow:none;
  4739. -webkit-box-shadow:none;
  4740. box-shadow:none;
  4741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:12px;
  4745. text-align:right;
  4746. }
  4747. #u31824 {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:4099px;
  4751. top:587px;
  4752. width:200px;
  4753. height:30px;
  4754. display:flex;
  4755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4756. font-weight:400;
  4757. font-style:normal;
  4758. font-size:12px;
  4759. text-align:right;
  4760. }
  4761. #u31824 .text {
  4762. position:absolute;
  4763. align-self:center;
  4764. padding:8px 15px 8px 15px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u31824_text {
  4769. border-width:0px;
  4770. word-wrap:break-word;
  4771. text-transform:none;
  4772. visibility:hidden;
  4773. }
  4774. #u31825_input {
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:157px;
  4779. height:26px;
  4780. padding:2px 2px 2px 2px;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:12px;
  4785. letter-spacing:normal;
  4786. color:#7F7F7F;
  4787. vertical-align:none;
  4788. text-align:left;
  4789. text-transform:none;
  4790. background-color:transparent;
  4791. border-color:transparent;
  4792. }
  4793. #u31825_input.disabled {
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:157px;
  4798. height:26px;
  4799. padding:2px 2px 2px 2px;
  4800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4801. font-weight:400;
  4802. font-style:normal;
  4803. font-size:12px;
  4804. letter-spacing:normal;
  4805. color:#7F7F7F;
  4806. vertical-align:none;
  4807. text-align:left;
  4808. text-transform:none;
  4809. background-color:transparent;
  4810. border-color:transparent;
  4811. }
  4812. #u31825_div {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:157px;
  4818. height:26px;
  4819. background:inherit;
  4820. background-color:rgba(255, 255, 255, 1);
  4821. border:none;
  4822. border-radius:0px;
  4823. -moz-box-shadow:none;
  4824. -webkit-box-shadow:none;
  4825. box-shadow:none;
  4826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4827. font-weight:400;
  4828. font-style:normal;
  4829. font-size:12px;
  4830. color:#7F7F7F;
  4831. }
  4832. #u31825 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:4108px;
  4836. top:589px;
  4837. width:157px;
  4838. height:26px;
  4839. display:flex;
  4840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:12px;
  4844. color:#7F7F7F;
  4845. }
  4846. #u31825 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 2px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u31825_div.disabled {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:0px;
  4857. top:0px;
  4858. width:157px;
  4859. height:26px;
  4860. background:inherit;
  4861. background-color:rgba(240, 240, 240, 1);
  4862. border:none;
  4863. border-radius:0px;
  4864. -moz-box-shadow:none;
  4865. -webkit-box-shadow:none;
  4866. box-shadow:none;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:12px;
  4871. color:#7F7F7F;
  4872. }
  4873. #u31825.disabled {
  4874. }
  4875. #u31826_div {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:100px;
  4881. height:27px;
  4882. background:inherit;
  4883. background-color:rgba(255, 255, 255, 0);
  4884. border:none;
  4885. border-top:0px;
  4886. border-right:0px;
  4887. border-bottom:0px;
  4888. border-radius:0px;
  4889. border-top-left-radius:0px;
  4890. border-bottom-left-radius:0px;
  4891. -moz-box-shadow:none;
  4892. -webkit-box-shadow:none;
  4893. box-shadow:none;
  4894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4895. font-weight:400;
  4896. font-style:normal;
  4897. font-size:12px;
  4898. color:#7F7F7F;
  4899. }
  4900. #u31826 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:4003px;
  4904. top:589px;
  4905. width:100px;
  4906. height:27px;
  4907. display:flex;
  4908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:12px;
  4912. color:#7F7F7F;
  4913. }
  4914. #u31826 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:5px 10px 5px 0px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u31826_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. }
  4926. #u31827 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:0px;
  4930. top:0px;
  4931. width:0px;
  4932. height:0px;
  4933. }
  4934. #u31828_div {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:842px;
  4940. height:60px;
  4941. background:inherit;
  4942. background-color:rgba(255, 255, 255, 1);
  4943. box-sizing:border-box;
  4944. border-width:1px;
  4945. border-style:solid;
  4946. border-color:rgba(188, 188, 188, 1);
  4947. border-radius:4px;
  4948. -moz-box-shadow:none;
  4949. -webkit-box-shadow:none;
  4950. box-shadow:none;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:12px;
  4955. text-align:right;
  4956. }
  4957. #u31828 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:3457px;
  4961. top:629px;
  4962. width:842px;
  4963. height:60px;
  4964. display:flex;
  4965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4966. font-weight:400;
  4967. font-style:normal;
  4968. font-size:12px;
  4969. text-align:right;
  4970. }
  4971. #u31828 .text {
  4972. position:absolute;
  4973. align-self:center;
  4974. padding:8px 15px 8px 15px;
  4975. box-sizing:border-box;
  4976. width:100%;
  4977. }
  4978. #u31828_text {
  4979. border-width:0px;
  4980. word-wrap:break-word;
  4981. text-transform:none;
  4982. visibility:hidden;
  4983. }
  4984. #u31829_input {
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:157px;
  4989. height:26px;
  4990. padding:2px 2px 2px 2px;
  4991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:12px;
  4995. letter-spacing:normal;
  4996. color:#7F7F7F;
  4997. vertical-align:none;
  4998. text-align:left;
  4999. text-transform:none;
  5000. background-color:transparent;
  5001. border-color:transparent;
  5002. }
  5003. #u31829_input.disabled {
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:157px;
  5008. height:26px;
  5009. padding:2px 2px 2px 2px;
  5010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:12px;
  5014. letter-spacing:normal;
  5015. color:#7F7F7F;
  5016. vertical-align:none;
  5017. text-align:left;
  5018. text-transform:none;
  5019. background-color:transparent;
  5020. border-color:transparent;
  5021. }
  5022. #u31829_div {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:157px;
  5028. height:26px;
  5029. background:inherit;
  5030. background-color:rgba(255, 255, 255, 1);
  5031. border:none;
  5032. border-radius:0px;
  5033. -moz-box-shadow:none;
  5034. -webkit-box-shadow:none;
  5035. box-shadow:none;
  5036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. font-size:12px;
  5040. color:#7F7F7F;
  5041. }
  5042. #u31829 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:3466px;
  5046. top:631px;
  5047. width:157px;
  5048. height:26px;
  5049. display:flex;
  5050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:12px;
  5054. color:#7F7F7F;
  5055. }
  5056. #u31829 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:2px 2px 2px 2px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u31829_div.disabled {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:157px;
  5069. height:26px;
  5070. background:inherit;
  5071. background-color:rgba(240, 240, 240, 1);
  5072. border:none;
  5073. border-radius:0px;
  5074. -moz-box-shadow:none;
  5075. -webkit-box-shadow:none;
  5076. box-shadow:none;
  5077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:12px;
  5081. color:#7F7F7F;
  5082. }
  5083. #u31829.disabled {
  5084. }
  5085. #u31830_div {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:100px;
  5091. height:27px;
  5092. background:inherit;
  5093. background-color:rgba(255, 255, 255, 0);
  5094. border:none;
  5095. border-top:0px;
  5096. border-right:0px;
  5097. border-bottom:0px;
  5098. border-radius:0px;
  5099. border-top-left-radius:0px;
  5100. border-bottom-left-radius:0px;
  5101. -moz-box-shadow:none;
  5102. -webkit-box-shadow:none;
  5103. box-shadow:none;
  5104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:12px;
  5108. color:#7F7F7F;
  5109. }
  5110. #u31830 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:3361px;
  5114. top:631px;
  5115. width:100px;
  5116. height:27px;
  5117. display:flex;
  5118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:12px;
  5122. color:#7F7F7F;
  5123. }
  5124. #u31830 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:5px 10px 5px 0px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u31830_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. }
  5136. #u31831_div {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:60px;
  5142. height:60px;
  5143. background:inherit;
  5144. background-color:rgba(255, 255, 255, 1);
  5145. box-sizing:border-box;
  5146. border-width:1px;
  5147. border-style:solid;
  5148. border-color:rgba(188, 188, 188, 1);
  5149. border-radius:4px;
  5150. -moz-box-shadow:none;
  5151. -webkit-box-shadow:none;
  5152. box-shadow:none;
  5153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5154. font-weight:400;
  5155. font-style:normal;
  5156. font-size:28px;
  5157. }
  5158. #u31831 {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:3457px;
  5162. top:700px;
  5163. width:60px;
  5164. height:60px;
  5165. display:flex;
  5166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. font-size:28px;
  5170. }
  5171. #u31831 .text {
  5172. position:absolute;
  5173. align-self:center;
  5174. padding:8px 15px 8px 15px;
  5175. box-sizing:border-box;
  5176. width:100%;
  5177. }
  5178. #u31831_text {
  5179. border-width:0px;
  5180. word-wrap:break-word;
  5181. text-transform:none;
  5182. }
  5183. #u31832_div {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:100px;
  5189. height:27px;
  5190. background:inherit;
  5191. background-color:rgba(255, 255, 255, 0);
  5192. border:none;
  5193. border-top:0px;
  5194. border-right:0px;
  5195. border-bottom:0px;
  5196. border-radius:0px;
  5197. border-top-left-radius:0px;
  5198. border-bottom-left-radius:0px;
  5199. -moz-box-shadow:none;
  5200. -webkit-box-shadow:none;
  5201. box-shadow:none;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:12px;
  5206. color:#7F7F7F;
  5207. }
  5208. #u31832 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:3361px;
  5212. top:702px;
  5213. width:100px;
  5214. height:27px;
  5215. display:flex;
  5216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:12px;
  5220. color:#7F7F7F;
  5221. }
  5222. #u31832 .text {
  5223. position:absolute;
  5224. align-self:center;
  5225. padding:5px 10px 5px 0px;
  5226. box-sizing:border-box;
  5227. width:100%;
  5228. }
  5229. #u31832_text {
  5230. border-width:0px;
  5231. word-wrap:break-word;
  5232. text-transform:none;
  5233. }
  5234. #u31833_div {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:0px;
  5238. top:0px;
  5239. width:83px;
  5240. height:35px;
  5241. background:inherit;
  5242. background-color:rgba(255, 255, 255, 0);
  5243. border:none;
  5244. border-top:0px;
  5245. border-right:0px;
  5246. border-bottom:0px;
  5247. border-radius:0px;
  5248. border-top-left-radius:0px;
  5249. border-bottom-left-radius:0px;
  5250. -moz-box-shadow:none;
  5251. -webkit-box-shadow:none;
  5252. box-shadow:none;
  5253. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5254. font-weight:500;
  5255. font-style:normal;
  5256. font-size:18px;
  5257. }
  5258. #u31833 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:3361px;
  5262. top:780px;
  5263. width:83px;
  5264. height:35px;
  5265. display:flex;
  5266. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5267. font-weight:500;
  5268. font-style:normal;
  5269. font-size:18px;
  5270. }
  5271. #u31833 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:5px 10px 5px 0px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u31833_text {
  5279. border-width:0px;
  5280. white-space:nowrap;
  5281. text-transform:none;
  5282. }
  5283. #u31834_div {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:100px;
  5289. height:30px;
  5290. background:inherit;
  5291. background-color:rgba(255, 255, 255, 0);
  5292. border:none;
  5293. border-top:0px;
  5294. border-right:0px;
  5295. border-bottom:0px;
  5296. border-radius:0px;
  5297. border-top-left-radius:0px;
  5298. border-bottom-left-radius:0px;
  5299. -moz-box-shadow:none;
  5300. -webkit-box-shadow:none;
  5301. box-shadow:none;
  5302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:14px;
  5306. color:#7F7F7F;
  5307. }
  5308. #u31834 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:3361px;
  5312. top:835px;
  5313. width:100px;
  5314. height:30px;
  5315. display:flex;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:14px;
  5320. color:#7F7F7F;
  5321. }
  5322. #u31834 .text {
  5323. position:absolute;
  5324. align-self:center;
  5325. padding:5px 10px 5px 0px;
  5326. box-sizing:border-box;
  5327. width:100%;
  5328. }
  5329. #u31834_text {
  5330. border-width:0px;
  5331. word-wrap:break-word;
  5332. text-transform:none;
  5333. }
  5334. #u31835 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:0px;
  5340. height:0px;
  5341. }
  5342. #u31836_div {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:200px;
  5348. height:30px;
  5349. background:inherit;
  5350. background-color:rgba(255, 255, 255, 1);
  5351. box-sizing:border-box;
  5352. border-width:1px;
  5353. border-style:solid;
  5354. border-color:rgba(201, 201, 201, 1);
  5355. border-radius:4px;
  5356. -moz-box-shadow:none;
  5357. -webkit-box-shadow:none;
  5358. box-shadow:none;
  5359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:12px;
  5363. color:#CCCCCC;
  5364. text-align:right;
  5365. }
  5366. #u31836 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:3457px;
  5370. top:835px;
  5371. width:200px;
  5372. height:30px;
  5373. display:flex;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:12px;
  5378. color:#CCCCCC;
  5379. text-align:right;
  5380. }
  5381. #u31836 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 8px 2px 8px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u31836_text {
  5389. border-width:0px;
  5390. word-wrap:break-word;
  5391. text-transform:none;
  5392. visibility:hidden;
  5393. }
  5394. #u31837_input {
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:180px;
  5399. height:26px;
  5400. padding:2px 2px 2px 2px;
  5401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5402. font-weight:400;
  5403. font-style:normal;
  5404. font-size:12px;
  5405. letter-spacing:normal;
  5406. color:#7F7F7F;
  5407. vertical-align:none;
  5408. text-align:left;
  5409. text-transform:none;
  5410. background-color:transparent;
  5411. border-color:transparent;
  5412. }
  5413. #u31837_input.disabled {
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:180px;
  5418. height:26px;
  5419. padding:2px 2px 2px 2px;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. font-size:12px;
  5424. letter-spacing:normal;
  5425. color:#7F7F7F;
  5426. vertical-align:none;
  5427. text-align:left;
  5428. text-transform:none;
  5429. background-color:transparent;
  5430. border-color:transparent;
  5431. }
  5432. #u31837_div {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:180px;
  5438. height:26px;
  5439. background:inherit;
  5440. background-color:rgba(255, 255, 255, 1);
  5441. border:none;
  5442. border-radius:0px;
  5443. -moz-box-shadow:none;
  5444. -webkit-box-shadow:none;
  5445. box-shadow:none;
  5446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:12px;
  5450. color:#7F7F7F;
  5451. }
  5452. #u31837 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:3463px;
  5456. top:836px;
  5457. width:180px;
  5458. height:26px;
  5459. display:flex;
  5460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:12px;
  5464. color:#7F7F7F;
  5465. }
  5466. #u31837 .text {
  5467. position:absolute;
  5468. align-self:center;
  5469. padding:2px 2px 2px 2px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u31837_div.disabled {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:180px;
  5479. height:26px;
  5480. background:inherit;
  5481. background-color:rgba(240, 240, 240, 1);
  5482. border:none;
  5483. border-radius:0px;
  5484. -moz-box-shadow:none;
  5485. -webkit-box-shadow:none;
  5486. box-shadow:none;
  5487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. font-size:12px;
  5491. color:#7F7F7F;
  5492. }
  5493. #u31837.disabled {
  5494. }
  5495. #u31838_div {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:100px;
  5501. height:30px;
  5502. background:inherit;
  5503. background-color:rgba(255, 255, 255, 0);
  5504. border:none;
  5505. border-top:0px;
  5506. border-right:0px;
  5507. border-bottom:0px;
  5508. border-radius:0px;
  5509. border-top-left-radius:0px;
  5510. border-bottom-left-radius:0px;
  5511. -moz-box-shadow:none;
  5512. -webkit-box-shadow:none;
  5513. box-shadow:none;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:14px;
  5518. color:#7F7F7F;
  5519. }
  5520. #u31838 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:3677px;
  5524. top:835px;
  5525. width:100px;
  5526. height:30px;
  5527. display:flex;
  5528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:14px;
  5532. color:#7F7F7F;
  5533. }
  5534. #u31838 .text {
  5535. position:absolute;
  5536. align-self:center;
  5537. padding:5px 10px 5px 0px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u31838_text {
  5542. border-width:0px;
  5543. word-wrap:break-word;
  5544. text-transform:none;
  5545. }
  5546. #u31839 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:0px;
  5552. height:0px;
  5553. }
  5554. #u31840_div {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:200px;
  5560. height:30px;
  5561. background:inherit;
  5562. background-color:rgba(255, 255, 255, 1);
  5563. box-sizing:border-box;
  5564. border-width:1px;
  5565. border-style:solid;
  5566. border-color:rgba(201, 201, 201, 1);
  5567. border-radius:4px;
  5568. -moz-box-shadow:none;
  5569. -webkit-box-shadow:none;
  5570. box-shadow:none;
  5571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5572. font-weight:400;
  5573. font-style:normal;
  5574. font-size:12px;
  5575. color:#CCCCCC;
  5576. text-align:right;
  5577. }
  5578. #u31840 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:3773px;
  5582. top:835px;
  5583. width:200px;
  5584. height:30px;
  5585. display:flex;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:12px;
  5590. color:#CCCCCC;
  5591. text-align:right;
  5592. }
  5593. #u31840 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:2px 8px 2px 8px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u31840_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. visibility:hidden;
  5605. }
  5606. #u31841_input {
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:180px;
  5611. height:26px;
  5612. padding:2px 2px 2px 2px;
  5613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:12px;
  5617. letter-spacing:normal;
  5618. color:#7F7F7F;
  5619. vertical-align:none;
  5620. text-align:left;
  5621. text-transform:none;
  5622. background-color:transparent;
  5623. border-color:transparent;
  5624. }
  5625. #u31841_input.disabled {
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:180px;
  5630. height:26px;
  5631. padding:2px 2px 2px 2px;
  5632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:12px;
  5636. letter-spacing:normal;
  5637. color:#7F7F7F;
  5638. vertical-align:none;
  5639. text-align:left;
  5640. text-transform:none;
  5641. background-color:transparent;
  5642. border-color:transparent;
  5643. }
  5644. #u31841_div {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:180px;
  5650. height:26px;
  5651. background:inherit;
  5652. background-color:rgba(255, 255, 255, 1);
  5653. border:none;
  5654. border-radius:0px;
  5655. -moz-box-shadow:none;
  5656. -webkit-box-shadow:none;
  5657. box-shadow:none;
  5658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. font-size:12px;
  5662. color:#7F7F7F;
  5663. }
  5664. #u31841 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:3779px;
  5668. top:836px;
  5669. width:180px;
  5670. height:26px;
  5671. display:flex;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:12px;
  5676. color:#7F7F7F;
  5677. }
  5678. #u31841 .text {
  5679. position:absolute;
  5680. align-self:center;
  5681. padding:2px 2px 2px 2px;
  5682. box-sizing:border-box;
  5683. width:100%;
  5684. }
  5685. #u31841_div.disabled {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:180px;
  5691. height:26px;
  5692. background:inherit;
  5693. background-color:rgba(240, 240, 240, 1);
  5694. border:none;
  5695. border-radius:0px;
  5696. -moz-box-shadow:none;
  5697. -webkit-box-shadow:none;
  5698. box-shadow:none;
  5699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:12px;
  5703. color:#7F7F7F;
  5704. }
  5705. #u31841.disabled {
  5706. }
  5707. #u31842_div {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:100px;
  5713. height:30px;
  5714. background:inherit;
  5715. background-color:rgba(255, 255, 255, 0);
  5716. border:none;
  5717. border-top:0px;
  5718. border-right:0px;
  5719. border-bottom:0px;
  5720. border-radius:0px;
  5721. border-top-left-radius:0px;
  5722. border-bottom-left-radius:0px;
  5723. -moz-box-shadow:none;
  5724. -webkit-box-shadow:none;
  5725. box-shadow:none;
  5726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:14px;
  5730. color:#7F7F7F;
  5731. }
  5732. #u31842 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:4003px;
  5736. top:835px;
  5737. width:100px;
  5738. height:30px;
  5739. display:flex;
  5740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5741. font-weight:400;
  5742. font-style:normal;
  5743. font-size:14px;
  5744. color:#7F7F7F;
  5745. }
  5746. #u31842 .text {
  5747. position:absolute;
  5748. align-self:center;
  5749. padding:5px 10px 5px 0px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u31842_text {
  5754. border-width:0px;
  5755. word-wrap:break-word;
  5756. text-transform:none;
  5757. }
  5758. #u31843 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:0px;
  5764. height:0px;
  5765. }
  5766. #u31844_div {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:200px;
  5772. height:30px;
  5773. background:inherit;
  5774. background-color:rgba(255, 255, 255, 1);
  5775. box-sizing:border-box;
  5776. border-width:1px;
  5777. border-style:solid;
  5778. border-color:rgba(201, 201, 201, 1);
  5779. border-radius:4px;
  5780. -moz-box-shadow:none;
  5781. -webkit-box-shadow:none;
  5782. box-shadow:none;
  5783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:12px;
  5787. color:#CCCCCC;
  5788. text-align:right;
  5789. }
  5790. #u31844 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:4099px;
  5794. top:835px;
  5795. width:200px;
  5796. height:30px;
  5797. display:flex;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:12px;
  5802. color:#CCCCCC;
  5803. text-align:right;
  5804. }
  5805. #u31844 .text {
  5806. position:absolute;
  5807. align-self:center;
  5808. padding:2px 8px 2px 8px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u31844_text {
  5813. border-width:0px;
  5814. word-wrap:break-word;
  5815. text-transform:none;
  5816. visibility:hidden;
  5817. }
  5818. #u31845_input {
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:180px;
  5823. height:26px;
  5824. padding:2px 2px 2px 2px;
  5825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:12px;
  5829. letter-spacing:normal;
  5830. color:#7F7F7F;
  5831. vertical-align:none;
  5832. text-align:left;
  5833. text-transform:none;
  5834. background-color:transparent;
  5835. border-color:transparent;
  5836. }
  5837. #u31845_input.disabled {
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:180px;
  5842. height:26px;
  5843. padding:2px 2px 2px 2px;
  5844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5845. font-weight:400;
  5846. font-style:normal;
  5847. font-size:12px;
  5848. letter-spacing:normal;
  5849. color:#7F7F7F;
  5850. vertical-align:none;
  5851. text-align:left;
  5852. text-transform:none;
  5853. background-color:transparent;
  5854. border-color:transparent;
  5855. }
  5856. #u31845_div {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:180px;
  5862. height:26px;
  5863. background:inherit;
  5864. background-color:rgba(255, 255, 255, 1);
  5865. border:none;
  5866. border-radius:0px;
  5867. -moz-box-shadow:none;
  5868. -webkit-box-shadow:none;
  5869. box-shadow:none;
  5870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:12px;
  5874. color:#7F7F7F;
  5875. }
  5876. #u31845 {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:4105px;
  5880. top:836px;
  5881. width:180px;
  5882. height:26px;
  5883. display:flex;
  5884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5885. font-weight:400;
  5886. font-style:normal;
  5887. font-size:12px;
  5888. color:#7F7F7F;
  5889. }
  5890. #u31845 .text {
  5891. position:absolute;
  5892. align-self:center;
  5893. padding:2px 2px 2px 2px;
  5894. box-sizing:border-box;
  5895. width:100%;
  5896. }
  5897. #u31845_div.disabled {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:180px;
  5903. height:26px;
  5904. background:inherit;
  5905. background-color:rgba(240, 240, 240, 1);
  5906. border:none;
  5907. border-radius:0px;
  5908. -moz-box-shadow:none;
  5909. -webkit-box-shadow:none;
  5910. box-shadow:none;
  5911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5912. font-weight:400;
  5913. font-style:normal;
  5914. font-size:12px;
  5915. color:#7F7F7F;
  5916. }
  5917. #u31845.disabled {
  5918. }
  5919. #u31846 {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:0px;
  5923. top:0px;
  5924. width:0px;
  5925. height:0px;
  5926. }
  5927. #u31847_div {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:200px;
  5933. height:30px;
  5934. background:inherit;
  5935. background-color:rgba(255, 255, 255, 1);
  5936. box-sizing:border-box;
  5937. border-width:1px;
  5938. border-style:solid;
  5939. border-color:rgba(188, 188, 188, 1);
  5940. border-radius:4px;
  5941. -moz-box-shadow:none;
  5942. -webkit-box-shadow:none;
  5943. box-shadow:none;
  5944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:12px;
  5948. color:#FFFFFF;
  5949. }
  5950. #u31847 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:3457px;
  5954. top:875px;
  5955. width:200px;
  5956. height:30px;
  5957. display:flex;
  5958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:12px;
  5962. color:#FFFFFF;
  5963. }
  5964. #u31847 .text {
  5965. position:absolute;
  5966. align-self:center;
  5967. padding:8px 15px 8px 15px;
  5968. box-sizing:border-box;
  5969. width:100%;
  5970. }
  5971. #u31847_text {
  5972. border-width:0px;
  5973. word-wrap:break-word;
  5974. text-transform:none;
  5975. visibility:hidden;
  5976. }
  5977. #u31848_div {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:61px;
  5983. height:17px;
  5984. background:inherit;
  5985. background-color:rgba(255, 255, 255, 0);
  5986. border:none;
  5987. border-radius:0px;
  5988. -moz-box-shadow:none;
  5989. -webkit-box-shadow:none;
  5990. box-shadow:none;
  5991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5992. font-weight:400;
  5993. font-style:normal;
  5994. font-size:12px;
  5995. color:#BCBCBC;
  5996. }
  5997. #u31848 {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:3466px;
  6001. top:880px;
  6002. width:61px;
  6003. height:17px;
  6004. display:flex;
  6005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. font-size:12px;
  6009. color:#BCBCBC;
  6010. }
  6011. #u31848 .text {
  6012. position:absolute;
  6013. align-self:flex-start;
  6014. padding:0px 0px 0px 0px;
  6015. box-sizing:border-box;
  6016. width:100%;
  6017. }
  6018. #u31848_text {
  6019. border-width:0px;
  6020. white-space:nowrap;
  6021. text-transform:none;
  6022. }
  6023. #u31849_img {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:14px;
  6029. height:14px;
  6030. }
  6031. #u31849 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:3636px;
  6035. top:883px;
  6036. width:14px;
  6037. height:14px;
  6038. display:flex;
  6039. opacity:0.5;
  6040. font-size:12px;
  6041. }
  6042. #u31849 .text {
  6043. position:absolute;
  6044. align-self:center;
  6045. padding:2px 2px 2px 2px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u31849_text {
  6050. border-width:0px;
  6051. word-wrap:break-word;
  6052. text-transform:none;
  6053. visibility:hidden;
  6054. }
  6055. #u31850_div {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:100px;
  6061. height:27px;
  6062. background:inherit;
  6063. background-color:rgba(255, 255, 255, 0);
  6064. border:none;
  6065. border-top:0px;
  6066. border-right:0px;
  6067. border-bottom:0px;
  6068. border-radius:0px;
  6069. border-top-left-radius:0px;
  6070. border-bottom-left-radius:0px;
  6071. -moz-box-shadow:none;
  6072. -webkit-box-shadow:none;
  6073. box-shadow:none;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:12px;
  6078. color:#7F7F7F;
  6079. }
  6080. #u31850 {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:3361px;
  6084. top:877px;
  6085. width:100px;
  6086. height:27px;
  6087. display:flex;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:12px;
  6092. color:#7F7F7F;
  6093. }
  6094. #u31850 .text {
  6095. position:absolute;
  6096. align-self:center;
  6097. padding:5px 10px 5px 0px;
  6098. box-sizing:border-box;
  6099. width:100%;
  6100. }
  6101. #u31850_text {
  6102. border-width:0px;
  6103. word-wrap:break-word;
  6104. text-transform:none;
  6105. }
  6106. #u31851 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:0px;
  6112. height:0px;
  6113. }
  6114. #u31852_div {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:842px;
  6120. height:60px;
  6121. background:inherit;
  6122. background-color:rgba(255, 255, 255, 1);
  6123. box-sizing:border-box;
  6124. border-width:1px;
  6125. border-style:solid;
  6126. border-color:rgba(188, 188, 188, 1);
  6127. border-radius:4px;
  6128. -moz-box-shadow:none;
  6129. -webkit-box-shadow:none;
  6130. box-shadow:none;
  6131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6132. font-weight:400;
  6133. font-style:normal;
  6134. font-size:12px;
  6135. text-align:right;
  6136. }
  6137. #u31852 {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:3457px;
  6141. top:914px;
  6142. width:842px;
  6143. height:60px;
  6144. display:flex;
  6145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6146. font-weight:400;
  6147. font-style:normal;
  6148. font-size:12px;
  6149. text-align:right;
  6150. }
  6151. #u31852 .text {
  6152. position:absolute;
  6153. align-self:center;
  6154. padding:8px 15px 8px 15px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u31852_text {
  6159. border-width:0px;
  6160. word-wrap:break-word;
  6161. text-transform:none;
  6162. visibility:hidden;
  6163. }
  6164. #u31853_input {
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:157px;
  6169. height:26px;
  6170. padding:2px 2px 2px 2px;
  6171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. font-size:12px;
  6175. letter-spacing:normal;
  6176. color:#7F7F7F;
  6177. vertical-align:none;
  6178. text-align:left;
  6179. text-transform:none;
  6180. background-color:transparent;
  6181. border-color:transparent;
  6182. }
  6183. #u31853_input.disabled {
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:157px;
  6188. height:26px;
  6189. padding:2px 2px 2px 2px;
  6190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:12px;
  6194. letter-spacing:normal;
  6195. color:#7F7F7F;
  6196. vertical-align:none;
  6197. text-align:left;
  6198. text-transform:none;
  6199. background-color:transparent;
  6200. border-color:transparent;
  6201. }
  6202. #u31853_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:157px;
  6208. height:26px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 1);
  6211. border:none;
  6212. border-radius:0px;
  6213. -moz-box-shadow:none;
  6214. -webkit-box-shadow:none;
  6215. box-shadow:none;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:12px;
  6220. color:#7F7F7F;
  6221. }
  6222. #u31853 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:3466px;
  6226. top:916px;
  6227. width:157px;
  6228. height:26px;
  6229. display:flex;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:12px;
  6234. color:#7F7F7F;
  6235. }
  6236. #u31853 .text {
  6237. position:absolute;
  6238. align-self:center;
  6239. padding:2px 2px 2px 2px;
  6240. box-sizing:border-box;
  6241. width:100%;
  6242. }
  6243. #u31853_div.disabled {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:157px;
  6249. height:26px;
  6250. background:inherit;
  6251. background-color:rgba(240, 240, 240, 1);
  6252. border:none;
  6253. border-radius:0px;
  6254. -moz-box-shadow:none;
  6255. -webkit-box-shadow:none;
  6256. box-shadow:none;
  6257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:12px;
  6261. color:#7F7F7F;
  6262. }
  6263. #u31853.disabled {
  6264. }
  6265. #u31854_div {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:100px;
  6271. height:27px;
  6272. background:inherit;
  6273. background-color:rgba(255, 255, 255, 0);
  6274. border:none;
  6275. border-top:0px;
  6276. border-right:0px;
  6277. border-bottom:0px;
  6278. border-radius:0px;
  6279. border-top-left-radius:0px;
  6280. border-bottom-left-radius:0px;
  6281. -moz-box-shadow:none;
  6282. -webkit-box-shadow:none;
  6283. box-shadow:none;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:12px;
  6288. color:#7F7F7F;
  6289. }
  6290. #u31854 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:3361px;
  6294. top:916px;
  6295. width:100px;
  6296. height:27px;
  6297. display:flex;
  6298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. font-size:12px;
  6302. color:#7F7F7F;
  6303. }
  6304. #u31854 .text {
  6305. position:absolute;
  6306. align-self:center;
  6307. padding:5px 10px 5px 0px;
  6308. box-sizing:border-box;
  6309. width:100%;
  6310. }
  6311. #u31854_text {
  6312. border-width:0px;
  6313. word-wrap:break-word;
  6314. text-transform:none;
  6315. }
  6316. #u31855 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:0px;
  6322. height:0px;
  6323. }
  6324. #u31856_div {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:1200px;
  6330. height:1201px;
  6331. background:inherit;
  6332. background-color:rgba(255, 255, 255, 1);
  6333. box-sizing:border-box;
  6334. border-width:1px;
  6335. border-style:solid;
  6336. border-color:rgba(215, 215, 215, 1);
  6337. border-radius:0px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:14px;
  6345. color:#AAAAAA;
  6346. text-align:center;
  6347. line-height:30px;
  6348. }
  6349. #u31856 {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:143px;
  6353. top:89px;
  6354. width:1200px;
  6355. height:1201px;
  6356. display:flex;
  6357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6358. font-weight:400;
  6359. font-style:normal;
  6360. font-size:14px;
  6361. color:#AAAAAA;
  6362. text-align:center;
  6363. line-height:30px;
  6364. }
  6365. #u31856 .text {
  6366. position:absolute;
  6367. align-self:center;
  6368. padding:5px 10px 5px 10px;
  6369. box-sizing:border-box;
  6370. width:100%;
  6371. }
  6372. #u31856_text {
  6373. border-width:0px;
  6374. word-wrap:break-word;
  6375. text-transform:none;
  6376. visibility:hidden;
  6377. }
  6378. #u31857_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:83px;
  6384. height:35px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 0);
  6387. border:none;
  6388. border-top:0px;
  6389. border-right:0px;
  6390. border-bottom:0px;
  6391. border-radius:0px;
  6392. border-top-left-radius:0px;
  6393. border-bottom-left-radius:0px;
  6394. -moz-box-shadow:none;
  6395. -webkit-box-shadow:none;
  6396. box-shadow:none;
  6397. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6398. font-weight:500;
  6399. font-style:normal;
  6400. font-size:18px;
  6401. }
  6402. #u31857 {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:163px;
  6406. top:107px;
  6407. width:83px;
  6408. height:35px;
  6409. display:flex;
  6410. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6411. font-weight:500;
  6412. font-style:normal;
  6413. font-size:18px;
  6414. }
  6415. #u31857 .text {
  6416. position:absolute;
  6417. align-self:center;
  6418. padding:5px 10px 5px 0px;
  6419. box-sizing:border-box;
  6420. width:100%;
  6421. }
  6422. #u31857_text {
  6423. border-width:0px;
  6424. white-space:nowrap;
  6425. text-transform:none;
  6426. }
  6427. #u31858 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:0px;
  6433. height:0px;
  6434. }
  6435. #u31859_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:40px;
  6441. height:40px;
  6442. background:inherit;
  6443. background-color:rgba(255, 255, 255, 0);
  6444. border:none;
  6445. border-top:0px;
  6446. border-right:0px;
  6447. border-bottom:0px;
  6448. border-radius:0px;
  6449. border-top-left-radius:0px;
  6450. border-bottom-left-radius:0px;
  6451. -moz-box-shadow:none;
  6452. -webkit-box-shadow:none;
  6453. box-shadow:none;
  6454. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6455. font-weight:500;
  6456. font-style:normal;
  6457. font-size:14px;
  6458. text-align:center;
  6459. }
  6460. #u31859 {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:1303px;
  6464. top:89px;
  6465. width:40px;
  6466. height:40px;
  6467. display:flex;
  6468. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6469. font-weight:500;
  6470. font-style:normal;
  6471. font-size:14px;
  6472. text-align:center;
  6473. }
  6474. #u31859 .text {
  6475. position:absolute;
  6476. align-self:center;
  6477. padding:5px 10px 5px 0px;
  6478. box-sizing:border-box;
  6479. width:100%;
  6480. }
  6481. #u31859_text {
  6482. border-width:0px;
  6483. word-wrap:break-word;
  6484. text-transform:none;
  6485. }
  6486. #u31860_img {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:13px;
  6492. height:13px;
  6493. }
  6494. #u31860 {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:1291px;
  6498. top:105px;
  6499. width:13px;
  6500. height:13px;
  6501. display:flex;
  6502. font-size:14px;
  6503. }
  6504. #u31860 .text {
  6505. position:absolute;
  6506. align-self:center;
  6507. padding:2px 2px 2px 2px;
  6508. box-sizing:border-box;
  6509. width:100%;
  6510. }
  6511. #u31860_text {
  6512. border-width:0px;
  6513. word-wrap:break-word;
  6514. text-transform:none;
  6515. visibility:hidden;
  6516. }
  6517. #u31861 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:0px;
  6521. top:0px;
  6522. width:0px;
  6523. height:0px;
  6524. }
  6525. #u31862_div {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:1200px;
  6531. height:60px;
  6532. background:inherit;
  6533. background-color:rgba(255, 255, 255, 1);
  6534. box-sizing:border-box;
  6535. border-width:1px;
  6536. border-style:solid;
  6537. border-color:rgba(215, 215, 215, 1);
  6538. border-radius:0px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:14px;
  6546. color:#AAAAAA;
  6547. text-align:center;
  6548. line-height:30px;
  6549. }
  6550. #u31862 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:143px;
  6554. top:1230px;
  6555. width:1200px;
  6556. height:60px;
  6557. display:flex;
  6558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6559. font-weight:400;
  6560. font-style:normal;
  6561. font-size:14px;
  6562. color:#AAAAAA;
  6563. text-align:center;
  6564. line-height:30px;
  6565. }
  6566. #u31862 .text {
  6567. position:absolute;
  6568. align-self:center;
  6569. padding:5px 10px 5px 10px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u31862_text {
  6574. border-width:0px;
  6575. word-wrap:break-word;
  6576. text-transform:none;
  6577. visibility:hidden;
  6578. }
  6579. #u31863_div {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:80px;
  6585. height:30px;
  6586. background:inherit;
  6587. background-color:rgba(255, 255, 255, 1);
  6588. box-sizing:border-box;
  6589. border-width:1px;
  6590. border-style:solid;
  6591. border-color:rgba(170, 170, 170, 1);
  6592. border-radius:4px;
  6593. -moz-box-shadow:none;
  6594. -webkit-box-shadow:none;
  6595. box-shadow:none;
  6596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6597. font-weight:400;
  6598. font-style:normal;
  6599. font-size:14px;
  6600. }
  6601. #u31863 {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:1243px;
  6605. top:1245px;
  6606. width:80px;
  6607. height:30px;
  6608. display:flex;
  6609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6610. font-weight:400;
  6611. font-style:normal;
  6612. font-size:14px;
  6613. }
  6614. #u31863 .text {
  6615. position:absolute;
  6616. align-self:center;
  6617. padding:2px 2px 2px 2px;
  6618. box-sizing:border-box;
  6619. width:100%;
  6620. }
  6621. #u31863_text {
  6622. border-width:0px;
  6623. word-wrap:break-word;
  6624. text-transform:none;
  6625. }
  6626. #u31864_div {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:355px;
  6632. height:400px;
  6633. background:inherit;
  6634. background-color:rgba(215, 215, 215, 1);
  6635. border:none;
  6636. border-radius:0px;
  6637. -moz-box-shadow:none;
  6638. -webkit-box-shadow:none;
  6639. box-shadow:none;
  6640. }
  6641. #u31864 {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:174px;
  6645. top:174px;
  6646. width:355px;
  6647. height:400px;
  6648. display:flex;
  6649. }
  6650. #u31864 .text {
  6651. position:absolute;
  6652. align-self:center;
  6653. padding:2px 2px 2px 2px;
  6654. box-sizing:border-box;
  6655. width:100%;
  6656. }
  6657. #u31864_text {
  6658. border-width:0px;
  6659. word-wrap:break-word;
  6660. text-transform:none;
  6661. }
  6662. #u31865_div {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:0px;
  6666. top:0px;
  6667. width:83px;
  6668. height:35px;
  6669. background:inherit;
  6670. background-color:rgba(255, 255, 255, 0);
  6671. border:none;
  6672. border-top:0px;
  6673. border-right:0px;
  6674. border-bottom:0px;
  6675. border-radius:0px;
  6676. border-top-left-radius:0px;
  6677. border-bottom-left-radius:0px;
  6678. -moz-box-shadow:none;
  6679. -webkit-box-shadow:none;
  6680. box-shadow:none;
  6681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6682. font-weight:500;
  6683. font-style:normal;
  6684. font-size:18px;
  6685. }
  6686. #u31865 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:593px;
  6690. top:174px;
  6691. width:83px;
  6692. height:35px;
  6693. display:flex;
  6694. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6695. font-weight:500;
  6696. font-style:normal;
  6697. font-size:18px;
  6698. }
  6699. #u31865 .text {
  6700. position:absolute;
  6701. align-self:center;
  6702. padding:5px 10px 5px 0px;
  6703. box-sizing:border-box;
  6704. width:100%;
  6705. }
  6706. #u31865_text {
  6707. border-width:0px;
  6708. white-space:nowrap;
  6709. text-transform:none;
  6710. }
  6711. #u31866 {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:0px;
  6717. height:0px;
  6718. }
  6719. #u31867_div {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:200px;
  6725. height:30px;
  6726. background:inherit;
  6727. background-color:rgba(255, 255, 255, 1);
  6728. box-sizing:border-box;
  6729. border-width:1px;
  6730. border-style:solid;
  6731. border-color:rgba(215, 215, 215, 1);
  6732. border-radius:4px;
  6733. -moz-box-shadow:none;
  6734. -webkit-box-shadow:none;
  6735. box-shadow:none;
  6736. font-size:12px;
  6737. }
  6738. #u31867 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:689px;
  6742. top:229px;
  6743. width:200px;
  6744. height:30px;
  6745. display:flex;
  6746. font-size:12px;
  6747. }
  6748. #u31867 .text {
  6749. position:absolute;
  6750. align-self:center;
  6751. padding:2px 2px 2px 2px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u31867_text {
  6756. border-width:0px;
  6757. word-wrap:break-word;
  6758. text-transform:none;
  6759. visibility:hidden;
  6760. }
  6761. #u31868_input {
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:191px;
  6766. height:23px;
  6767. padding:2px 2px 2px 2px;
  6768. font-family:'ArialMT', 'Arial', sans-serif;
  6769. font-weight:400;
  6770. font-style:normal;
  6771. font-size:12px;
  6772. letter-spacing:normal;
  6773. color:#AAAAAA;
  6774. vertical-align:none;
  6775. text-align:left;
  6776. text-transform:none;
  6777. background-color:transparent;
  6778. border-color:transparent;
  6779. }
  6780. #u31868_input.disabled {
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:191px;
  6785. height:23px;
  6786. padding:2px 2px 2px 2px;
  6787. font-family:'ArialMT', 'Arial', sans-serif;
  6788. font-weight:400;
  6789. font-style:normal;
  6790. font-size:12px;
  6791. letter-spacing:normal;
  6792. color:#AAAAAA;
  6793. vertical-align:none;
  6794. text-align:left;
  6795. text-transform:none;
  6796. background-color:transparent;
  6797. border-color:transparent;
  6798. }
  6799. #u31868_div {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:191px;
  6805. height:23px;
  6806. background:inherit;
  6807. background-color:rgba(255, 255, 255, 1);
  6808. border:none;
  6809. border-radius:0px;
  6810. -moz-box-shadow:none;
  6811. -webkit-box-shadow:none;
  6812. box-shadow:none;
  6813. font-size:12px;
  6814. color:#AAAAAA;
  6815. }
  6816. #u31868 {
  6817. border-width:0px;
  6818. position:absolute;
  6819. left:692px;
  6820. top:231px;
  6821. width:191px;
  6822. height:23px;
  6823. display:flex;
  6824. font-size:12px;
  6825. color:#AAAAAA;
  6826. }
  6827. #u31868 .text {
  6828. position:absolute;
  6829. align-self:flex-start;
  6830. padding:2px 2px 2px 2px;
  6831. box-sizing:border-box;
  6832. width:100%;
  6833. }
  6834. #u31868_div.disabled {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:191px;
  6840. height:23px;
  6841. background:inherit;
  6842. background-color:rgba(240, 240, 240, 1);
  6843. border:none;
  6844. border-radius:0px;
  6845. -moz-box-shadow:none;
  6846. -webkit-box-shadow:none;
  6847. box-shadow:none;
  6848. font-size:12px;
  6849. color:#AAAAAA;
  6850. }
  6851. #u31868.disabled {
  6852. }
  6853. .u31868_input_option {
  6854. font-size:12px;
  6855. }
  6856. #u31869_div {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:100px;
  6862. height:30px;
  6863. background:inherit;
  6864. background-color:rgba(255, 255, 255, 0);
  6865. border:none;
  6866. border-top:0px;
  6867. border-right:0px;
  6868. border-bottom:0px;
  6869. border-radius:0px;
  6870. border-top-left-radius:0px;
  6871. border-bottom-left-radius:0px;
  6872. -moz-box-shadow:none;
  6873. -webkit-box-shadow:none;
  6874. box-shadow:none;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:14px;
  6879. color:#7F7F7F;
  6880. }
  6881. #u31869 {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:593px;
  6885. top:229px;
  6886. width:100px;
  6887. height:30px;
  6888. display:flex;
  6889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6890. font-weight:400;
  6891. font-style:normal;
  6892. font-size:14px;
  6893. color:#7F7F7F;
  6894. }
  6895. #u31869 .text {
  6896. position:absolute;
  6897. align-self:center;
  6898. padding:5px 10px 5px 0px;
  6899. box-sizing:border-box;
  6900. width:100%;
  6901. }
  6902. #u31869_text {
  6903. border-width:0px;
  6904. word-wrap:break-word;
  6905. text-transform:none;
  6906. }
  6907. #u31870 {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:0px;
  6913. height:0px;
  6914. }
  6915. #u31871_div {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:200px;
  6921. height:30px;
  6922. background:inherit;
  6923. background-color:rgba(255, 255, 255, 1);
  6924. box-sizing:border-box;
  6925. border-width:1px;
  6926. border-style:solid;
  6927. border-color:rgba(215, 215, 215, 1);
  6928. border-radius:4px;
  6929. -moz-box-shadow:none;
  6930. -webkit-box-shadow:none;
  6931. box-shadow:none;
  6932. font-size:12px;
  6933. }
  6934. #u31871 {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:1005px;
  6938. top:229px;
  6939. width:200px;
  6940. height:30px;
  6941. display:flex;
  6942. font-size:12px;
  6943. }
  6944. #u31871 .text {
  6945. position:absolute;
  6946. align-self:center;
  6947. padding:2px 2px 2px 2px;
  6948. box-sizing:border-box;
  6949. width:100%;
  6950. }
  6951. #u31871_text {
  6952. border-width:0px;
  6953. word-wrap:break-word;
  6954. text-transform:none;
  6955. visibility:hidden;
  6956. }
  6957. #u31872_input {
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:191px;
  6962. height:23px;
  6963. padding:2px 2px 2px 2px;
  6964. font-family:'ArialMT', 'Arial', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:12px;
  6968. letter-spacing:normal;
  6969. color:#AAAAAA;
  6970. vertical-align:none;
  6971. text-align:left;
  6972. text-transform:none;
  6973. background-color:transparent;
  6974. border-color:transparent;
  6975. }
  6976. #u31872_input.disabled {
  6977. position:absolute;
  6978. left:0px;
  6979. top:0px;
  6980. width:191px;
  6981. height:23px;
  6982. padding:2px 2px 2px 2px;
  6983. font-family:'ArialMT', 'Arial', sans-serif;
  6984. font-weight:400;
  6985. font-style:normal;
  6986. font-size:12px;
  6987. letter-spacing:normal;
  6988. color:#AAAAAA;
  6989. vertical-align:none;
  6990. text-align:left;
  6991. text-transform:none;
  6992. background-color:transparent;
  6993. border-color:transparent;
  6994. }
  6995. #u31872_div {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:191px;
  7001. height:23px;
  7002. background:inherit;
  7003. background-color:rgba(255, 255, 255, 1);
  7004. border:none;
  7005. border-radius:0px;
  7006. -moz-box-shadow:none;
  7007. -webkit-box-shadow:none;
  7008. box-shadow:none;
  7009. font-size:12px;
  7010. color:#AAAAAA;
  7011. }
  7012. #u31872 {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:1008px;
  7016. top:231px;
  7017. width:191px;
  7018. height:23px;
  7019. display:flex;
  7020. font-size:12px;
  7021. color:#AAAAAA;
  7022. }
  7023. #u31872 .text {
  7024. position:absolute;
  7025. align-self:flex-start;
  7026. padding:2px 2px 2px 2px;
  7027. box-sizing:border-box;
  7028. width:100%;
  7029. }
  7030. #u31872_div.disabled {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:191px;
  7036. height:23px;
  7037. background:inherit;
  7038. background-color:rgba(240, 240, 240, 1);
  7039. border:none;
  7040. border-radius:0px;
  7041. -moz-box-shadow:none;
  7042. -webkit-box-shadow:none;
  7043. box-shadow:none;
  7044. font-size:12px;
  7045. color:#AAAAAA;
  7046. }
  7047. #u31872.disabled {
  7048. }
  7049. .u31872_input_option {
  7050. font-size:12px;
  7051. }
  7052. #u31873_div {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:100px;
  7058. height:30px;
  7059. background:inherit;
  7060. background-color:rgba(255, 255, 255, 0);
  7061. border:none;
  7062. border-top:0px;
  7063. border-right:0px;
  7064. border-bottom:0px;
  7065. border-radius:0px;
  7066. border-top-left-radius:0px;
  7067. border-bottom-left-radius:0px;
  7068. -moz-box-shadow:none;
  7069. -webkit-box-shadow:none;
  7070. box-shadow:none;
  7071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. font-size:14px;
  7075. color:#7F7F7F;
  7076. }
  7077. #u31873 {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:909px;
  7081. top:229px;
  7082. width:100px;
  7083. height:30px;
  7084. display:flex;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:14px;
  7089. color:#7F7F7F;
  7090. }
  7091. #u31873 .text {
  7092. position:absolute;
  7093. align-self:center;
  7094. padding:5px 10px 5px 0px;
  7095. box-sizing:border-box;
  7096. width:100%;
  7097. }
  7098. #u31873_text {
  7099. border-width:0px;
  7100. word-wrap:break-word;
  7101. text-transform:none;
  7102. }
  7103. #u31874 {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:0px;
  7107. top:0px;
  7108. width:0px;
  7109. height:0px;
  7110. }
  7111. #u31875_div {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:0px;
  7115. top:0px;
  7116. width:200px;
  7117. height:30px;
  7118. background:inherit;
  7119. background-color:rgba(255, 255, 255, 1);
  7120. box-sizing:border-box;
  7121. border-width:1px;
  7122. border-style:solid;
  7123. border-color:rgba(215, 215, 215, 1);
  7124. border-radius:4px;
  7125. -moz-box-shadow:none;
  7126. -webkit-box-shadow:none;
  7127. box-shadow:none;
  7128. font-size:12px;
  7129. }
  7130. #u31875 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:689px;
  7134. top:269px;
  7135. width:200px;
  7136. height:30px;
  7137. display:flex;
  7138. font-size:12px;
  7139. }
  7140. #u31875 .text {
  7141. position:absolute;
  7142. align-self:center;
  7143. padding:2px 2px 2px 2px;
  7144. box-sizing:border-box;
  7145. width:100%;
  7146. }
  7147. #u31875_text {
  7148. border-width:0px;
  7149. word-wrap:break-word;
  7150. text-transform:none;
  7151. visibility:hidden;
  7152. }
  7153. #u31876_input {
  7154. position:absolute;
  7155. left:0px;
  7156. top:0px;
  7157. width:191px;
  7158. height:23px;
  7159. padding:2px 2px 2px 2px;
  7160. font-family:'ArialMT', 'Arial', sans-serif;
  7161. font-weight:400;
  7162. font-style:normal;
  7163. font-size:12px;
  7164. letter-spacing:normal;
  7165. color:#AAAAAA;
  7166. vertical-align:none;
  7167. text-align:left;
  7168. text-transform:none;
  7169. background-color:transparent;
  7170. border-color:transparent;
  7171. }
  7172. #u31876_input.disabled {
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:191px;
  7177. height:23px;
  7178. padding:2px 2px 2px 2px;
  7179. font-family:'ArialMT', 'Arial', sans-serif;
  7180. font-weight:400;
  7181. font-style:normal;
  7182. font-size:12px;
  7183. letter-spacing:normal;
  7184. color:#AAAAAA;
  7185. vertical-align:none;
  7186. text-align:left;
  7187. text-transform:none;
  7188. background-color:transparent;
  7189. border-color:transparent;
  7190. }
  7191. #u31876_div {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:191px;
  7197. height:23px;
  7198. background:inherit;
  7199. background-color:rgba(255, 255, 255, 1);
  7200. border:none;
  7201. border-radius:0px;
  7202. -moz-box-shadow:none;
  7203. -webkit-box-shadow:none;
  7204. box-shadow:none;
  7205. font-size:12px;
  7206. color:#AAAAAA;
  7207. }
  7208. #u31876 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:692px;
  7212. top:271px;
  7213. width:191px;
  7214. height:23px;
  7215. display:flex;
  7216. font-size:12px;
  7217. color:#AAAAAA;
  7218. }
  7219. #u31876 .text {
  7220. position:absolute;
  7221. align-self:flex-start;
  7222. padding:2px 2px 2px 2px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u31876_div.disabled {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:191px;
  7232. height:23px;
  7233. background:inherit;
  7234. background-color:rgba(240, 240, 240, 1);
  7235. border:none;
  7236. border-radius:0px;
  7237. -moz-box-shadow:none;
  7238. -webkit-box-shadow:none;
  7239. box-shadow:none;
  7240. font-size:12px;
  7241. color:#AAAAAA;
  7242. }
  7243. #u31876.disabled {
  7244. }
  7245. .u31876_input_option {
  7246. font-size:12px;
  7247. }
  7248. #u31877_div {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:0px;
  7252. top:0px;
  7253. width:100px;
  7254. height:30px;
  7255. background:inherit;
  7256. background-color:rgba(255, 255, 255, 0);
  7257. border:none;
  7258. border-top:0px;
  7259. border-right:0px;
  7260. border-bottom:0px;
  7261. border-radius:0px;
  7262. border-top-left-radius:0px;
  7263. border-bottom-left-radius:0px;
  7264. -moz-box-shadow:none;
  7265. -webkit-box-shadow:none;
  7266. box-shadow:none;
  7267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7268. font-weight:400;
  7269. font-style:normal;
  7270. font-size:14px;
  7271. color:#7F7F7F;
  7272. }
  7273. #u31877 {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:593px;
  7277. top:269px;
  7278. width:100px;
  7279. height:30px;
  7280. display:flex;
  7281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7282. font-weight:400;
  7283. font-style:normal;
  7284. font-size:14px;
  7285. color:#7F7F7F;
  7286. }
  7287. #u31877 .text {
  7288. position:absolute;
  7289. align-self:center;
  7290. padding:5px 10px 5px 0px;
  7291. box-sizing:border-box;
  7292. width:100%;
  7293. }
  7294. #u31877_text {
  7295. border-width:0px;
  7296. word-wrap:break-word;
  7297. text-transform:none;
  7298. }
  7299. #u31878 {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:0px;
  7303. top:0px;
  7304. width:0px;
  7305. height:0px;
  7306. }
  7307. #u31879_div {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:0px;
  7311. top:0px;
  7312. width:200px;
  7313. height:30px;
  7314. background:inherit;
  7315. background-color:rgba(255, 255, 255, 1);
  7316. box-sizing:border-box;
  7317. border-width:1px;
  7318. border-style:solid;
  7319. border-color:rgba(188, 188, 188, 1);
  7320. border-radius:4px;
  7321. -moz-box-shadow:none;
  7322. -webkit-box-shadow:none;
  7323. box-shadow:none;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:12px;
  7328. color:#FFFFFF;
  7329. }
  7330. #u31879 {
  7331. border-width:0px;
  7332. position:absolute;
  7333. left:1014px;
  7334. top:269px;
  7335. width:200px;
  7336. height:30px;
  7337. display:flex;
  7338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7339. font-weight:400;
  7340. font-style:normal;
  7341. font-size:12px;
  7342. color:#FFFFFF;
  7343. }
  7344. #u31879 .text {
  7345. position:absolute;
  7346. align-self:center;
  7347. padding:8px 15px 8px 15px;
  7348. box-sizing:border-box;
  7349. width:100%;
  7350. }
  7351. #u31879_text {
  7352. border-width:0px;
  7353. word-wrap:break-word;
  7354. text-transform:none;
  7355. visibility:hidden;
  7356. }
  7357. #u31880_div {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:73px;
  7363. height:17px;
  7364. background:inherit;
  7365. background-color:rgba(255, 255, 255, 0);
  7366. border:none;
  7367. border-radius:0px;
  7368. -moz-box-shadow:none;
  7369. -webkit-box-shadow:none;
  7370. box-shadow:none;
  7371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7372. font-weight:400;
  7373. font-style:normal;
  7374. font-size:12px;
  7375. color:#BCBCBC;
  7376. }
  7377. #u31880 {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:1023px;
  7381. top:274px;
  7382. width:73px;
  7383. height:17px;
  7384. display:flex;
  7385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7386. font-weight:400;
  7387. font-style:normal;
  7388. font-size:12px;
  7389. color:#BCBCBC;
  7390. }
  7391. #u31880 .text {
  7392. position:absolute;
  7393. align-self:flex-start;
  7394. padding:0px 0px 0px 0px;
  7395. box-sizing:border-box;
  7396. width:100%;
  7397. }
  7398. #u31880_text {
  7399. border-width:0px;
  7400. white-space:nowrap;
  7401. text-transform:none;
  7402. }
  7403. #u31881_img {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:0px;
  7407. top:0px;
  7408. width:14px;
  7409. height:14px;
  7410. }
  7411. #u31881 {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:1193px;
  7415. top:277px;
  7416. width:14px;
  7417. height:14px;
  7418. display:flex;
  7419. opacity:0.5;
  7420. font-size:12px;
  7421. }
  7422. #u31881 .text {
  7423. position:absolute;
  7424. align-self:center;
  7425. padding:2px 2px 2px 2px;
  7426. box-sizing:border-box;
  7427. width:100%;
  7428. }
  7429. #u31881_text {
  7430. border-width:0px;
  7431. word-wrap:break-word;
  7432. text-transform:none;
  7433. visibility:hidden;
  7434. }
  7435. #u31882_div {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:0px;
  7439. top:0px;
  7440. width:100px;
  7441. height:30px;
  7442. background:inherit;
  7443. background-color:rgba(255, 255, 255, 0);
  7444. border:none;
  7445. border-top:0px;
  7446. border-right:0px;
  7447. border-bottom:0px;
  7448. border-radius:0px;
  7449. border-top-left-radius:0px;
  7450. border-bottom-left-radius:0px;
  7451. -moz-box-shadow:none;
  7452. -webkit-box-shadow:none;
  7453. box-shadow:none;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:14px;
  7458. color:#7F7F7F;
  7459. }
  7460. #u31882 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:918px;
  7464. top:269px;
  7465. width:100px;
  7466. height:30px;
  7467. display:flex;
  7468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7469. font-weight:400;
  7470. font-style:normal;
  7471. font-size:14px;
  7472. color:#7F7F7F;
  7473. }
  7474. #u31882 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:5px 10px 5px 0px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u31882_text {
  7482. border-width:0px;
  7483. word-wrap:break-word;
  7484. text-transform:none;
  7485. }
  7486. #u31883_div {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:83px;
  7492. height:35px;
  7493. background:inherit;
  7494. background-color:rgba(255, 255, 255, 0);
  7495. border:none;
  7496. border-top:0px;
  7497. border-right:0px;
  7498. border-bottom:0px;
  7499. border-radius:0px;
  7500. border-top-left-radius:0px;
  7501. border-bottom-left-radius:0px;
  7502. -moz-box-shadow:none;
  7503. -webkit-box-shadow:none;
  7504. box-shadow:none;
  7505. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7506. font-weight:500;
  7507. font-style:normal;
  7508. font-size:18px;
  7509. }
  7510. #u31883 {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:593px;
  7514. top:319px;
  7515. width:83px;
  7516. height:35px;
  7517. display:flex;
  7518. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7519. font-weight:500;
  7520. font-style:normal;
  7521. font-size:18px;
  7522. }
  7523. #u31883 .text {
  7524. position:absolute;
  7525. align-self:center;
  7526. padding:5px 10px 5px 0px;
  7527. box-sizing:border-box;
  7528. width:100%;
  7529. }
  7530. #u31883_text {
  7531. border-width:0px;
  7532. white-space:nowrap;
  7533. text-transform:none;
  7534. }
  7535. #u31884_div {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:0px;
  7539. top:0px;
  7540. width:100px;
  7541. height:30px;
  7542. background:inherit;
  7543. background-color:rgba(255, 255, 255, 0);
  7544. border:none;
  7545. border-top:0px;
  7546. border-right:0px;
  7547. border-bottom:0px;
  7548. border-radius:0px;
  7549. border-top-left-radius:0px;
  7550. border-bottom-left-radius:0px;
  7551. -moz-box-shadow:none;
  7552. -webkit-box-shadow:none;
  7553. box-shadow:none;
  7554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7555. font-weight:400;
  7556. font-style:normal;
  7557. font-size:14px;
  7558. color:#7F7F7F;
  7559. }
  7560. #u31884 {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:593px;
  7564. top:374px;
  7565. width:100px;
  7566. height:30px;
  7567. display:flex;
  7568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:14px;
  7572. color:#7F7F7F;
  7573. }
  7574. #u31884 .text {
  7575. position:absolute;
  7576. align-self:center;
  7577. padding:5px 10px 5px 0px;
  7578. box-sizing:border-box;
  7579. width:100%;
  7580. }
  7581. #u31884_text {
  7582. border-width:0px;
  7583. word-wrap:break-word;
  7584. text-transform:none;
  7585. }
  7586. #u31885 {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:0px;
  7592. height:0px;
  7593. }
  7594. #u31886_div {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:0px;
  7598. top:0px;
  7599. width:200px;
  7600. height:30px;
  7601. background:inherit;
  7602. background-color:rgba(242, 242, 242, 1);
  7603. box-sizing:border-box;
  7604. border-width:1px;
  7605. border-style:solid;
  7606. border-color:rgba(201, 201, 201, 1);
  7607. border-radius:4px;
  7608. -moz-box-shadow:none;
  7609. -webkit-box-shadow:none;
  7610. box-shadow:none;
  7611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7612. font-weight:400;
  7613. font-style:normal;
  7614. font-size:12px;
  7615. color:#CCCCCC;
  7616. text-align:right;
  7617. }
  7618. #u31886 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:689px;
  7622. top:374px;
  7623. width:200px;
  7624. height:30px;
  7625. display:flex;
  7626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7627. font-weight:400;
  7628. font-style:normal;
  7629. font-size:12px;
  7630. color:#CCCCCC;
  7631. text-align:right;
  7632. }
  7633. #u31886 .text {
  7634. position:absolute;
  7635. align-self:center;
  7636. padding:2px 8px 2px 8px;
  7637. box-sizing:border-box;
  7638. width:100%;
  7639. }
  7640. #u31886_text {
  7641. border-width:0px;
  7642. word-wrap:break-word;
  7643. text-transform:none;
  7644. visibility:hidden;
  7645. }
  7646. #u31887_input {
  7647. position:absolute;
  7648. left:0px;
  7649. top:0px;
  7650. width:180px;
  7651. height:26px;
  7652. padding:2px 2px 2px 2px;
  7653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7654. font-weight:400;
  7655. font-style:normal;
  7656. font-size:12px;
  7657. letter-spacing:normal;
  7658. color:#7F7F7F;
  7659. vertical-align:none;
  7660. text-align:left;
  7661. text-transform:none;
  7662. background-color:transparent;
  7663. border-color:transparent;
  7664. }
  7665. #u31887_input.disabled {
  7666. position:absolute;
  7667. left:0px;
  7668. top:0px;
  7669. width:180px;
  7670. height:26px;
  7671. padding:2px 2px 2px 2px;
  7672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7673. font-weight:400;
  7674. font-style:normal;
  7675. font-size:12px;
  7676. letter-spacing:normal;
  7677. color:#7F7F7F;
  7678. vertical-align:none;
  7679. text-align:left;
  7680. text-transform:none;
  7681. background-color:transparent;
  7682. border-color:transparent;
  7683. }
  7684. #u31887_div {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:180px;
  7690. height:26px;
  7691. background:inherit;
  7692. background-color:rgba(242, 242, 242, 1);
  7693. border:none;
  7694. border-radius:0px;
  7695. -moz-box-shadow:none;
  7696. -webkit-box-shadow:none;
  7697. box-shadow:none;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:12px;
  7702. color:#7F7F7F;
  7703. }
  7704. #u31887 {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:695px;
  7708. top:375px;
  7709. width:180px;
  7710. height:26px;
  7711. display:flex;
  7712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7713. font-weight:400;
  7714. font-style:normal;
  7715. font-size:12px;
  7716. color:#7F7F7F;
  7717. }
  7718. #u31887 .text {
  7719. position:absolute;
  7720. align-self:center;
  7721. padding:2px 2px 2px 2px;
  7722. box-sizing:border-box;
  7723. width:100%;
  7724. }
  7725. #u31887_div.disabled {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:0px;
  7729. top:0px;
  7730. width:180px;
  7731. height:26px;
  7732. background:inherit;
  7733. background-color:rgba(240, 240, 240, 1);
  7734. border:none;
  7735. border-radius:0px;
  7736. -moz-box-shadow:none;
  7737. -webkit-box-shadow:none;
  7738. box-shadow:none;
  7739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7740. font-weight:400;
  7741. font-style:normal;
  7742. font-size:12px;
  7743. color:#7F7F7F;
  7744. }
  7745. #u31887.disabled {
  7746. }
  7747. #u31888 {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:0px;
  7753. height:0px;
  7754. }
  7755. #u31889_div {
  7756. border-width:0px;
  7757. position:absolute;
  7758. left:0px;
  7759. top:0px;
  7760. width:200px;
  7761. height:30px;
  7762. background:inherit;
  7763. background-color:rgba(255, 255, 255, 1);
  7764. box-sizing:border-box;
  7765. border-width:1px;
  7766. border-style:solid;
  7767. border-color:rgba(215, 215, 215, 1);
  7768. border-radius:4px;
  7769. -moz-box-shadow:none;
  7770. -webkit-box-shadow:none;
  7771. box-shadow:none;
  7772. font-size:12px;
  7773. }
  7774. #u31889 {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:1005px;
  7778. top:374px;
  7779. width:200px;
  7780. height:30px;
  7781. display:flex;
  7782. font-size:12px;
  7783. }
  7784. #u31889 .text {
  7785. position:absolute;
  7786. align-self:center;
  7787. padding:2px 2px 2px 2px;
  7788. box-sizing:border-box;
  7789. width:100%;
  7790. }
  7791. #u31889_text {
  7792. border-width:0px;
  7793. word-wrap:break-word;
  7794. text-transform:none;
  7795. visibility:hidden;
  7796. }
  7797. #u31890_input {
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:191px;
  7802. height:23px;
  7803. padding:2px 2px 2px 2px;
  7804. font-family:'ArialMT', 'Arial', sans-serif;
  7805. font-weight:400;
  7806. font-style:normal;
  7807. font-size:12px;
  7808. letter-spacing:normal;
  7809. color:#AAAAAA;
  7810. vertical-align:none;
  7811. text-align:left;
  7812. text-transform:none;
  7813. background-color:transparent;
  7814. border-color:transparent;
  7815. }
  7816. #u31890_input.disabled {
  7817. position:absolute;
  7818. left:0px;
  7819. top:0px;
  7820. width:191px;
  7821. height:23px;
  7822. padding:2px 2px 2px 2px;
  7823. font-family:'ArialMT', 'Arial', sans-serif;
  7824. font-weight:400;
  7825. font-style:normal;
  7826. font-size:12px;
  7827. letter-spacing:normal;
  7828. color:#AAAAAA;
  7829. vertical-align:none;
  7830. text-align:left;
  7831. text-transform:none;
  7832. background-color:transparent;
  7833. border-color:transparent;
  7834. }
  7835. #u31890_div {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:191px;
  7841. height:23px;
  7842. background:inherit;
  7843. background-color:rgba(255, 255, 255, 1);
  7844. border:none;
  7845. border-radius:0px;
  7846. -moz-box-shadow:none;
  7847. -webkit-box-shadow:none;
  7848. box-shadow:none;
  7849. font-size:12px;
  7850. color:#AAAAAA;
  7851. }
  7852. #u31890 {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:1008px;
  7856. top:376px;
  7857. width:191px;
  7858. height:23px;
  7859. display:flex;
  7860. font-size:12px;
  7861. color:#AAAAAA;
  7862. }
  7863. #u31890 .text {
  7864. position:absolute;
  7865. align-self:flex-start;
  7866. padding:2px 2px 2px 2px;
  7867. box-sizing:border-box;
  7868. width:100%;
  7869. }
  7870. #u31890_div.disabled {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:191px;
  7876. height:23px;
  7877. background:inherit;
  7878. background-color:rgba(240, 240, 240, 1);
  7879. border:none;
  7880. border-radius:0px;
  7881. -moz-box-shadow:none;
  7882. -webkit-box-shadow:none;
  7883. box-shadow:none;
  7884. font-size:12px;
  7885. color:#AAAAAA;
  7886. }
  7887. #u31890.disabled {
  7888. }
  7889. .u31890_input_option {
  7890. font-size:12px;
  7891. }
  7892. #u31891_div {
  7893. border-width:0px;
  7894. position:absolute;
  7895. left:0px;
  7896. top:0px;
  7897. width:100px;
  7898. height:30px;
  7899. background:inherit;
  7900. background-color:rgba(255, 255, 255, 0);
  7901. border:none;
  7902. border-top:0px;
  7903. border-right:0px;
  7904. border-bottom:0px;
  7905. border-radius:0px;
  7906. border-top-left-radius:0px;
  7907. border-bottom-left-radius:0px;
  7908. -moz-box-shadow:none;
  7909. -webkit-box-shadow:none;
  7910. box-shadow:none;
  7911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7912. font-weight:400;
  7913. font-style:normal;
  7914. font-size:14px;
  7915. color:#7F7F7F;
  7916. }
  7917. #u31891 {
  7918. border-width:0px;
  7919. position:absolute;
  7920. left:909px;
  7921. top:374px;
  7922. width:100px;
  7923. height:30px;
  7924. display:flex;
  7925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7926. font-weight:400;
  7927. font-style:normal;
  7928. font-size:14px;
  7929. color:#7F7F7F;
  7930. }
  7931. #u31891 .text {
  7932. position:absolute;
  7933. align-self:center;
  7934. padding:5px 10px 5px 0px;
  7935. box-sizing:border-box;
  7936. width:100%;
  7937. }
  7938. #u31891_text {
  7939. border-width:0px;
  7940. word-wrap:break-word;
  7941. text-transform:none;
  7942. }
  7943. #u31892_div {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:0px;
  7947. top:0px;
  7948. width:100px;
  7949. height:30px;
  7950. background:inherit;
  7951. background-color:rgba(255, 255, 255, 0);
  7952. border:none;
  7953. border-top:0px;
  7954. border-right:0px;
  7955. border-bottom:0px;
  7956. border-radius:0px;
  7957. border-top-left-radius:0px;
  7958. border-bottom-left-radius:0px;
  7959. -moz-box-shadow:none;
  7960. -webkit-box-shadow:none;
  7961. box-shadow:none;
  7962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7963. font-weight:400;
  7964. font-style:normal;
  7965. font-size:14px;
  7966. color:#7F7F7F;
  7967. }
  7968. #u31892 {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:593px;
  7972. top:414px;
  7973. width:100px;
  7974. height:30px;
  7975. display:flex;
  7976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7977. font-weight:400;
  7978. font-style:normal;
  7979. font-size:14px;
  7980. color:#7F7F7F;
  7981. }
  7982. #u31892 .text {
  7983. position:absolute;
  7984. align-self:center;
  7985. padding:5px 10px 5px 0px;
  7986. box-sizing:border-box;
  7987. width:100%;
  7988. }
  7989. #u31892_text {
  7990. border-width:0px;
  7991. word-wrap:break-word;
  7992. text-transform:none;
  7993. }
  7994. #u31893 {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:0px;
  8000. height:0px;
  8001. }
  8002. #u31894_div {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:0px;
  8006. top:0px;
  8007. width:200px;
  8008. height:30px;
  8009. background:inherit;
  8010. background-color:rgba(255, 255, 255, 1);
  8011. box-sizing:border-box;
  8012. border-width:1px;
  8013. border-style:solid;
  8014. border-color:rgba(201, 201, 201, 1);
  8015. border-radius:4px;
  8016. -moz-box-shadow:none;
  8017. -webkit-box-shadow:none;
  8018. box-shadow:none;
  8019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8020. font-weight:400;
  8021. font-style:normal;
  8022. font-size:12px;
  8023. color:#CCCCCC;
  8024. text-align:right;
  8025. }
  8026. #u31894 {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:689px;
  8030. top:414px;
  8031. width:200px;
  8032. height:30px;
  8033. display:flex;
  8034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8035. font-weight:400;
  8036. font-style:normal;
  8037. font-size:12px;
  8038. color:#CCCCCC;
  8039. text-align:right;
  8040. }
  8041. #u31894 .text {
  8042. position:absolute;
  8043. align-self:center;
  8044. padding:2px 8px 2px 8px;
  8045. box-sizing:border-box;
  8046. width:100%;
  8047. }
  8048. #u31894_text {
  8049. border-width:0px;
  8050. word-wrap:break-word;
  8051. text-transform:none;
  8052. visibility:hidden;
  8053. }
  8054. #u31895_input {
  8055. position:absolute;
  8056. left:0px;
  8057. top:0px;
  8058. width:180px;
  8059. height:26px;
  8060. padding:2px 2px 2px 2px;
  8061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8062. font-weight:400;
  8063. font-style:normal;
  8064. font-size:12px;
  8065. letter-spacing:normal;
  8066. color:#7F7F7F;
  8067. vertical-align:none;
  8068. text-align:left;
  8069. text-transform:none;
  8070. background-color:transparent;
  8071. border-color:transparent;
  8072. }
  8073. #u31895_input.disabled {
  8074. position:absolute;
  8075. left:0px;
  8076. top:0px;
  8077. width:180px;
  8078. height:26px;
  8079. padding:2px 2px 2px 2px;
  8080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. font-size:12px;
  8084. letter-spacing:normal;
  8085. color:#7F7F7F;
  8086. vertical-align:none;
  8087. text-align:left;
  8088. text-transform:none;
  8089. background-color:transparent;
  8090. border-color:transparent;
  8091. }
  8092. #u31895_div {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:180px;
  8098. height:26px;
  8099. background:inherit;
  8100. background-color:rgba(255, 255, 255, 1);
  8101. border:none;
  8102. border-radius:0px;
  8103. -moz-box-shadow:none;
  8104. -webkit-box-shadow:none;
  8105. box-shadow:none;
  8106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8107. font-weight:400;
  8108. font-style:normal;
  8109. font-size:12px;
  8110. color:#7F7F7F;
  8111. }
  8112. #u31895 {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:695px;
  8116. top:415px;
  8117. width:180px;
  8118. height:26px;
  8119. display:flex;
  8120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8121. font-weight:400;
  8122. font-style:normal;
  8123. font-size:12px;
  8124. color:#7F7F7F;
  8125. }
  8126. #u31895 .text {
  8127. position:absolute;
  8128. align-self:center;
  8129. padding:2px 2px 2px 2px;
  8130. box-sizing:border-box;
  8131. width:100%;
  8132. }
  8133. #u31895_div.disabled {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:0px;
  8137. top:0px;
  8138. width:180px;
  8139. height:26px;
  8140. background:inherit;
  8141. background-color:rgba(240, 240, 240, 1);
  8142. border:none;
  8143. border-radius:0px;
  8144. -moz-box-shadow:none;
  8145. -webkit-box-shadow:none;
  8146. box-shadow:none;
  8147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8148. font-weight:400;
  8149. font-style:normal;
  8150. font-size:12px;
  8151. color:#7F7F7F;
  8152. }
  8153. #u31895.disabled {
  8154. }
  8155. #u31896 {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:0px;
  8159. top:0px;
  8160. width:0px;
  8161. height:0px;
  8162. }
  8163. #u31897_div {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:0px;
  8167. top:0px;
  8168. width:200px;
  8169. height:30px;
  8170. background:inherit;
  8171. background-color:rgba(255, 255, 255, 1);
  8172. box-sizing:border-box;
  8173. border-width:1px;
  8174. border-style:solid;
  8175. border-color:rgba(215, 215, 215, 1);
  8176. border-radius:4px;
  8177. -moz-box-shadow:none;
  8178. -webkit-box-shadow:none;
  8179. box-shadow:none;
  8180. font-size:12px;
  8181. }
  8182. #u31897 {
  8183. border-width:0px;
  8184. position:absolute;
  8185. left:1005px;
  8186. top:414px;
  8187. width:200px;
  8188. height:30px;
  8189. display:flex;
  8190. font-size:12px;
  8191. }
  8192. #u31897 .text {
  8193. position:absolute;
  8194. align-self:center;
  8195. padding:2px 2px 2px 2px;
  8196. box-sizing:border-box;
  8197. width:100%;
  8198. }
  8199. #u31897_text {
  8200. border-width:0px;
  8201. word-wrap:break-word;
  8202. text-transform:none;
  8203. visibility:hidden;
  8204. }
  8205. #u31898_input {
  8206. position:absolute;
  8207. left:0px;
  8208. top:0px;
  8209. width:191px;
  8210. height:23px;
  8211. padding:2px 2px 2px 2px;
  8212. font-family:'ArialMT', 'Arial', sans-serif;
  8213. font-weight:400;
  8214. font-style:normal;
  8215. font-size:12px;
  8216. letter-spacing:normal;
  8217. color:#AAAAAA;
  8218. vertical-align:none;
  8219. text-align:left;
  8220. text-transform:none;
  8221. background-color:transparent;
  8222. border-color:transparent;
  8223. }
  8224. #u31898_input.disabled {
  8225. position:absolute;
  8226. left:0px;
  8227. top:0px;
  8228. width:191px;
  8229. height:23px;
  8230. padding:2px 2px 2px 2px;
  8231. font-family:'ArialMT', 'Arial', sans-serif;
  8232. font-weight:400;
  8233. font-style:normal;
  8234. font-size:12px;
  8235. letter-spacing:normal;
  8236. color:#AAAAAA;
  8237. vertical-align:none;
  8238. text-align:left;
  8239. text-transform:none;
  8240. background-color:transparent;
  8241. border-color:transparent;
  8242. }
  8243. #u31898_div {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:0px;
  8247. top:0px;
  8248. width:191px;
  8249. height:23px;
  8250. background:inherit;
  8251. background-color:rgba(255, 255, 255, 1);
  8252. border:none;
  8253. border-radius:0px;
  8254. -moz-box-shadow:none;
  8255. -webkit-box-shadow:none;
  8256. box-shadow:none;
  8257. font-size:12px;
  8258. color:#AAAAAA;
  8259. }
  8260. #u31898 {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:1008px;
  8264. top:416px;
  8265. width:191px;
  8266. height:23px;
  8267. display:flex;
  8268. font-size:12px;
  8269. color:#AAAAAA;
  8270. }
  8271. #u31898 .text {
  8272. position:absolute;
  8273. align-self:flex-start;
  8274. padding:2px 2px 2px 2px;
  8275. box-sizing:border-box;
  8276. width:100%;
  8277. }
  8278. #u31898_div.disabled {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:0px;
  8282. top:0px;
  8283. width:191px;
  8284. height:23px;
  8285. background:inherit;
  8286. background-color:rgba(240, 240, 240, 1);
  8287. border:none;
  8288. border-radius:0px;
  8289. -moz-box-shadow:none;
  8290. -webkit-box-shadow:none;
  8291. box-shadow:none;
  8292. font-size:12px;
  8293. color:#AAAAAA;
  8294. }
  8295. #u31898.disabled {
  8296. }
  8297. .u31898_input_option {
  8298. font-size:12px;
  8299. }
  8300. #u31899_div {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:0px;
  8304. top:0px;
  8305. width:100px;
  8306. height:30px;
  8307. background:inherit;
  8308. background-color:rgba(255, 255, 255, 0);
  8309. border:none;
  8310. border-top:0px;
  8311. border-right:0px;
  8312. border-bottom:0px;
  8313. border-radius:0px;
  8314. border-top-left-radius:0px;
  8315. border-bottom-left-radius:0px;
  8316. -moz-box-shadow:none;
  8317. -webkit-box-shadow:none;
  8318. box-shadow:none;
  8319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8320. font-weight:400;
  8321. font-style:normal;
  8322. font-size:14px;
  8323. color:#7F7F7F;
  8324. }
  8325. #u31899 {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:909px;
  8329. top:414px;
  8330. width:100px;
  8331. height:30px;
  8332. display:flex;
  8333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8334. font-weight:400;
  8335. font-style:normal;
  8336. font-size:14px;
  8337. color:#7F7F7F;
  8338. }
  8339. #u31899 .text {
  8340. position:absolute;
  8341. align-self:center;
  8342. padding:5px 10px 5px 0px;
  8343. box-sizing:border-box;
  8344. width:100%;
  8345. }
  8346. #u31899_text {
  8347. border-width:0px;
  8348. word-wrap:break-word;
  8349. text-transform:none;
  8350. }
  8351. #u31900_div {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:0px;
  8355. top:0px;
  8356. width:100px;
  8357. height:30px;
  8358. background:inherit;
  8359. background-color:rgba(255, 255, 255, 0);
  8360. border:none;
  8361. border-top:0px;
  8362. border-right:0px;
  8363. border-bottom:0px;
  8364. border-radius:0px;
  8365. border-top-left-radius:0px;
  8366. border-bottom-left-radius:0px;
  8367. -moz-box-shadow:none;
  8368. -webkit-box-shadow:none;
  8369. box-shadow:none;
  8370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8371. font-weight:400;
  8372. font-style:normal;
  8373. font-size:14px;
  8374. color:#7F7F7F;
  8375. }
  8376. #u31900 {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:593px;
  8380. top:454px;
  8381. width:100px;
  8382. height:30px;
  8383. display:flex;
  8384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8385. font-weight:400;
  8386. font-style:normal;
  8387. font-size:14px;
  8388. color:#7F7F7F;
  8389. }
  8390. #u31900 .text {
  8391. position:absolute;
  8392. align-self:center;
  8393. padding:5px 10px 5px 0px;
  8394. box-sizing:border-box;
  8395. width:100%;
  8396. }
  8397. #u31900_text {
  8398. border-width:0px;
  8399. word-wrap:break-word;
  8400. text-transform:none;
  8401. }
  8402. #u31901 {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:0px;
  8406. top:0px;
  8407. width:0px;
  8408. height:0px;
  8409. }
  8410. #u31902_div {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:0px;
  8414. top:0px;
  8415. width:200px;
  8416. height:30px;
  8417. background:inherit;
  8418. background-color:rgba(255, 255, 255, 1);
  8419. box-sizing:border-box;
  8420. border-width:1px;
  8421. border-style:solid;
  8422. border-color:rgba(201, 201, 201, 1);
  8423. border-radius:4px;
  8424. -moz-box-shadow:none;
  8425. -webkit-box-shadow:none;
  8426. box-shadow:none;
  8427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8428. font-weight:400;
  8429. font-style:normal;
  8430. font-size:12px;
  8431. color:#CCCCCC;
  8432. text-align:right;
  8433. }
  8434. #u31902 {
  8435. border-width:0px;
  8436. position:absolute;
  8437. left:689px;
  8438. top:454px;
  8439. width:200px;
  8440. height:30px;
  8441. display:flex;
  8442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8443. font-weight:400;
  8444. font-style:normal;
  8445. font-size:12px;
  8446. color:#CCCCCC;
  8447. text-align:right;
  8448. }
  8449. #u31902 .text {
  8450. position:absolute;
  8451. align-self:center;
  8452. padding:2px 8px 2px 8px;
  8453. box-sizing:border-box;
  8454. width:100%;
  8455. }
  8456. #u31902_text {
  8457. border-width:0px;
  8458. word-wrap:break-word;
  8459. text-transform:none;
  8460. visibility:hidden;
  8461. }
  8462. #u31903_input {
  8463. position:absolute;
  8464. left:0px;
  8465. top:0px;
  8466. width:180px;
  8467. height:26px;
  8468. padding:2px 2px 2px 2px;
  8469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8470. font-weight:400;
  8471. font-style:normal;
  8472. font-size:12px;
  8473. letter-spacing:normal;
  8474. color:#7F7F7F;
  8475. vertical-align:none;
  8476. text-align:left;
  8477. text-transform:none;
  8478. background-color:transparent;
  8479. border-color:transparent;
  8480. }
  8481. #u31903_input.disabled {
  8482. position:absolute;
  8483. left:0px;
  8484. top:0px;
  8485. width:180px;
  8486. height:26px;
  8487. padding:2px 2px 2px 2px;
  8488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8489. font-weight:400;
  8490. font-style:normal;
  8491. font-size:12px;
  8492. letter-spacing:normal;
  8493. color:#7F7F7F;
  8494. vertical-align:none;
  8495. text-align:left;
  8496. text-transform:none;
  8497. background-color:transparent;
  8498. border-color:transparent;
  8499. }
  8500. #u31903_div {
  8501. border-width:0px;
  8502. position:absolute;
  8503. left:0px;
  8504. top:0px;
  8505. width:180px;
  8506. height:26px;
  8507. background:inherit;
  8508. background-color:rgba(255, 255, 255, 1);
  8509. border:none;
  8510. border-radius:0px;
  8511. -moz-box-shadow:none;
  8512. -webkit-box-shadow:none;
  8513. box-shadow:none;
  8514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:12px;
  8518. color:#7F7F7F;
  8519. }
  8520. #u31903 {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:695px;
  8524. top:455px;
  8525. width:180px;
  8526. height:26px;
  8527. display:flex;
  8528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8529. font-weight:400;
  8530. font-style:normal;
  8531. font-size:12px;
  8532. color:#7F7F7F;
  8533. }
  8534. #u31903 .text {
  8535. position:absolute;
  8536. align-self:center;
  8537. padding:2px 2px 2px 2px;
  8538. box-sizing:border-box;
  8539. width:100%;
  8540. }
  8541. #u31903_div.disabled {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:0px;
  8545. top:0px;
  8546. width:180px;
  8547. height:26px;
  8548. background:inherit;
  8549. background-color:rgba(240, 240, 240, 1);
  8550. border:none;
  8551. border-radius:0px;
  8552. -moz-box-shadow:none;
  8553. -webkit-box-shadow:none;
  8554. box-shadow:none;
  8555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8556. font-weight:400;
  8557. font-style:normal;
  8558. font-size:12px;
  8559. color:#7F7F7F;
  8560. }
  8561. #u31903.disabled {
  8562. }
  8563. #u31904_div {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:0px;
  8567. top:0px;
  8568. width:100px;
  8569. height:30px;
  8570. background:inherit;
  8571. background-color:rgba(255, 255, 255, 0);
  8572. border:none;
  8573. border-top:0px;
  8574. border-right:0px;
  8575. border-bottom:0px;
  8576. border-radius:0px;
  8577. border-top-left-radius:0px;
  8578. border-bottom-left-radius:0px;
  8579. -moz-box-shadow:none;
  8580. -webkit-box-shadow:none;
  8581. box-shadow:none;
  8582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8583. font-weight:400;
  8584. font-style:normal;
  8585. font-size:14px;
  8586. color:#7F7F7F;
  8587. }
  8588. #u31904 {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:909px;
  8592. top:454px;
  8593. width:100px;
  8594. height:30px;
  8595. display:flex;
  8596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8597. font-weight:400;
  8598. font-style:normal;
  8599. font-size:14px;
  8600. color:#7F7F7F;
  8601. }
  8602. #u31904 .text {
  8603. position:absolute;
  8604. align-self:center;
  8605. padding:5px 10px 5px 0px;
  8606. box-sizing:border-box;
  8607. width:100%;
  8608. }
  8609. #u31904_text {
  8610. border-width:0px;
  8611. word-wrap:break-word;
  8612. text-transform:none;
  8613. }
  8614. #u31905 {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:0px;
  8618. top:0px;
  8619. width:0px;
  8620. height:0px;
  8621. }
  8622. #u31906_div {
  8623. border-width:0px;
  8624. position:absolute;
  8625. left:0px;
  8626. top:0px;
  8627. width:200px;
  8628. height:30px;
  8629. background:inherit;
  8630. background-color:rgba(255, 255, 255, 1);
  8631. box-sizing:border-box;
  8632. border-width:1px;
  8633. border-style:solid;
  8634. border-color:rgba(201, 201, 201, 1);
  8635. border-radius:4px;
  8636. -moz-box-shadow:none;
  8637. -webkit-box-shadow:none;
  8638. box-shadow:none;
  8639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8640. font-weight:400;
  8641. font-style:normal;
  8642. font-size:12px;
  8643. color:#CCCCCC;
  8644. text-align:right;
  8645. }
  8646. #u31906 {
  8647. border-width:0px;
  8648. position:absolute;
  8649. left:1005px;
  8650. top:454px;
  8651. width:200px;
  8652. height:30px;
  8653. display:flex;
  8654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8655. font-weight:400;
  8656. font-style:normal;
  8657. font-size:12px;
  8658. color:#CCCCCC;
  8659. text-align:right;
  8660. }
  8661. #u31906 .text {
  8662. position:absolute;
  8663. align-self:center;
  8664. padding:2px 8px 2px 8px;
  8665. box-sizing:border-box;
  8666. width:100%;
  8667. }
  8668. #u31906_text {
  8669. border-width:0px;
  8670. word-wrap:break-word;
  8671. text-transform:none;
  8672. visibility:hidden;
  8673. }
  8674. #u31907_input {
  8675. position:absolute;
  8676. left:0px;
  8677. top:0px;
  8678. width:180px;
  8679. height:26px;
  8680. padding:2px 2px 2px 2px;
  8681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8682. font-weight:400;
  8683. font-style:normal;
  8684. font-size:12px;
  8685. letter-spacing:normal;
  8686. color:#7F7F7F;
  8687. vertical-align:none;
  8688. text-align:left;
  8689. text-transform:none;
  8690. background-color:transparent;
  8691. border-color:transparent;
  8692. }
  8693. #u31907_input.disabled {
  8694. position:absolute;
  8695. left:0px;
  8696. top:0px;
  8697. width:180px;
  8698. height:26px;
  8699. padding:2px 2px 2px 2px;
  8700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8701. font-weight:400;
  8702. font-style:normal;
  8703. font-size:12px;
  8704. letter-spacing:normal;
  8705. color:#7F7F7F;
  8706. vertical-align:none;
  8707. text-align:left;
  8708. text-transform:none;
  8709. background-color:transparent;
  8710. border-color:transparent;
  8711. }
  8712. #u31907_div {
  8713. border-width:0px;
  8714. position:absolute;
  8715. left:0px;
  8716. top:0px;
  8717. width:180px;
  8718. height:26px;
  8719. background:inherit;
  8720. background-color:rgba(255, 255, 255, 1);
  8721. border:none;
  8722. border-radius:0px;
  8723. -moz-box-shadow:none;
  8724. -webkit-box-shadow:none;
  8725. box-shadow:none;
  8726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8727. font-weight:400;
  8728. font-style:normal;
  8729. font-size:12px;
  8730. color:#7F7F7F;
  8731. }
  8732. #u31907 {
  8733. border-width:0px;
  8734. position:absolute;
  8735. left:1011px;
  8736. top:455px;
  8737. width:180px;
  8738. height:26px;
  8739. display:flex;
  8740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8741. font-weight:400;
  8742. font-style:normal;
  8743. font-size:12px;
  8744. color:#7F7F7F;
  8745. }
  8746. #u31907 .text {
  8747. position:absolute;
  8748. align-self:center;
  8749. padding:2px 2px 2px 2px;
  8750. box-sizing:border-box;
  8751. width:100%;
  8752. }
  8753. #u31907_div.disabled {
  8754. border-width:0px;
  8755. position:absolute;
  8756. left:0px;
  8757. top:0px;
  8758. width:180px;
  8759. height:26px;
  8760. background:inherit;
  8761. background-color:rgba(240, 240, 240, 1);
  8762. border:none;
  8763. border-radius:0px;
  8764. -moz-box-shadow:none;
  8765. -webkit-box-shadow:none;
  8766. box-shadow:none;
  8767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8768. font-weight:400;
  8769. font-style:normal;
  8770. font-size:12px;
  8771. color:#7F7F7F;
  8772. }
  8773. #u31907.disabled {
  8774. }
  8775. #u31908 {
  8776. border-width:0px;
  8777. position:absolute;
  8778. left:0px;
  8779. top:0px;
  8780. width:0px;
  8781. height:0px;
  8782. }
  8783. #u31909_div {
  8784. border-width:0px;
  8785. position:absolute;
  8786. left:0px;
  8787. top:0px;
  8788. width:200px;
  8789. height:30px;
  8790. background:inherit;
  8791. background-color:rgba(255, 255, 255, 1);
  8792. box-sizing:border-box;
  8793. border-width:1px;
  8794. border-style:solid;
  8795. border-color:rgba(215, 215, 215, 1);
  8796. border-radius:4px;
  8797. -moz-box-shadow:none;
  8798. -webkit-box-shadow:none;
  8799. box-shadow:none;
  8800. font-size:12px;
  8801. }
  8802. #u31909 {
  8803. border-width:0px;
  8804. position:absolute;
  8805. left:689px;
  8806. top:494px;
  8807. width:200px;
  8808. height:30px;
  8809. display:flex;
  8810. font-size:12px;
  8811. }
  8812. #u31909 .text {
  8813. position:absolute;
  8814. align-self:center;
  8815. padding:2px 2px 2px 2px;
  8816. box-sizing:border-box;
  8817. width:100%;
  8818. }
  8819. #u31909_text {
  8820. border-width:0px;
  8821. word-wrap:break-word;
  8822. text-transform:none;
  8823. visibility:hidden;
  8824. }
  8825. #u31910_input {
  8826. position:absolute;
  8827. left:0px;
  8828. top:0px;
  8829. width:191px;
  8830. height:23px;
  8831. padding:2px 2px 2px 2px;
  8832. font-family:'ArialMT', 'Arial', sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. font-size:12px;
  8836. letter-spacing:normal;
  8837. color:#AAAAAA;
  8838. vertical-align:none;
  8839. text-align:left;
  8840. text-transform:none;
  8841. background-color:transparent;
  8842. border-color:transparent;
  8843. }
  8844. #u31910_input.disabled {
  8845. position:absolute;
  8846. left:0px;
  8847. top:0px;
  8848. width:191px;
  8849. height:23px;
  8850. padding:2px 2px 2px 2px;
  8851. font-family:'ArialMT', 'Arial', sans-serif;
  8852. font-weight:400;
  8853. font-style:normal;
  8854. font-size:12px;
  8855. letter-spacing:normal;
  8856. color:#AAAAAA;
  8857. vertical-align:none;
  8858. text-align:left;
  8859. text-transform:none;
  8860. background-color:transparent;
  8861. border-color:transparent;
  8862. }
  8863. #u31910_div {
  8864. border-width:0px;
  8865. position:absolute;
  8866. left:0px;
  8867. top:0px;
  8868. width:191px;
  8869. height:23px;
  8870. background:inherit;
  8871. background-color:rgba(255, 255, 255, 1);
  8872. border:none;
  8873. border-radius:0px;
  8874. -moz-box-shadow:none;
  8875. -webkit-box-shadow:none;
  8876. box-shadow:none;
  8877. font-size:12px;
  8878. color:#AAAAAA;
  8879. }
  8880. #u31910 {
  8881. border-width:0px;
  8882. position:absolute;
  8883. left:692px;
  8884. top:496px;
  8885. width:191px;
  8886. height:23px;
  8887. display:flex;
  8888. font-size:12px;
  8889. color:#AAAAAA;
  8890. }
  8891. #u31910 .text {
  8892. position:absolute;
  8893. align-self:flex-start;
  8894. padding:2px 2px 2px 2px;
  8895. box-sizing:border-box;
  8896. width:100%;
  8897. }
  8898. #u31910_div.disabled {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:0px;
  8903. width:191px;
  8904. height:23px;
  8905. background:inherit;
  8906. background-color:rgba(240, 240, 240, 1);
  8907. border:none;
  8908. border-radius:0px;
  8909. -moz-box-shadow:none;
  8910. -webkit-box-shadow:none;
  8911. box-shadow:none;
  8912. font-size:12px;
  8913. color:#AAAAAA;
  8914. }
  8915. #u31910.disabled {
  8916. }
  8917. .u31910_input_option {
  8918. font-size:12px;
  8919. }
  8920. #u31911_div {
  8921. border-width:0px;
  8922. position:absolute;
  8923. left:0px;
  8924. top:0px;
  8925. width:100px;
  8926. height:26px;
  8927. background:inherit;
  8928. background-color:rgba(255, 255, 255, 0);
  8929. border:none;
  8930. border-top:0px;
  8931. border-right:0px;
  8932. border-bottom:0px;
  8933. border-radius:0px;
  8934. border-top-left-radius:0px;
  8935. border-bottom-left-radius:0px;
  8936. -moz-box-shadow:none;
  8937. -webkit-box-shadow:none;
  8938. box-shadow:none;
  8939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8940. font-weight:400;
  8941. font-style:normal;
  8942. font-size:11px;
  8943. color:#7F7F7F;
  8944. }
  8945. #u31911 {
  8946. border-width:0px;
  8947. position:absolute;
  8948. left:589px;
  8949. top:494px;
  8950. width:100px;
  8951. height:26px;
  8952. display:flex;
  8953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8954. font-weight:400;
  8955. font-style:normal;
  8956. font-size:11px;
  8957. color:#7F7F7F;
  8958. }
  8959. #u31911 .text {
  8960. position:absolute;
  8961. align-self:flex-start;
  8962. padding:5px 10px 5px 0px;
  8963. box-sizing:border-box;
  8964. width:100%;
  8965. }
  8966. #u31911_text {
  8967. border-width:0px;
  8968. word-wrap:break-word;
  8969. text-transform:none;
  8970. }
  8971. #u31912 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:0px;
  8975. top:0px;
  8976. width:0px;
  8977. height:0px;
  8978. }
  8979. #u31913_div {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:0px;
  8983. top:0px;
  8984. width:200px;
  8985. height:30px;
  8986. background:inherit;
  8987. background-color:rgba(255, 255, 255, 1);
  8988. box-sizing:border-box;
  8989. border-width:1px;
  8990. border-style:solid;
  8991. border-color:rgba(215, 215, 215, 1);
  8992. border-radius:4px;
  8993. -moz-box-shadow:none;
  8994. -webkit-box-shadow:none;
  8995. box-shadow:none;
  8996. font-size:12px;
  8997. }
  8998. #u31913 {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:1005px;
  9002. top:494px;
  9003. width:200px;
  9004. height:30px;
  9005. display:flex;
  9006. font-size:12px;
  9007. }
  9008. #u31913 .text {
  9009. position:absolute;
  9010. align-self:center;
  9011. padding:2px 2px 2px 2px;
  9012. box-sizing:border-box;
  9013. width:100%;
  9014. }
  9015. #u31913_text {
  9016. border-width:0px;
  9017. word-wrap:break-word;
  9018. text-transform:none;
  9019. visibility:hidden;
  9020. }
  9021. #u31914_input {
  9022. position:absolute;
  9023. left:0px;
  9024. top:0px;
  9025. width:191px;
  9026. height:23px;
  9027. padding:2px 2px 2px 2px;
  9028. font-family:'ArialMT', 'Arial', sans-serif;
  9029. font-weight:400;
  9030. font-style:normal;
  9031. font-size:12px;
  9032. letter-spacing:normal;
  9033. color:#AAAAAA;
  9034. vertical-align:none;
  9035. text-align:left;
  9036. text-transform:none;
  9037. background-color:transparent;
  9038. border-color:transparent;
  9039. }
  9040. #u31914_input.disabled {
  9041. position:absolute;
  9042. left:0px;
  9043. top:0px;
  9044. width:191px;
  9045. height:23px;
  9046. padding:2px 2px 2px 2px;
  9047. font-family:'ArialMT', 'Arial', sans-serif;
  9048. font-weight:400;
  9049. font-style:normal;
  9050. font-size:12px;
  9051. letter-spacing:normal;
  9052. color:#AAAAAA;
  9053. vertical-align:none;
  9054. text-align:left;
  9055. text-transform:none;
  9056. background-color:transparent;
  9057. border-color:transparent;
  9058. }
  9059. #u31914_div {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:0px;
  9063. top:0px;
  9064. width:191px;
  9065. height:23px;
  9066. background:inherit;
  9067. background-color:rgba(255, 255, 255, 1);
  9068. border:none;
  9069. border-radius:0px;
  9070. -moz-box-shadow:none;
  9071. -webkit-box-shadow:none;
  9072. box-shadow:none;
  9073. font-size:12px;
  9074. color:#AAAAAA;
  9075. }
  9076. #u31914 {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:1008px;
  9080. top:496px;
  9081. width:191px;
  9082. height:23px;
  9083. display:flex;
  9084. font-size:12px;
  9085. color:#AAAAAA;
  9086. }
  9087. #u31914 .text {
  9088. position:absolute;
  9089. align-self:flex-start;
  9090. padding:2px 2px 2px 2px;
  9091. box-sizing:border-box;
  9092. width:100%;
  9093. }
  9094. #u31914_div.disabled {
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:0px;
  9098. top:0px;
  9099. width:191px;
  9100. height:23px;
  9101. background:inherit;
  9102. background-color:rgba(240, 240, 240, 1);
  9103. border:none;
  9104. border-radius:0px;
  9105. -moz-box-shadow:none;
  9106. -webkit-box-shadow:none;
  9107. box-shadow:none;
  9108. font-size:12px;
  9109. color:#AAAAAA;
  9110. }
  9111. #u31914.disabled {
  9112. }
  9113. .u31914_input_option {
  9114. font-size:12px;
  9115. }
  9116. #u31915_div {
  9117. border-width:0px;
  9118. position:absolute;
  9119. left:0px;
  9120. top:0px;
  9121. width:100px;
  9122. height:30px;
  9123. background:inherit;
  9124. background-color:rgba(255, 255, 255, 0);
  9125. border:none;
  9126. border-top:0px;
  9127. border-right:0px;
  9128. border-bottom:0px;
  9129. border-radius:0px;
  9130. border-top-left-radius:0px;
  9131. border-bottom-left-radius:0px;
  9132. -moz-box-shadow:none;
  9133. -webkit-box-shadow:none;
  9134. box-shadow:none;
  9135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9136. font-weight:400;
  9137. font-style:normal;
  9138. font-size:14px;
  9139. color:#7F7F7F;
  9140. }
  9141. #u31915 {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:905px;
  9145. top:494px;
  9146. width:100px;
  9147. height:30px;
  9148. display:flex;
  9149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9150. font-weight:400;
  9151. font-style:normal;
  9152. font-size:14px;
  9153. color:#7F7F7F;
  9154. }
  9155. #u31915 .text {
  9156. position:absolute;
  9157. align-self:flex-start;
  9158. padding:5px 10px 5px 0px;
  9159. box-sizing:border-box;
  9160. width:100%;
  9161. }
  9162. #u31915_text {
  9163. border-width:0px;
  9164. word-wrap:break-word;
  9165. text-transform:none;
  9166. }
  9167. #u31916 {
  9168. border-width:0px;
  9169. position:absolute;
  9170. left:0px;
  9171. top:0px;
  9172. width:0px;
  9173. height:0px;
  9174. }
  9175. #u31917_div {
  9176. border-width:0px;
  9177. position:absolute;
  9178. left:0px;
  9179. top:0px;
  9180. width:200px;
  9181. height:30px;
  9182. background:inherit;
  9183. background-color:rgba(255, 255, 255, 1);
  9184. box-sizing:border-box;
  9185. border-width:1px;
  9186. border-style:solid;
  9187. border-color:rgba(215, 215, 215, 1);
  9188. border-radius:4px;
  9189. -moz-box-shadow:none;
  9190. -webkit-box-shadow:none;
  9191. box-shadow:none;
  9192. font-size:12px;
  9193. }
  9194. #u31917 {
  9195. border-width:0px;
  9196. position:absolute;
  9197. left:689px;
  9198. top:534px;
  9199. width:200px;
  9200. height:30px;
  9201. display:flex;
  9202. font-size:12px;
  9203. }
  9204. #u31917 .text {
  9205. position:absolute;
  9206. align-self:center;
  9207. padding:2px 2px 2px 2px;
  9208. box-sizing:border-box;
  9209. width:100%;
  9210. }
  9211. #u31917_text {
  9212. border-width:0px;
  9213. word-wrap:break-word;
  9214. text-transform:none;
  9215. visibility:hidden;
  9216. }
  9217. #u31918_input {
  9218. position:absolute;
  9219. left:0px;
  9220. top:0px;
  9221. width:191px;
  9222. height:23px;
  9223. padding:2px 2px 2px 2px;
  9224. font-family:'ArialMT', 'Arial', sans-serif;
  9225. font-weight:400;
  9226. font-style:normal;
  9227. font-size:12px;
  9228. letter-spacing:normal;
  9229. color:#AAAAAA;
  9230. vertical-align:none;
  9231. text-align:left;
  9232. text-transform:none;
  9233. background-color:transparent;
  9234. border-color:transparent;
  9235. }
  9236. #u31918_input.disabled {
  9237. position:absolute;
  9238. left:0px;
  9239. top:0px;
  9240. width:191px;
  9241. height:23px;
  9242. padding:2px 2px 2px 2px;
  9243. font-family:'ArialMT', 'Arial', sans-serif;
  9244. font-weight:400;
  9245. font-style:normal;
  9246. font-size:12px;
  9247. letter-spacing:normal;
  9248. color:#AAAAAA;
  9249. vertical-align:none;
  9250. text-align:left;
  9251. text-transform:none;
  9252. background-color:transparent;
  9253. border-color:transparent;
  9254. }
  9255. #u31918_div {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:0px;
  9259. top:0px;
  9260. width:191px;
  9261. height:23px;
  9262. background:inherit;
  9263. background-color:rgba(255, 255, 255, 1);
  9264. border:none;
  9265. border-radius:0px;
  9266. -moz-box-shadow:none;
  9267. -webkit-box-shadow:none;
  9268. box-shadow:none;
  9269. font-size:12px;
  9270. color:#AAAAAA;
  9271. }
  9272. #u31918 {
  9273. border-width:0px;
  9274. position:absolute;
  9275. left:692px;
  9276. top:536px;
  9277. width:191px;
  9278. height:23px;
  9279. display:flex;
  9280. font-size:12px;
  9281. color:#AAAAAA;
  9282. }
  9283. #u31918 .text {
  9284. position:absolute;
  9285. align-self:flex-start;
  9286. padding:2px 2px 2px 2px;
  9287. box-sizing:border-box;
  9288. width:100%;
  9289. }
  9290. #u31918_div.disabled {
  9291. border-width:0px;
  9292. position:absolute;
  9293. left:0px;
  9294. top:0px;
  9295. width:191px;
  9296. height:23px;
  9297. background:inherit;
  9298. background-color:rgba(240, 240, 240, 1);
  9299. border:none;
  9300. border-radius:0px;
  9301. -moz-box-shadow:none;
  9302. -webkit-box-shadow:none;
  9303. box-shadow:none;
  9304. font-size:12px;
  9305. color:#AAAAAA;
  9306. }
  9307. #u31918.disabled {
  9308. }
  9309. .u31918_input_option {
  9310. font-size:12px;
  9311. }
  9312. #u31919_div {
  9313. border-width:0px;
  9314. position:absolute;
  9315. left:0px;
  9316. top:0px;
  9317. width:100px;
  9318. height:30px;
  9319. background:inherit;
  9320. background-color:rgba(255, 255, 255, 0);
  9321. border:none;
  9322. border-top:0px;
  9323. border-right:0px;
  9324. border-bottom:0px;
  9325. border-radius:0px;
  9326. border-top-left-radius:0px;
  9327. border-bottom-left-radius:0px;
  9328. -moz-box-shadow:none;
  9329. -webkit-box-shadow:none;
  9330. box-shadow:none;
  9331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9332. font-weight:400;
  9333. font-style:normal;
  9334. font-size:14px;
  9335. color:#7F7F7F;
  9336. }
  9337. #u31919 {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:589px;
  9341. top:534px;
  9342. width:100px;
  9343. height:30px;
  9344. display:flex;
  9345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. font-size:14px;
  9349. color:#7F7F7F;
  9350. }
  9351. #u31919 .text {
  9352. position:absolute;
  9353. align-self:flex-start;
  9354. padding:5px 10px 5px 0px;
  9355. box-sizing:border-box;
  9356. width:100%;
  9357. }
  9358. #u31919_text {
  9359. border-width:0px;
  9360. word-wrap:break-word;
  9361. text-transform:none;
  9362. }
  9363. #u31920 {
  9364. border-width:0px;
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:0px;
  9369. height:0px;
  9370. }
  9371. #u31921_div {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:0px;
  9375. top:0px;
  9376. width:200px;
  9377. height:30px;
  9378. background:inherit;
  9379. background-color:rgba(255, 255, 255, 1);
  9380. box-sizing:border-box;
  9381. border-width:1px;
  9382. border-style:solid;
  9383. border-color:rgba(188, 188, 188, 1);
  9384. border-radius:4px;
  9385. -moz-box-shadow:none;
  9386. -webkit-box-shadow:none;
  9387. box-shadow:none;
  9388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9389. font-weight:400;
  9390. font-style:normal;
  9391. font-size:12px;
  9392. text-align:right;
  9393. }
  9394. #u31921 {
  9395. border-width:0px;
  9396. position:absolute;
  9397. left:1005px;
  9398. top:534px;
  9399. width:200px;
  9400. height:30px;
  9401. display:flex;
  9402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9403. font-weight:400;
  9404. font-style:normal;
  9405. font-size:12px;
  9406. text-align:right;
  9407. }
  9408. #u31921 .text {
  9409. position:absolute;
  9410. align-self:center;
  9411. padding:8px 15px 8px 15px;
  9412. box-sizing:border-box;
  9413. width:100%;
  9414. }
  9415. #u31921_text {
  9416. border-width:0px;
  9417. word-wrap:break-word;
  9418. text-transform:none;
  9419. }
  9420. #u31922_input {
  9421. position:absolute;
  9422. left:0px;
  9423. top:0px;
  9424. width:157px;
  9425. height:26px;
  9426. padding:2px 2px 2px 2px;
  9427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9428. font-weight:400;
  9429. font-style:normal;
  9430. font-size:12px;
  9431. letter-spacing:normal;
  9432. color:#7F7F7F;
  9433. vertical-align:none;
  9434. text-align:left;
  9435. text-transform:none;
  9436. background-color:transparent;
  9437. border-color:transparent;
  9438. }
  9439. #u31922_input.disabled {
  9440. position:absolute;
  9441. left:0px;
  9442. top:0px;
  9443. width:157px;
  9444. height:26px;
  9445. padding:2px 2px 2px 2px;
  9446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9447. font-weight:400;
  9448. font-style:normal;
  9449. font-size:12px;
  9450. letter-spacing:normal;
  9451. color:#7F7F7F;
  9452. vertical-align:none;
  9453. text-align:left;
  9454. text-transform:none;
  9455. background-color:transparent;
  9456. border-color:transparent;
  9457. }
  9458. #u31922_div {
  9459. border-width:0px;
  9460. position:absolute;
  9461. left:0px;
  9462. top:0px;
  9463. width:157px;
  9464. height:26px;
  9465. background:inherit;
  9466. background-color:rgba(255, 255, 255, 1);
  9467. border:none;
  9468. border-radius:0px;
  9469. -moz-box-shadow:none;
  9470. -webkit-box-shadow:none;
  9471. box-shadow:none;
  9472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9473. font-weight:400;
  9474. font-style:normal;
  9475. font-size:12px;
  9476. color:#7F7F7F;
  9477. }
  9478. #u31922 {
  9479. border-width:0px;
  9480. position:absolute;
  9481. left:1014px;
  9482. top:536px;
  9483. width:157px;
  9484. height:26px;
  9485. display:flex;
  9486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9487. font-weight:400;
  9488. font-style:normal;
  9489. font-size:12px;
  9490. color:#7F7F7F;
  9491. }
  9492. #u31922 .text {
  9493. position:absolute;
  9494. align-self:center;
  9495. padding:2px 2px 2px 2px;
  9496. box-sizing:border-box;
  9497. width:100%;
  9498. }
  9499. #u31922_div.disabled {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:0px;
  9503. top:0px;
  9504. width:157px;
  9505. height:26px;
  9506. background:inherit;
  9507. background-color:rgba(240, 240, 240, 1);
  9508. border:none;
  9509. border-radius:0px;
  9510. -moz-box-shadow:none;
  9511. -webkit-box-shadow:none;
  9512. box-shadow:none;
  9513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9514. font-weight:400;
  9515. font-style:normal;
  9516. font-size:12px;
  9517. color:#7F7F7F;
  9518. }
  9519. #u31922.disabled {
  9520. }
  9521. #u31923_div {
  9522. border-width:0px;
  9523. position:absolute;
  9524. left:0px;
  9525. top:0px;
  9526. width:100px;
  9527. height:27px;
  9528. background:inherit;
  9529. background-color:rgba(255, 255, 255, 0);
  9530. border:none;
  9531. border-top:0px;
  9532. border-right:0px;
  9533. border-bottom:0px;
  9534. border-radius:0px;
  9535. border-top-left-radius:0px;
  9536. border-bottom-left-radius:0px;
  9537. -moz-box-shadow:none;
  9538. -webkit-box-shadow:none;
  9539. box-shadow:none;
  9540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9541. font-weight:400;
  9542. font-style:normal;
  9543. font-size:12px;
  9544. color:#7F7F7F;
  9545. }
  9546. #u31923 {
  9547. border-width:0px;
  9548. position:absolute;
  9549. left:909px;
  9550. top:536px;
  9551. width:100px;
  9552. height:27px;
  9553. display:flex;
  9554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9555. font-weight:400;
  9556. font-style:normal;
  9557. font-size:12px;
  9558. color:#7F7F7F;
  9559. }
  9560. #u31923 .text {
  9561. position:absolute;
  9562. align-self:center;
  9563. padding:5px 10px 5px 0px;
  9564. box-sizing:border-box;
  9565. width:100%;
  9566. }
  9567. #u31923_text {
  9568. border-width:0px;
  9569. word-wrap:break-word;
  9570. text-transform:none;
  9571. }
  9572. #u31924 {
  9573. border-width:0px;
  9574. position:absolute;
  9575. left:0px;
  9576. top:0px;
  9577. width:0px;
  9578. height:0px;
  9579. }
  9580. #u31925_div {
  9581. border-width:0px;
  9582. position:absolute;
  9583. left:0px;
  9584. top:0px;
  9585. width:200px;
  9586. height:30px;
  9587. background:inherit;
  9588. background-color:rgba(255, 255, 255, 1);
  9589. box-sizing:border-box;
  9590. border-width:1px;
  9591. border-style:solid;
  9592. border-color:rgba(188, 188, 188, 1);
  9593. border-radius:4px;
  9594. -moz-box-shadow:none;
  9595. -webkit-box-shadow:none;
  9596. box-shadow:none;
  9597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9598. font-weight:400;
  9599. font-style:normal;
  9600. font-size:12px;
  9601. text-align:right;
  9602. }
  9603. #u31925 {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:689px;
  9607. top:574px;
  9608. width:200px;
  9609. height:30px;
  9610. display:flex;
  9611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9612. font-weight:400;
  9613. font-style:normal;
  9614. font-size:12px;
  9615. text-align:right;
  9616. }
  9617. #u31925 .text {
  9618. position:absolute;
  9619. align-self:center;
  9620. padding:8px 15px 8px 15px;
  9621. box-sizing:border-box;
  9622. width:100%;
  9623. }
  9624. #u31925_text {
  9625. border-width:0px;
  9626. word-wrap:break-word;
  9627. text-transform:none;
  9628. }
  9629. #u31926_input {
  9630. position:absolute;
  9631. left:0px;
  9632. top:0px;
  9633. width:157px;
  9634. height:26px;
  9635. padding:2px 2px 2px 2px;
  9636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9637. font-weight:400;
  9638. font-style:normal;
  9639. font-size:12px;
  9640. letter-spacing:normal;
  9641. color:#7F7F7F;
  9642. vertical-align:none;
  9643. text-align:left;
  9644. text-transform:none;
  9645. background-color:transparent;
  9646. border-color:transparent;
  9647. }
  9648. #u31926_input.disabled {
  9649. position:absolute;
  9650. left:0px;
  9651. top:0px;
  9652. width:157px;
  9653. height:26px;
  9654. padding:2px 2px 2px 2px;
  9655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9656. font-weight:400;
  9657. font-style:normal;
  9658. font-size:12px;
  9659. letter-spacing:normal;
  9660. color:#7F7F7F;
  9661. vertical-align:none;
  9662. text-align:left;
  9663. text-transform:none;
  9664. background-color:transparent;
  9665. border-color:transparent;
  9666. }
  9667. #u31926_div {
  9668. border-width:0px;
  9669. position:absolute;
  9670. left:0px;
  9671. top:0px;
  9672. width:157px;
  9673. height:26px;
  9674. background:inherit;
  9675. background-color:rgba(255, 255, 255, 1);
  9676. border:none;
  9677. border-radius:0px;
  9678. -moz-box-shadow:none;
  9679. -webkit-box-shadow:none;
  9680. box-shadow:none;
  9681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9682. font-weight:400;
  9683. font-style:normal;
  9684. font-size:12px;
  9685. color:#7F7F7F;
  9686. }
  9687. #u31926 {
  9688. border-width:0px;
  9689. position:absolute;
  9690. left:698px;
  9691. top:576px;
  9692. width:157px;
  9693. height:26px;
  9694. display:flex;
  9695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9696. font-weight:400;
  9697. font-style:normal;
  9698. font-size:12px;
  9699. color:#7F7F7F;
  9700. }
  9701. #u31926 .text {
  9702. position:absolute;
  9703. align-self:center;
  9704. padding:2px 2px 2px 2px;
  9705. box-sizing:border-box;
  9706. width:100%;
  9707. }
  9708. #u31926_div.disabled {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:0px;
  9712. top:0px;
  9713. width:157px;
  9714. height:26px;
  9715. background:inherit;
  9716. background-color:rgba(240, 240, 240, 1);
  9717. border:none;
  9718. border-radius:0px;
  9719. -moz-box-shadow:none;
  9720. -webkit-box-shadow:none;
  9721. box-shadow:none;
  9722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9723. font-weight:400;
  9724. font-style:normal;
  9725. font-size:12px;
  9726. color:#7F7F7F;
  9727. }
  9728. #u31926.disabled {
  9729. }
  9730. #u31927_div {
  9731. border-width:0px;
  9732. position:absolute;
  9733. left:0px;
  9734. top:0px;
  9735. width:100px;
  9736. height:27px;
  9737. background:inherit;
  9738. background-color:rgba(255, 255, 255, 0);
  9739. border:none;
  9740. border-top:0px;
  9741. border-right:0px;
  9742. border-bottom:0px;
  9743. border-radius:0px;
  9744. border-top-left-radius:0px;
  9745. border-bottom-left-radius:0px;
  9746. -moz-box-shadow:none;
  9747. -webkit-box-shadow:none;
  9748. box-shadow:none;
  9749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9750. font-weight:400;
  9751. font-style:normal;
  9752. font-size:12px;
  9753. color:#7F7F7F;
  9754. }
  9755. #u31927 {
  9756. border-width:0px;
  9757. position:absolute;
  9758. left:593px;
  9759. top:576px;
  9760. width:100px;
  9761. height:27px;
  9762. display:flex;
  9763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9764. font-weight:400;
  9765. font-style:normal;
  9766. font-size:12px;
  9767. color:#7F7F7F;
  9768. }
  9769. #u31927 .text {
  9770. position:absolute;
  9771. align-self:center;
  9772. padding:5px 10px 5px 0px;
  9773. box-sizing:border-box;
  9774. width:100%;
  9775. }
  9776. #u31927_text {
  9777. border-width:0px;
  9778. word-wrap:break-word;
  9779. text-transform:none;
  9780. }
  9781. #u31928 {
  9782. border-width:0px;
  9783. position:absolute;
  9784. left:0px;
  9785. top:0px;
  9786. width:0px;
  9787. height:0px;
  9788. }
  9789. #u31929_div {
  9790. border-width:0px;
  9791. position:absolute;
  9792. left:0px;
  9793. top:0px;
  9794. width:200px;
  9795. height:30px;
  9796. background:inherit;
  9797. background-color:rgba(255, 255, 255, 1);
  9798. box-sizing:border-box;
  9799. border-width:1px;
  9800. border-style:solid;
  9801. border-color:rgba(188, 188, 188, 1);
  9802. border-radius:4px;
  9803. -moz-box-shadow:none;
  9804. -webkit-box-shadow:none;
  9805. box-shadow:none;
  9806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9807. font-weight:400;
  9808. font-style:normal;
  9809. font-size:12px;
  9810. text-align:right;
  9811. }
  9812. #u31929 {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:689px;
  9816. top:654px;
  9817. width:200px;
  9818. height:30px;
  9819. display:flex;
  9820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9821. font-weight:400;
  9822. font-style:normal;
  9823. font-size:12px;
  9824. text-align:right;
  9825. }
  9826. #u31929 .text {
  9827. position:absolute;
  9828. align-self:center;
  9829. padding:8px 15px 8px 15px;
  9830. box-sizing:border-box;
  9831. width:100%;
  9832. }
  9833. #u31929_text {
  9834. border-width:0px;
  9835. word-wrap:break-word;
  9836. text-transform:none;
  9837. visibility:hidden;
  9838. }
  9839. #u31930_input {
  9840. position:absolute;
  9841. left:0px;
  9842. top:0px;
  9843. width:157px;
  9844. height:26px;
  9845. padding:2px 2px 2px 2px;
  9846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9847. font-weight:400;
  9848. font-style:normal;
  9849. font-size:12px;
  9850. letter-spacing:normal;
  9851. color:#7F7F7F;
  9852. vertical-align:none;
  9853. text-align:left;
  9854. text-transform:none;
  9855. background-color:transparent;
  9856. border-color:transparent;
  9857. }
  9858. #u31930_input.disabled {
  9859. position:absolute;
  9860. left:0px;
  9861. top:0px;
  9862. width:157px;
  9863. height:26px;
  9864. padding:2px 2px 2px 2px;
  9865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9866. font-weight:400;
  9867. font-style:normal;
  9868. font-size:12px;
  9869. letter-spacing:normal;
  9870. color:#7F7F7F;
  9871. vertical-align:none;
  9872. text-align:left;
  9873. text-transform:none;
  9874. background-color:transparent;
  9875. border-color:transparent;
  9876. }
  9877. #u31930_div {
  9878. border-width:0px;
  9879. position:absolute;
  9880. left:0px;
  9881. top:0px;
  9882. width:157px;
  9883. height:26px;
  9884. background:inherit;
  9885. background-color:rgba(255, 255, 255, 1);
  9886. border:none;
  9887. border-radius:0px;
  9888. -moz-box-shadow:none;
  9889. -webkit-box-shadow:none;
  9890. box-shadow:none;
  9891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9892. font-weight:400;
  9893. font-style:normal;
  9894. font-size:12px;
  9895. color:#7F7F7F;
  9896. }
  9897. #u31930 {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:698px;
  9901. top:656px;
  9902. width:157px;
  9903. height:26px;
  9904. display:flex;
  9905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9906. font-weight:400;
  9907. font-style:normal;
  9908. font-size:12px;
  9909. color:#7F7F7F;
  9910. }
  9911. #u31930 .text {
  9912. position:absolute;
  9913. align-self:center;
  9914. padding:2px 2px 2px 2px;
  9915. box-sizing:border-box;
  9916. width:100%;
  9917. }
  9918. #u31930_div.disabled {
  9919. border-width:0px;
  9920. position:absolute;
  9921. left:0px;
  9922. top:0px;
  9923. width:157px;
  9924. height:26px;
  9925. background:inherit;
  9926. background-color:rgba(240, 240, 240, 1);
  9927. border:none;
  9928. border-radius:0px;
  9929. -moz-box-shadow:none;
  9930. -webkit-box-shadow:none;
  9931. box-shadow:none;
  9932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9933. font-weight:400;
  9934. font-style:normal;
  9935. font-size:12px;
  9936. color:#7F7F7F;
  9937. }
  9938. #u31930.disabled {
  9939. }
  9940. #u31931_div {
  9941. border-width:0px;
  9942. position:absolute;
  9943. left:0px;
  9944. top:0px;
  9945. width:100px;
  9946. height:27px;
  9947. background:inherit;
  9948. background-color:rgba(255, 255, 255, 0);
  9949. border:none;
  9950. border-top:0px;
  9951. border-right:0px;
  9952. border-bottom:0px;
  9953. border-radius:0px;
  9954. border-top-left-radius:0px;
  9955. border-bottom-left-radius:0px;
  9956. -moz-box-shadow:none;
  9957. -webkit-box-shadow:none;
  9958. box-shadow:none;
  9959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9960. font-weight:400;
  9961. font-style:normal;
  9962. font-size:12px;
  9963. color:#7F7F7F;
  9964. }
  9965. #u31931 {
  9966. border-width:0px;
  9967. position:absolute;
  9968. left:593px;
  9969. top:656px;
  9970. width:100px;
  9971. height:27px;
  9972. display:flex;
  9973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9974. font-weight:400;
  9975. font-style:normal;
  9976. font-size:12px;
  9977. color:#7F7F7F;
  9978. }
  9979. #u31931 .text {
  9980. position:absolute;
  9981. align-self:center;
  9982. padding:5px 10px 5px 0px;
  9983. box-sizing:border-box;
  9984. width:100%;
  9985. }
  9986. #u31931_text {
  9987. border-width:0px;
  9988. word-wrap:break-word;
  9989. text-transform:none;
  9990. }
  9991. #u31932 {
  9992. border-width:0px;
  9993. position:absolute;
  9994. left:0px;
  9995. top:0px;
  9996. width:0px;
  9997. height:0px;
  9998. }
  9999. #u31933_div {
  10000. border-width:0px;
  10001. position:absolute;
  10002. left:0px;
  10003. top:0px;
  10004. width:200px;
  10005. height:30px;
  10006. background:inherit;
  10007. background-color:rgba(255, 255, 255, 1);
  10008. box-sizing:border-box;
  10009. border-width:1px;
  10010. border-style:solid;
  10011. border-color:rgba(215, 215, 215, 1);
  10012. border-radius:4px;
  10013. -moz-box-shadow:none;
  10014. -webkit-box-shadow:none;
  10015. box-shadow:none;
  10016. font-size:12px;
  10017. }
  10018. #u31933 {
  10019. border-width:0px;
  10020. position:absolute;
  10021. left:689px;
  10022. top:614px;
  10023. width:200px;
  10024. height:30px;
  10025. display:flex;
  10026. font-size:12px;
  10027. }
  10028. #u31933 .text {
  10029. position:absolute;
  10030. align-self:center;
  10031. padding:2px 2px 2px 2px;
  10032. box-sizing:border-box;
  10033. width:100%;
  10034. }
  10035. #u31933_text {
  10036. border-width:0px;
  10037. word-wrap:break-word;
  10038. text-transform:none;
  10039. visibility:hidden;
  10040. }
  10041. #u31934_input {
  10042. position:absolute;
  10043. left:0px;
  10044. top:0px;
  10045. width:191px;
  10046. height:23px;
  10047. padding:2px 2px 2px 2px;
  10048. font-family:'ArialMT', 'Arial', sans-serif;
  10049. font-weight:400;
  10050. font-style:normal;
  10051. font-size:12px;
  10052. letter-spacing:normal;
  10053. color:#AAAAAA;
  10054. vertical-align:none;
  10055. text-align:left;
  10056. text-transform:none;
  10057. background-color:transparent;
  10058. border-color:transparent;
  10059. }
  10060. #u31934_input.disabled {
  10061. position:absolute;
  10062. left:0px;
  10063. top:0px;
  10064. width:191px;
  10065. height:23px;
  10066. padding:2px 2px 2px 2px;
  10067. font-family:'ArialMT', 'Arial', sans-serif;
  10068. font-weight:400;
  10069. font-style:normal;
  10070. font-size:12px;
  10071. letter-spacing:normal;
  10072. color:#AAAAAA;
  10073. vertical-align:none;
  10074. text-align:left;
  10075. text-transform:none;
  10076. background-color:transparent;
  10077. border-color:transparent;
  10078. }
  10079. #u31934_div {
  10080. border-width:0px;
  10081. position:absolute;
  10082. left:0px;
  10083. top:0px;
  10084. width:191px;
  10085. height:23px;
  10086. background:inherit;
  10087. background-color:rgba(255, 255, 255, 1);
  10088. border:none;
  10089. border-radius:0px;
  10090. -moz-box-shadow:none;
  10091. -webkit-box-shadow:none;
  10092. box-shadow:none;
  10093. font-size:12px;
  10094. color:#AAAAAA;
  10095. }
  10096. #u31934 {
  10097. border-width:0px;
  10098. position:absolute;
  10099. left:692px;
  10100. top:616px;
  10101. width:191px;
  10102. height:23px;
  10103. display:flex;
  10104. font-size:12px;
  10105. color:#AAAAAA;
  10106. }
  10107. #u31934 .text {
  10108. position:absolute;
  10109. align-self:flex-start;
  10110. padding:2px 2px 2px 2px;
  10111. box-sizing:border-box;
  10112. width:100%;
  10113. }
  10114. #u31934_div.disabled {
  10115. border-width:0px;
  10116. position:absolute;
  10117. left:0px;
  10118. top:0px;
  10119. width:191px;
  10120. height:23px;
  10121. background:inherit;
  10122. background-color:rgba(240, 240, 240, 1);
  10123. border:none;
  10124. border-radius:0px;
  10125. -moz-box-shadow:none;
  10126. -webkit-box-shadow:none;
  10127. box-shadow:none;
  10128. font-size:12px;
  10129. color:#AAAAAA;
  10130. }
  10131. #u31934.disabled {
  10132. }
  10133. .u31934_input_option {
  10134. font-size:12px;
  10135. }
  10136. #u31935_div {
  10137. border-width:0px;
  10138. position:absolute;
  10139. left:0px;
  10140. top:0px;
  10141. width:100px;
  10142. height:30px;
  10143. background:inherit;
  10144. background-color:rgba(255, 255, 255, 0);
  10145. border:none;
  10146. border-top:0px;
  10147. border-right:0px;
  10148. border-bottom:0px;
  10149. border-radius:0px;
  10150. border-top-left-radius:0px;
  10151. border-bottom-left-radius:0px;
  10152. -moz-box-shadow:none;
  10153. -webkit-box-shadow:none;
  10154. box-shadow:none;
  10155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10156. font-weight:400;
  10157. font-style:normal;
  10158. font-size:14px;
  10159. color:#7F7F7F;
  10160. }
  10161. #u31935 {
  10162. border-width:0px;
  10163. position:absolute;
  10164. left:593px;
  10165. top:614px;
  10166. width:100px;
  10167. height:30px;
  10168. display:flex;
  10169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10170. font-weight:400;
  10171. font-style:normal;
  10172. font-size:14px;
  10173. color:#7F7F7F;
  10174. }
  10175. #u31935 .text {
  10176. position:absolute;
  10177. align-self:center;
  10178. padding:5px 10px 5px 0px;
  10179. box-sizing:border-box;
  10180. width:100%;
  10181. }
  10182. #u31935_text {
  10183. border-width:0px;
  10184. word-wrap:break-word;
  10185. text-transform:none;
  10186. }
  10187. #u31936 {
  10188. border-width:0px;
  10189. position:absolute;
  10190. left:0px;
  10191. top:0px;
  10192. width:0px;
  10193. height:0px;
  10194. }
  10195. #u31937_div {
  10196. border-width:0px;
  10197. position:absolute;
  10198. left:0px;
  10199. top:0px;
  10200. width:200px;
  10201. height:30px;
  10202. background:inherit;
  10203. background-color:rgba(255, 255, 255, 1);
  10204. box-sizing:border-box;
  10205. border-width:1px;
  10206. border-style:solid;
  10207. border-color:rgba(188, 188, 188, 1);
  10208. border-radius:4px;
  10209. -moz-box-shadow:none;
  10210. -webkit-box-shadow:none;
  10211. box-shadow:none;
  10212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10213. font-weight:400;
  10214. font-style:normal;
  10215. font-size:12px;
  10216. text-align:right;
  10217. }
  10218. #u31937 {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:1005px;
  10222. top:614px;
  10223. width:200px;
  10224. height:30px;
  10225. display:flex;
  10226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10227. font-weight:400;
  10228. font-style:normal;
  10229. font-size:12px;
  10230. text-align:right;
  10231. }
  10232. #u31937 .text {
  10233. position:absolute;
  10234. align-self:center;
  10235. padding:8px 15px 8px 15px;
  10236. box-sizing:border-box;
  10237. width:100%;
  10238. }
  10239. #u31937_text {
  10240. border-width:0px;
  10241. word-wrap:break-word;
  10242. text-transform:none;
  10243. visibility:hidden;
  10244. }
  10245. #u31938_input {
  10246. position:absolute;
  10247. left:0px;
  10248. top:0px;
  10249. width:157px;
  10250. height:26px;
  10251. padding:2px 2px 2px 2px;
  10252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10253. font-weight:400;
  10254. font-style:normal;
  10255. font-size:12px;
  10256. letter-spacing:normal;
  10257. color:#7F7F7F;
  10258. vertical-align:none;
  10259. text-align:left;
  10260. text-transform:none;
  10261. background-color:transparent;
  10262. border-color:transparent;
  10263. }
  10264. #u31938_input.disabled {
  10265. position:absolute;
  10266. left:0px;
  10267. top:0px;
  10268. width:157px;
  10269. height:26px;
  10270. padding:2px 2px 2px 2px;
  10271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10272. font-weight:400;
  10273. font-style:normal;
  10274. font-size:12px;
  10275. letter-spacing:normal;
  10276. color:#7F7F7F;
  10277. vertical-align:none;
  10278. text-align:left;
  10279. text-transform:none;
  10280. background-color:transparent;
  10281. border-color:transparent;
  10282. }
  10283. #u31938_div {
  10284. border-width:0px;
  10285. position:absolute;
  10286. left:0px;
  10287. top:0px;
  10288. width:157px;
  10289. height:26px;
  10290. background:inherit;
  10291. background-color:rgba(255, 255, 255, 1);
  10292. border:none;
  10293. border-radius:0px;
  10294. -moz-box-shadow:none;
  10295. -webkit-box-shadow:none;
  10296. box-shadow:none;
  10297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10298. font-weight:400;
  10299. font-style:normal;
  10300. font-size:12px;
  10301. color:#7F7F7F;
  10302. }
  10303. #u31938 {
  10304. border-width:0px;
  10305. position:absolute;
  10306. left:1014px;
  10307. top:616px;
  10308. width:157px;
  10309. height:26px;
  10310. display:flex;
  10311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10312. font-weight:400;
  10313. font-style:normal;
  10314. font-size:12px;
  10315. color:#7F7F7F;
  10316. }
  10317. #u31938 .text {
  10318. position:absolute;
  10319. align-self:center;
  10320. padding:2px 2px 2px 2px;
  10321. box-sizing:border-box;
  10322. width:100%;
  10323. }
  10324. #u31938_div.disabled {
  10325. border-width:0px;
  10326. position:absolute;
  10327. left:0px;
  10328. top:0px;
  10329. width:157px;
  10330. height:26px;
  10331. background:inherit;
  10332. background-color:rgba(240, 240, 240, 1);
  10333. border:none;
  10334. border-radius:0px;
  10335. -moz-box-shadow:none;
  10336. -webkit-box-shadow:none;
  10337. box-shadow:none;
  10338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10339. font-weight:400;
  10340. font-style:normal;
  10341. font-size:12px;
  10342. color:#7F7F7F;
  10343. }
  10344. #u31938.disabled {
  10345. }
  10346. #u31939_div {
  10347. border-width:0px;
  10348. position:absolute;
  10349. left:0px;
  10350. top:0px;
  10351. width:100px;
  10352. height:27px;
  10353. background:inherit;
  10354. background-color:rgba(255, 255, 255, 0);
  10355. border:none;
  10356. border-top:0px;
  10357. border-right:0px;
  10358. border-bottom:0px;
  10359. border-radius:0px;
  10360. border-top-left-radius:0px;
  10361. border-bottom-left-radius:0px;
  10362. -moz-box-shadow:none;
  10363. -webkit-box-shadow:none;
  10364. box-shadow:none;
  10365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10366. font-weight:400;
  10367. font-style:normal;
  10368. font-size:12px;
  10369. color:#7F7F7F;
  10370. }
  10371. #u31939 {
  10372. border-width:0px;
  10373. position:absolute;
  10374. left:909px;
  10375. top:616px;
  10376. width:100px;
  10377. height:27px;
  10378. display:flex;
  10379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10380. font-weight:400;
  10381. font-style:normal;
  10382. font-size:12px;
  10383. color:#7F7F7F;
  10384. }
  10385. #u31939 .text {
  10386. position:absolute;
  10387. align-self:center;
  10388. padding:5px 10px 5px 0px;
  10389. box-sizing:border-box;
  10390. width:100%;
  10391. }
  10392. #u31939_text {
  10393. border-width:0px;
  10394. word-wrap:break-word;
  10395. text-transform:none;
  10396. }
  10397. #u31940 {
  10398. border-width:0px;
  10399. position:absolute;
  10400. left:0px;
  10401. top:0px;
  10402. width:0px;
  10403. height:0px;
  10404. }
  10405. #u31941_div {
  10406. border-width:0px;
  10407. position:absolute;
  10408. left:0px;
  10409. top:0px;
  10410. width:200px;
  10411. height:30px;
  10412. background:inherit;
  10413. background-color:rgba(255, 255, 255, 1);
  10414. box-sizing:border-box;
  10415. border-width:1px;
  10416. border-style:solid;
  10417. border-color:rgba(188, 188, 188, 1);
  10418. border-radius:4px;
  10419. -moz-box-shadow:none;
  10420. -webkit-box-shadow:none;
  10421. box-shadow:none;
  10422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10423. font-weight:400;
  10424. font-style:normal;
  10425. font-size:12px;
  10426. color:#FFFFFF;
  10427. }
  10428. #u31941 {
  10429. border-width:0px;
  10430. position:absolute;
  10431. left:1005px;
  10432. top:574px;
  10433. width:200px;
  10434. height:30px;
  10435. display:flex;
  10436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10437. font-weight:400;
  10438. font-style:normal;
  10439. font-size:12px;
  10440. color:#FFFFFF;
  10441. }
  10442. #u31941 .text {
  10443. position:absolute;
  10444. align-self:center;
  10445. padding:8px 15px 8px 15px;
  10446. box-sizing:border-box;
  10447. width:100%;
  10448. }
  10449. #u31941_text {
  10450. border-width:0px;
  10451. word-wrap:break-word;
  10452. text-transform:none;
  10453. visibility:hidden;
  10454. }
  10455. #u31942_div {
  10456. border-width:0px;
  10457. position:absolute;
  10458. left:0px;
  10459. top:0px;
  10460. width:61px;
  10461. height:17px;
  10462. background:inherit;
  10463. background-color:rgba(255, 255, 255, 0);
  10464. border:none;
  10465. border-radius:0px;
  10466. -moz-box-shadow:none;
  10467. -webkit-box-shadow:none;
  10468. box-shadow:none;
  10469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10470. font-weight:400;
  10471. font-style:normal;
  10472. font-size:12px;
  10473. color:#BCBCBC;
  10474. }
  10475. #u31942 {
  10476. border-width:0px;
  10477. position:absolute;
  10478. left:1014px;
  10479. top:579px;
  10480. width:61px;
  10481. height:17px;
  10482. display:flex;
  10483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10484. font-weight:400;
  10485. font-style:normal;
  10486. font-size:12px;
  10487. color:#BCBCBC;
  10488. }
  10489. #u31942 .text {
  10490. position:absolute;
  10491. align-self:flex-start;
  10492. padding:0px 0px 0px 0px;
  10493. box-sizing:border-box;
  10494. width:100%;
  10495. }
  10496. #u31942_text {
  10497. border-width:0px;
  10498. white-space:nowrap;
  10499. text-transform:none;
  10500. }
  10501. #u31943_img {
  10502. border-width:0px;
  10503. position:absolute;
  10504. left:0px;
  10505. top:0px;
  10506. width:14px;
  10507. height:14px;
  10508. }
  10509. #u31943 {
  10510. border-width:0px;
  10511. position:absolute;
  10512. left:1184px;
  10513. top:582px;
  10514. width:14px;
  10515. height:14px;
  10516. display:flex;
  10517. opacity:0.5;
  10518. font-size:12px;
  10519. }
  10520. #u31943 .text {
  10521. position:absolute;
  10522. align-self:center;
  10523. padding:2px 2px 2px 2px;
  10524. box-sizing:border-box;
  10525. width:100%;
  10526. }
  10527. #u31943_text {
  10528. border-width:0px;
  10529. word-wrap:break-word;
  10530. text-transform:none;
  10531. visibility:hidden;
  10532. }
  10533. #u31944_div {
  10534. border-width:0px;
  10535. position:absolute;
  10536. left:0px;
  10537. top:0px;
  10538. width:100px;
  10539. height:26px;
  10540. background:inherit;
  10541. background-color:rgba(255, 255, 255, 0);
  10542. border:none;
  10543. border-top:0px;
  10544. border-right:0px;
  10545. border-bottom:0px;
  10546. border-radius:0px;
  10547. border-top-left-radius:0px;
  10548. border-bottom-left-radius:0px;
  10549. -moz-box-shadow:none;
  10550. -webkit-box-shadow:none;
  10551. box-shadow:none;
  10552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10553. font-weight:400;
  10554. font-style:normal;
  10555. font-size:11px;
  10556. color:#7F7F7F;
  10557. }
  10558. #u31944 {
  10559. border-width:0px;
  10560. position:absolute;
  10561. left:909px;
  10562. top:576px;
  10563. width:100px;
  10564. height:26px;
  10565. display:flex;
  10566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10567. font-weight:400;
  10568. font-style:normal;
  10569. font-size:11px;
  10570. color:#7F7F7F;
  10571. }
  10572. #u31944 .text {
  10573. position:absolute;
  10574. align-self:center;
  10575. padding:5px 10px 5px 0px;
  10576. box-sizing:border-box;
  10577. width:100%;
  10578. }
  10579. #u31944_text {
  10580. border-width:0px;
  10581. word-wrap:break-word;
  10582. text-transform:none;
  10583. }
  10584. #u31945 {
  10585. border-width:0px;
  10586. position:absolute;
  10587. left:0px;
  10588. top:0px;
  10589. width:0px;
  10590. height:0px;
  10591. }
  10592. #u31946_div {
  10593. border-width:0px;
  10594. position:absolute;
  10595. left:0px;
  10596. top:0px;
  10597. width:200px;
  10598. height:30px;
  10599. background:inherit;
  10600. background-color:rgba(255, 255, 255, 1);
  10601. box-sizing:border-box;
  10602. border-width:1px;
  10603. border-style:solid;
  10604. border-color:rgba(188, 188, 188, 1);
  10605. border-radius:4px;
  10606. -moz-box-shadow:none;
  10607. -webkit-box-shadow:none;
  10608. box-shadow:none;
  10609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10610. font-weight:400;
  10611. font-style:normal;
  10612. font-size:12px;
  10613. text-align:right;
  10614. }
  10615. #u31946 {
  10616. border-width:0px;
  10617. position:absolute;
  10618. left:1005px;
  10619. top:654px;
  10620. width:200px;
  10621. height:30px;
  10622. display:flex;
  10623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10624. font-weight:400;
  10625. font-style:normal;
  10626. font-size:12px;
  10627. text-align:right;
  10628. }
  10629. #u31946 .text {
  10630. position:absolute;
  10631. align-self:center;
  10632. padding:8px 15px 8px 15px;
  10633. box-sizing:border-box;
  10634. width:100%;
  10635. }
  10636. #u31946_text {
  10637. border-width:0px;
  10638. word-wrap:break-word;
  10639. text-transform:none;
  10640. }
  10641. #u31947_input {
  10642. position:absolute;
  10643. left:0px;
  10644. top:0px;
  10645. width:157px;
  10646. height:26px;
  10647. padding:2px 2px 2px 2px;
  10648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10649. font-weight:400;
  10650. font-style:normal;
  10651. font-size:12px;
  10652. letter-spacing:normal;
  10653. color:#7F7F7F;
  10654. vertical-align:none;
  10655. text-align:left;
  10656. text-transform:none;
  10657. background-color:transparent;
  10658. border-color:transparent;
  10659. }
  10660. #u31947_input.disabled {
  10661. position:absolute;
  10662. left:0px;
  10663. top:0px;
  10664. width:157px;
  10665. height:26px;
  10666. padding:2px 2px 2px 2px;
  10667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10668. font-weight:400;
  10669. font-style:normal;
  10670. font-size:12px;
  10671. letter-spacing:normal;
  10672. color:#7F7F7F;
  10673. vertical-align:none;
  10674. text-align:left;
  10675. text-transform:none;
  10676. background-color:transparent;
  10677. border-color:transparent;
  10678. }
  10679. #u31947_div {
  10680. border-width:0px;
  10681. position:absolute;
  10682. left:0px;
  10683. top:0px;
  10684. width:157px;
  10685. height:26px;
  10686. background:inherit;
  10687. background-color:rgba(255, 255, 255, 1);
  10688. border:none;
  10689. border-radius:0px;
  10690. -moz-box-shadow:none;
  10691. -webkit-box-shadow:none;
  10692. box-shadow:none;
  10693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10694. font-weight:400;
  10695. font-style:normal;
  10696. font-size:12px;
  10697. color:#7F7F7F;
  10698. }
  10699. #u31947 {
  10700. border-width:0px;
  10701. position:absolute;
  10702. left:1014px;
  10703. top:656px;
  10704. width:157px;
  10705. height:26px;
  10706. display:flex;
  10707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10708. font-weight:400;
  10709. font-style:normal;
  10710. font-size:12px;
  10711. color:#7F7F7F;
  10712. }
  10713. #u31947 .text {
  10714. position:absolute;
  10715. align-self:center;
  10716. padding:2px 2px 2px 2px;
  10717. box-sizing:border-box;
  10718. width:100%;
  10719. }
  10720. #u31947_div.disabled {
  10721. border-width:0px;
  10722. position:absolute;
  10723. left:0px;
  10724. top:0px;
  10725. width:157px;
  10726. height:26px;
  10727. background:inherit;
  10728. background-color:rgba(240, 240, 240, 1);
  10729. border:none;
  10730. border-radius:0px;
  10731. -moz-box-shadow:none;
  10732. -webkit-box-shadow:none;
  10733. box-shadow:none;
  10734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10735. font-weight:400;
  10736. font-style:normal;
  10737. font-size:12px;
  10738. color:#7F7F7F;
  10739. }
  10740. #u31947.disabled {
  10741. }
  10742. #u31948_div {
  10743. border-width:0px;
  10744. position:absolute;
  10745. left:0px;
  10746. top:0px;
  10747. width:100px;
  10748. height:27px;
  10749. background:inherit;
  10750. background-color:rgba(255, 255, 255, 0);
  10751. border:none;
  10752. border-top:0px;
  10753. border-right:0px;
  10754. border-bottom:0px;
  10755. border-radius:0px;
  10756. border-top-left-radius:0px;
  10757. border-bottom-left-radius:0px;
  10758. -moz-box-shadow:none;
  10759. -webkit-box-shadow:none;
  10760. box-shadow:none;
  10761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10762. font-weight:400;
  10763. font-style:normal;
  10764. font-size:12px;
  10765. color:#7F7F7F;
  10766. }
  10767. #u31948 {
  10768. border-width:0px;
  10769. position:absolute;
  10770. left:909px;
  10771. top:656px;
  10772. width:100px;
  10773. height:27px;
  10774. display:flex;
  10775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10776. font-weight:400;
  10777. font-style:normal;
  10778. font-size:12px;
  10779. color:#7F7F7F;
  10780. }
  10781. #u31948 .text {
  10782. position:absolute;
  10783. align-self:center;
  10784. padding:5px 10px 5px 0px;
  10785. box-sizing:border-box;
  10786. width:100%;
  10787. }
  10788. #u31948_text {
  10789. border-width:0px;
  10790. word-wrap:break-word;
  10791. text-transform:none;
  10792. }
  10793. #u31949 {
  10794. border-width:0px;
  10795. position:absolute;
  10796. left:0px;
  10797. top:0px;
  10798. width:0px;
  10799. height:0px;
  10800. }
  10801. #u31950_div {
  10802. border-width:0px;
  10803. position:absolute;
  10804. left:0px;
  10805. top:0px;
  10806. width:200px;
  10807. height:30px;
  10808. background:inherit;
  10809. background-color:rgba(255, 255, 255, 1);
  10810. box-sizing:border-box;
  10811. border-width:1px;
  10812. border-style:solid;
  10813. border-color:rgba(188, 188, 188, 1);
  10814. border-radius:4px;
  10815. -moz-box-shadow:none;
  10816. -webkit-box-shadow:none;
  10817. box-shadow:none;
  10818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10819. font-weight:400;
  10820. font-style:normal;
  10821. font-size:12px;
  10822. text-align:right;
  10823. }
  10824. #u31950 {
  10825. border-width:0px;
  10826. position:absolute;
  10827. left:689px;
  10828. top:694px;
  10829. width:200px;
  10830. height:30px;
  10831. display:flex;
  10832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10833. font-weight:400;
  10834. font-style:normal;
  10835. font-size:12px;
  10836. text-align:right;
  10837. }
  10838. #u31950 .text {
  10839. position:absolute;
  10840. align-self:center;
  10841. padding:8px 15px 8px 15px;
  10842. box-sizing:border-box;
  10843. width:100%;
  10844. }
  10845. #u31950_text {
  10846. border-width:0px;
  10847. word-wrap:break-word;
  10848. text-transform:none;
  10849. visibility:hidden;
  10850. }
  10851. #u31951_input {
  10852. position:absolute;
  10853. left:0px;
  10854. top:0px;
  10855. width:157px;
  10856. height:26px;
  10857. padding:2px 2px 2px 2px;
  10858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10859. font-weight:400;
  10860. font-style:normal;
  10861. font-size:12px;
  10862. letter-spacing:normal;
  10863. color:#7F7F7F;
  10864. vertical-align:none;
  10865. text-align:left;
  10866. text-transform:none;
  10867. background-color:transparent;
  10868. border-color:transparent;
  10869. }
  10870. #u31951_input.disabled {
  10871. position:absolute;
  10872. left:0px;
  10873. top:0px;
  10874. width:157px;
  10875. height:26px;
  10876. padding:2px 2px 2px 2px;
  10877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10878. font-weight:400;
  10879. font-style:normal;
  10880. font-size:12px;
  10881. letter-spacing:normal;
  10882. color:#7F7F7F;
  10883. vertical-align:none;
  10884. text-align:left;
  10885. text-transform:none;
  10886. background-color:transparent;
  10887. border-color:transparent;
  10888. }
  10889. #u31951_div {
  10890. border-width:0px;
  10891. position:absolute;
  10892. left:0px;
  10893. top:0px;
  10894. width:157px;
  10895. height:26px;
  10896. background:inherit;
  10897. background-color:rgba(255, 255, 255, 1);
  10898. border:none;
  10899. border-radius:0px;
  10900. -moz-box-shadow:none;
  10901. -webkit-box-shadow:none;
  10902. box-shadow:none;
  10903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10904. font-weight:400;
  10905. font-style:normal;
  10906. font-size:12px;
  10907. color:#7F7F7F;
  10908. }
  10909. #u31951 {
  10910. border-width:0px;
  10911. position:absolute;
  10912. left:698px;
  10913. top:696px;
  10914. width:157px;
  10915. height:26px;
  10916. display:flex;
  10917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10918. font-weight:400;
  10919. font-style:normal;
  10920. font-size:12px;
  10921. color:#7F7F7F;
  10922. }
  10923. #u31951 .text {
  10924. position:absolute;
  10925. align-self:center;
  10926. padding:2px 2px 2px 2px;
  10927. box-sizing:border-box;
  10928. width:100%;
  10929. }
  10930. #u31951_div.disabled {
  10931. border-width:0px;
  10932. position:absolute;
  10933. left:0px;
  10934. top:0px;
  10935. width:157px;
  10936. height:26px;
  10937. background:inherit;
  10938. background-color:rgba(240, 240, 240, 1);
  10939. border:none;
  10940. border-radius:0px;
  10941. -moz-box-shadow:none;
  10942. -webkit-box-shadow:none;
  10943. box-shadow:none;
  10944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10945. font-weight:400;
  10946. font-style:normal;
  10947. font-size:12px;
  10948. color:#7F7F7F;
  10949. }
  10950. #u31951.disabled {
  10951. }
  10952. #u31952_div {
  10953. border-width:0px;
  10954. position:absolute;
  10955. left:0px;
  10956. top:0px;
  10957. width:100px;
  10958. height:27px;
  10959. background:inherit;
  10960. background-color:rgba(255, 255, 255, 0);
  10961. border:none;
  10962. border-top:0px;
  10963. border-right:0px;
  10964. border-bottom:0px;
  10965. border-radius:0px;
  10966. border-top-left-radius:0px;
  10967. border-bottom-left-radius:0px;
  10968. -moz-box-shadow:none;
  10969. -webkit-box-shadow:none;
  10970. box-shadow:none;
  10971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10972. font-weight:400;
  10973. font-style:normal;
  10974. font-size:12px;
  10975. color:#7F7F7F;
  10976. }
  10977. #u31952 {
  10978. border-width:0px;
  10979. position:absolute;
  10980. left:593px;
  10981. top:696px;
  10982. width:100px;
  10983. height:27px;
  10984. display:flex;
  10985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10986. font-weight:400;
  10987. font-style:normal;
  10988. font-size:12px;
  10989. color:#7F7F7F;
  10990. }
  10991. #u31952 .text {
  10992. position:absolute;
  10993. align-self:center;
  10994. padding:5px 10px 5px 0px;
  10995. box-sizing:border-box;
  10996. width:100%;
  10997. }
  10998. #u31952_text {
  10999. border-width:0px;
  11000. word-wrap:break-word;
  11001. text-transform:none;
  11002. }
  11003. #u31953 {
  11004. border-width:0px;
  11005. position:absolute;
  11006. left:0px;
  11007. top:0px;
  11008. width:0px;
  11009. height:0px;
  11010. }
  11011. #u31954_div {
  11012. border-width:0px;
  11013. position:absolute;
  11014. left:0px;
  11015. top:0px;
  11016. width:200px;
  11017. height:30px;
  11018. background:inherit;
  11019. background-color:rgba(255, 255, 255, 1);
  11020. box-sizing:border-box;
  11021. border-width:1px;
  11022. border-style:solid;
  11023. border-color:rgba(188, 188, 188, 1);
  11024. border-radius:4px;
  11025. -moz-box-shadow:none;
  11026. -webkit-box-shadow:none;
  11027. box-shadow:none;
  11028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11029. font-weight:400;
  11030. font-style:normal;
  11031. font-size:12px;
  11032. text-align:right;
  11033. }
  11034. #u31954 {
  11035. border-width:0px;
  11036. position:absolute;
  11037. left:1005px;
  11038. top:694px;
  11039. width:200px;
  11040. height:30px;
  11041. display:flex;
  11042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11043. font-weight:400;
  11044. font-style:normal;
  11045. font-size:12px;
  11046. text-align:right;
  11047. }
  11048. #u31954 .text {
  11049. position:absolute;
  11050. align-self:center;
  11051. padding:8px 15px 8px 15px;
  11052. box-sizing:border-box;
  11053. width:100%;
  11054. }
  11055. #u31954_text {
  11056. border-width:0px;
  11057. word-wrap:break-word;
  11058. text-transform:none;
  11059. visibility:hidden;
  11060. }
  11061. #u31955_input {
  11062. position:absolute;
  11063. left:0px;
  11064. top:0px;
  11065. width:157px;
  11066. height:26px;
  11067. padding:2px 2px 2px 2px;
  11068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11069. font-weight:400;
  11070. font-style:normal;
  11071. font-size:12px;
  11072. letter-spacing:normal;
  11073. color:#7F7F7F;
  11074. vertical-align:none;
  11075. text-align:left;
  11076. text-transform:none;
  11077. background-color:transparent;
  11078. border-color:transparent;
  11079. }
  11080. #u31955_input.disabled {
  11081. position:absolute;
  11082. left:0px;
  11083. top:0px;
  11084. width:157px;
  11085. height:26px;
  11086. padding:2px 2px 2px 2px;
  11087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11088. font-weight:400;
  11089. font-style:normal;
  11090. font-size:12px;
  11091. letter-spacing:normal;
  11092. color:#7F7F7F;
  11093. vertical-align:none;
  11094. text-align:left;
  11095. text-transform:none;
  11096. background-color:transparent;
  11097. border-color:transparent;
  11098. }
  11099. #u31955_div {
  11100. border-width:0px;
  11101. position:absolute;
  11102. left:0px;
  11103. top:0px;
  11104. width:157px;
  11105. height:26px;
  11106. background:inherit;
  11107. background-color:rgba(255, 255, 255, 1);
  11108. border:none;
  11109. border-radius:0px;
  11110. -moz-box-shadow:none;
  11111. -webkit-box-shadow:none;
  11112. box-shadow:none;
  11113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11114. font-weight:400;
  11115. font-style:normal;
  11116. font-size:12px;
  11117. color:#7F7F7F;
  11118. }
  11119. #u31955 {
  11120. border-width:0px;
  11121. position:absolute;
  11122. left:1014px;
  11123. top:696px;
  11124. width:157px;
  11125. height:26px;
  11126. display:flex;
  11127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11128. font-weight:400;
  11129. font-style:normal;
  11130. font-size:12px;
  11131. color:#7F7F7F;
  11132. }
  11133. #u31955 .text {
  11134. position:absolute;
  11135. align-self:center;
  11136. padding:2px 2px 2px 2px;
  11137. box-sizing:border-box;
  11138. width:100%;
  11139. }
  11140. #u31955_div.disabled {
  11141. border-width:0px;
  11142. position:absolute;
  11143. left:0px;
  11144. top:0px;
  11145. width:157px;
  11146. height:26px;
  11147. background:inherit;
  11148. background-color:rgba(240, 240, 240, 1);
  11149. border:none;
  11150. border-radius:0px;
  11151. -moz-box-shadow:none;
  11152. -webkit-box-shadow:none;
  11153. box-shadow:none;
  11154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11155. font-weight:400;
  11156. font-style:normal;
  11157. font-size:12px;
  11158. color:#7F7F7F;
  11159. }
  11160. #u31955.disabled {
  11161. }
  11162. #u31956_div {
  11163. border-width:0px;
  11164. position:absolute;
  11165. left:0px;
  11166. top:0px;
  11167. width:100px;
  11168. height:27px;
  11169. background:inherit;
  11170. background-color:rgba(255, 255, 255, 0);
  11171. border:none;
  11172. border-top:0px;
  11173. border-right:0px;
  11174. border-bottom:0px;
  11175. border-radius:0px;
  11176. border-top-left-radius:0px;
  11177. border-bottom-left-radius:0px;
  11178. -moz-box-shadow:none;
  11179. -webkit-box-shadow:none;
  11180. box-shadow:none;
  11181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11182. font-weight:400;
  11183. font-style:normal;
  11184. font-size:12px;
  11185. color:#7F7F7F;
  11186. }
  11187. #u31956 {
  11188. border-width:0px;
  11189. position:absolute;
  11190. left:909px;
  11191. top:696px;
  11192. width:100px;
  11193. height:27px;
  11194. display:flex;
  11195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11196. font-weight:400;
  11197. font-style:normal;
  11198. font-size:12px;
  11199. color:#7F7F7F;
  11200. }
  11201. #u31956 .text {
  11202. position:absolute;
  11203. align-self:center;
  11204. padding:5px 10px 5px 0px;
  11205. box-sizing:border-box;
  11206. width:100%;
  11207. }
  11208. #u31956_text {
  11209. border-width:0px;
  11210. word-wrap:break-word;
  11211. text-transform:none;
  11212. }
  11213. #u31957 {
  11214. border-width:0px;
  11215. position:absolute;
  11216. left:0px;
  11217. top:0px;
  11218. width:0px;
  11219. height:0px;
  11220. }
  11221. #u31958_div {
  11222. border-width:0px;
  11223. position:absolute;
  11224. left:0px;
  11225. top:0px;
  11226. width:516px;
  11227. height:60px;
  11228. background:inherit;
  11229. background-color:rgba(255, 255, 255, 1);
  11230. box-sizing:border-box;
  11231. border-width:1px;
  11232. border-style:solid;
  11233. border-color:rgba(188, 188, 188, 1);
  11234. border-radius:4px;
  11235. -moz-box-shadow:none;
  11236. -webkit-box-shadow:none;
  11237. box-shadow:none;
  11238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11239. font-weight:400;
  11240. font-style:normal;
  11241. font-size:12px;
  11242. text-align:right;
  11243. }
  11244. #u31958 {
  11245. border-width:0px;
  11246. position:absolute;
  11247. left:689px;
  11248. top:734px;
  11249. width:516px;
  11250. height:60px;
  11251. display:flex;
  11252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11253. font-weight:400;
  11254. font-style:normal;
  11255. font-size:12px;
  11256. text-align:right;
  11257. }
  11258. #u31958 .text {
  11259. position:absolute;
  11260. align-self:center;
  11261. padding:8px 15px 8px 15px;
  11262. box-sizing:border-box;
  11263. width:100%;
  11264. }
  11265. #u31958_text {
  11266. border-width:0px;
  11267. word-wrap:break-word;
  11268. text-transform:none;
  11269. visibility:hidden;
  11270. }
  11271. #u31959_input {
  11272. position:absolute;
  11273. left:0px;
  11274. top:0px;
  11275. width:157px;
  11276. height:26px;
  11277. padding:2px 2px 2px 2px;
  11278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11279. font-weight:400;
  11280. font-style:normal;
  11281. font-size:12px;
  11282. letter-spacing:normal;
  11283. color:#7F7F7F;
  11284. vertical-align:none;
  11285. text-align:left;
  11286. text-transform:none;
  11287. background-color:transparent;
  11288. border-color:transparent;
  11289. }
  11290. #u31959_input.disabled {
  11291. position:absolute;
  11292. left:0px;
  11293. top:0px;
  11294. width:157px;
  11295. height:26px;
  11296. padding:2px 2px 2px 2px;
  11297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11298. font-weight:400;
  11299. font-style:normal;
  11300. font-size:12px;
  11301. letter-spacing:normal;
  11302. color:#7F7F7F;
  11303. vertical-align:none;
  11304. text-align:left;
  11305. text-transform:none;
  11306. background-color:transparent;
  11307. border-color:transparent;
  11308. }
  11309. #u31959_div {
  11310. border-width:0px;
  11311. position:absolute;
  11312. left:0px;
  11313. top:0px;
  11314. width:157px;
  11315. height:26px;
  11316. background:inherit;
  11317. background-color:rgba(255, 255, 255, 1);
  11318. border:none;
  11319. border-radius:0px;
  11320. -moz-box-shadow:none;
  11321. -webkit-box-shadow:none;
  11322. box-shadow:none;
  11323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11324. font-weight:400;
  11325. font-style:normal;
  11326. font-size:12px;
  11327. color:#7F7F7F;
  11328. }
  11329. #u31959 {
  11330. border-width:0px;
  11331. position:absolute;
  11332. left:698px;
  11333. top:736px;
  11334. width:157px;
  11335. height:26px;
  11336. display:flex;
  11337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11338. font-weight:400;
  11339. font-style:normal;
  11340. font-size:12px;
  11341. color:#7F7F7F;
  11342. }
  11343. #u31959 .text {
  11344. position:absolute;
  11345. align-self:center;
  11346. padding:2px 2px 2px 2px;
  11347. box-sizing:border-box;
  11348. width:100%;
  11349. }
  11350. #u31959_div.disabled {
  11351. border-width:0px;
  11352. position:absolute;
  11353. left:0px;
  11354. top:0px;
  11355. width:157px;
  11356. height:26px;
  11357. background:inherit;
  11358. background-color:rgba(240, 240, 240, 1);
  11359. border:none;
  11360. border-radius:0px;
  11361. -moz-box-shadow:none;
  11362. -webkit-box-shadow:none;
  11363. box-shadow:none;
  11364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11365. font-weight:400;
  11366. font-style:normal;
  11367. font-size:12px;
  11368. color:#7F7F7F;
  11369. }
  11370. #u31959.disabled {
  11371. }
  11372. #u31960_div {
  11373. border-width:0px;
  11374. position:absolute;
  11375. left:0px;
  11376. top:0px;
  11377. width:100px;
  11378. height:27px;
  11379. background:inherit;
  11380. background-color:rgba(255, 255, 255, 0);
  11381. border:none;
  11382. border-top:0px;
  11383. border-right:0px;
  11384. border-bottom:0px;
  11385. border-radius:0px;
  11386. border-top-left-radius:0px;
  11387. border-bottom-left-radius:0px;
  11388. -moz-box-shadow:none;
  11389. -webkit-box-shadow:none;
  11390. box-shadow:none;
  11391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11392. font-weight:400;
  11393. font-style:normal;
  11394. font-size:12px;
  11395. color:#7F7F7F;
  11396. }
  11397. #u31960 {
  11398. border-width:0px;
  11399. position:absolute;
  11400. left:593px;
  11401. top:736px;
  11402. width:100px;
  11403. height:27px;
  11404. display:flex;
  11405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11406. font-weight:400;
  11407. font-style:normal;
  11408. font-size:12px;
  11409. color:#7F7F7F;
  11410. }
  11411. #u31960 .text {
  11412. position:absolute;
  11413. align-self:center;
  11414. padding:5px 10px 5px 0px;
  11415. box-sizing:border-box;
  11416. width:100%;
  11417. }
  11418. #u31960_text {
  11419. border-width:0px;
  11420. word-wrap:break-word;
  11421. text-transform:none;
  11422. }
  11423. #u31961_div {
  11424. border-width:0px;
  11425. position:absolute;
  11426. left:0px;
  11427. top:0px;
  11428. width:83px;
  11429. height:35px;
  11430. background:inherit;
  11431. background-color:rgba(255, 255, 255, 0);
  11432. border:none;
  11433. border-top:0px;
  11434. border-right:0px;
  11435. border-bottom:0px;
  11436. border-radius:0px;
  11437. border-top-left-radius:0px;
  11438. border-bottom-left-radius:0px;
  11439. -moz-box-shadow:none;
  11440. -webkit-box-shadow:none;
  11441. box-shadow:none;
  11442. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11443. font-weight:500;
  11444. font-style:normal;
  11445. font-size:18px;
  11446. }
  11447. #u31961 {
  11448. border-width:0px;
  11449. position:absolute;
  11450. left:593px;
  11451. top:814px;
  11452. width:83px;
  11453. height:35px;
  11454. display:flex;
  11455. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11456. font-weight:500;
  11457. font-style:normal;
  11458. font-size:18px;
  11459. }
  11460. #u31961 .text {
  11461. position:absolute;
  11462. align-self:center;
  11463. padding:5px 10px 5px 0px;
  11464. box-sizing:border-box;
  11465. width:100%;
  11466. }
  11467. #u31961_text {
  11468. border-width:0px;
  11469. white-space:nowrap;
  11470. text-transform:none;
  11471. }
  11472. #u31962_div {
  11473. border-width:0px;
  11474. position:absolute;
  11475. left:0px;
  11476. top:0px;
  11477. width:100px;
  11478. height:30px;
  11479. background:inherit;
  11480. background-color:rgba(255, 255, 255, 0);
  11481. border:none;
  11482. border-top:0px;
  11483. border-right:0px;
  11484. border-bottom:0px;
  11485. border-radius:0px;
  11486. border-top-left-radius:0px;
  11487. border-bottom-left-radius:0px;
  11488. -moz-box-shadow:none;
  11489. -webkit-box-shadow:none;
  11490. box-shadow:none;
  11491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11492. font-weight:400;
  11493. font-style:normal;
  11494. font-size:14px;
  11495. color:#7F7F7F;
  11496. }
  11497. #u31962 {
  11498. border-width:0px;
  11499. position:absolute;
  11500. left:593px;
  11501. top:869px;
  11502. width:100px;
  11503. height:30px;
  11504. display:flex;
  11505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11506. font-weight:400;
  11507. font-style:normal;
  11508. font-size:14px;
  11509. color:#7F7F7F;
  11510. }
  11511. #u31962 .text {
  11512. position:absolute;
  11513. align-self:center;
  11514. padding:5px 10px 5px 0px;
  11515. box-sizing:border-box;
  11516. width:100%;
  11517. }
  11518. #u31962_text {
  11519. border-width:0px;
  11520. word-wrap:break-word;
  11521. text-transform:none;
  11522. }
  11523. #u31963 {
  11524. border-width:0px;
  11525. position:absolute;
  11526. left:0px;
  11527. top:0px;
  11528. width:0px;
  11529. height:0px;
  11530. }
  11531. #u31964_div {
  11532. border-width:0px;
  11533. position:absolute;
  11534. left:0px;
  11535. top:0px;
  11536. width:200px;
  11537. height:30px;
  11538. background:inherit;
  11539. background-color:rgba(255, 255, 255, 1);
  11540. box-sizing:border-box;
  11541. border-width:1px;
  11542. border-style:solid;
  11543. border-color:rgba(201, 201, 201, 1);
  11544. border-radius:4px;
  11545. -moz-box-shadow:none;
  11546. -webkit-box-shadow:none;
  11547. box-shadow:none;
  11548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11549. font-weight:400;
  11550. font-style:normal;
  11551. font-size:12px;
  11552. color:#CCCCCC;
  11553. text-align:right;
  11554. }
  11555. #u31964 {
  11556. border-width:0px;
  11557. position:absolute;
  11558. left:689px;
  11559. top:869px;
  11560. width:200px;
  11561. height:30px;
  11562. display:flex;
  11563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11564. font-weight:400;
  11565. font-style:normal;
  11566. font-size:12px;
  11567. color:#CCCCCC;
  11568. text-align:right;
  11569. }
  11570. #u31964 .text {
  11571. position:absolute;
  11572. align-self:center;
  11573. padding:2px 8px 2px 8px;
  11574. box-sizing:border-box;
  11575. width:100%;
  11576. }
  11577. #u31964_text {
  11578. border-width:0px;
  11579. word-wrap:break-word;
  11580. text-transform:none;
  11581. visibility:hidden;
  11582. }
  11583. #u31965_input {
  11584. position:absolute;
  11585. left:0px;
  11586. top:0px;
  11587. width:180px;
  11588. height:26px;
  11589. padding:2px 2px 2px 2px;
  11590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11591. font-weight:400;
  11592. font-style:normal;
  11593. font-size:12px;
  11594. letter-spacing:normal;
  11595. color:#7F7F7F;
  11596. vertical-align:none;
  11597. text-align:left;
  11598. text-transform:none;
  11599. background-color:transparent;
  11600. border-color:transparent;
  11601. }
  11602. #u31965_input.disabled {
  11603. position:absolute;
  11604. left:0px;
  11605. top:0px;
  11606. width:180px;
  11607. height:26px;
  11608. padding:2px 2px 2px 2px;
  11609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11610. font-weight:400;
  11611. font-style:normal;
  11612. font-size:12px;
  11613. letter-spacing:normal;
  11614. color:#7F7F7F;
  11615. vertical-align:none;
  11616. text-align:left;
  11617. text-transform:none;
  11618. background-color:transparent;
  11619. border-color:transparent;
  11620. }
  11621. #u31965_div {
  11622. border-width:0px;
  11623. position:absolute;
  11624. left:0px;
  11625. top:0px;
  11626. width:180px;
  11627. height:26px;
  11628. background:inherit;
  11629. background-color:rgba(255, 255, 255, 1);
  11630. border:none;
  11631. border-radius:0px;
  11632. -moz-box-shadow:none;
  11633. -webkit-box-shadow:none;
  11634. box-shadow:none;
  11635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11636. font-weight:400;
  11637. font-style:normal;
  11638. font-size:12px;
  11639. color:#7F7F7F;
  11640. }
  11641. #u31965 {
  11642. border-width:0px;
  11643. position:absolute;
  11644. left:695px;
  11645. top:870px;
  11646. width:180px;
  11647. height:26px;
  11648. display:flex;
  11649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11650. font-weight:400;
  11651. font-style:normal;
  11652. font-size:12px;
  11653. color:#7F7F7F;
  11654. }
  11655. #u31965 .text {
  11656. position:absolute;
  11657. align-self:center;
  11658. padding:2px 2px 2px 2px;
  11659. box-sizing:border-box;
  11660. width:100%;
  11661. }
  11662. #u31965_div.disabled {
  11663. border-width:0px;
  11664. position:absolute;
  11665. left:0px;
  11666. top:0px;
  11667. width:180px;
  11668. height:26px;
  11669. background:inherit;
  11670. background-color:rgba(240, 240, 240, 1);
  11671. border:none;
  11672. border-radius:0px;
  11673. -moz-box-shadow:none;
  11674. -webkit-box-shadow:none;
  11675. box-shadow:none;
  11676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11677. font-weight:400;
  11678. font-style:normal;
  11679. font-size:12px;
  11680. color:#7F7F7F;
  11681. }
  11682. #u31965.disabled {
  11683. }
  11684. #u31966_div {
  11685. border-width:0px;
  11686. position:absolute;
  11687. left:0px;
  11688. top:0px;
  11689. width:100px;
  11690. height:30px;
  11691. background:inherit;
  11692. background-color:rgba(255, 255, 255, 0);
  11693. border:none;
  11694. border-top:0px;
  11695. border-right:0px;
  11696. border-bottom:0px;
  11697. border-radius:0px;
  11698. border-top-left-radius:0px;
  11699. border-bottom-left-radius:0px;
  11700. -moz-box-shadow:none;
  11701. -webkit-box-shadow:none;
  11702. box-shadow:none;
  11703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11704. font-weight:400;
  11705. font-style:normal;
  11706. font-size:14px;
  11707. color:#7F7F7F;
  11708. }
  11709. #u31966 {
  11710. border-width:0px;
  11711. position:absolute;
  11712. left:909px;
  11713. top:869px;
  11714. width:100px;
  11715. height:30px;
  11716. display:flex;
  11717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11718. font-weight:400;
  11719. font-style:normal;
  11720. font-size:14px;
  11721. color:#7F7F7F;
  11722. }
  11723. #u31966 .text {
  11724. position:absolute;
  11725. align-self:center;
  11726. padding:5px 10px 5px 0px;
  11727. box-sizing:border-box;
  11728. width:100%;
  11729. }
  11730. #u31966_text {
  11731. border-width:0px;
  11732. word-wrap:break-word;
  11733. text-transform:none;
  11734. }
  11735. #u31967 {
  11736. border-width:0px;
  11737. position:absolute;
  11738. left:0px;
  11739. top:0px;
  11740. width:0px;
  11741. height:0px;
  11742. }
  11743. #u31968_div {
  11744. border-width:0px;
  11745. position:absolute;
  11746. left:0px;
  11747. top:0px;
  11748. width:200px;
  11749. height:30px;
  11750. background:inherit;
  11751. background-color:rgba(255, 255, 255, 1);
  11752. box-sizing:border-box;
  11753. border-width:1px;
  11754. border-style:solid;
  11755. border-color:rgba(201, 201, 201, 1);
  11756. border-radius:4px;
  11757. -moz-box-shadow:none;
  11758. -webkit-box-shadow:none;
  11759. box-shadow:none;
  11760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11761. font-weight:400;
  11762. font-style:normal;
  11763. font-size:12px;
  11764. color:#CCCCCC;
  11765. text-align:right;
  11766. }
  11767. #u31968 {
  11768. border-width:0px;
  11769. position:absolute;
  11770. left:1005px;
  11771. top:869px;
  11772. width:200px;
  11773. height:30px;
  11774. display:flex;
  11775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11776. font-weight:400;
  11777. font-style:normal;
  11778. font-size:12px;
  11779. color:#CCCCCC;
  11780. text-align:right;
  11781. }
  11782. #u31968 .text {
  11783. position:absolute;
  11784. align-self:center;
  11785. padding:2px 8px 2px 8px;
  11786. box-sizing:border-box;
  11787. width:100%;
  11788. }
  11789. #u31968_text {
  11790. border-width:0px;
  11791. word-wrap:break-word;
  11792. text-transform:none;
  11793. visibility:hidden;
  11794. }
  11795. #u31969_input {
  11796. position:absolute;
  11797. left:0px;
  11798. top:0px;
  11799. width:180px;
  11800. height:26px;
  11801. padding:2px 2px 2px 2px;
  11802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11803. font-weight:400;
  11804. font-style:normal;
  11805. font-size:12px;
  11806. letter-spacing:normal;
  11807. color:#7F7F7F;
  11808. vertical-align:none;
  11809. text-align:left;
  11810. text-transform:none;
  11811. background-color:transparent;
  11812. border-color:transparent;
  11813. }
  11814. #u31969_input.disabled {
  11815. position:absolute;
  11816. left:0px;
  11817. top:0px;
  11818. width:180px;
  11819. height:26px;
  11820. padding:2px 2px 2px 2px;
  11821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11822. font-weight:400;
  11823. font-style:normal;
  11824. font-size:12px;
  11825. letter-spacing:normal;
  11826. color:#7F7F7F;
  11827. vertical-align:none;
  11828. text-align:left;
  11829. text-transform:none;
  11830. background-color:transparent;
  11831. border-color:transparent;
  11832. }
  11833. #u31969_div {
  11834. border-width:0px;
  11835. position:absolute;
  11836. left:0px;
  11837. top:0px;
  11838. width:180px;
  11839. height:26px;
  11840. background:inherit;
  11841. background-color:rgba(255, 255, 255, 1);
  11842. border:none;
  11843. border-radius:0px;
  11844. -moz-box-shadow:none;
  11845. -webkit-box-shadow:none;
  11846. box-shadow:none;
  11847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11848. font-weight:400;
  11849. font-style:normal;
  11850. font-size:12px;
  11851. color:#7F7F7F;
  11852. }
  11853. #u31969 {
  11854. border-width:0px;
  11855. position:absolute;
  11856. left:1011px;
  11857. top:870px;
  11858. width:180px;
  11859. height:26px;
  11860. display:flex;
  11861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11862. font-weight:400;
  11863. font-style:normal;
  11864. font-size:12px;
  11865. color:#7F7F7F;
  11866. }
  11867. #u31969 .text {
  11868. position:absolute;
  11869. align-self:center;
  11870. padding:2px 2px 2px 2px;
  11871. box-sizing:border-box;
  11872. width:100%;
  11873. }
  11874. #u31969_div.disabled {
  11875. border-width:0px;
  11876. position:absolute;
  11877. left:0px;
  11878. top:0px;
  11879. width:180px;
  11880. height:26px;
  11881. background:inherit;
  11882. background-color:rgba(240, 240, 240, 1);
  11883. border:none;
  11884. border-radius:0px;
  11885. -moz-box-shadow:none;
  11886. -webkit-box-shadow:none;
  11887. box-shadow:none;
  11888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11889. font-weight:400;
  11890. font-style:normal;
  11891. font-size:12px;
  11892. color:#7F7F7F;
  11893. }
  11894. #u31969.disabled {
  11895. }
  11896. #u31970_div {
  11897. border-width:0px;
  11898. position:absolute;
  11899. left:0px;
  11900. top:0px;
  11901. width:100px;
  11902. height:30px;
  11903. background:inherit;
  11904. background-color:rgba(255, 255, 255, 0);
  11905. border:none;
  11906. border-top:0px;
  11907. border-right:0px;
  11908. border-bottom:0px;
  11909. border-radius:0px;
  11910. border-top-left-radius:0px;
  11911. border-bottom-left-radius:0px;
  11912. -moz-box-shadow:none;
  11913. -webkit-box-shadow:none;
  11914. box-shadow:none;
  11915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11916. font-weight:400;
  11917. font-style:normal;
  11918. font-size:14px;
  11919. color:#7F7F7F;
  11920. }
  11921. #u31970 {
  11922. border-width:0px;
  11923. position:absolute;
  11924. left:593px;
  11925. top:909px;
  11926. width:100px;
  11927. height:30px;
  11928. display:flex;
  11929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11930. font-weight:400;
  11931. font-style:normal;
  11932. font-size:14px;
  11933. color:#7F7F7F;
  11934. }
  11935. #u31970 .text {
  11936. position:absolute;
  11937. align-self:center;
  11938. padding:5px 10px 5px 0px;
  11939. box-sizing:border-box;
  11940. width:100%;
  11941. }
  11942. #u31970_text {
  11943. border-width:0px;
  11944. word-wrap:break-word;
  11945. text-transform:none;
  11946. }
  11947. #u31971 {
  11948. border-width:0px;
  11949. position:absolute;
  11950. left:0px;
  11951. top:0px;
  11952. width:0px;
  11953. height:0px;
  11954. }
  11955. #u31972_div {
  11956. border-width:0px;
  11957. position:absolute;
  11958. left:0px;
  11959. top:0px;
  11960. width:200px;
  11961. height:30px;
  11962. background:inherit;
  11963. background-color:rgba(255, 255, 255, 1);
  11964. box-sizing:border-box;
  11965. border-width:1px;
  11966. border-style:solid;
  11967. border-color:rgba(201, 201, 201, 1);
  11968. border-radius:4px;
  11969. -moz-box-shadow:none;
  11970. -webkit-box-shadow:none;
  11971. box-shadow:none;
  11972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11973. font-weight:400;
  11974. font-style:normal;
  11975. font-size:12px;
  11976. color:#CCCCCC;
  11977. text-align:right;
  11978. }
  11979. #u31972 {
  11980. border-width:0px;
  11981. position:absolute;
  11982. left:689px;
  11983. top:909px;
  11984. width:200px;
  11985. height:30px;
  11986. display:flex;
  11987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11988. font-weight:400;
  11989. font-style:normal;
  11990. font-size:12px;
  11991. color:#CCCCCC;
  11992. text-align:right;
  11993. }
  11994. #u31972 .text {
  11995. position:absolute;
  11996. align-self:center;
  11997. padding:2px 8px 2px 8px;
  11998. box-sizing:border-box;
  11999. width:100%;
  12000. }
  12001. #u31972_text {
  12002. border-width:0px;
  12003. word-wrap:break-word;
  12004. text-transform:none;
  12005. visibility:hidden;
  12006. }
  12007. #u31973_input {
  12008. position:absolute;
  12009. left:0px;
  12010. top:0px;
  12011. width:180px;
  12012. height:26px;
  12013. padding:2px 2px 2px 2px;
  12014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12015. font-weight:400;
  12016. font-style:normal;
  12017. font-size:12px;
  12018. letter-spacing:normal;
  12019. color:#7F7F7F;
  12020. vertical-align:none;
  12021. text-align:left;
  12022. text-transform:none;
  12023. background-color:transparent;
  12024. border-color:transparent;
  12025. }
  12026. #u31973_input.disabled {
  12027. position:absolute;
  12028. left:0px;
  12029. top:0px;
  12030. width:180px;
  12031. height:26px;
  12032. padding:2px 2px 2px 2px;
  12033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12034. font-weight:400;
  12035. font-style:normal;
  12036. font-size:12px;
  12037. letter-spacing:normal;
  12038. color:#7F7F7F;
  12039. vertical-align:none;
  12040. text-align:left;
  12041. text-transform:none;
  12042. background-color:transparent;
  12043. border-color:transparent;
  12044. }
  12045. #u31973_div {
  12046. border-width:0px;
  12047. position:absolute;
  12048. left:0px;
  12049. top:0px;
  12050. width:180px;
  12051. height:26px;
  12052. background:inherit;
  12053. background-color:rgba(255, 255, 255, 1);
  12054. border:none;
  12055. border-radius:0px;
  12056. -moz-box-shadow:none;
  12057. -webkit-box-shadow:none;
  12058. box-shadow:none;
  12059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12060. font-weight:400;
  12061. font-style:normal;
  12062. font-size:12px;
  12063. color:#7F7F7F;
  12064. }
  12065. #u31973 {
  12066. border-width:0px;
  12067. position:absolute;
  12068. left:695px;
  12069. top:910px;
  12070. width:180px;
  12071. height:26px;
  12072. display:flex;
  12073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12074. font-weight:400;
  12075. font-style:normal;
  12076. font-size:12px;
  12077. color:#7F7F7F;
  12078. }
  12079. #u31973 .text {
  12080. position:absolute;
  12081. align-self:center;
  12082. padding:2px 2px 2px 2px;
  12083. box-sizing:border-box;
  12084. width:100%;
  12085. }
  12086. #u31973_div.disabled {
  12087. border-width:0px;
  12088. position:absolute;
  12089. left:0px;
  12090. top:0px;
  12091. width:180px;
  12092. height:26px;
  12093. background:inherit;
  12094. background-color:rgba(240, 240, 240, 1);
  12095. border:none;
  12096. border-radius:0px;
  12097. -moz-box-shadow:none;
  12098. -webkit-box-shadow:none;
  12099. box-shadow:none;
  12100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12101. font-weight:400;
  12102. font-style:normal;
  12103. font-size:12px;
  12104. color:#7F7F7F;
  12105. }
  12106. #u31973.disabled {
  12107. }
  12108. #u31974 {
  12109. border-width:0px;
  12110. position:absolute;
  12111. left:0px;
  12112. top:0px;
  12113. width:0px;
  12114. height:0px;
  12115. }
  12116. #u31975_div {
  12117. border-width:0px;
  12118. position:absolute;
  12119. left:0px;
  12120. top:0px;
  12121. width:200px;
  12122. height:30px;
  12123. background:inherit;
  12124. background-color:rgba(255, 255, 255, 1);
  12125. box-sizing:border-box;
  12126. border-width:1px;
  12127. border-style:solid;
  12128. border-color:rgba(188, 188, 188, 1);
  12129. border-radius:4px;
  12130. -moz-box-shadow:none;
  12131. -webkit-box-shadow:none;
  12132. box-shadow:none;
  12133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12134. font-weight:400;
  12135. font-style:normal;
  12136. font-size:12px;
  12137. color:#FFFFFF;
  12138. }
  12139. #u31975 {
  12140. border-width:0px;
  12141. position:absolute;
  12142. left:1005px;
  12143. top:909px;
  12144. width:200px;
  12145. height:30px;
  12146. display:flex;
  12147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12148. font-weight:400;
  12149. font-style:normal;
  12150. font-size:12px;
  12151. color:#FFFFFF;
  12152. }
  12153. #u31975 .text {
  12154. position:absolute;
  12155. align-self:center;
  12156. padding:8px 15px 8px 15px;
  12157. box-sizing:border-box;
  12158. width:100%;
  12159. }
  12160. #u31975_text {
  12161. border-width:0px;
  12162. word-wrap:break-word;
  12163. text-transform:none;
  12164. visibility:hidden;
  12165. }
  12166. #u31976_div {
  12167. border-width:0px;
  12168. position:absolute;
  12169. left:0px;
  12170. top:0px;
  12171. width:61px;
  12172. height:17px;
  12173. background:inherit;
  12174. background-color:rgba(255, 255, 255, 0);
  12175. border:none;
  12176. border-radius:0px;
  12177. -moz-box-shadow:none;
  12178. -webkit-box-shadow:none;
  12179. box-shadow:none;
  12180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12181. font-weight:400;
  12182. font-style:normal;
  12183. font-size:12px;
  12184. color:#BCBCBC;
  12185. }
  12186. #u31976 {
  12187. border-width:0px;
  12188. position:absolute;
  12189. left:1014px;
  12190. top:914px;
  12191. width:61px;
  12192. height:17px;
  12193. display:flex;
  12194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12195. font-weight:400;
  12196. font-style:normal;
  12197. font-size:12px;
  12198. color:#BCBCBC;
  12199. }
  12200. #u31976 .text {
  12201. position:absolute;
  12202. align-self:flex-start;
  12203. padding:0px 0px 0px 0px;
  12204. box-sizing:border-box;
  12205. width:100%;
  12206. }
  12207. #u31976_text {
  12208. border-width:0px;
  12209. white-space:nowrap;
  12210. text-transform:none;
  12211. }
  12212. #u31977_img {
  12213. border-width:0px;
  12214. position:absolute;
  12215. left:0px;
  12216. top:0px;
  12217. width:14px;
  12218. height:14px;
  12219. }
  12220. #u31977 {
  12221. border-width:0px;
  12222. position:absolute;
  12223. left:1184px;
  12224. top:917px;
  12225. width:14px;
  12226. height:14px;
  12227. display:flex;
  12228. opacity:0.5;
  12229. font-size:12px;
  12230. }
  12231. #u31977 .text {
  12232. position:absolute;
  12233. align-self:center;
  12234. padding:2px 2px 2px 2px;
  12235. box-sizing:border-box;
  12236. width:100%;
  12237. }
  12238. #u31977_text {
  12239. border-width:0px;
  12240. word-wrap:break-word;
  12241. text-transform:none;
  12242. visibility:hidden;
  12243. }
  12244. #u31978_div {
  12245. border-width:0px;
  12246. position:absolute;
  12247. left:0px;
  12248. top:0px;
  12249. width:100px;
  12250. height:27px;
  12251. background:inherit;
  12252. background-color:rgba(255, 255, 255, 0);
  12253. border:none;
  12254. border-top:0px;
  12255. border-right:0px;
  12256. border-bottom:0px;
  12257. border-radius:0px;
  12258. border-top-left-radius:0px;
  12259. border-bottom-left-radius:0px;
  12260. -moz-box-shadow:none;
  12261. -webkit-box-shadow:none;
  12262. box-shadow:none;
  12263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12264. font-weight:400;
  12265. font-style:normal;
  12266. font-size:12px;
  12267. color:#7F7F7F;
  12268. }
  12269. #u31978 {
  12270. border-width:0px;
  12271. position:absolute;
  12272. left:909px;
  12273. top:911px;
  12274. width:100px;
  12275. height:27px;
  12276. display:flex;
  12277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12278. font-weight:400;
  12279. font-style:normal;
  12280. font-size:12px;
  12281. color:#7F7F7F;
  12282. }
  12283. #u31978 .text {
  12284. position:absolute;
  12285. align-self:center;
  12286. padding:5px 10px 5px 0px;
  12287. box-sizing:border-box;
  12288. width:100%;
  12289. }
  12290. #u31978_text {
  12291. border-width:0px;
  12292. word-wrap:break-word;
  12293. text-transform:none;
  12294. }
  12295. #u31979 {
  12296. border-width:0px;
  12297. position:absolute;
  12298. left:0px;
  12299. top:0px;
  12300. width:0px;
  12301. height:0px;
  12302. }
  12303. #u31980_div {
  12304. border-width:0px;
  12305. position:absolute;
  12306. left:0px;
  12307. top:0px;
  12308. width:516px;
  12309. height:60px;
  12310. background:inherit;
  12311. background-color:rgba(255, 255, 255, 1);
  12312. box-sizing:border-box;
  12313. border-width:1px;
  12314. border-style:solid;
  12315. border-color:rgba(188, 188, 188, 1);
  12316. border-radius:4px;
  12317. -moz-box-shadow:none;
  12318. -webkit-box-shadow:none;
  12319. box-shadow:none;
  12320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12321. font-weight:400;
  12322. font-style:normal;
  12323. font-size:12px;
  12324. text-align:right;
  12325. }
  12326. #u31980 {
  12327. border-width:0px;
  12328. position:absolute;
  12329. left:689px;
  12330. top:949px;
  12331. width:516px;
  12332. height:60px;
  12333. display:flex;
  12334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12335. font-weight:400;
  12336. font-style:normal;
  12337. font-size:12px;
  12338. text-align:right;
  12339. }
  12340. #u31980 .text {
  12341. position:absolute;
  12342. align-self:center;
  12343. padding:8px 15px 8px 15px;
  12344. box-sizing:border-box;
  12345. width:100%;
  12346. }
  12347. #u31980_text {
  12348. border-width:0px;
  12349. word-wrap:break-word;
  12350. text-transform:none;
  12351. visibility:hidden;
  12352. }
  12353. #u31981_input {
  12354. position:absolute;
  12355. left:0px;
  12356. top:0px;
  12357. width:157px;
  12358. height:26px;
  12359. padding:2px 2px 2px 2px;
  12360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12361. font-weight:400;
  12362. font-style:normal;
  12363. font-size:12px;
  12364. letter-spacing:normal;
  12365. color:#7F7F7F;
  12366. vertical-align:none;
  12367. text-align:left;
  12368. text-transform:none;
  12369. background-color:transparent;
  12370. border-color:transparent;
  12371. }
  12372. #u31981_input.disabled {
  12373. position:absolute;
  12374. left:0px;
  12375. top:0px;
  12376. width:157px;
  12377. height:26px;
  12378. padding:2px 2px 2px 2px;
  12379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12380. font-weight:400;
  12381. font-style:normal;
  12382. font-size:12px;
  12383. letter-spacing:normal;
  12384. color:#7F7F7F;
  12385. vertical-align:none;
  12386. text-align:left;
  12387. text-transform:none;
  12388. background-color:transparent;
  12389. border-color:transparent;
  12390. }
  12391. #u31981_div {
  12392. border-width:0px;
  12393. position:absolute;
  12394. left:0px;
  12395. top:0px;
  12396. width:157px;
  12397. height:26px;
  12398. background:inherit;
  12399. background-color:rgba(255, 255, 255, 1);
  12400. border:none;
  12401. border-radius:0px;
  12402. -moz-box-shadow:none;
  12403. -webkit-box-shadow:none;
  12404. box-shadow:none;
  12405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12406. font-weight:400;
  12407. font-style:normal;
  12408. font-size:12px;
  12409. color:#7F7F7F;
  12410. }
  12411. #u31981 {
  12412. border-width:0px;
  12413. position:absolute;
  12414. left:698px;
  12415. top:951px;
  12416. width:157px;
  12417. height:26px;
  12418. display:flex;
  12419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12420. font-weight:400;
  12421. font-style:normal;
  12422. font-size:12px;
  12423. color:#7F7F7F;
  12424. }
  12425. #u31981 .text {
  12426. position:absolute;
  12427. align-self:center;
  12428. padding:2px 2px 2px 2px;
  12429. box-sizing:border-box;
  12430. width:100%;
  12431. }
  12432. #u31981_div.disabled {
  12433. border-width:0px;
  12434. position:absolute;
  12435. left:0px;
  12436. top:0px;
  12437. width:157px;
  12438. height:26px;
  12439. background:inherit;
  12440. background-color:rgba(240, 240, 240, 1);
  12441. border:none;
  12442. border-radius:0px;
  12443. -moz-box-shadow:none;
  12444. -webkit-box-shadow:none;
  12445. box-shadow:none;
  12446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12447. font-weight:400;
  12448. font-style:normal;
  12449. font-size:12px;
  12450. color:#7F7F7F;
  12451. }
  12452. #u31981.disabled {
  12453. }
  12454. #u31982_div {
  12455. border-width:0px;
  12456. position:absolute;
  12457. left:0px;
  12458. top:0px;
  12459. width:100px;
  12460. height:27px;
  12461. background:inherit;
  12462. background-color:rgba(255, 255, 255, 0);
  12463. border:none;
  12464. border-top:0px;
  12465. border-right:0px;
  12466. border-bottom:0px;
  12467. border-radius:0px;
  12468. border-top-left-radius:0px;
  12469. border-bottom-left-radius:0px;
  12470. -moz-box-shadow:none;
  12471. -webkit-box-shadow:none;
  12472. box-shadow:none;
  12473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12474. font-weight:400;
  12475. font-style:normal;
  12476. font-size:12px;
  12477. color:#7F7F7F;
  12478. }
  12479. #u31982 {
  12480. border-width:0px;
  12481. position:absolute;
  12482. left:593px;
  12483. top:951px;
  12484. width:100px;
  12485. height:27px;
  12486. display:flex;
  12487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12488. font-weight:400;
  12489. font-style:normal;
  12490. font-size:12px;
  12491. color:#7F7F7F;
  12492. }
  12493. #u31982 .text {
  12494. position:absolute;
  12495. align-self:center;
  12496. padding:5px 10px 5px 0px;
  12497. box-sizing:border-box;
  12498. width:100%;
  12499. }
  12500. #u31982_text {
  12501. border-width:0px;
  12502. word-wrap:break-word;
  12503. text-transform:none;
  12504. }
  12505. #u31983 {
  12506. border-width:0px;
  12507. position:absolute;
  12508. left:0px;
  12509. top:0px;
  12510. width:0px;
  12511. height:0px;
  12512. }
  12513. #u31984_div {
  12514. border-width:0px;
  12515. position:absolute;
  12516. left:0px;
  12517. top:0px;
  12518. width:612px;
  12519. height:60px;
  12520. background:inherit;
  12521. background-color:rgba(255, 255, 255, 1);
  12522. box-sizing:border-box;
  12523. border-width:1px;
  12524. border-style:solid;
  12525. border-color:rgba(188, 188, 188, 1);
  12526. border-radius:4px;
  12527. -moz-box-shadow:none;
  12528. -webkit-box-shadow:none;
  12529. box-shadow:none;
  12530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12531. font-weight:400;
  12532. font-style:normal;
  12533. font-size:12px;
  12534. color:#FFFFFF;
  12535. }
  12536. #u31984 {
  12537. border-width:0px;
  12538. position:absolute;
  12539. left:593px;
  12540. top:1074px;
  12541. width:612px;
  12542. height:60px;
  12543. display:flex;
  12544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12545. font-weight:400;
  12546. font-style:normal;
  12547. font-size:12px;
  12548. color:#FFFFFF;
  12549. }
  12550. #u31984 .text {
  12551. position:absolute;
  12552. align-self:center;
  12553. padding:8px 15px 8px 15px;
  12554. box-sizing:border-box;
  12555. width:100%;
  12556. }
  12557. #u31984_text {
  12558. border-width:0px;
  12559. word-wrap:break-word;
  12560. text-transform:none;
  12561. visibility:hidden;
  12562. }
  12563. #u31985_div {
  12564. border-width:0px;
  12565. position:absolute;
  12566. left:0px;
  12567. top:0px;
  12568. width:85px;
  12569. height:17px;
  12570. background:inherit;
  12571. background-color:rgba(255, 255, 255, 0);
  12572. border:none;
  12573. border-radius:0px;
  12574. -moz-box-shadow:none;
  12575. -webkit-box-shadow:none;
  12576. box-shadow:none;
  12577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12578. font-weight:400;
  12579. font-style:normal;
  12580. font-size:12px;
  12581. color:#BCBCBC;
  12582. }
  12583. #u31985 {
  12584. border-width:0px;
  12585. position:absolute;
  12586. left:602px;
  12587. top:1081px;
  12588. width:85px;
  12589. height:17px;
  12590. display:flex;
  12591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12592. font-weight:400;
  12593. font-style:normal;
  12594. font-size:12px;
  12595. color:#BCBCBC;
  12596. }
  12597. #u31985 .text {
  12598. position:absolute;
  12599. align-self:flex-start;
  12600. padding:0px 0px 0px 0px;
  12601. box-sizing:border-box;
  12602. width:100%;
  12603. }
  12604. #u31985_text {
  12605. border-width:0px;
  12606. white-space:nowrap;
  12607. text-transform:none;
  12608. }
  12609. #u31986_div {
  12610. border-width:0px;
  12611. position:absolute;
  12612. left:0px;
  12613. top:0px;
  12614. width:83px;
  12615. height:35px;
  12616. background:inherit;
  12617. background-color:rgba(255, 255, 255, 0);
  12618. border:none;
  12619. border-top:0px;
  12620. border-right:0px;
  12621. border-bottom:0px;
  12622. border-radius:0px;
  12623. border-top-left-radius:0px;
  12624. border-bottom-left-radius:0px;
  12625. -moz-box-shadow:none;
  12626. -webkit-box-shadow:none;
  12627. box-shadow:none;
  12628. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12629. font-weight:500;
  12630. font-style:normal;
  12631. font-size:18px;
  12632. }
  12633. #u31986 {
  12634. border-width:0px;
  12635. position:absolute;
  12636. left:593px;
  12637. top:1029px;
  12638. width:83px;
  12639. height:35px;
  12640. display:flex;
  12641. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12642. font-weight:500;
  12643. font-style:normal;
  12644. font-size:18px;
  12645. }
  12646. #u31986 .text {
  12647. position:absolute;
  12648. align-self:center;
  12649. padding:5px 10px 5px 0px;
  12650. box-sizing:border-box;
  12651. width:100%;
  12652. }
  12653. #u31986_text {
  12654. border-width:0px;
  12655. white-space:nowrap;
  12656. text-transform:none;
  12657. }
  12658. #u31987_div {
  12659. border-width:0px;
  12660. position:absolute;
  12661. left:0px;
  12662. top:0px;
  12663. width:155px;
  12664. height:35px;
  12665. background:inherit;
  12666. background-color:rgba(255, 255, 255, 0);
  12667. border:none;
  12668. border-top:0px;
  12669. border-right:0px;
  12670. border-bottom:0px;
  12671. border-radius:0px;
  12672. border-top-left-radius:0px;
  12673. border-bottom-left-radius:0px;
  12674. -moz-box-shadow:none;
  12675. -webkit-box-shadow:none;
  12676. box-shadow:none;
  12677. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12678. font-weight:500;
  12679. font-style:normal;
  12680. font-size:18px;
  12681. color:#D9001B;
  12682. }
  12683. #u31987 {
  12684. border-width:0px;
  12685. position:absolute;
  12686. left:404px;
  12687. top:107px;
  12688. width:155px;
  12689. height:35px;
  12690. display:flex;
  12691. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12692. font-weight:500;
  12693. font-style:normal;
  12694. font-size:18px;
  12695. color:#D9001B;
  12696. }
  12697. #u31987 .text {
  12698. position:absolute;
  12699. align-self:center;
  12700. padding:5px 10px 5px 0px;
  12701. box-sizing:border-box;
  12702. width:100%;
  12703. }
  12704. #u31987_text {
  12705. border-width:0px;
  12706. white-space:nowrap;
  12707. text-transform:none;
  12708. }