styles.css 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3596px;
  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. #u31585_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u31585 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u31585 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u31585_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u31586_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u31586 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u31586 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u31586_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u31587 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u31588_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u31588 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u31588 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u31588_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u31589_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u31589 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u31589 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u31589_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u31590_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u31590 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u31590 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u31590_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u31591_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u31591 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u31591 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u31591_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u31592 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u31593_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u31593 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u31593 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u31593_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u31594_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u31594 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u31594 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u31594_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u31595 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u31596_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u31596 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u31596 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u31596_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u31597_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u31597 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u31597 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u31597_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u31598 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u31599_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u31599 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u31599 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u31599_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u31600_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u31600 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u31600 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u31600_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u31601 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u31602_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u31602 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u31602 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u31602_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u31603_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u31603 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u31603 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u31603_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u31604 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u31605_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u31605 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u31605 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u31605_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u31606_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u31606 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u31606 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u31606_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u31607 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u31608_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u31608 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u31608 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u31608_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u31609_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u31609 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u31609 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u31609_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u31610 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u31611_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u31611 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u31611 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u31611_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u31612_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u31612 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u31612 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u31612_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u31613 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u31614_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u31614 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u31614 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u31614_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u31615_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u31615 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u31615 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u31615_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u31616 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u31617_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u31617 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u31617 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u31617_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u31618_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u31618 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u31618 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u31618_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u31619 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u31620_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u31620 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u31620 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u31620_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u31621_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u31621 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u31621 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u31621_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u31622_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u31622_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u31622_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u31622 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u31622 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u31622_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u31622.disabled {
  1184. }
  1185. .u31622_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u31623_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u31623 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u31623 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u31623_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u31624_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u31624 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u31624 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u31624_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u31625_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u31625 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u31625 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u31625_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u31626 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u31627_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u31627 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u31627 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u31627_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u31628_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u31628 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u31628 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u31628_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u31629 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u31630_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u31630 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u31630 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u31630_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u31631_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u31631 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u31631 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u31631_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u31632 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u31633_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u31633 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u31633 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u31633_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u31634_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u31634 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u31634 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u31634_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u31635 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u31636_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u31636 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u31636 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u31636_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u31637_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u31637 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u31637 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u31637_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u31638 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u31639_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u31639 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u31639 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u31639_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u31640_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u31640 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u31640 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u31640_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u31641_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1260px;
  1720. height:1198px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1726. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1727. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1728. }
  1729. #u31641 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:330px;
  1733. top:50px;
  1734. width:1260px;
  1735. height:1198px;
  1736. display:flex;
  1737. }
  1738. #u31641 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u31641_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. visibility:hidden;
  1750. }
  1751. #u31642_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:145px;
  1757. height:25px;
  1758. background:inherit;
  1759. background-color:rgba(255, 255, 255, 0);
  1760. border:none;
  1761. border-radius:0px;
  1762. -moz-box-shadow:none;
  1763. -webkit-box-shadow:none;
  1764. box-shadow:none;
  1765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1766. font-weight:400;
  1767. font-style:normal;
  1768. font-size:18px;
  1769. }
  1770. #u31642 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:350px;
  1774. top:70px;
  1775. width:145px;
  1776. height:25px;
  1777. display:flex;
  1778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1779. font-weight:400;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. }
  1783. #u31642 .text {
  1784. position:absolute;
  1785. align-self:flex-start;
  1786. padding:0px 0px 0px 0px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u31642_text {
  1791. border-width:0px;
  1792. white-space:nowrap;
  1793. text-transform:none;
  1794. }
  1795. #u31643_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:80px;
  1801. height:30px;
  1802. background:inherit;
  1803. background-color:rgba(41, 143, 255, 1);
  1804. border:none;
  1805. border-radius:4px;
  1806. -moz-box-shadow:none;
  1807. -webkit-box-shadow:none;
  1808. box-shadow:none;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:14px;
  1813. color:#FFFFFF;
  1814. }
  1815. #u31643 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:361px;
  1819. top:246px;
  1820. width:80px;
  1821. height:30px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:14px;
  1827. color:#FFFFFF;
  1828. }
  1829. #u31643 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:5px 10px 5px 10px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u31643_text {
  1837. border-width:0px;
  1838. word-wrap:break-word;
  1839. text-transform:none;
  1840. }
  1841. #u31644 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:0px;
  1847. height:0px;
  1848. }
  1849. #u31645 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:361px;
  1853. top:296px;
  1854. width:1198px;
  1855. height:154px;
  1856. }
  1857. #u31646_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:107px;
  1863. height:34px;
  1864. }
  1865. #u31646 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:107px;
  1871. height:34px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:14px;
  1877. color:#FFFFFF;
  1878. text-align:left;
  1879. line-height:30px;
  1880. }
  1881. #u31646 .text {
  1882. position:absolute;
  1883. align-self:center;
  1884. padding:2px 0px 2px 5px;
  1885. box-sizing:border-box;
  1886. width:100%;
  1887. }
  1888. #u31646_text {
  1889. border-width:0px;
  1890. word-wrap:break-word;
  1891. text-transform:none;
  1892. }
  1893. #u31647_img {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:214px;
  1899. height:34px;
  1900. }
  1901. #u31647 {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:107px;
  1905. top:0px;
  1906. width:214px;
  1907. height:34px;
  1908. display:flex;
  1909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. font-size:14px;
  1913. color:#FFFFFF;
  1914. text-align:left;
  1915. line-height:30px;
  1916. }
  1917. #u31647 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 0px 2px 5px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u31647_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. }
  1929. #u31648_img {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:427px;
  1935. height:34px;
  1936. }
  1937. #u31648 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:321px;
  1941. top:0px;
  1942. width:427px;
  1943. height:34px;
  1944. display:flex;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:14px;
  1949. color:#FFFFFF;
  1950. text-align:left;
  1951. line-height:30px;
  1952. }
  1953. #u31648 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 0px 2px 5px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u31648_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. }
  1965. #u31649_img {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:238px;
  1971. height:34px;
  1972. }
  1973. #u31649 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:748px;
  1977. top:0px;
  1978. width:238px;
  1979. height:34px;
  1980. display:flex;
  1981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1982. font-weight:400;
  1983. font-style:normal;
  1984. font-size:14px;
  1985. color:#FFFFFF;
  1986. text-align:left;
  1987. line-height:30px;
  1988. }
  1989. #u31649 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:2px 0px 2px 5px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u31649_text {
  1997. border-width:0px;
  1998. word-wrap:break-word;
  1999. text-transform:none;
  2000. }
  2001. #u31650_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:212px;
  2007. height:34px;
  2008. }
  2009. #u31650 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:986px;
  2013. top:0px;
  2014. width:212px;
  2015. height:34px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:14px;
  2021. color:#FFFFFF;
  2022. text-align:left;
  2023. line-height:30px;
  2024. }
  2025. #u31650 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 0px 2px 5px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u31650_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. }
  2037. #u31651_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:107px;
  2043. height:40px;
  2044. }
  2045. #u31651 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:34px;
  2050. width:107px;
  2051. height:40px;
  2052. display:flex;
  2053. font-size:14px;
  2054. text-align:left;
  2055. line-height:30px;
  2056. }
  2057. #u31651 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 0px 2px 5px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u31651_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. }
  2069. #u31652_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:214px;
  2075. height:40px;
  2076. }
  2077. #u31652 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:107px;
  2081. top:34px;
  2082. width:214px;
  2083. height:40px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:14px;
  2089. text-align:left;
  2090. line-height:30px;
  2091. }
  2092. #u31652 .text {
  2093. position:absolute;
  2094. align-self:center;
  2095. padding:2px 0px 2px 5px;
  2096. box-sizing:border-box;
  2097. width:100%;
  2098. }
  2099. #u31652_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. }
  2104. #u31653_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:427px;
  2110. height:40px;
  2111. }
  2112. #u31653 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:321px;
  2116. top:34px;
  2117. width:427px;
  2118. height:40px;
  2119. display:flex;
  2120. font-size:14px;
  2121. text-align:left;
  2122. line-height:30px;
  2123. }
  2124. #u31653 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 0px 2px 5px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u31653_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. }
  2136. #u31654_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:238px;
  2142. height:40px;
  2143. }
  2144. #u31654 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:748px;
  2148. top:34px;
  2149. width:238px;
  2150. height:40px;
  2151. display:flex;
  2152. font-size:14px;
  2153. text-align:left;
  2154. line-height:30px;
  2155. }
  2156. #u31654 .text {
  2157. position:absolute;
  2158. align-self:center;
  2159. padding:2px 0px 2px 5px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u31654_text {
  2164. border-width:0px;
  2165. word-wrap:break-word;
  2166. text-transform:none;
  2167. visibility:hidden;
  2168. }
  2169. #u31655_img {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:212px;
  2175. height:40px;
  2176. }
  2177. #u31655 {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:986px;
  2181. top:34px;
  2182. width:212px;
  2183. height:40px;
  2184. display:flex;
  2185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2186. font-weight:400;
  2187. font-style:normal;
  2188. font-size:14px;
  2189. color:#1890FF;
  2190. text-align:left;
  2191. line-height:30px;
  2192. }
  2193. #u31655 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:2px 0px 2px 5px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u31655_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. }
  2205. #u31656_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:107px;
  2211. height:40px;
  2212. }
  2213. #u31656 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:0px;
  2217. top:74px;
  2218. width:107px;
  2219. height:40px;
  2220. display:flex;
  2221. font-size:14px;
  2222. text-align:left;
  2223. line-height:30px;
  2224. }
  2225. #u31656 .text {
  2226. position:absolute;
  2227. align-self:center;
  2228. padding:2px 0px 2px 5px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u31656_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. }
  2237. #u31657_img {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:214px;
  2243. height:40px;
  2244. }
  2245. #u31657 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:107px;
  2249. top:74px;
  2250. width:214px;
  2251. height:40px;
  2252. display:flex;
  2253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2254. font-weight:400;
  2255. font-style:normal;
  2256. font-size:14px;
  2257. text-align:left;
  2258. line-height:30px;
  2259. }
  2260. #u31657 .text {
  2261. position:absolute;
  2262. align-self:center;
  2263. padding:2px 0px 2px 5px;
  2264. box-sizing:border-box;
  2265. width:100%;
  2266. }
  2267. #u31657_text {
  2268. border-width:0px;
  2269. word-wrap:break-word;
  2270. text-transform:none;
  2271. }
  2272. #u31658_img {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:427px;
  2278. height:40px;
  2279. }
  2280. #u31658 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:321px;
  2284. top:74px;
  2285. width:427px;
  2286. height:40px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:14px;
  2292. text-align:left;
  2293. line-height:30px;
  2294. }
  2295. #u31658 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 0px 2px 5px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u31658_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. }
  2307. #u31659_img {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:238px;
  2313. height:40px;
  2314. }
  2315. #u31659 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:748px;
  2319. top:74px;
  2320. width:238px;
  2321. height:40px;
  2322. display:flex;
  2323. font-size:14px;
  2324. text-align:left;
  2325. line-height:30px;
  2326. }
  2327. #u31659 .text {
  2328. position:absolute;
  2329. align-self:center;
  2330. padding:2px 0px 2px 5px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u31659_text {
  2335. border-width:0px;
  2336. word-wrap:break-word;
  2337. text-transform:none;
  2338. visibility:hidden;
  2339. }
  2340. #u31660_img {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:212px;
  2346. height:40px;
  2347. }
  2348. #u31660 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:986px;
  2352. top:74px;
  2353. width:212px;
  2354. height:40px;
  2355. display:flex;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:14px;
  2360. color:#1890FF;
  2361. text-align:left;
  2362. line-height:30px;
  2363. }
  2364. #u31660 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 0px 2px 5px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u31660_text {
  2372. border-width:0px;
  2373. word-wrap:break-word;
  2374. text-transform:none;
  2375. }
  2376. #u31661_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:107px;
  2382. height:40px;
  2383. }
  2384. #u31661 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:114px;
  2389. width:107px;
  2390. height:40px;
  2391. display:flex;
  2392. font-size:14px;
  2393. text-align:left;
  2394. line-height:30px;
  2395. }
  2396. #u31661 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 0px 2px 5px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u31661_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. }
  2408. #u31662_img {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:214px;
  2414. height:40px;
  2415. }
  2416. #u31662 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:107px;
  2420. top:114px;
  2421. width:214px;
  2422. height:40px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:14px;
  2428. text-align:left;
  2429. line-height:30px;
  2430. }
  2431. #u31662 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 0px 2px 5px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u31662_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. }
  2443. #u31663_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:427px;
  2449. height:40px;
  2450. }
  2451. #u31663 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:321px;
  2455. top:114px;
  2456. width:427px;
  2457. height:40px;
  2458. display:flex;
  2459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:14px;
  2463. text-align:left;
  2464. line-height:30px;
  2465. }
  2466. #u31663 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 0px 2px 5px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u31663_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. }
  2478. #u31664_img {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:238px;
  2484. height:40px;
  2485. }
  2486. #u31664 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:748px;
  2490. top:114px;
  2491. width:238px;
  2492. height:40px;
  2493. display:flex;
  2494. font-size:14px;
  2495. text-align:left;
  2496. line-height:30px;
  2497. }
  2498. #u31664 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 0px 2px 5px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u31664_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u31665_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:212px;
  2517. height:40px;
  2518. }
  2519. #u31665 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:986px;
  2523. top:114px;
  2524. width:212px;
  2525. height:40px;
  2526. display:flex;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:14px;
  2531. color:#1890FF;
  2532. text-align:left;
  2533. line-height:30px;
  2534. }
  2535. #u31665 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 0px 2px 5px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u31665_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. }
  2547. #u31666_div {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:35px;
  2553. height:17px;
  2554. background:inherit;
  2555. background-color:rgba(51, 51, 51, 1);
  2556. border:none;
  2557. border-radius:18px;
  2558. -moz-box-shadow:none;
  2559. -webkit-box-shadow:none;
  2560. box-shadow:none;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:12px;
  2565. color:#FFFFFF;
  2566. }
  2567. #u31666 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:789px;
  2571. top:340px;
  2572. width:35px;
  2573. height:17px;
  2574. display:flex;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:12px;
  2579. color:#FFFFFF;
  2580. }
  2581. #u31666 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:0px 0px 0px 0px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u31666_text {
  2589. border-width:0px;
  2590. word-wrap:break-word;
  2591. text-transform:none;
  2592. }
  2593. #u31667 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:0px;
  2599. height:0px;
  2600. }
  2601. #u31668 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:0px;
  2607. height:0px;
  2608. }
  2609. #u31669_div {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:630px;
  2615. height:1196px;
  2616. background:inherit;
  2617. background-color:rgba(255, 255, 255, 1);
  2618. box-sizing:border-box;
  2619. border-width:1px;
  2620. border-style:solid;
  2621. border-color:rgba(215, 215, 215, 1);
  2622. border-radius:0px;
  2623. -moz-box-shadow:none;
  2624. -webkit-box-shadow:none;
  2625. box-shadow:none;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:14px;
  2630. color:#AAAAAA;
  2631. text-align:center;
  2632. line-height:30px;
  2633. }
  2634. #u31669 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:1650px;
  2638. top:47px;
  2639. width:630px;
  2640. height:1196px;
  2641. display:flex;
  2642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. font-size:14px;
  2646. color:#AAAAAA;
  2647. text-align:center;
  2648. line-height:30px;
  2649. }
  2650. #u31669 .text {
  2651. position:absolute;
  2652. align-self:center;
  2653. padding:5px 10px 5px 10px;
  2654. box-sizing:border-box;
  2655. width:100%;
  2656. }
  2657. #u31669_text {
  2658. border-width:0px;
  2659. word-wrap:break-word;
  2660. text-transform:none;
  2661. visibility:hidden;
  2662. }
  2663. #u31670_div {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:83px;
  2669. height:35px;
  2670. background:inherit;
  2671. background-color:rgba(255, 255, 255, 0);
  2672. border:none;
  2673. border-top:0px;
  2674. border-right:0px;
  2675. border-bottom:0px;
  2676. border-radius:0px;
  2677. border-top-left-radius:0px;
  2678. border-bottom-left-radius:0px;
  2679. -moz-box-shadow:none;
  2680. -webkit-box-shadow:none;
  2681. box-shadow:none;
  2682. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2683. font-weight:500;
  2684. font-style:normal;
  2685. font-size:18px;
  2686. }
  2687. #u31670 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:1670px;
  2691. top:65px;
  2692. width:83px;
  2693. height:35px;
  2694. display:flex;
  2695. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2696. font-weight:500;
  2697. font-style:normal;
  2698. font-size:18px;
  2699. }
  2700. #u31670 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:5px 10px 5px 0px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u31670_text {
  2708. border-width:0px;
  2709. white-space:nowrap;
  2710. text-transform:none;
  2711. }
  2712. #u31671_div {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:40px;
  2718. height:40px;
  2719. background:inherit;
  2720. background-color:rgba(255, 255, 255, 0);
  2721. border:none;
  2722. border-top:0px;
  2723. border-right:0px;
  2724. border-bottom:0px;
  2725. border-radius:0px;
  2726. border-top-left-radius:0px;
  2727. border-bottom-left-radius:0px;
  2728. -moz-box-shadow:none;
  2729. -webkit-box-shadow:none;
  2730. box-shadow:none;
  2731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2732. font-weight:500;
  2733. font-style:normal;
  2734. font-size:18px;
  2735. text-align:center;
  2736. }
  2737. #u31671 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:2240px;
  2741. top:47px;
  2742. width:40px;
  2743. height:40px;
  2744. display:flex;
  2745. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2746. font-weight:500;
  2747. font-style:normal;
  2748. font-size:18px;
  2749. text-align:center;
  2750. }
  2751. #u31671 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:5px 10px 5px 0px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u31671_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. }
  2763. #u31672_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:13px;
  2769. height:13px;
  2770. }
  2771. #u31672 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:2228px;
  2775. top:63px;
  2776. width:13px;
  2777. height:13px;
  2778. display:flex;
  2779. }
  2780. #u31672 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 2px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u31672_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u31673 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:0px;
  2799. height:0px;
  2800. }
  2801. #u31674_div {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:630px;
  2807. height:50px;
  2808. background:inherit;
  2809. background-color:rgba(255, 255, 255, 1);
  2810. box-sizing:border-box;
  2811. border-width:1px;
  2812. border-style:solid;
  2813. border-color:rgba(215, 215, 215, 1);
  2814. border-radius:0px;
  2815. -moz-box-shadow:none;
  2816. -webkit-box-shadow:none;
  2817. box-shadow:none;
  2818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2819. font-weight:400;
  2820. font-style:normal;
  2821. font-size:14px;
  2822. color:#AAAAAA;
  2823. text-align:center;
  2824. line-height:30px;
  2825. }
  2826. #u31674 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:1650px;
  2830. top:1193px;
  2831. width:630px;
  2832. height:50px;
  2833. display:flex;
  2834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:14px;
  2838. color:#AAAAAA;
  2839. text-align:center;
  2840. line-height:30px;
  2841. }
  2842. #u31674 .text {
  2843. position:absolute;
  2844. align-self:center;
  2845. padding:5px 10px 5px 10px;
  2846. box-sizing:border-box;
  2847. width:100%;
  2848. }
  2849. #u31674_text {
  2850. border-width:0px;
  2851. word-wrap:break-word;
  2852. text-transform:none;
  2853. visibility:hidden;
  2854. }
  2855. #u31675_div {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:80px;
  2861. height:30px;
  2862. background:inherit;
  2863. background-color:rgba(24, 144, 255, 1);
  2864. border:none;
  2865. border-radius:4px;
  2866. -moz-box-shadow:none;
  2867. -webkit-box-shadow:none;
  2868. box-shadow:none;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:14px;
  2873. color:#FFFFFF;
  2874. }
  2875. #u31675 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:2178px;
  2879. top:1203px;
  2880. width:80px;
  2881. height:30px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:14px;
  2887. color:#FFFFFF;
  2888. }
  2889. #u31675 .text {
  2890. position:absolute;
  2891. align-self:center;
  2892. padding:2px 2px 2px 2px;
  2893. box-sizing:border-box;
  2894. width:100%;
  2895. }
  2896. #u31675_text {
  2897. border-width:0px;
  2898. word-wrap:break-word;
  2899. text-transform:none;
  2900. }
  2901. #u31676_div {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:80px;
  2907. height:30px;
  2908. background:inherit;
  2909. background-color:rgba(255, 255, 255, 1);
  2910. box-sizing:border-box;
  2911. border-width:1px;
  2912. border-style:solid;
  2913. border-color:rgba(121, 121, 121, 1);
  2914. border-radius:4px;
  2915. -moz-box-shadow:none;
  2916. -webkit-box-shadow:none;
  2917. box-shadow:none;
  2918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:14px;
  2922. }
  2923. #u31676 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:2088px;
  2927. top:1203px;
  2928. width:80px;
  2929. height:30px;
  2930. display:flex;
  2931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. font-size:14px;
  2935. }
  2936. #u31676 .text {
  2937. position:absolute;
  2938. align-self:center;
  2939. padding:2px 2px 2px 2px;
  2940. box-sizing:border-box;
  2941. width:100%;
  2942. }
  2943. #u31676_text {
  2944. border-width:0px;
  2945. word-wrap:break-word;
  2946. text-transform:none;
  2947. }
  2948. #u31677 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:0px;
  2954. height:0px;
  2955. }
  2956. #u31678_div {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:520px;
  2962. height:40px;
  2963. background:inherit;
  2964. background-color:rgba(255, 255, 255, 1);
  2965. box-sizing:border-box;
  2966. border-width:1px;
  2967. border-style:solid;
  2968. border-color:rgba(170, 170, 170, 1);
  2969. border-radius:4px;
  2970. -moz-box-shadow:none;
  2971. -webkit-box-shadow:none;
  2972. box-shadow:none;
  2973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2974. font-weight:400;
  2975. font-style:normal;
  2976. text-align:right;
  2977. }
  2978. #u31678 {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:1700px;
  2982. top:158px;
  2983. width:520px;
  2984. height:40px;
  2985. display:flex;
  2986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2987. font-weight:400;
  2988. font-style:normal;
  2989. text-align:right;
  2990. }
  2991. #u31678 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 10px 2px 10px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u31678_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u31679_input {
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:501px;
  3009. height:30px;
  3010. padding:2px 2px 2px 2px;
  3011. font-family:'ArialMT', 'Arial', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:13px;
  3015. letter-spacing:normal;
  3016. color:#000000;
  3017. vertical-align:none;
  3018. text-align:left;
  3019. text-transform:none;
  3020. background-color:transparent;
  3021. border-color:transparent;
  3022. }
  3023. #u31679_input.disabled {
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:501px;
  3028. height:30px;
  3029. padding:2px 2px 2px 2px;
  3030. font-family:'ArialMT', 'Arial', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:13px;
  3034. letter-spacing:normal;
  3035. color:#000000;
  3036. vertical-align:none;
  3037. text-align:left;
  3038. text-transform:none;
  3039. background-color:transparent;
  3040. border-color:transparent;
  3041. }
  3042. #u31679_div {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:501px;
  3048. height:30px;
  3049. background:inherit;
  3050. background-color:rgba(255, 255, 255, 1);
  3051. border:none;
  3052. border-radius:0px;
  3053. -moz-box-shadow:none;
  3054. -webkit-box-shadow:none;
  3055. box-shadow:none;
  3056. }
  3057. #u31679 {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:1707px;
  3061. top:163px;
  3062. width:501px;
  3063. height:30px;
  3064. display:flex;
  3065. }
  3066. #u31679 .text {
  3067. position:absolute;
  3068. align-self:flex-start;
  3069. padding:2px 2px 2px 2px;
  3070. box-sizing:border-box;
  3071. width:100%;
  3072. }
  3073. #u31679_div.disabled {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:501px;
  3079. height:30px;
  3080. background:inherit;
  3081. background-color:rgba(240, 240, 240, 1);
  3082. border:none;
  3083. border-radius:0px;
  3084. -moz-box-shadow:none;
  3085. -webkit-box-shadow:none;
  3086. box-shadow:none;
  3087. }
  3088. #u31679.disabled {
  3089. }
  3090. .u31679_input_option {
  3091. }
  3092. #u31680_div {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:74px;
  3098. height:40px;
  3099. background:inherit;
  3100. background-color:rgba(255, 255, 255, 0);
  3101. border:none;
  3102. border-top:0px;
  3103. border-right:0px;
  3104. border-bottom:0px;
  3105. border-radius:0px;
  3106. border-top-left-radius:0px;
  3107. border-bottom-left-radius:0px;
  3108. -moz-box-shadow:none;
  3109. -webkit-box-shadow:none;
  3110. box-shadow:none;
  3111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3112. font-weight:400;
  3113. font-style:normal;
  3114. font-size:14px;
  3115. }
  3116. #u31680 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:1700px;
  3120. top:118px;
  3121. width:74px;
  3122. height:40px;
  3123. display:flex;
  3124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:14px;
  3128. }
  3129. #u31680 .text {
  3130. position:absolute;
  3131. align-self:center;
  3132. padding:5px 10px 5px 0px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u31680_text {
  3137. border-width:0px;
  3138. white-space:nowrap;
  3139. text-transform:none;
  3140. }
  3141. #u31681 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:0px;
  3147. height:0px;
  3148. }
  3149. #u31682_div {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:520px;
  3155. height:40px;
  3156. background:inherit;
  3157. background-color:rgba(255, 255, 255, 1);
  3158. box-sizing:border-box;
  3159. border-width:1px;
  3160. border-style:solid;
  3161. border-color:rgba(170, 170, 170, 1);
  3162. border-radius:4px;
  3163. -moz-box-shadow:none;
  3164. -webkit-box-shadow:none;
  3165. box-shadow:none;
  3166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. text-align:right;
  3170. }
  3171. #u31682 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:1700px;
  3175. top:238px;
  3176. width:520px;
  3177. height:40px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. text-align:right;
  3183. }
  3184. #u31682 .text {
  3185. position:absolute;
  3186. align-self:center;
  3187. padding:2px 10px 2px 10px;
  3188. box-sizing:border-box;
  3189. width:100%;
  3190. }
  3191. #u31682_text {
  3192. border-width:0px;
  3193. word-wrap:break-word;
  3194. text-transform:none;
  3195. visibility:hidden;
  3196. }
  3197. #u31683_input {
  3198. position:absolute;
  3199. left:0px;
  3200. top:0px;
  3201. width:501px;
  3202. height:30px;
  3203. padding:2px 2px 2px 2px;
  3204. font-family:'ArialMT', 'Arial', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:13px;
  3208. letter-spacing:normal;
  3209. color:#000000;
  3210. vertical-align:none;
  3211. text-align:left;
  3212. text-transform:none;
  3213. background-color:transparent;
  3214. border-color:transparent;
  3215. }
  3216. #u31683_input.disabled {
  3217. position:absolute;
  3218. left:0px;
  3219. top:0px;
  3220. width:501px;
  3221. height:30px;
  3222. padding:2px 2px 2px 2px;
  3223. font-family:'ArialMT', 'Arial', sans-serif;
  3224. font-weight:400;
  3225. font-style:normal;
  3226. font-size:13px;
  3227. letter-spacing:normal;
  3228. color:#000000;
  3229. vertical-align:none;
  3230. text-align:left;
  3231. text-transform:none;
  3232. background-color:transparent;
  3233. border-color:transparent;
  3234. }
  3235. #u31683_div {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:501px;
  3241. height:30px;
  3242. background:inherit;
  3243. background-color:rgba(255, 255, 255, 1);
  3244. border:none;
  3245. border-radius:0px;
  3246. -moz-box-shadow:none;
  3247. -webkit-box-shadow:none;
  3248. box-shadow:none;
  3249. }
  3250. #u31683 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:1709px;
  3254. top:243px;
  3255. width:501px;
  3256. height:30px;
  3257. display:flex;
  3258. }
  3259. #u31683 .text {
  3260. position:absolute;
  3261. align-self:flex-start;
  3262. padding:2px 2px 2px 2px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u31683_div.disabled {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:501px;
  3272. height:30px;
  3273. background:inherit;
  3274. background-color:rgba(240, 240, 240, 1);
  3275. border:none;
  3276. border-radius:0px;
  3277. -moz-box-shadow:none;
  3278. -webkit-box-shadow:none;
  3279. box-shadow:none;
  3280. }
  3281. #u31683.disabled {
  3282. }
  3283. .u31683_input_option {
  3284. }
  3285. #u31684_div {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:74px;
  3291. height:40px;
  3292. background:inherit;
  3293. background-color:rgba(255, 255, 255, 0);
  3294. border:none;
  3295. border-top:0px;
  3296. border-right:0px;
  3297. border-bottom:0px;
  3298. border-radius:0px;
  3299. border-top-left-radius:0px;
  3300. border-bottom-left-radius:0px;
  3301. -moz-box-shadow:none;
  3302. -webkit-box-shadow:none;
  3303. box-shadow:none;
  3304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3305. font-weight:400;
  3306. font-style:normal;
  3307. font-size:14px;
  3308. }
  3309. #u31684 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:1700px;
  3313. top:198px;
  3314. width:74px;
  3315. height:40px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:14px;
  3321. }
  3322. #u31684 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:5px 10px 5px 0px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u31684_text {
  3330. border-width:0px;
  3331. white-space:nowrap;
  3332. text-transform:none;
  3333. }
  3334. #u31685_div {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:60px;
  3340. height:40px;
  3341. background:inherit;
  3342. background-color:rgba(255, 255, 255, 0);
  3343. border:none;
  3344. border-top:0px;
  3345. border-right:0px;
  3346. border-bottom:0px;
  3347. border-radius:0px;
  3348. border-top-left-radius:0px;
  3349. border-bottom-left-radius:0px;
  3350. -moz-box-shadow:none;
  3351. -webkit-box-shadow:none;
  3352. box-shadow:none;
  3353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. font-size:14px;
  3357. }
  3358. #u31685 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:1700px;
  3362. top:403px;
  3363. width:60px;
  3364. height:40px;
  3365. display:flex;
  3366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:14px;
  3370. }
  3371. #u31685 .text {
  3372. position:absolute;
  3373. align-self:center;
  3374. padding:5px 10px 5px 0px;
  3375. box-sizing:border-box;
  3376. width:100%;
  3377. }
  3378. #u31685_text {
  3379. border-width:0px;
  3380. white-space:nowrap;
  3381. text-transform:none;
  3382. }
  3383. #u31686_div {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:46px;
  3389. height:40px;
  3390. background:inherit;
  3391. background-color:rgba(255, 255, 255, 0);
  3392. border:none;
  3393. border-top:0px;
  3394. border-right:0px;
  3395. border-bottom:0px;
  3396. border-radius:0px;
  3397. border-top-left-radius:0px;
  3398. border-bottom-left-radius:0px;
  3399. -moz-box-shadow:none;
  3400. -webkit-box-shadow:none;
  3401. box-shadow:none;
  3402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3403. font-weight:400;
  3404. font-style:normal;
  3405. font-size:14px;
  3406. }
  3407. #u31686 {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:1700px;
  3411. top:563px;
  3412. width:46px;
  3413. height:40px;
  3414. display:flex;
  3415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3416. font-weight:400;
  3417. font-style:normal;
  3418. font-size:14px;
  3419. }
  3420. #u31686 .text {
  3421. position:absolute;
  3422. align-self:center;
  3423. padding:5px 10px 5px 0px;
  3424. box-sizing:border-box;
  3425. width:100%;
  3426. }
  3427. #u31686_text {
  3428. border-width:0px;
  3429. white-space:nowrap;
  3430. text-transform:none;
  3431. }
  3432. #u31687_div {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:0px;
  3436. top:0px;
  3437. width:63px;
  3438. height:40px;
  3439. background:inherit;
  3440. background-color:rgba(255, 255, 255, 0);
  3441. border:none;
  3442. border-top:0px;
  3443. border-right:0px;
  3444. border-bottom:0px;
  3445. border-radius:0px;
  3446. border-top-left-radius:0px;
  3447. border-bottom-left-radius:0px;
  3448. -moz-box-shadow:none;
  3449. -webkit-box-shadow:none;
  3450. box-shadow:none;
  3451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3452. font-weight:400;
  3453. font-style:normal;
  3454. font-size:14px;
  3455. }
  3456. #u31687 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:1700px;
  3460. top:643px;
  3461. width:63px;
  3462. height:40px;
  3463. display:flex;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:14px;
  3468. }
  3469. #u31687 .text {
  3470. position:absolute;
  3471. align-self:center;
  3472. padding:5px 10px 5px 0px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u31687_text {
  3477. border-width:0px;
  3478. white-space:nowrap;
  3479. text-transform:none;
  3480. }
  3481. #u31688 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:0px;
  3487. height:0px;
  3488. }
  3489. #u31689_div {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:520px;
  3495. height:40px;
  3496. background:inherit;
  3497. background-color:rgba(255, 255, 255, 1);
  3498. box-sizing:border-box;
  3499. border-width:1px;
  3500. border-style:solid;
  3501. border-color:rgba(170, 170, 170, 1);
  3502. border-radius:4px;
  3503. -moz-box-shadow:none;
  3504. -webkit-box-shadow:none;
  3505. box-shadow:none;
  3506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. text-align:right;
  3510. }
  3511. #u31689 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:1700px;
  3515. top:523px;
  3516. width:520px;
  3517. height:40px;
  3518. display:flex;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. text-align:right;
  3523. }
  3524. #u31689 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 10px 2px 10px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u31689_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u31690_input {
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:414px;
  3542. height:31px;
  3543. padding:2px 10px 2px 2px;
  3544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:13px;
  3548. letter-spacing:normal;
  3549. color:#333333;
  3550. vertical-align:none;
  3551. text-align:left;
  3552. text-transform:none;
  3553. background-color:transparent;
  3554. border-color:transparent;
  3555. }
  3556. #u31690_input.disabled {
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:414px;
  3561. height:31px;
  3562. padding:2px 10px 2px 2px;
  3563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3564. font-weight:400;
  3565. font-style:normal;
  3566. font-size:13px;
  3567. letter-spacing:normal;
  3568. color:#333333;
  3569. vertical-align:none;
  3570. text-align:left;
  3571. text-transform:none;
  3572. background-color:transparent;
  3573. border-color:transparent;
  3574. }
  3575. #u31690_div {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:414px;
  3581. height:31px;
  3582. background:inherit;
  3583. background-color:rgba(255, 255, 255, 0);
  3584. border:none;
  3585. border-radius:0px;
  3586. -moz-box-shadow:none;
  3587. -webkit-box-shadow:none;
  3588. box-shadow:none;
  3589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. color:#333333;
  3593. }
  3594. #u31690 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:1707px;
  3598. top:528px;
  3599. width:414px;
  3600. height:31px;
  3601. display:flex;
  3602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3603. font-weight:400;
  3604. font-style:normal;
  3605. color:#333333;
  3606. }
  3607. #u31690 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 10px 2px 2px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u31690_div.disabled {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:414px;
  3620. height:31px;
  3621. background:inherit;
  3622. background-color:rgba(240, 240, 240, 1);
  3623. border:none;
  3624. border-radius:0px;
  3625. -moz-box-shadow:none;
  3626. -webkit-box-shadow:none;
  3627. box-shadow:none;
  3628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3629. font-weight:400;
  3630. font-style:normal;
  3631. color:#333333;
  3632. }
  3633. #u31690.disabled {
  3634. }
  3635. #u31691_div {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:74px;
  3641. height:40px;
  3642. background:inherit;
  3643. background-color:rgba(255, 255, 255, 0);
  3644. border:none;
  3645. border-top:0px;
  3646. border-right:0px;
  3647. border-bottom:0px;
  3648. border-radius:0px;
  3649. border-top-left-radius:0px;
  3650. border-bottom-left-radius:0px;
  3651. -moz-box-shadow:none;
  3652. -webkit-box-shadow:none;
  3653. box-shadow:none;
  3654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:14px;
  3658. }
  3659. #u31691 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:1700px;
  3663. top:483px;
  3664. width:74px;
  3665. height:40px;
  3666. display:flex;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:14px;
  3671. }
  3672. #u31691 .text {
  3673. position:absolute;
  3674. align-self:center;
  3675. padding:5px 10px 5px 0px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u31691_text {
  3680. border-width:0px;
  3681. white-space:nowrap;
  3682. text-transform:none;
  3683. }
  3684. #u31692 {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:0px;
  3690. height:0px;
  3691. }
  3692. #u31693_div {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:67px;
  3698. height:30px;
  3699. background:inherit;
  3700. background-color:rgba(255, 255, 255, 0);
  3701. border:none;
  3702. border-top:0px;
  3703. border-right:0px;
  3704. border-bottom:0px;
  3705. border-radius:0px;
  3706. border-top-left-radius:0px;
  3707. border-bottom-left-radius:0px;
  3708. -moz-box-shadow:none;
  3709. -webkit-box-shadow:none;
  3710. box-shadow:none;
  3711. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3712. font-weight:500;
  3713. font-style:normal;
  3714. font-size:14px;
  3715. }
  3716. #u31693 {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:1700px;
  3720. top:363px;
  3721. width:67px;
  3722. height:30px;
  3723. display:flex;
  3724. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3725. font-weight:500;
  3726. font-style:normal;
  3727. font-size:14px;
  3728. }
  3729. #u31693 .text {
  3730. position:absolute;
  3731. align-self:center;
  3732. padding:5px 10px 5px 0px;
  3733. box-sizing:border-box;
  3734. width:100%;
  3735. }
  3736. #u31693_text {
  3737. border-width:0px;
  3738. white-space:nowrap;
  3739. text-transform:none;
  3740. }
  3741. #u31694_img {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:12px;
  3747. height:12px;
  3748. }
  3749. #u31694 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:1767px;
  3753. top:372px;
  3754. width:12px;
  3755. height:12px;
  3756. display:flex;
  3757. }
  3758. #u31694 .text {
  3759. position:absolute;
  3760. align-self:center;
  3761. padding:2px 2px 2px 2px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u31694_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. visibility:hidden;
  3770. }
  3771. #u31695 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:0px;
  3777. height:0px;
  3778. }
  3779. #u31696_div {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:520px;
  3785. height:40px;
  3786. background:inherit;
  3787. background-color:rgba(255, 255, 255, 1);
  3788. box-sizing:border-box;
  3789. border-width:1px;
  3790. border-style:solid;
  3791. border-color:rgba(170, 170, 170, 1);
  3792. border-radius:4px;
  3793. -moz-box-shadow:none;
  3794. -webkit-box-shadow:none;
  3795. box-shadow:none;
  3796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. text-align:right;
  3800. }
  3801. #u31696 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:1700px;
  3805. top:599px;
  3806. width:520px;
  3807. height:40px;
  3808. display:flex;
  3809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3810. font-weight:400;
  3811. font-style:normal;
  3812. text-align:right;
  3813. }
  3814. #u31696 .text {
  3815. position:absolute;
  3816. align-self:center;
  3817. padding:2px 10px 2px 10px;
  3818. box-sizing:border-box;
  3819. width:100%;
  3820. }
  3821. #u31696_text {
  3822. border-width:0px;
  3823. word-wrap:break-word;
  3824. text-transform:none;
  3825. visibility:hidden;
  3826. }
  3827. #u31697_input {
  3828. position:absolute;
  3829. left:0px;
  3830. top:0px;
  3831. width:414px;
  3832. height:31px;
  3833. padding:2px 10px 2px 2px;
  3834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:13px;
  3838. letter-spacing:normal;
  3839. color:#333333;
  3840. vertical-align:none;
  3841. text-align:left;
  3842. text-transform:none;
  3843. background-color:transparent;
  3844. border-color:transparent;
  3845. }
  3846. #u31697_input.disabled {
  3847. position:absolute;
  3848. left:0px;
  3849. top:0px;
  3850. width:414px;
  3851. height:31px;
  3852. padding:2px 10px 2px 2px;
  3853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3854. font-weight:400;
  3855. font-style:normal;
  3856. font-size:13px;
  3857. letter-spacing:normal;
  3858. color:#333333;
  3859. vertical-align:none;
  3860. text-align:left;
  3861. text-transform:none;
  3862. background-color:transparent;
  3863. border-color:transparent;
  3864. }
  3865. #u31697_div {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:414px;
  3871. height:31px;
  3872. background:inherit;
  3873. background-color:rgba(255, 255, 255, 0);
  3874. border:none;
  3875. border-radius:0px;
  3876. -moz-box-shadow:none;
  3877. -webkit-box-shadow:none;
  3878. box-shadow:none;
  3879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3880. font-weight:400;
  3881. font-style:normal;
  3882. color:#333333;
  3883. }
  3884. #u31697 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:1707px;
  3888. top:604px;
  3889. width:414px;
  3890. height:31px;
  3891. display:flex;
  3892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. color:#333333;
  3896. }
  3897. #u31697 .text {
  3898. position:absolute;
  3899. align-self:center;
  3900. padding:2px 10px 2px 2px;
  3901. box-sizing:border-box;
  3902. width:100%;
  3903. }
  3904. #u31697_div.disabled {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:414px;
  3910. height:31px;
  3911. background:inherit;
  3912. background-color:rgba(240, 240, 240, 1);
  3913. border:none;
  3914. border-radius:0px;
  3915. -moz-box-shadow:none;
  3916. -webkit-box-shadow:none;
  3917. box-shadow:none;
  3918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. color:#333333;
  3922. }
  3923. #u31697.disabled {
  3924. }
  3925. #u31698 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:0px;
  3931. height:0px;
  3932. }
  3933. #u31699_div {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:520px;
  3939. height:40px;
  3940. background:inherit;
  3941. background-color:rgba(255, 255, 255, 1);
  3942. box-sizing:border-box;
  3943. border-width:1px;
  3944. border-style:solid;
  3945. border-color:rgba(170, 170, 170, 1);
  3946. border-radius:4px;
  3947. -moz-box-shadow:none;
  3948. -webkit-box-shadow:none;
  3949. box-shadow:none;
  3950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. text-align:right;
  3954. }
  3955. #u31699 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:1700px;
  3959. top:443px;
  3960. width:520px;
  3961. height:40px;
  3962. display:flex;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. text-align:right;
  3967. }
  3968. #u31699 .text {
  3969. position:absolute;
  3970. align-self:center;
  3971. padding:2px 10px 2px 10px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u31699_text {
  3976. border-width:0px;
  3977. word-wrap:break-word;
  3978. text-transform:none;
  3979. visibility:hidden;
  3980. }
  3981. #u31700_input {
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:414px;
  3986. height:31px;
  3987. padding:2px 10px 2px 2px;
  3988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:13px;
  3992. letter-spacing:normal;
  3993. color:#333333;
  3994. vertical-align:none;
  3995. text-align:left;
  3996. text-transform:none;
  3997. background-color:transparent;
  3998. border-color:transparent;
  3999. }
  4000. #u31700_input.disabled {
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:414px;
  4005. height:31px;
  4006. padding:2px 10px 2px 2px;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:13px;
  4011. letter-spacing:normal;
  4012. color:#333333;
  4013. vertical-align:none;
  4014. text-align:left;
  4015. text-transform:none;
  4016. background-color:transparent;
  4017. border-color:transparent;
  4018. }
  4019. #u31700_div {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:414px;
  4025. height:31px;
  4026. background:inherit;
  4027. background-color:rgba(255, 255, 255, 0);
  4028. border:none;
  4029. border-radius:0px;
  4030. -moz-box-shadow:none;
  4031. -webkit-box-shadow:none;
  4032. box-shadow:none;
  4033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. color:#333333;
  4037. }
  4038. #u31700 {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:1707px;
  4042. top:448px;
  4043. width:414px;
  4044. height:31px;
  4045. display:flex;
  4046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. color:#333333;
  4050. }
  4051. #u31700 .text {
  4052. position:absolute;
  4053. align-self:center;
  4054. padding:2px 10px 2px 2px;
  4055. box-sizing:border-box;
  4056. width:100%;
  4057. }
  4058. #u31700_div.disabled {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:414px;
  4064. height:31px;
  4065. background:inherit;
  4066. background-color:rgba(240, 240, 240, 1);
  4067. border:none;
  4068. border-radius:0px;
  4069. -moz-box-shadow:none;
  4070. -webkit-box-shadow:none;
  4071. box-shadow:none;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. color:#333333;
  4076. }
  4077. #u31700.disabled {
  4078. }
  4079. #u31701 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:0px;
  4085. height:0px;
  4086. }
  4087. #u31702_div {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:520px;
  4093. height:40px;
  4094. background:inherit;
  4095. background-color:rgba(255, 255, 255, 1);
  4096. box-sizing:border-box;
  4097. border-width:1px;
  4098. border-style:solid;
  4099. border-color:rgba(170, 170, 170, 1);
  4100. border-radius:4px;
  4101. -moz-box-shadow:none;
  4102. -webkit-box-shadow:none;
  4103. box-shadow:none;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. text-align:right;
  4108. }
  4109. #u31702 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:1700px;
  4113. top:683px;
  4114. width:520px;
  4115. height:40px;
  4116. display:flex;
  4117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. text-align:right;
  4121. }
  4122. #u31702 .text {
  4123. position:absolute;
  4124. align-self:center;
  4125. padding:2px 10px 2px 10px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u31702_text {
  4130. border-width:0px;
  4131. word-wrap:break-word;
  4132. text-transform:none;
  4133. visibility:hidden;
  4134. }
  4135. #u31703_input {
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:414px;
  4140. height:31px;
  4141. padding:2px 10px 2px 2px;
  4142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4143. font-weight:400;
  4144. font-style:normal;
  4145. font-size:13px;
  4146. letter-spacing:normal;
  4147. color:#333333;
  4148. vertical-align:none;
  4149. text-align:left;
  4150. text-transform:none;
  4151. background-color:transparent;
  4152. border-color:transparent;
  4153. }
  4154. #u31703_input.disabled {
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:414px;
  4159. height:31px;
  4160. padding:2px 10px 2px 2px;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:13px;
  4165. letter-spacing:normal;
  4166. color:#333333;
  4167. vertical-align:none;
  4168. text-align:left;
  4169. text-transform:none;
  4170. background-color:transparent;
  4171. border-color:transparent;
  4172. }
  4173. #u31703_div {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:0px;
  4178. width:414px;
  4179. height:31px;
  4180. background:inherit;
  4181. background-color:rgba(255, 255, 255, 0);
  4182. border:none;
  4183. border-radius:0px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. color:#333333;
  4191. }
  4192. #u31703 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:1707px;
  4196. top:688px;
  4197. width:414px;
  4198. height:31px;
  4199. display:flex;
  4200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4201. font-weight:400;
  4202. font-style:normal;
  4203. color:#333333;
  4204. }
  4205. #u31703 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:2px 10px 2px 2px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u31703_div.disabled {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:414px;
  4218. height:31px;
  4219. background:inherit;
  4220. background-color:rgba(240, 240, 240, 1);
  4221. border:none;
  4222. border-radius:0px;
  4223. -moz-box-shadow:none;
  4224. -webkit-box-shadow:none;
  4225. box-shadow:none;
  4226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. color:#333333;
  4230. }
  4231. #u31703.disabled {
  4232. }
  4233. #u31704_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:74px;
  4239. height:40px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 0);
  4242. border:none;
  4243. border-top:0px;
  4244. border-right:0px;
  4245. border-bottom:0px;
  4246. border-radius:0px;
  4247. border-top-left-radius:0px;
  4248. border-bottom-left-radius:0px;
  4249. -moz-box-shadow:none;
  4250. -webkit-box-shadow:none;
  4251. box-shadow:none;
  4252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:14px;
  4256. }
  4257. #u31704 {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:1700px;
  4261. top:723px;
  4262. width:74px;
  4263. height:40px;
  4264. display:flex;
  4265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:14px;
  4269. }
  4270. #u31704 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:5px 10px 5px 0px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u31704_text {
  4278. border-width:0px;
  4279. white-space:nowrap;
  4280. text-transform:none;
  4281. }
  4282. #u31705_div {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:102px;
  4288. height:40px;
  4289. background:inherit;
  4290. background-color:rgba(255, 255, 255, 0);
  4291. border:none;
  4292. border-top:0px;
  4293. border-right:0px;
  4294. border-bottom:0px;
  4295. border-radius:0px;
  4296. border-top-left-radius:0px;
  4297. border-bottom-left-radius:0px;
  4298. -moz-box-shadow:none;
  4299. -webkit-box-shadow:none;
  4300. box-shadow:none;
  4301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4302. font-weight:400;
  4303. font-style:normal;
  4304. font-size:14px;
  4305. }
  4306. #u31705 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:1700px;
  4310. top:803px;
  4311. width:102px;
  4312. height:40px;
  4313. display:flex;
  4314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4315. font-weight:400;
  4316. font-style:normal;
  4317. font-size:14px;
  4318. }
  4319. #u31705 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:5px 10px 5px 0px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u31705_text {
  4327. border-width:0px;
  4328. white-space:nowrap;
  4329. text-transform:none;
  4330. }
  4331. #u31706 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:0px;
  4337. height:0px;
  4338. }
  4339. #u31707_div {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:93px;
  4345. height:40px;
  4346. background:inherit;
  4347. background-color:rgba(255, 255, 255, 1);
  4348. box-sizing:border-box;
  4349. border-width:1px;
  4350. border-style:solid;
  4351. border-color:rgba(170, 170, 170, 1);
  4352. border-radius:4px;
  4353. -moz-box-shadow:none;
  4354. -webkit-box-shadow:none;
  4355. box-shadow:none;
  4356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. }
  4360. #u31707 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:1700px;
  4364. top:763px;
  4365. width:93px;
  4366. height:40px;
  4367. display:flex;
  4368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4369. font-weight:400;
  4370. font-style:normal;
  4371. }
  4372. #u31707 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 10px 2px 10px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u31707_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. }
  4384. #u31708 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:0px;
  4390. height:0px;
  4391. }
  4392. #u31709_div {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:0px;
  4397. width:520px;
  4398. height:40px;
  4399. background:inherit;
  4400. background-color:rgba(255, 255, 255, 1);
  4401. box-sizing:border-box;
  4402. border-width:1px;
  4403. border-style:solid;
  4404. border-color:rgba(170, 170, 170, 1);
  4405. border-radius:4px;
  4406. -moz-box-shadow:none;
  4407. -webkit-box-shadow:none;
  4408. box-shadow:none;
  4409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. text-align:right;
  4413. }
  4414. #u31709 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:1700px;
  4418. top:843px;
  4419. width:520px;
  4420. height:40px;
  4421. display:flex;
  4422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. text-align:right;
  4426. }
  4427. #u31709 .text {
  4428. position:absolute;
  4429. align-self:center;
  4430. padding:2px 10px 2px 10px;
  4431. box-sizing:border-box;
  4432. width:100%;
  4433. }
  4434. #u31709_text {
  4435. border-width:0px;
  4436. word-wrap:break-word;
  4437. text-transform:none;
  4438. visibility:hidden;
  4439. }
  4440. #u31710_input {
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:414px;
  4445. height:31px;
  4446. padding:2px 10px 2px 2px;
  4447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4448. font-weight:400;
  4449. font-style:normal;
  4450. font-size:13px;
  4451. letter-spacing:normal;
  4452. color:#333333;
  4453. vertical-align:none;
  4454. text-align:left;
  4455. text-transform:none;
  4456. background-color:transparent;
  4457. border-color:transparent;
  4458. }
  4459. #u31710_input.disabled {
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:414px;
  4464. height:31px;
  4465. padding:2px 10px 2px 2px;
  4466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. font-size:13px;
  4470. letter-spacing:normal;
  4471. color:#333333;
  4472. vertical-align:none;
  4473. text-align:left;
  4474. text-transform:none;
  4475. background-color:transparent;
  4476. border-color:transparent;
  4477. }
  4478. #u31710_div {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:0px;
  4482. top:0px;
  4483. width:414px;
  4484. height:31px;
  4485. background:inherit;
  4486. background-color:rgba(255, 255, 255, 0);
  4487. border:none;
  4488. border-radius:0px;
  4489. -moz-box-shadow:none;
  4490. -webkit-box-shadow:none;
  4491. box-shadow:none;
  4492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4493. font-weight:400;
  4494. font-style:normal;
  4495. color:#333333;
  4496. }
  4497. #u31710 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:1707px;
  4501. top:848px;
  4502. width:414px;
  4503. height:31px;
  4504. display:flex;
  4505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4506. font-weight:400;
  4507. font-style:normal;
  4508. color:#333333;
  4509. }
  4510. #u31710 .text {
  4511. position:absolute;
  4512. align-self:center;
  4513. padding:2px 10px 2px 2px;
  4514. box-sizing:border-box;
  4515. width:100%;
  4516. }
  4517. #u31710_div.disabled {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:414px;
  4523. height:31px;
  4524. background:inherit;
  4525. background-color:rgba(240, 240, 240, 1);
  4526. border:none;
  4527. border-radius:0px;
  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. color:#333333;
  4535. }
  4536. #u31710.disabled {
  4537. }
  4538. #u31711 {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:0px;
  4544. height:0px;
  4545. }
  4546. #u31712_img {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:50px;
  4552. height:31px;
  4553. }
  4554. #u31712 {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:1700px;
  4558. top:297px;
  4559. width:50px;
  4560. height:31px;
  4561. display:flex;
  4562. }
  4563. #u31712 .text {
  4564. position:absolute;
  4565. align-self:center;
  4566. padding:2px 2px 2px 2px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u31712_text {
  4571. border-width:0px;
  4572. word-wrap:break-word;
  4573. text-transform:none;
  4574. visibility:hidden;
  4575. }
  4576. #u31713_div {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:95px;
  4582. height:40px;
  4583. background:inherit;
  4584. background-color:rgba(255, 255, 255, 0);
  4585. border:none;
  4586. border-top:0px;
  4587. border-right:0px;
  4588. border-bottom:0px;
  4589. border-radius:0px;
  4590. border-top-left-radius:0px;
  4591. border-bottom-left-radius:0px;
  4592. -moz-box-shadow:none;
  4593. -webkit-box-shadow:none;
  4594. box-shadow:none;
  4595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:14px;
  4599. }
  4600. #u31713 {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:1758px;
  4604. top:293px;
  4605. width:95px;
  4606. height:40px;
  4607. display:flex;
  4608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4609. font-weight:400;
  4610. font-style:normal;
  4611. font-size:14px;
  4612. }
  4613. #u31713 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:5px 10px 5px 0px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u31713_text {
  4621. border-width:0px;
  4622. white-space:nowrap;
  4623. text-transform:none;
  4624. }
  4625. #u31714 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:0px;
  4631. height:0px;
  4632. }
  4633. #u31715 {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:0px;
  4637. top:0px;
  4638. width:0px;
  4639. height:0px;
  4640. }
  4641. #u31716_div {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:630px;
  4647. height:1196px;
  4648. background:inherit;
  4649. background-color:rgba(255, 255, 255, 1);
  4650. box-sizing:border-box;
  4651. border-width:1px;
  4652. border-style:solid;
  4653. border-color:rgba(215, 215, 215, 1);
  4654. border-radius:0px;
  4655. -moz-box-shadow:none;
  4656. -webkit-box-shadow:none;
  4657. box-shadow:none;
  4658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. font-size:14px;
  4662. color:#AAAAAA;
  4663. text-align:center;
  4664. line-height:30px;
  4665. }
  4666. #u31716 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:2313px;
  4670. top:47px;
  4671. width:630px;
  4672. height:1196px;
  4673. display:flex;
  4674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:14px;
  4678. color:#AAAAAA;
  4679. text-align:center;
  4680. line-height:30px;
  4681. }
  4682. #u31716 .text {
  4683. position:absolute;
  4684. align-self:center;
  4685. padding:5px 10px 5px 10px;
  4686. box-sizing:border-box;
  4687. width:100%;
  4688. }
  4689. #u31716_text {
  4690. border-width:0px;
  4691. word-wrap:break-word;
  4692. text-transform:none;
  4693. visibility:hidden;
  4694. }
  4695. #u31717_div {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:83px;
  4701. height:35px;
  4702. background:inherit;
  4703. background-color:rgba(255, 255, 255, 0);
  4704. border:none;
  4705. border-top:0px;
  4706. border-right:0px;
  4707. border-bottom:0px;
  4708. border-radius:0px;
  4709. border-top-left-radius:0px;
  4710. border-bottom-left-radius:0px;
  4711. -moz-box-shadow:none;
  4712. -webkit-box-shadow:none;
  4713. box-shadow:none;
  4714. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4715. font-weight:500;
  4716. font-style:normal;
  4717. font-size:18px;
  4718. }
  4719. #u31717 {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:2333px;
  4723. top:65px;
  4724. width:83px;
  4725. height:35px;
  4726. display:flex;
  4727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4728. font-weight:500;
  4729. font-style:normal;
  4730. font-size:18px;
  4731. }
  4732. #u31717 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:5px 10px 5px 0px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u31717_text {
  4740. border-width:0px;
  4741. white-space:nowrap;
  4742. text-transform:none;
  4743. }
  4744. #u31718_div {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:0px;
  4749. width:40px;
  4750. height:40px;
  4751. background:inherit;
  4752. background-color:rgba(255, 255, 255, 0);
  4753. border:none;
  4754. border-top:0px;
  4755. border-right:0px;
  4756. border-bottom:0px;
  4757. border-radius:0px;
  4758. border-top-left-radius:0px;
  4759. border-bottom-left-radius:0px;
  4760. -moz-box-shadow:none;
  4761. -webkit-box-shadow:none;
  4762. box-shadow:none;
  4763. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4764. font-weight:500;
  4765. font-style:normal;
  4766. font-size:18px;
  4767. text-align:center;
  4768. }
  4769. #u31718 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:2903px;
  4773. top:47px;
  4774. width:40px;
  4775. height:40px;
  4776. display:flex;
  4777. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4778. font-weight:500;
  4779. font-style:normal;
  4780. font-size:18px;
  4781. text-align:center;
  4782. }
  4783. #u31718 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:5px 10px 5px 0px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u31718_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. }
  4795. #u31719_img {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:13px;
  4801. height:13px;
  4802. }
  4803. #u31719 {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:2891px;
  4807. top:63px;
  4808. width:13px;
  4809. height:13px;
  4810. display:flex;
  4811. }
  4812. #u31719 .text {
  4813. position:absolute;
  4814. align-self:center;
  4815. padding:2px 2px 2px 2px;
  4816. box-sizing:border-box;
  4817. width:100%;
  4818. }
  4819. #u31719_text {
  4820. border-width:0px;
  4821. word-wrap:break-word;
  4822. text-transform:none;
  4823. visibility:hidden;
  4824. }
  4825. #u31720 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:0px;
  4831. height:0px;
  4832. }
  4833. #u31721_div {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:630px;
  4839. height:50px;
  4840. background:inherit;
  4841. background-color:rgba(255, 255, 255, 1);
  4842. box-sizing:border-box;
  4843. border-width:1px;
  4844. border-style:solid;
  4845. border-color:rgba(215, 215, 215, 1);
  4846. border-radius:0px;
  4847. -moz-box-shadow:none;
  4848. -webkit-box-shadow:none;
  4849. box-shadow:none;
  4850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. font-size:14px;
  4854. color:#AAAAAA;
  4855. text-align:center;
  4856. line-height:30px;
  4857. }
  4858. #u31721 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:2313px;
  4862. top:1193px;
  4863. width:630px;
  4864. height:50px;
  4865. display:flex;
  4866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:14px;
  4870. color:#AAAAAA;
  4871. text-align:center;
  4872. line-height:30px;
  4873. }
  4874. #u31721 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:5px 10px 5px 10px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u31721_text {
  4882. border-width:0px;
  4883. word-wrap:break-word;
  4884. text-transform:none;
  4885. visibility:hidden;
  4886. }
  4887. #u31722_div {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:0px;
  4891. top:0px;
  4892. width:80px;
  4893. height:30px;
  4894. background:inherit;
  4895. background-color:rgba(24, 144, 255, 1);
  4896. border:none;
  4897. border-radius:4px;
  4898. -moz-box-shadow:none;
  4899. -webkit-box-shadow:none;
  4900. box-shadow:none;
  4901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4902. font-weight:400;
  4903. font-style:normal;
  4904. font-size:14px;
  4905. color:#FFFFFF;
  4906. }
  4907. #u31722 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:2841px;
  4911. top:1203px;
  4912. width:80px;
  4913. height:30px;
  4914. display:flex;
  4915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4916. font-weight:400;
  4917. font-style:normal;
  4918. font-size:14px;
  4919. color:#FFFFFF;
  4920. }
  4921. #u31722 .text {
  4922. position:absolute;
  4923. align-self:center;
  4924. padding:2px 2px 2px 2px;
  4925. box-sizing:border-box;
  4926. width:100%;
  4927. }
  4928. #u31722_text {
  4929. border-width:0px;
  4930. word-wrap:break-word;
  4931. text-transform:none;
  4932. }
  4933. #u31723_div {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:80px;
  4939. height:30px;
  4940. background:inherit;
  4941. background-color:rgba(255, 255, 255, 1);
  4942. box-sizing:border-box;
  4943. border-width:1px;
  4944. border-style:solid;
  4945. border-color:rgba(121, 121, 121, 1);
  4946. border-radius:4px;
  4947. -moz-box-shadow:none;
  4948. -webkit-box-shadow:none;
  4949. box-shadow:none;
  4950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4951. font-weight:400;
  4952. font-style:normal;
  4953. font-size:14px;
  4954. }
  4955. #u31723 {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:2751px;
  4959. top:1203px;
  4960. width:80px;
  4961. height:30px;
  4962. display:flex;
  4963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:14px;
  4967. }
  4968. #u31723 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 2px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u31723_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. }
  4980. #u31724 {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:0px;
  4986. height:0px;
  4987. }
  4988. #u31725_div {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:520px;
  4994. height:40px;
  4995. background:inherit;
  4996. background-color:rgba(255, 255, 255, 1);
  4997. box-sizing:border-box;
  4998. border-width:1px;
  4999. border-style:solid;
  5000. border-color:rgba(170, 170, 170, 1);
  5001. border-radius:4px;
  5002. -moz-box-shadow:none;
  5003. -webkit-box-shadow:none;
  5004. box-shadow:none;
  5005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. text-align:right;
  5009. }
  5010. #u31725 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:2363px;
  5014. top:158px;
  5015. width:520px;
  5016. height:40px;
  5017. display:flex;
  5018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5019. font-weight:400;
  5020. font-style:normal;
  5021. text-align:right;
  5022. }
  5023. #u31725 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:2px 10px 2px 10px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u31725_text {
  5031. border-width:0px;
  5032. word-wrap:break-word;
  5033. text-transform:none;
  5034. visibility:hidden;
  5035. }
  5036. #u31726_input {
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:501px;
  5041. height:30px;
  5042. padding:2px 2px 2px 2px;
  5043. font-family:'ArialMT', 'Arial', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:13px;
  5047. letter-spacing:normal;
  5048. color:#000000;
  5049. vertical-align:none;
  5050. text-align:left;
  5051. text-transform:none;
  5052. background-color:transparent;
  5053. border-color:transparent;
  5054. }
  5055. #u31726_input.disabled {
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:501px;
  5060. height:30px;
  5061. padding:2px 2px 2px 2px;
  5062. font-family:'ArialMT', 'Arial', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:13px;
  5066. letter-spacing:normal;
  5067. color:#000000;
  5068. vertical-align:none;
  5069. text-align:left;
  5070. text-transform:none;
  5071. background-color:transparent;
  5072. border-color:transparent;
  5073. }
  5074. #u31726_div {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:501px;
  5080. height:30px;
  5081. background:inherit;
  5082. background-color:rgba(255, 255, 255, 1);
  5083. border:none;
  5084. border-radius:0px;
  5085. -moz-box-shadow:none;
  5086. -webkit-box-shadow:none;
  5087. box-shadow:none;
  5088. }
  5089. #u31726 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:2370px;
  5093. top:163px;
  5094. width:501px;
  5095. height:30px;
  5096. display:flex;
  5097. }
  5098. #u31726 .text {
  5099. position:absolute;
  5100. align-self:flex-start;
  5101. padding:2px 2px 2px 2px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u31726_div.disabled {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:501px;
  5111. height:30px;
  5112. background:inherit;
  5113. background-color:rgba(240, 240, 240, 1);
  5114. border:none;
  5115. border-radius:0px;
  5116. -moz-box-shadow:none;
  5117. -webkit-box-shadow:none;
  5118. box-shadow:none;
  5119. }
  5120. #u31726.disabled {
  5121. }
  5122. .u31726_input_option {
  5123. }
  5124. #u31727_div {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:74px;
  5130. height:40px;
  5131. background:inherit;
  5132. background-color:rgba(255, 255, 255, 0);
  5133. border:none;
  5134. border-top:0px;
  5135. border-right:0px;
  5136. border-bottom:0px;
  5137. border-radius:0px;
  5138. border-top-left-radius:0px;
  5139. border-bottom-left-radius:0px;
  5140. -moz-box-shadow:none;
  5141. -webkit-box-shadow:none;
  5142. box-shadow:none;
  5143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5144. font-weight:400;
  5145. font-style:normal;
  5146. font-size:14px;
  5147. }
  5148. #u31727 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:2363px;
  5152. top:118px;
  5153. width:74px;
  5154. height:40px;
  5155. display:flex;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:14px;
  5160. }
  5161. #u31727 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:5px 10px 5px 0px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u31727_text {
  5169. border-width:0px;
  5170. white-space:nowrap;
  5171. text-transform:none;
  5172. }
  5173. #u31728 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:0px;
  5179. height:0px;
  5180. }
  5181. #u31729_div {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:520px;
  5187. height:40px;
  5188. background:inherit;
  5189. background-color:rgba(255, 255, 255, 1);
  5190. box-sizing:border-box;
  5191. border-width:1px;
  5192. border-style:solid;
  5193. border-color:rgba(170, 170, 170, 1);
  5194. border-radius:4px;
  5195. -moz-box-shadow:none;
  5196. -webkit-box-shadow:none;
  5197. box-shadow:none;
  5198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5199. font-weight:400;
  5200. font-style:normal;
  5201. text-align:right;
  5202. }
  5203. #u31729 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:2363px;
  5207. top:238px;
  5208. width:520px;
  5209. height:40px;
  5210. display:flex;
  5211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5212. font-weight:400;
  5213. font-style:normal;
  5214. text-align:right;
  5215. }
  5216. #u31729 .text {
  5217. position:absolute;
  5218. align-self:center;
  5219. padding:2px 10px 2px 10px;
  5220. box-sizing:border-box;
  5221. width:100%;
  5222. }
  5223. #u31729_text {
  5224. border-width:0px;
  5225. word-wrap:break-word;
  5226. text-transform:none;
  5227. visibility:hidden;
  5228. }
  5229. #u31730_input {
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:501px;
  5234. height:30px;
  5235. padding:2px 2px 2px 2px;
  5236. font-family:'ArialMT', 'Arial', sans-serif;
  5237. font-weight:400;
  5238. font-style:normal;
  5239. font-size:13px;
  5240. letter-spacing:normal;
  5241. color:#000000;
  5242. vertical-align:none;
  5243. text-align:left;
  5244. text-transform:none;
  5245. background-color:transparent;
  5246. border-color:transparent;
  5247. }
  5248. #u31730_input.disabled {
  5249. position:absolute;
  5250. left:0px;
  5251. top:0px;
  5252. width:501px;
  5253. height:30px;
  5254. padding:2px 2px 2px 2px;
  5255. font-family:'ArialMT', 'Arial', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. font-size:13px;
  5259. letter-spacing:normal;
  5260. color:#000000;
  5261. vertical-align:none;
  5262. text-align:left;
  5263. text-transform:none;
  5264. background-color:transparent;
  5265. border-color:transparent;
  5266. }
  5267. #u31730_div {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:501px;
  5273. height:30px;
  5274. background:inherit;
  5275. background-color:rgba(255, 255, 255, 1);
  5276. border:none;
  5277. border-radius:0px;
  5278. -moz-box-shadow:none;
  5279. -webkit-box-shadow:none;
  5280. box-shadow:none;
  5281. }
  5282. #u31730 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:2372px;
  5286. top:243px;
  5287. width:501px;
  5288. height:30px;
  5289. display:flex;
  5290. }
  5291. #u31730 .text {
  5292. position:absolute;
  5293. align-self:flex-start;
  5294. padding:2px 2px 2px 2px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u31730_div.disabled {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:501px;
  5304. height:30px;
  5305. background:inherit;
  5306. background-color:rgba(240, 240, 240, 1);
  5307. border:none;
  5308. border-radius:0px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. }
  5313. #u31730.disabled {
  5314. }
  5315. .u31730_input_option {
  5316. }
  5317. #u31731_div {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:74px;
  5323. height:40px;
  5324. background:inherit;
  5325. background-color:rgba(255, 255, 255, 0);
  5326. border:none;
  5327. border-top:0px;
  5328. border-right:0px;
  5329. border-bottom:0px;
  5330. border-radius:0px;
  5331. border-top-left-radius:0px;
  5332. border-bottom-left-radius:0px;
  5333. -moz-box-shadow:none;
  5334. -webkit-box-shadow:none;
  5335. box-shadow:none;
  5336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5337. font-weight:400;
  5338. font-style:normal;
  5339. font-size:14px;
  5340. }
  5341. #u31731 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:2363px;
  5345. top:198px;
  5346. width:74px;
  5347. height:40px;
  5348. display:flex;
  5349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:14px;
  5353. }
  5354. #u31731 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:5px 10px 5px 0px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u31731_text {
  5362. border-width:0px;
  5363. white-space:nowrap;
  5364. text-transform:none;
  5365. }
  5366. #u31732 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:0px;
  5370. top:0px;
  5371. width:0px;
  5372. height:0px;
  5373. }
  5374. #u31733_div {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:520px;
  5380. height:40px;
  5381. background:inherit;
  5382. background-color:rgba(255, 255, 255, 1);
  5383. box-sizing:border-box;
  5384. border-width:1px;
  5385. border-style:solid;
  5386. border-color:rgba(170, 170, 170, 1);
  5387. border-radius:4px;
  5388. -moz-box-shadow:none;
  5389. -webkit-box-shadow:none;
  5390. box-shadow:none;
  5391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. text-align:right;
  5395. }
  5396. #u31733 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:2363px;
  5400. top:443px;
  5401. width:520px;
  5402. height:40px;
  5403. display:flex;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. text-align:right;
  5408. }
  5409. #u31733 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 10px 2px 10px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u31733_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. visibility:hidden;
  5421. }
  5422. #u31734_input {
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:414px;
  5427. height:31px;
  5428. padding:2px 10px 2px 2px;
  5429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5430. font-weight:400;
  5431. font-style:normal;
  5432. font-size:13px;
  5433. letter-spacing:normal;
  5434. color:#333333;
  5435. vertical-align:none;
  5436. text-align:left;
  5437. text-transform:none;
  5438. background-color:transparent;
  5439. border-color:transparent;
  5440. }
  5441. #u31734_input.disabled {
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:414px;
  5446. height:31px;
  5447. padding:2px 10px 2px 2px;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:13px;
  5452. letter-spacing:normal;
  5453. color:#333333;
  5454. vertical-align:none;
  5455. text-align:left;
  5456. text-transform:none;
  5457. background-color:transparent;
  5458. border-color:transparent;
  5459. }
  5460. #u31734_div {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:414px;
  5466. height:31px;
  5467. background:inherit;
  5468. background-color:rgba(255, 255, 255, 0);
  5469. border:none;
  5470. border-radius:0px;
  5471. -moz-box-shadow:none;
  5472. -webkit-box-shadow:none;
  5473. box-shadow:none;
  5474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. color:#333333;
  5478. }
  5479. #u31734 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:2370px;
  5483. top:448px;
  5484. width:414px;
  5485. height:31px;
  5486. display:flex;
  5487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. color:#333333;
  5491. }
  5492. #u31734 .text {
  5493. position:absolute;
  5494. align-self:center;
  5495. padding:2px 10px 2px 2px;
  5496. box-sizing:border-box;
  5497. width:100%;
  5498. }
  5499. #u31734_div.disabled {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:414px;
  5505. height:31px;
  5506. background:inherit;
  5507. background-color:rgba(240, 240, 240, 1);
  5508. border:none;
  5509. border-radius:0px;
  5510. -moz-box-shadow:none;
  5511. -webkit-box-shadow:none;
  5512. box-shadow:none;
  5513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. color:#333333;
  5517. }
  5518. #u31734.disabled {
  5519. }
  5520. #u31735_div {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:60px;
  5526. height:40px;
  5527. background:inherit;
  5528. background-color:rgba(255, 255, 255, 0);
  5529. border:none;
  5530. border-top:0px;
  5531. border-right:0px;
  5532. border-bottom:0px;
  5533. border-radius:0px;
  5534. border-top-left-radius:0px;
  5535. border-bottom-left-radius:0px;
  5536. -moz-box-shadow:none;
  5537. -webkit-box-shadow:none;
  5538. box-shadow:none;
  5539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:14px;
  5543. }
  5544. #u31735 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:2363px;
  5548. top:403px;
  5549. width:60px;
  5550. height:40px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:14px;
  5556. }
  5557. #u31735 .text {
  5558. position:absolute;
  5559. align-self:center;
  5560. padding:5px 10px 5px 0px;
  5561. box-sizing:border-box;
  5562. width:100%;
  5563. }
  5564. #u31735_text {
  5565. border-width:0px;
  5566. white-space:nowrap;
  5567. text-transform:none;
  5568. }
  5569. #u31736 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:0px;
  5575. height:0px;
  5576. }
  5577. #u31737_div {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:520px;
  5583. height:40px;
  5584. background:inherit;
  5585. background-color:rgba(255, 255, 255, 1);
  5586. box-sizing:border-box;
  5587. border-width:1px;
  5588. border-style:solid;
  5589. border-color:rgba(170, 170, 170, 1);
  5590. border-radius:4px;
  5591. -moz-box-shadow:none;
  5592. -webkit-box-shadow:none;
  5593. box-shadow:none;
  5594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. text-align:right;
  5598. }
  5599. #u31737 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:2363px;
  5603. top:603px;
  5604. width:520px;
  5605. height:40px;
  5606. display:flex;
  5607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. text-align:right;
  5611. }
  5612. #u31737 .text {
  5613. position:absolute;
  5614. align-self:center;
  5615. padding:2px 10px 2px 10px;
  5616. box-sizing:border-box;
  5617. width:100%;
  5618. }
  5619. #u31737_text {
  5620. border-width:0px;
  5621. word-wrap:break-word;
  5622. text-transform:none;
  5623. visibility:hidden;
  5624. }
  5625. #u31738_input {
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:414px;
  5630. height:31px;
  5631. padding:2px 10px 2px 2px;
  5632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:13px;
  5636. letter-spacing:normal;
  5637. color:#333333;
  5638. vertical-align:none;
  5639. text-align:left;
  5640. text-transform:none;
  5641. background-color:transparent;
  5642. border-color:transparent;
  5643. }
  5644. #u31738_input.disabled {
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:414px;
  5649. height:31px;
  5650. padding:2px 10px 2px 2px;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:13px;
  5655. letter-spacing:normal;
  5656. color:#333333;
  5657. vertical-align:none;
  5658. text-align:left;
  5659. text-transform:none;
  5660. background-color:transparent;
  5661. border-color:transparent;
  5662. }
  5663. #u31738_div {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:414px;
  5669. height:31px;
  5670. background:inherit;
  5671. background-color:rgba(255, 255, 255, 0);
  5672. border:none;
  5673. border-radius:0px;
  5674. -moz-box-shadow:none;
  5675. -webkit-box-shadow:none;
  5676. box-shadow:none;
  5677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. color:#333333;
  5681. }
  5682. #u31738 {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:2370px;
  5686. top:608px;
  5687. width:414px;
  5688. height:31px;
  5689. display:flex;
  5690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. color:#333333;
  5694. }
  5695. #u31738 .text {
  5696. position:absolute;
  5697. align-self:center;
  5698. padding:2px 10px 2px 2px;
  5699. box-sizing:border-box;
  5700. width:100%;
  5701. }
  5702. #u31738_div.disabled {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:414px;
  5708. height:31px;
  5709. background:inherit;
  5710. background-color:rgba(240, 240, 240, 1);
  5711. border:none;
  5712. border-radius:0px;
  5713. -moz-box-shadow:none;
  5714. -webkit-box-shadow:none;
  5715. box-shadow:none;
  5716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5717. font-weight:400;
  5718. font-style:normal;
  5719. color:#333333;
  5720. }
  5721. #u31738.disabled {
  5722. }
  5723. #u31739_div {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:59px;
  5729. height:40px;
  5730. background:inherit;
  5731. background-color:rgba(255, 255, 255, 0);
  5732. border:none;
  5733. border-top:0px;
  5734. border-right:0px;
  5735. border-bottom:0px;
  5736. border-radius:0px;
  5737. border-top-left-radius:0px;
  5738. border-bottom-left-radius:0px;
  5739. -moz-box-shadow:none;
  5740. -webkit-box-shadow:none;
  5741. box-shadow:none;
  5742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5743. font-weight:400;
  5744. font-style:normal;
  5745. font-size:14px;
  5746. }
  5747. #u31739 {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:2363px;
  5751. top:563px;
  5752. width:59px;
  5753. height:40px;
  5754. display:flex;
  5755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5756. font-weight:400;
  5757. font-style:normal;
  5758. font-size:14px;
  5759. }
  5760. #u31739 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:5px 10px 5px 0px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u31739_text {
  5768. border-width:0px;
  5769. white-space:nowrap;
  5770. text-transform:none;
  5771. }
  5772. #u31740 {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:0px;
  5778. height:0px;
  5779. }
  5780. #u31741_div {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:520px;
  5786. height:40px;
  5787. background:inherit;
  5788. background-color:rgba(255, 255, 255, 1);
  5789. box-sizing:border-box;
  5790. border-width:1px;
  5791. border-style:solid;
  5792. border-color:rgba(170, 170, 170, 1);
  5793. border-radius:4px;
  5794. -moz-box-shadow:none;
  5795. -webkit-box-shadow:none;
  5796. box-shadow:none;
  5797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5798. font-weight:400;
  5799. font-style:normal;
  5800. text-align:right;
  5801. }
  5802. #u31741 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:2363px;
  5806. top:683px;
  5807. width:520px;
  5808. height:40px;
  5809. display:flex;
  5810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. text-align:right;
  5814. }
  5815. #u31741 .text {
  5816. position:absolute;
  5817. align-self:center;
  5818. padding:2px 10px 2px 10px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u31741_text {
  5823. border-width:0px;
  5824. word-wrap:break-word;
  5825. text-transform:none;
  5826. visibility:hidden;
  5827. }
  5828. #u31742_input {
  5829. position:absolute;
  5830. left:0px;
  5831. top:0px;
  5832. width:414px;
  5833. height:31px;
  5834. padding:2px 10px 2px 2px;
  5835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5836. font-weight:400;
  5837. font-style:normal;
  5838. font-size:13px;
  5839. letter-spacing:normal;
  5840. color:#333333;
  5841. vertical-align:none;
  5842. text-align:left;
  5843. text-transform:none;
  5844. background-color:transparent;
  5845. border-color:transparent;
  5846. }
  5847. #u31742_input.disabled {
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:414px;
  5852. height:31px;
  5853. padding:2px 10px 2px 2px;
  5854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5855. font-weight:400;
  5856. font-style:normal;
  5857. font-size:13px;
  5858. letter-spacing:normal;
  5859. color:#333333;
  5860. vertical-align:none;
  5861. text-align:left;
  5862. text-transform:none;
  5863. background-color:transparent;
  5864. border-color:transparent;
  5865. }
  5866. #u31742_div {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:414px;
  5872. height:31px;
  5873. background:inherit;
  5874. background-color:rgba(255, 255, 255, 0);
  5875. border:none;
  5876. border-radius:0px;
  5877. -moz-box-shadow:none;
  5878. -webkit-box-shadow:none;
  5879. box-shadow:none;
  5880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5881. font-weight:400;
  5882. font-style:normal;
  5883. color:#333333;
  5884. }
  5885. #u31742 {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:2370px;
  5889. top:688px;
  5890. width:414px;
  5891. height:31px;
  5892. display:flex;
  5893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5894. font-weight:400;
  5895. font-style:normal;
  5896. color:#333333;
  5897. }
  5898. #u31742 .text {
  5899. position:absolute;
  5900. align-self:center;
  5901. padding:2px 10px 2px 2px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u31742_div.disabled {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:414px;
  5911. height:31px;
  5912. background:inherit;
  5913. background-color:rgba(240, 240, 240, 1);
  5914. border:none;
  5915. border-radius:0px;
  5916. -moz-box-shadow:none;
  5917. -webkit-box-shadow:none;
  5918. box-shadow:none;
  5919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5920. font-weight:400;
  5921. font-style:normal;
  5922. color:#333333;
  5923. }
  5924. #u31742.disabled {
  5925. }
  5926. #u31743_div {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:74px;
  5932. height:40px;
  5933. background:inherit;
  5934. background-color:rgba(255, 255, 255, 0);
  5935. border:none;
  5936. border-top:0px;
  5937. border-right:0px;
  5938. border-bottom:0px;
  5939. border-radius:0px;
  5940. border-top-left-radius:0px;
  5941. border-bottom-left-radius:0px;
  5942. -moz-box-shadow:none;
  5943. -webkit-box-shadow:none;
  5944. box-shadow:none;
  5945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:14px;
  5949. }
  5950. #u31743 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:2363px;
  5954. top:643px;
  5955. width:74px;
  5956. height:40px;
  5957. display:flex;
  5958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:14px;
  5962. }
  5963. #u31743 .text {
  5964. position:absolute;
  5965. align-self:center;
  5966. padding:5px 10px 5px 0px;
  5967. box-sizing:border-box;
  5968. width:100%;
  5969. }
  5970. #u31743_text {
  5971. border-width:0px;
  5972. white-space:nowrap;
  5973. text-transform:none;
  5974. }
  5975. #u31744 {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:0px;
  5979. top:0px;
  5980. width:0px;
  5981. height:0px;
  5982. }
  5983. #u31745_div {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:520px;
  5989. height:40px;
  5990. background:inherit;
  5991. background-color:rgba(255, 255, 255, 1);
  5992. box-sizing:border-box;
  5993. border-width:1px;
  5994. border-style:solid;
  5995. border-color:rgba(170, 170, 170, 1);
  5996. border-radius:4px;
  5997. -moz-box-shadow:none;
  5998. -webkit-box-shadow:none;
  5999. box-shadow:none;
  6000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. text-align:right;
  6004. }
  6005. #u31745 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:2363px;
  6009. top:523px;
  6010. width:520px;
  6011. height:40px;
  6012. display:flex;
  6013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. text-align:right;
  6017. }
  6018. #u31745 .text {
  6019. position:absolute;
  6020. align-self:center;
  6021. padding:2px 10px 2px 10px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u31745_text {
  6026. border-width:0px;
  6027. word-wrap:break-word;
  6028. text-transform:none;
  6029. visibility:hidden;
  6030. }
  6031. #u31746_input {
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:414px;
  6036. height:31px;
  6037. padding:2px 10px 2px 2px;
  6038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:13px;
  6042. letter-spacing:normal;
  6043. color:#333333;
  6044. vertical-align:none;
  6045. text-align:left;
  6046. text-transform:none;
  6047. background-color:transparent;
  6048. border-color:transparent;
  6049. }
  6050. #u31746_input.disabled {
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:414px;
  6055. height:31px;
  6056. padding:2px 10px 2px 2px;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:13px;
  6061. letter-spacing:normal;
  6062. color:#333333;
  6063. vertical-align:none;
  6064. text-align:left;
  6065. text-transform:none;
  6066. background-color:transparent;
  6067. border-color:transparent;
  6068. }
  6069. #u31746_div {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:414px;
  6075. height:31px;
  6076. background:inherit;
  6077. background-color:rgba(255, 255, 255, 0);
  6078. border:none;
  6079. border-radius:0px;
  6080. -moz-box-shadow:none;
  6081. -webkit-box-shadow:none;
  6082. box-shadow:none;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. color:#333333;
  6087. }
  6088. #u31746 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:2370px;
  6092. top:528px;
  6093. width:414px;
  6094. height:31px;
  6095. display:flex;
  6096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. color:#333333;
  6100. }
  6101. #u31746 .text {
  6102. position:absolute;
  6103. align-self:center;
  6104. padding:2px 10px 2px 2px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u31746_div.disabled {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:414px;
  6114. height:31px;
  6115. background:inherit;
  6116. background-color:rgba(240, 240, 240, 1);
  6117. border:none;
  6118. border-radius:0px;
  6119. -moz-box-shadow:none;
  6120. -webkit-box-shadow:none;
  6121. box-shadow:none;
  6122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6123. font-weight:400;
  6124. font-style:normal;
  6125. color:#333333;
  6126. }
  6127. #u31746.disabled {
  6128. }
  6129. #u31747_div {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:0px;
  6133. top:0px;
  6134. width:74px;
  6135. height:40px;
  6136. background:inherit;
  6137. background-color:rgba(255, 255, 255, 0);
  6138. border:none;
  6139. border-top:0px;
  6140. border-right:0px;
  6141. border-bottom:0px;
  6142. border-radius:0px;
  6143. border-top-left-radius:0px;
  6144. border-bottom-left-radius:0px;
  6145. -moz-box-shadow:none;
  6146. -webkit-box-shadow:none;
  6147. box-shadow:none;
  6148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6149. font-weight:400;
  6150. font-style:normal;
  6151. font-size:14px;
  6152. }
  6153. #u31747 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:2363px;
  6157. top:483px;
  6158. width:74px;
  6159. height:40px;
  6160. display:flex;
  6161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:14px;
  6165. }
  6166. #u31747 .text {
  6167. position:absolute;
  6168. align-self:center;
  6169. padding:5px 10px 5px 0px;
  6170. box-sizing:border-box;
  6171. width:100%;
  6172. }
  6173. #u31747_text {
  6174. border-width:0px;
  6175. white-space:nowrap;
  6176. text-transform:none;
  6177. }
  6178. #u31748 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:0px;
  6184. height:0px;
  6185. }
  6186. #u31749_div {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:67px;
  6192. height:30px;
  6193. background:inherit;
  6194. background-color:rgba(255, 255, 255, 0);
  6195. border:none;
  6196. border-top:0px;
  6197. border-right:0px;
  6198. border-bottom:0px;
  6199. border-radius:0px;
  6200. border-top-left-radius:0px;
  6201. border-bottom-left-radius:0px;
  6202. -moz-box-shadow:none;
  6203. -webkit-box-shadow:none;
  6204. box-shadow:none;
  6205. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6206. font-weight:500;
  6207. font-style:normal;
  6208. font-size:14px;
  6209. }
  6210. #u31749 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:2363px;
  6214. top:363px;
  6215. width:67px;
  6216. height:30px;
  6217. display:flex;
  6218. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6219. font-weight:500;
  6220. font-style:normal;
  6221. font-size:14px;
  6222. }
  6223. #u31749 .text {
  6224. position:absolute;
  6225. align-self:center;
  6226. padding:5px 10px 5px 0px;
  6227. box-sizing:border-box;
  6228. width:100%;
  6229. }
  6230. #u31749_text {
  6231. border-width:0px;
  6232. white-space:nowrap;
  6233. text-transform:none;
  6234. }
  6235. #u31750_img {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:12px;
  6241. height:12px;
  6242. }
  6243. #u31750 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:2430px;
  6247. top:372px;
  6248. width:12px;
  6249. height:12px;
  6250. display:flex;
  6251. }
  6252. #u31750 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:2px 2px 2px 2px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u31750_text {
  6260. border-width:0px;
  6261. word-wrap:break-word;
  6262. text-transform:none;
  6263. visibility:hidden;
  6264. }
  6265. #u31751 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:0px;
  6271. height:0px;
  6272. }
  6273. #u31752_img {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:50px;
  6279. height:31px;
  6280. }
  6281. #u31752 {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:2363px;
  6285. top:297px;
  6286. width:50px;
  6287. height:31px;
  6288. display:flex;
  6289. }
  6290. #u31752 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:2px 2px 2px 2px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u31752_text {
  6298. border-width:0px;
  6299. word-wrap:break-word;
  6300. text-transform:none;
  6301. visibility:hidden;
  6302. }
  6303. #u31753_div {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:95px;
  6309. height:40px;
  6310. background:inherit;
  6311. background-color:rgba(255, 255, 255, 0);
  6312. border:none;
  6313. border-top:0px;
  6314. border-right:0px;
  6315. border-bottom:0px;
  6316. border-radius:0px;
  6317. border-top-left-radius:0px;
  6318. border-bottom-left-radius:0px;
  6319. -moz-box-shadow:none;
  6320. -webkit-box-shadow:none;
  6321. box-shadow:none;
  6322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:14px;
  6326. }
  6327. #u31753 {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:2421px;
  6331. top:293px;
  6332. width:95px;
  6333. height:40px;
  6334. display:flex;
  6335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:14px;
  6339. }
  6340. #u31753 .text {
  6341. position:absolute;
  6342. align-self:center;
  6343. padding:5px 10px 5px 0px;
  6344. box-sizing:border-box;
  6345. width:100%;
  6346. }
  6347. #u31753_text {
  6348. border-width:0px;
  6349. white-space:nowrap;
  6350. text-transform:none;
  6351. }
  6352. #u31754 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:0px;
  6356. top:0px;
  6357. width:0px;
  6358. height:0px;
  6359. }
  6360. #u31755 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:0px;
  6364. top:0px;
  6365. width:0px;
  6366. height:0px;
  6367. }
  6368. #u31756_div {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:630px;
  6374. height:1196px;
  6375. background:inherit;
  6376. background-color:rgba(255, 255, 255, 1);
  6377. box-sizing:border-box;
  6378. border-width:1px;
  6379. border-style:solid;
  6380. border-color:rgba(215, 215, 215, 1);
  6381. border-radius:0px;
  6382. -moz-box-shadow:none;
  6383. -webkit-box-shadow:none;
  6384. box-shadow:none;
  6385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:14px;
  6389. color:#AAAAAA;
  6390. text-align:center;
  6391. line-height:30px;
  6392. }
  6393. #u31756 {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:2966px;
  6397. top:47px;
  6398. width:630px;
  6399. height:1196px;
  6400. display:flex;
  6401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:14px;
  6405. color:#AAAAAA;
  6406. text-align:center;
  6407. line-height:30px;
  6408. }
  6409. #u31756 .text {
  6410. position:absolute;
  6411. align-self:center;
  6412. padding:5px 10px 5px 10px;
  6413. box-sizing:border-box;
  6414. width:100%;
  6415. }
  6416. #u31756_text {
  6417. border-width:0px;
  6418. word-wrap:break-word;
  6419. text-transform:none;
  6420. visibility:hidden;
  6421. }
  6422. #u31757_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:83px;
  6428. height:35px;
  6429. background:inherit;
  6430. background-color:rgba(255, 255, 255, 0);
  6431. border:none;
  6432. border-top:0px;
  6433. border-right:0px;
  6434. border-bottom:0px;
  6435. border-radius:0px;
  6436. border-top-left-radius:0px;
  6437. border-bottom-left-radius:0px;
  6438. -moz-box-shadow:none;
  6439. -webkit-box-shadow:none;
  6440. box-shadow:none;
  6441. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6442. font-weight:500;
  6443. font-style:normal;
  6444. font-size:18px;
  6445. }
  6446. #u31757 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:2986px;
  6450. top:65px;
  6451. width:83px;
  6452. height:35px;
  6453. display:flex;
  6454. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6455. font-weight:500;
  6456. font-style:normal;
  6457. font-size:18px;
  6458. }
  6459. #u31757 .text {
  6460. position:absolute;
  6461. align-self:center;
  6462. padding:5px 10px 5px 0px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u31757_text {
  6467. border-width:0px;
  6468. white-space:nowrap;
  6469. text-transform:none;
  6470. }
  6471. #u31758_div {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:40px;
  6477. height:40px;
  6478. background:inherit;
  6479. background-color:rgba(255, 255, 255, 0);
  6480. border:none;
  6481. border-top:0px;
  6482. border-right:0px;
  6483. border-bottom:0px;
  6484. border-radius:0px;
  6485. border-top-left-radius:0px;
  6486. border-bottom-left-radius:0px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6491. font-weight:500;
  6492. font-style:normal;
  6493. font-size:18px;
  6494. text-align:center;
  6495. }
  6496. #u31758 {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:3556px;
  6500. top:47px;
  6501. width:40px;
  6502. height:40px;
  6503. display:flex;
  6504. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6505. font-weight:500;
  6506. font-style:normal;
  6507. font-size:18px;
  6508. text-align:center;
  6509. }
  6510. #u31758 .text {
  6511. position:absolute;
  6512. align-self:center;
  6513. padding:5px 10px 5px 0px;
  6514. box-sizing:border-box;
  6515. width:100%;
  6516. }
  6517. #u31758_text {
  6518. border-width:0px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. }
  6522. #u31759_img {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:13px;
  6528. height:13px;
  6529. }
  6530. #u31759 {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:3544px;
  6534. top:63px;
  6535. width:13px;
  6536. height:13px;
  6537. display:flex;
  6538. }
  6539. #u31759 .text {
  6540. position:absolute;
  6541. align-self:center;
  6542. padding:2px 2px 2px 2px;
  6543. box-sizing:border-box;
  6544. width:100%;
  6545. }
  6546. #u31759_text {
  6547. border-width:0px;
  6548. word-wrap:break-word;
  6549. text-transform:none;
  6550. visibility:hidden;
  6551. }
  6552. #u31760 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:0px;
  6558. height:0px;
  6559. }
  6560. #u31761_div {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:630px;
  6566. height:50px;
  6567. background:inherit;
  6568. background-color:rgba(255, 255, 255, 1);
  6569. box-sizing:border-box;
  6570. border-width:1px;
  6571. border-style:solid;
  6572. border-color:rgba(215, 215, 215, 1);
  6573. border-radius:0px;
  6574. -moz-box-shadow:none;
  6575. -webkit-box-shadow:none;
  6576. box-shadow:none;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:14px;
  6581. color:#AAAAAA;
  6582. text-align:center;
  6583. line-height:30px;
  6584. }
  6585. #u31761 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:2966px;
  6589. top:1193px;
  6590. width:630px;
  6591. height:50px;
  6592. display:flex;
  6593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6594. font-weight:400;
  6595. font-style:normal;
  6596. font-size:14px;
  6597. color:#AAAAAA;
  6598. text-align:center;
  6599. line-height:30px;
  6600. }
  6601. #u31761 .text {
  6602. position:absolute;
  6603. align-self:center;
  6604. padding:5px 10px 5px 10px;
  6605. box-sizing:border-box;
  6606. width:100%;
  6607. }
  6608. #u31761_text {
  6609. border-width:0px;
  6610. word-wrap:break-word;
  6611. text-transform:none;
  6612. visibility:hidden;
  6613. }
  6614. #u31762_div {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:80px;
  6620. height:30px;
  6621. background:inherit;
  6622. background-color:rgba(24, 144, 255, 1);
  6623. border:none;
  6624. border-radius:4px;
  6625. -moz-box-shadow:none;
  6626. -webkit-box-shadow:none;
  6627. box-shadow:none;
  6628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. font-size:14px;
  6632. color:#FFFFFF;
  6633. }
  6634. #u31762 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:3494px;
  6638. top:1203px;
  6639. width:80px;
  6640. height:30px;
  6641. display:flex;
  6642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. font-size:14px;
  6646. color:#FFFFFF;
  6647. }
  6648. #u31762 .text {
  6649. position:absolute;
  6650. align-self:center;
  6651. padding:2px 2px 2px 2px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u31762_text {
  6656. border-width:0px;
  6657. word-wrap:break-word;
  6658. text-transform:none;
  6659. }
  6660. #u31763_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:80px;
  6666. height:30px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 1);
  6669. box-sizing:border-box;
  6670. border-width:1px;
  6671. border-style:solid;
  6672. border-color:rgba(121, 121, 121, 1);
  6673. border-radius:4px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:14px;
  6681. }
  6682. #u31763 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:3404px;
  6686. top:1203px;
  6687. width:80px;
  6688. height:30px;
  6689. display:flex;
  6690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. font-size:14px;
  6694. }
  6695. #u31763 .text {
  6696. position:absolute;
  6697. align-self:center;
  6698. padding:2px 2px 2px 2px;
  6699. box-sizing:border-box;
  6700. width:100%;
  6701. }
  6702. #u31763_text {
  6703. border-width:0px;
  6704. word-wrap:break-word;
  6705. text-transform:none;
  6706. }
  6707. #u31764 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:0px;
  6712. width:0px;
  6713. height:0px;
  6714. }
  6715. #u31765_div {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:520px;
  6721. height:40px;
  6722. background:inherit;
  6723. background-color:rgba(255, 255, 255, 1);
  6724. box-sizing:border-box;
  6725. border-width:1px;
  6726. border-style:solid;
  6727. border-color:rgba(170, 170, 170, 1);
  6728. border-radius:4px;
  6729. -moz-box-shadow:none;
  6730. -webkit-box-shadow:none;
  6731. box-shadow:none;
  6732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. text-align:right;
  6736. }
  6737. #u31765 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:3016px;
  6741. top:158px;
  6742. width:520px;
  6743. height:40px;
  6744. display:flex;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. text-align:right;
  6749. }
  6750. #u31765 .text {
  6751. position:absolute;
  6752. align-self:center;
  6753. padding:2px 10px 2px 10px;
  6754. box-sizing:border-box;
  6755. width:100%;
  6756. }
  6757. #u31765_text {
  6758. border-width:0px;
  6759. word-wrap:break-word;
  6760. text-transform:none;
  6761. visibility:hidden;
  6762. }
  6763. #u31766_input {
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:501px;
  6768. height:30px;
  6769. padding:2px 2px 2px 2px;
  6770. font-family:'ArialMT', 'Arial', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:13px;
  6774. letter-spacing:normal;
  6775. color:#000000;
  6776. vertical-align:none;
  6777. text-align:left;
  6778. text-transform:none;
  6779. background-color:transparent;
  6780. border-color:transparent;
  6781. }
  6782. #u31766_input.disabled {
  6783. position:absolute;
  6784. left:0px;
  6785. top:0px;
  6786. width:501px;
  6787. height:30px;
  6788. padding:2px 2px 2px 2px;
  6789. font-family:'ArialMT', 'Arial', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:13px;
  6793. letter-spacing:normal;
  6794. color:#000000;
  6795. vertical-align:none;
  6796. text-align:left;
  6797. text-transform:none;
  6798. background-color:transparent;
  6799. border-color:transparent;
  6800. }
  6801. #u31766_div {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:501px;
  6807. height:30px;
  6808. background:inherit;
  6809. background-color:rgba(255, 255, 255, 1);
  6810. border:none;
  6811. border-radius:0px;
  6812. -moz-box-shadow:none;
  6813. -webkit-box-shadow:none;
  6814. box-shadow:none;
  6815. }
  6816. #u31766 {
  6817. border-width:0px;
  6818. position:absolute;
  6819. left:3023px;
  6820. top:163px;
  6821. width:501px;
  6822. height:30px;
  6823. display:flex;
  6824. }
  6825. #u31766 .text {
  6826. position:absolute;
  6827. align-self:flex-start;
  6828. padding:2px 2px 2px 2px;
  6829. box-sizing:border-box;
  6830. width:100%;
  6831. }
  6832. #u31766_div.disabled {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:501px;
  6838. height:30px;
  6839. background:inherit;
  6840. background-color:rgba(240, 240, 240, 1);
  6841. border:none;
  6842. border-radius:0px;
  6843. -moz-box-shadow:none;
  6844. -webkit-box-shadow:none;
  6845. box-shadow:none;
  6846. }
  6847. #u31766.disabled {
  6848. }
  6849. .u31766_input_option {
  6850. }
  6851. #u31767_div {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:0px;
  6855. top:0px;
  6856. width:74px;
  6857. height:40px;
  6858. background:inherit;
  6859. background-color:rgba(255, 255, 255, 0);
  6860. border:none;
  6861. border-top:0px;
  6862. border-right:0px;
  6863. border-bottom:0px;
  6864. border-radius:0px;
  6865. border-top-left-radius:0px;
  6866. border-bottom-left-radius:0px;
  6867. -moz-box-shadow:none;
  6868. -webkit-box-shadow:none;
  6869. box-shadow:none;
  6870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6871. font-weight:400;
  6872. font-style:normal;
  6873. font-size:14px;
  6874. }
  6875. #u31767 {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:3016px;
  6879. top:118px;
  6880. width:74px;
  6881. height:40px;
  6882. display:flex;
  6883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6884. font-weight:400;
  6885. font-style:normal;
  6886. font-size:14px;
  6887. }
  6888. #u31767 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:5px 10px 5px 0px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u31767_text {
  6896. border-width:0px;
  6897. white-space:nowrap;
  6898. text-transform:none;
  6899. }
  6900. #u31768 {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:0px;
  6906. height:0px;
  6907. }
  6908. #u31769_div {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:520px;
  6914. height:40px;
  6915. background:inherit;
  6916. background-color:rgba(255, 255, 255, 1);
  6917. box-sizing:border-box;
  6918. border-width:1px;
  6919. border-style:solid;
  6920. border-color:rgba(170, 170, 170, 1);
  6921. border-radius:4px;
  6922. -moz-box-shadow:none;
  6923. -webkit-box-shadow:none;
  6924. box-shadow:none;
  6925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6926. font-weight:400;
  6927. font-style:normal;
  6928. text-align:right;
  6929. }
  6930. #u31769 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:3016px;
  6934. top:238px;
  6935. width:520px;
  6936. height:40px;
  6937. display:flex;
  6938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6939. font-weight:400;
  6940. font-style:normal;
  6941. text-align:right;
  6942. }
  6943. #u31769 .text {
  6944. position:absolute;
  6945. align-self:center;
  6946. padding:2px 10px 2px 10px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u31769_text {
  6951. border-width:0px;
  6952. word-wrap:break-word;
  6953. text-transform:none;
  6954. visibility:hidden;
  6955. }
  6956. #u31770_input {
  6957. position:absolute;
  6958. left:0px;
  6959. top:0px;
  6960. width:501px;
  6961. height:30px;
  6962. padding:2px 2px 2px 2px;
  6963. font-family:'ArialMT', 'Arial', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. font-size:13px;
  6967. letter-spacing:normal;
  6968. color:#000000;
  6969. vertical-align:none;
  6970. text-align:left;
  6971. text-transform:none;
  6972. background-color:transparent;
  6973. border-color:transparent;
  6974. }
  6975. #u31770_input.disabled {
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:501px;
  6980. height:30px;
  6981. padding:2px 2px 2px 2px;
  6982. font-family:'ArialMT', 'Arial', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:13px;
  6986. letter-spacing:normal;
  6987. color:#000000;
  6988. vertical-align:none;
  6989. text-align:left;
  6990. text-transform:none;
  6991. background-color:transparent;
  6992. border-color:transparent;
  6993. }
  6994. #u31770_div {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:0px;
  6998. top:0px;
  6999. width:501px;
  7000. height:30px;
  7001. background:inherit;
  7002. background-color:rgba(255, 255, 255, 1);
  7003. border:none;
  7004. border-radius:0px;
  7005. -moz-box-shadow:none;
  7006. -webkit-box-shadow:none;
  7007. box-shadow:none;
  7008. }
  7009. #u31770 {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:3025px;
  7013. top:243px;
  7014. width:501px;
  7015. height:30px;
  7016. display:flex;
  7017. }
  7018. #u31770 .text {
  7019. position:absolute;
  7020. align-self:flex-start;
  7021. padding:2px 2px 2px 2px;
  7022. box-sizing:border-box;
  7023. width:100%;
  7024. }
  7025. #u31770_div.disabled {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:0px;
  7029. top:0px;
  7030. width:501px;
  7031. height:30px;
  7032. background:inherit;
  7033. background-color:rgba(240, 240, 240, 1);
  7034. border:none;
  7035. border-radius:0px;
  7036. -moz-box-shadow:none;
  7037. -webkit-box-shadow:none;
  7038. box-shadow:none;
  7039. }
  7040. #u31770.disabled {
  7041. }
  7042. .u31770_input_option {
  7043. }
  7044. #u31771_div {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:74px;
  7050. height:40px;
  7051. background:inherit;
  7052. background-color:rgba(255, 255, 255, 0);
  7053. border:none;
  7054. border-top:0px;
  7055. border-right:0px;
  7056. border-bottom:0px;
  7057. border-radius:0px;
  7058. border-top-left-radius:0px;
  7059. border-bottom-left-radius:0px;
  7060. -moz-box-shadow:none;
  7061. -webkit-box-shadow:none;
  7062. box-shadow:none;
  7063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7064. font-weight:400;
  7065. font-style:normal;
  7066. font-size:14px;
  7067. }
  7068. #u31771 {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:3016px;
  7072. top:198px;
  7073. width:74px;
  7074. height:40px;
  7075. display:flex;
  7076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7077. font-weight:400;
  7078. font-style:normal;
  7079. font-size:14px;
  7080. }
  7081. #u31771 .text {
  7082. position:absolute;
  7083. align-self:center;
  7084. padding:5px 10px 5px 0px;
  7085. box-sizing:border-box;
  7086. width:100%;
  7087. }
  7088. #u31771_text {
  7089. border-width:0px;
  7090. white-space:nowrap;
  7091. text-transform:none;
  7092. }
  7093. #u31772 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:0px;
  7099. height:0px;
  7100. }
  7101. #u31773_div {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:0px;
  7105. top:0px;
  7106. width:520px;
  7107. height:40px;
  7108. background:inherit;
  7109. background-color:rgba(255, 255, 255, 1);
  7110. box-sizing:border-box;
  7111. border-width:1px;
  7112. border-style:solid;
  7113. border-color:rgba(170, 170, 170, 1);
  7114. border-radius:4px;
  7115. -moz-box-shadow:none;
  7116. -webkit-box-shadow:none;
  7117. box-shadow:none;
  7118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. text-align:right;
  7122. }
  7123. #u31773 {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:3016px;
  7127. top:443px;
  7128. width:520px;
  7129. height:40px;
  7130. display:flex;
  7131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7132. font-weight:400;
  7133. font-style:normal;
  7134. text-align:right;
  7135. }
  7136. #u31773 .text {
  7137. position:absolute;
  7138. align-self:center;
  7139. padding:2px 10px 2px 10px;
  7140. box-sizing:border-box;
  7141. width:100%;
  7142. }
  7143. #u31773_text {
  7144. border-width:0px;
  7145. word-wrap:break-word;
  7146. text-transform:none;
  7147. visibility:hidden;
  7148. }
  7149. #u31774_input {
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:414px;
  7154. height:31px;
  7155. padding:2px 10px 2px 2px;
  7156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7157. font-weight:400;
  7158. font-style:normal;
  7159. font-size:13px;
  7160. letter-spacing:normal;
  7161. color:#333333;
  7162. vertical-align:none;
  7163. text-align:left;
  7164. text-transform:none;
  7165. background-color:transparent;
  7166. border-color:transparent;
  7167. }
  7168. #u31774_input.disabled {
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:414px;
  7173. height:31px;
  7174. padding:2px 10px 2px 2px;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:13px;
  7179. letter-spacing:normal;
  7180. color:#333333;
  7181. vertical-align:none;
  7182. text-align:left;
  7183. text-transform:none;
  7184. background-color:transparent;
  7185. border-color:transparent;
  7186. }
  7187. #u31774_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:414px;
  7193. height:31px;
  7194. background:inherit;
  7195. background-color:rgba(255, 255, 255, 0);
  7196. border:none;
  7197. border-radius:0px;
  7198. -moz-box-shadow:none;
  7199. -webkit-box-shadow:none;
  7200. box-shadow:none;
  7201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. color:#333333;
  7205. }
  7206. #u31774 {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:3023px;
  7210. top:448px;
  7211. width:414px;
  7212. height:31px;
  7213. display:flex;
  7214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. color:#333333;
  7218. }
  7219. #u31774 .text {
  7220. position:absolute;
  7221. align-self:center;
  7222. padding:2px 10px 2px 2px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u31774_div.disabled {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:414px;
  7232. height:31px;
  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-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7241. font-weight:400;
  7242. font-style:normal;
  7243. color:#333333;
  7244. }
  7245. #u31774.disabled {
  7246. }
  7247. #u31775_div {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:60px;
  7253. height:40px;
  7254. background:inherit;
  7255. background-color:rgba(255, 255, 255, 0);
  7256. border:none;
  7257. border-top:0px;
  7258. border-right:0px;
  7259. border-bottom:0px;
  7260. border-radius:0px;
  7261. border-top-left-radius:0px;
  7262. border-bottom-left-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:14px;
  7270. }
  7271. #u31775 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:3016px;
  7275. top:403px;
  7276. width:60px;
  7277. height:40px;
  7278. display:flex;
  7279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7280. font-weight:400;
  7281. font-style:normal;
  7282. font-size:14px;
  7283. }
  7284. #u31775 .text {
  7285. position:absolute;
  7286. align-self:center;
  7287. padding:5px 10px 5px 0px;
  7288. box-sizing:border-box;
  7289. width:100%;
  7290. }
  7291. #u31775_text {
  7292. border-width:0px;
  7293. white-space:nowrap;
  7294. text-transform:none;
  7295. }
  7296. #u31776 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:0px;
  7302. height:0px;
  7303. }
  7304. #u31777_div {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:0px;
  7308. top:0px;
  7309. width:520px;
  7310. height:40px;
  7311. background:inherit;
  7312. background-color:rgba(255, 255, 255, 1);
  7313. box-sizing:border-box;
  7314. border-width:1px;
  7315. border-style:solid;
  7316. border-color:rgba(170, 170, 170, 1);
  7317. border-radius:4px;
  7318. -moz-box-shadow:none;
  7319. -webkit-box-shadow:none;
  7320. box-shadow:none;
  7321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7322. font-weight:400;
  7323. font-style:normal;
  7324. text-align:right;
  7325. }
  7326. #u31777 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:3016px;
  7330. top:603px;
  7331. width:520px;
  7332. height:40px;
  7333. display:flex;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. text-align:right;
  7338. }
  7339. #u31777 .text {
  7340. position:absolute;
  7341. align-self:center;
  7342. padding:2px 10px 2px 10px;
  7343. box-sizing:border-box;
  7344. width:100%;
  7345. }
  7346. #u31777_text {
  7347. border-width:0px;
  7348. word-wrap:break-word;
  7349. text-transform:none;
  7350. visibility:hidden;
  7351. }
  7352. #u31778_input {
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:414px;
  7357. height:31px;
  7358. padding:2px 10px 2px 2px;
  7359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7360. font-weight:400;
  7361. font-style:normal;
  7362. font-size:13px;
  7363. letter-spacing:normal;
  7364. color:#333333;
  7365. vertical-align:none;
  7366. text-align:left;
  7367. text-transform:none;
  7368. background-color:transparent;
  7369. border-color:transparent;
  7370. }
  7371. #u31778_input.disabled {
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:414px;
  7376. height:31px;
  7377. padding:2px 10px 2px 2px;
  7378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7379. font-weight:400;
  7380. font-style:normal;
  7381. font-size:13px;
  7382. letter-spacing:normal;
  7383. color:#333333;
  7384. vertical-align:none;
  7385. text-align:left;
  7386. text-transform:none;
  7387. background-color:transparent;
  7388. border-color:transparent;
  7389. }
  7390. #u31778_div {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:414px;
  7396. height:31px;
  7397. background:inherit;
  7398. background-color:rgba(255, 255, 255, 0);
  7399. border:none;
  7400. border-radius:0px;
  7401. -moz-box-shadow:none;
  7402. -webkit-box-shadow:none;
  7403. box-shadow:none;
  7404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. color:#333333;
  7408. }
  7409. #u31778 {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:3023px;
  7413. top:608px;
  7414. width:414px;
  7415. height:31px;
  7416. display:flex;
  7417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7418. font-weight:400;
  7419. font-style:normal;
  7420. color:#333333;
  7421. }
  7422. #u31778 .text {
  7423. position:absolute;
  7424. align-self:center;
  7425. padding:2px 10px 2px 2px;
  7426. box-sizing:border-box;
  7427. width:100%;
  7428. }
  7429. #u31778_div.disabled {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:0px;
  7433. top:0px;
  7434. width:414px;
  7435. height:31px;
  7436. background:inherit;
  7437. background-color:rgba(240, 240, 240, 1);
  7438. border:none;
  7439. border-radius:0px;
  7440. -moz-box-shadow:none;
  7441. -webkit-box-shadow:none;
  7442. box-shadow:none;
  7443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7444. font-weight:400;
  7445. font-style:normal;
  7446. color:#333333;
  7447. }
  7448. #u31778.disabled {
  7449. }
  7450. #u31779_div {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:0px;
  7454. top:0px;
  7455. width:59px;
  7456. height:40px;
  7457. background:inherit;
  7458. background-color:rgba(255, 255, 255, 0);
  7459. border:none;
  7460. border-top:0px;
  7461. border-right:0px;
  7462. border-bottom:0px;
  7463. border-radius:0px;
  7464. border-top-left-radius:0px;
  7465. border-bottom-left-radius:0px;
  7466. -moz-box-shadow:none;
  7467. -webkit-box-shadow:none;
  7468. box-shadow:none;
  7469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7470. font-weight:400;
  7471. font-style:normal;
  7472. font-size:14px;
  7473. }
  7474. #u31779 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:3016px;
  7478. top:563px;
  7479. width:59px;
  7480. height:40px;
  7481. display:flex;
  7482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7483. font-weight:400;
  7484. font-style:normal;
  7485. font-size:14px;
  7486. }
  7487. #u31779 .text {
  7488. position:absolute;
  7489. align-self:center;
  7490. padding:5px 10px 5px 0px;
  7491. box-sizing:border-box;
  7492. width:100%;
  7493. }
  7494. #u31779_text {
  7495. border-width:0px;
  7496. white-space:nowrap;
  7497. text-transform:none;
  7498. }
  7499. #u31780 {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:0px;
  7503. top:0px;
  7504. width:0px;
  7505. height:0px;
  7506. }
  7507. #u31781_div {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:0px;
  7511. top:0px;
  7512. width:520px;
  7513. height:40px;
  7514. background:inherit;
  7515. background-color:rgba(255, 255, 255, 1);
  7516. box-sizing:border-box;
  7517. border-width:1px;
  7518. border-style:solid;
  7519. border-color:rgba(170, 170, 170, 1);
  7520. border-radius:4px;
  7521. -moz-box-shadow:none;
  7522. -webkit-box-shadow:none;
  7523. box-shadow:none;
  7524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7525. font-weight:400;
  7526. font-style:normal;
  7527. text-align:right;
  7528. }
  7529. #u31781 {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:3016px;
  7533. top:683px;
  7534. width:520px;
  7535. height:40px;
  7536. display:flex;
  7537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7538. font-weight:400;
  7539. font-style:normal;
  7540. text-align:right;
  7541. }
  7542. #u31781 .text {
  7543. position:absolute;
  7544. align-self:center;
  7545. padding:2px 10px 2px 10px;
  7546. box-sizing:border-box;
  7547. width:100%;
  7548. }
  7549. #u31781_text {
  7550. border-width:0px;
  7551. word-wrap:break-word;
  7552. text-transform:none;
  7553. visibility:hidden;
  7554. }
  7555. #u31782_input {
  7556. position:absolute;
  7557. left:0px;
  7558. top:0px;
  7559. width:414px;
  7560. height:31px;
  7561. padding:2px 10px 2px 2px;
  7562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7563. font-weight:400;
  7564. font-style:normal;
  7565. font-size:13px;
  7566. letter-spacing:normal;
  7567. color:#333333;
  7568. vertical-align:none;
  7569. text-align:left;
  7570. text-transform:none;
  7571. background-color:transparent;
  7572. border-color:transparent;
  7573. }
  7574. #u31782_input.disabled {
  7575. position:absolute;
  7576. left:0px;
  7577. top:0px;
  7578. width:414px;
  7579. height:31px;
  7580. padding:2px 10px 2px 2px;
  7581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:13px;
  7585. letter-spacing:normal;
  7586. color:#333333;
  7587. vertical-align:none;
  7588. text-align:left;
  7589. text-transform:none;
  7590. background-color:transparent;
  7591. border-color:transparent;
  7592. }
  7593. #u31782_div {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:0px;
  7597. top:0px;
  7598. width:414px;
  7599. height:31px;
  7600. background:inherit;
  7601. background-color:rgba(255, 255, 255, 0);
  7602. border:none;
  7603. border-radius:0px;
  7604. -moz-box-shadow:none;
  7605. -webkit-box-shadow:none;
  7606. box-shadow:none;
  7607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7608. font-weight:400;
  7609. font-style:normal;
  7610. color:#333333;
  7611. }
  7612. #u31782 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:3023px;
  7616. top:688px;
  7617. width:414px;
  7618. height:31px;
  7619. display:flex;
  7620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. color:#333333;
  7624. }
  7625. #u31782 .text {
  7626. position:absolute;
  7627. align-self:center;
  7628. padding:2px 10px 2px 2px;
  7629. box-sizing:border-box;
  7630. width:100%;
  7631. }
  7632. #u31782_div.disabled {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:414px;
  7638. height:31px;
  7639. background:inherit;
  7640. background-color:rgba(240, 240, 240, 1);
  7641. border:none;
  7642. border-radius:0px;
  7643. -moz-box-shadow:none;
  7644. -webkit-box-shadow:none;
  7645. box-shadow:none;
  7646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7647. font-weight:400;
  7648. font-style:normal;
  7649. color:#333333;
  7650. }
  7651. #u31782.disabled {
  7652. }
  7653. #u31783_div {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:0px;
  7657. top:0px;
  7658. width:74px;
  7659. height:40px;
  7660. background:inherit;
  7661. background-color:rgba(255, 255, 255, 0);
  7662. border:none;
  7663. border-top:0px;
  7664. border-right:0px;
  7665. border-bottom:0px;
  7666. border-radius:0px;
  7667. border-top-left-radius:0px;
  7668. border-bottom-left-radius:0px;
  7669. -moz-box-shadow:none;
  7670. -webkit-box-shadow:none;
  7671. box-shadow:none;
  7672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7673. font-weight:400;
  7674. font-style:normal;
  7675. font-size:14px;
  7676. }
  7677. #u31783 {
  7678. border-width:0px;
  7679. position:absolute;
  7680. left:3016px;
  7681. top:643px;
  7682. width:74px;
  7683. height:40px;
  7684. display:flex;
  7685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7686. font-weight:400;
  7687. font-style:normal;
  7688. font-size:14px;
  7689. }
  7690. #u31783 .text {
  7691. position:absolute;
  7692. align-self:center;
  7693. padding:5px 10px 5px 0px;
  7694. box-sizing:border-box;
  7695. width:100%;
  7696. }
  7697. #u31783_text {
  7698. border-width:0px;
  7699. white-space:nowrap;
  7700. text-transform:none;
  7701. }
  7702. #u31784 {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:0px;
  7708. height:0px;
  7709. }
  7710. #u31785_div {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:0px;
  7714. top:0px;
  7715. width:520px;
  7716. height:40px;
  7717. background:inherit;
  7718. background-color:rgba(255, 255, 255, 1);
  7719. box-sizing:border-box;
  7720. border-width:1px;
  7721. border-style:solid;
  7722. border-color:rgba(170, 170, 170, 1);
  7723. border-radius:4px;
  7724. -moz-box-shadow:none;
  7725. -webkit-box-shadow:none;
  7726. box-shadow:none;
  7727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7728. font-weight:400;
  7729. font-style:normal;
  7730. text-align:right;
  7731. }
  7732. #u31785 {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:3016px;
  7736. top:523px;
  7737. width:520px;
  7738. height:40px;
  7739. display:flex;
  7740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7741. font-weight:400;
  7742. font-style:normal;
  7743. text-align:right;
  7744. }
  7745. #u31785 .text {
  7746. position:absolute;
  7747. align-self:center;
  7748. padding:2px 10px 2px 10px;
  7749. box-sizing:border-box;
  7750. width:100%;
  7751. }
  7752. #u31785_text {
  7753. border-width:0px;
  7754. word-wrap:break-word;
  7755. text-transform:none;
  7756. visibility:hidden;
  7757. }
  7758. #u31786_input {
  7759. position:absolute;
  7760. left:0px;
  7761. top:0px;
  7762. width:414px;
  7763. height:31px;
  7764. padding:2px 10px 2px 2px;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:13px;
  7769. letter-spacing:normal;
  7770. color:#333333;
  7771. vertical-align:none;
  7772. text-align:left;
  7773. text-transform:none;
  7774. background-color:transparent;
  7775. border-color:transparent;
  7776. }
  7777. #u31786_input.disabled {
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:414px;
  7782. height:31px;
  7783. padding:2px 10px 2px 2px;
  7784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7785. font-weight:400;
  7786. font-style:normal;
  7787. font-size:13px;
  7788. letter-spacing:normal;
  7789. color:#333333;
  7790. vertical-align:none;
  7791. text-align:left;
  7792. text-transform:none;
  7793. background-color:transparent;
  7794. border-color:transparent;
  7795. }
  7796. #u31786_div {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:414px;
  7802. height:31px;
  7803. background:inherit;
  7804. background-color:rgba(255, 255, 255, 0);
  7805. border:none;
  7806. border-radius:0px;
  7807. -moz-box-shadow:none;
  7808. -webkit-box-shadow:none;
  7809. box-shadow:none;
  7810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7811. font-weight:400;
  7812. font-style:normal;
  7813. color:#333333;
  7814. }
  7815. #u31786 {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:3023px;
  7819. top:528px;
  7820. width:414px;
  7821. height:31px;
  7822. display:flex;
  7823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7824. font-weight:400;
  7825. font-style:normal;
  7826. color:#333333;
  7827. }
  7828. #u31786 .text {
  7829. position:absolute;
  7830. align-self:center;
  7831. padding:2px 10px 2px 2px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u31786_div.disabled {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:414px;
  7841. height:31px;
  7842. background:inherit;
  7843. background-color:rgba(240, 240, 240, 1);
  7844. border:none;
  7845. border-radius:0px;
  7846. -moz-box-shadow:none;
  7847. -webkit-box-shadow:none;
  7848. box-shadow:none;
  7849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7850. font-weight:400;
  7851. font-style:normal;
  7852. color:#333333;
  7853. }
  7854. #u31786.disabled {
  7855. }
  7856. #u31787_div {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:0px;
  7860. top:0px;
  7861. width:74px;
  7862. height:40px;
  7863. background:inherit;
  7864. background-color:rgba(255, 255, 255, 0);
  7865. border:none;
  7866. border-top:0px;
  7867. border-right:0px;
  7868. border-bottom:0px;
  7869. border-radius:0px;
  7870. border-top-left-radius:0px;
  7871. border-bottom-left-radius:0px;
  7872. -moz-box-shadow:none;
  7873. -webkit-box-shadow:none;
  7874. box-shadow:none;
  7875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7876. font-weight:400;
  7877. font-style:normal;
  7878. font-size:14px;
  7879. }
  7880. #u31787 {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:3016px;
  7884. top:483px;
  7885. width:74px;
  7886. height:40px;
  7887. display:flex;
  7888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7889. font-weight:400;
  7890. font-style:normal;
  7891. font-size:14px;
  7892. }
  7893. #u31787 .text {
  7894. position:absolute;
  7895. align-self:center;
  7896. padding:5px 10px 5px 0px;
  7897. box-sizing:border-box;
  7898. width:100%;
  7899. }
  7900. #u31787_text {
  7901. border-width:0px;
  7902. white-space:nowrap;
  7903. text-transform:none;
  7904. }
  7905. #u31788 {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:0px;
  7909. top:0px;
  7910. width:0px;
  7911. height:0px;
  7912. }
  7913. #u31789_div {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:67px;
  7919. height:30px;
  7920. background:inherit;
  7921. background-color:rgba(255, 255, 255, 0);
  7922. border:none;
  7923. border-top:0px;
  7924. border-right:0px;
  7925. border-bottom:0px;
  7926. border-radius:0px;
  7927. border-top-left-radius:0px;
  7928. border-bottom-left-radius:0px;
  7929. -moz-box-shadow:none;
  7930. -webkit-box-shadow:none;
  7931. box-shadow:none;
  7932. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7933. font-weight:500;
  7934. font-style:normal;
  7935. font-size:14px;
  7936. }
  7937. #u31789 {
  7938. border-width:0px;
  7939. position:absolute;
  7940. left:3016px;
  7941. top:363px;
  7942. width:67px;
  7943. height:30px;
  7944. display:flex;
  7945. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7946. font-weight:500;
  7947. font-style:normal;
  7948. font-size:14px;
  7949. }
  7950. #u31789 .text {
  7951. position:absolute;
  7952. align-self:center;
  7953. padding:5px 10px 5px 0px;
  7954. box-sizing:border-box;
  7955. width:100%;
  7956. }
  7957. #u31789_text {
  7958. border-width:0px;
  7959. white-space:nowrap;
  7960. text-transform:none;
  7961. }
  7962. #u31790_img {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:0px;
  7966. top:0px;
  7967. width:12px;
  7968. height:12px;
  7969. }
  7970. #u31790 {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:3083px;
  7974. top:372px;
  7975. width:12px;
  7976. height:12px;
  7977. display:flex;
  7978. }
  7979. #u31790 .text {
  7980. position:absolute;
  7981. align-self:center;
  7982. padding:2px 2px 2px 2px;
  7983. box-sizing:border-box;
  7984. width:100%;
  7985. }
  7986. #u31790_text {
  7987. border-width:0px;
  7988. word-wrap:break-word;
  7989. text-transform:none;
  7990. visibility:hidden;
  7991. }
  7992. #u31791_div {
  7993. border-width:0px;
  7994. position:absolute;
  7995. left:0px;
  7996. top:0px;
  7997. width:389px;
  7998. height:30px;
  7999. background:inherit;
  8000. background-color:rgba(255, 255, 255, 0);
  8001. border:none;
  8002. border-top:0px;
  8003. border-right:0px;
  8004. border-bottom:0px;
  8005. border-radius:0px;
  8006. border-top-left-radius:0px;
  8007. border-bottom-left-radius:0px;
  8008. -moz-box-shadow:none;
  8009. -webkit-box-shadow:none;
  8010. box-shadow:none;
  8011. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8012. font-weight:500;
  8013. font-style:normal;
  8014. font-size:14px;
  8015. color:#D9001B;
  8016. }
  8017. #u31791 {
  8018. border-width:0px;
  8019. position:absolute;
  8020. left:3016px;
  8021. top:763px;
  8022. width:389px;
  8023. height:30px;
  8024. display:flex;
  8025. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8026. font-weight:500;
  8027. font-style:normal;
  8028. font-size:14px;
  8029. color:#D9001B;
  8030. }
  8031. #u31791 .text {
  8032. position:absolute;
  8033. align-self:center;
  8034. padding:5px 10px 5px 0px;
  8035. box-sizing:border-box;
  8036. width:100%;
  8037. }
  8038. #u31791_text {
  8039. border-width:0px;
  8040. white-space:nowrap;
  8041. text-transform:none;
  8042. }
  8043. #u31792 {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:0px;
  8047. top:0px;
  8048. width:0px;
  8049. height:0px;
  8050. }
  8051. #u31793_img {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:0px;
  8055. top:0px;
  8056. width:50px;
  8057. height:31px;
  8058. }
  8059. #u31793 {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:3016px;
  8063. top:292px;
  8064. width:50px;
  8065. height:31px;
  8066. display:flex;
  8067. }
  8068. #u31793 .text {
  8069. position:absolute;
  8070. align-self:center;
  8071. padding:2px 2px 2px 2px;
  8072. box-sizing:border-box;
  8073. width:100%;
  8074. }
  8075. #u31793_text {
  8076. border-width:0px;
  8077. word-wrap:break-word;
  8078. text-transform:none;
  8079. visibility:hidden;
  8080. }
  8081. #u31794_div {
  8082. border-width:0px;
  8083. position:absolute;
  8084. left:0px;
  8085. top:0px;
  8086. width:95px;
  8087. height:40px;
  8088. background:inherit;
  8089. background-color:rgba(255, 255, 255, 0);
  8090. border:none;
  8091. border-top:0px;
  8092. border-right:0px;
  8093. border-bottom:0px;
  8094. border-radius:0px;
  8095. border-top-left-radius:0px;
  8096. border-bottom-left-radius:0px;
  8097. -moz-box-shadow:none;
  8098. -webkit-box-shadow:none;
  8099. box-shadow:none;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:14px;
  8104. }
  8105. #u31794 {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:3074px;
  8109. top:288px;
  8110. width:95px;
  8111. height:40px;
  8112. display:flex;
  8113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8114. font-weight:400;
  8115. font-style:normal;
  8116. font-size:14px;
  8117. }
  8118. #u31794 .text {
  8119. position:absolute;
  8120. align-self:center;
  8121. padding:5px 10px 5px 0px;
  8122. box-sizing:border-box;
  8123. width:100%;
  8124. }
  8125. #u31794_text {
  8126. border-width:0px;
  8127. white-space:nowrap;
  8128. text-transform:none;
  8129. }
  8130. #u31795 {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:0px;
  8134. top:0px;
  8135. width:0px;
  8136. height:0px;
  8137. }
  8138. #u31796_div {
  8139. border-width:0px;
  8140. position:absolute;
  8141. left:0px;
  8142. top:0px;
  8143. width:520px;
  8144. height:40px;
  8145. background:inherit;
  8146. background-color:rgba(255, 255, 255, 1);
  8147. box-sizing:border-box;
  8148. border-width:1px;
  8149. border-style:solid;
  8150. border-color:rgba(170, 170, 170, 1);
  8151. border-radius:4px;
  8152. -moz-box-shadow:none;
  8153. -webkit-box-shadow:none;
  8154. box-shadow:none;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. text-align:right;
  8159. }
  8160. #u31796 {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:554px;
  8164. top:128px;
  8165. width:520px;
  8166. height:40px;
  8167. display:flex;
  8168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8169. font-weight:400;
  8170. font-style:normal;
  8171. text-align:right;
  8172. }
  8173. #u31796 .text {
  8174. position:absolute;
  8175. align-self:center;
  8176. padding:2px 10px 2px 10px;
  8177. box-sizing:border-box;
  8178. width:100%;
  8179. }
  8180. #u31796_text {
  8181. border-width:0px;
  8182. word-wrap:break-word;
  8183. text-transform:none;
  8184. visibility:hidden;
  8185. }
  8186. #u31797_input {
  8187. position:absolute;
  8188. left:0px;
  8189. top:0px;
  8190. width:414px;
  8191. height:31px;
  8192. padding:2px 10px 2px 2px;
  8193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8194. font-weight:400;
  8195. font-style:normal;
  8196. font-size:13px;
  8197. letter-spacing:normal;
  8198. color:#333333;
  8199. vertical-align:none;
  8200. text-align:left;
  8201. text-transform:none;
  8202. background-color:transparent;
  8203. border-color:transparent;
  8204. }
  8205. #u31797_input.disabled {
  8206. position:absolute;
  8207. left:0px;
  8208. top:0px;
  8209. width:414px;
  8210. height:31px;
  8211. padding:2px 10px 2px 2px;
  8212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8213. font-weight:400;
  8214. font-style:normal;
  8215. font-size:13px;
  8216. letter-spacing:normal;
  8217. color:#333333;
  8218. vertical-align:none;
  8219. text-align:left;
  8220. text-transform:none;
  8221. background-color:transparent;
  8222. border-color:transparent;
  8223. }
  8224. #u31797_div {
  8225. border-width:0px;
  8226. position:absolute;
  8227. left:0px;
  8228. top:0px;
  8229. width:414px;
  8230. height:31px;
  8231. background:inherit;
  8232. background-color:rgba(255, 255, 255, 0);
  8233. border:none;
  8234. border-radius:0px;
  8235. -moz-box-shadow:none;
  8236. -webkit-box-shadow:none;
  8237. box-shadow:none;
  8238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8239. font-weight:400;
  8240. font-style:normal;
  8241. color:#333333;
  8242. }
  8243. #u31797 {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:561px;
  8247. top:133px;
  8248. width:414px;
  8249. height:31px;
  8250. display:flex;
  8251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8252. font-weight:400;
  8253. font-style:normal;
  8254. color:#333333;
  8255. }
  8256. #u31797 .text {
  8257. position:absolute;
  8258. align-self:center;
  8259. padding:2px 10px 2px 2px;
  8260. box-sizing:border-box;
  8261. width:100%;
  8262. }
  8263. #u31797_div.disabled {
  8264. border-width:0px;
  8265. position:absolute;
  8266. left:0px;
  8267. top:0px;
  8268. width:414px;
  8269. height:31px;
  8270. background:inherit;
  8271. background-color:rgba(240, 240, 240, 1);
  8272. border:none;
  8273. border-radius:0px;
  8274. -moz-box-shadow:none;
  8275. -webkit-box-shadow:none;
  8276. box-shadow:none;
  8277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8278. font-weight:400;
  8279. font-style:normal;
  8280. color:#333333;
  8281. }
  8282. #u31797.disabled {
  8283. }
  8284. #u31798_div {
  8285. border-width:0px;
  8286. position:absolute;
  8287. left:0px;
  8288. top:0px;
  8289. width:183px;
  8290. height:20px;
  8291. background:inherit;
  8292. background-color:rgba(255, 255, 255, 0);
  8293. border:none;
  8294. border-radius:0px;
  8295. -moz-box-shadow:none;
  8296. -webkit-box-shadow:none;
  8297. box-shadow:none;
  8298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8299. font-weight:400;
  8300. font-style:normal;
  8301. }
  8302. #u31798 {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:361px;
  8306. top:138px;
  8307. width:183px;
  8308. height:20px;
  8309. display:flex;
  8310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8311. font-weight:400;
  8312. font-style:normal;
  8313. }
  8314. #u31798 .text {
  8315. position:absolute;
  8316. align-self:flex-start;
  8317. padding:0px 0px 0px 0px;
  8318. box-sizing:border-box;
  8319. width:100%;
  8320. }
  8321. #u31798_text {
  8322. border-width:0px;
  8323. white-space:nowrap;
  8324. text-transform:none;
  8325. }
  8326. #u31799_div {
  8327. border-width:0px;
  8328. position:absolute;
  8329. left:0px;
  8330. top:0px;
  8331. width:60px;
  8332. height:40px;
  8333. background:inherit;
  8334. background-color:rgba(41, 143, 255, 1);
  8335. border:none;
  8336. border-radius:4px;
  8337. -moz-box-shadow:none;
  8338. -webkit-box-shadow:none;
  8339. box-shadow:none;
  8340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8341. font-weight:400;
  8342. font-style:normal;
  8343. font-size:14px;
  8344. color:#FFFFFF;
  8345. }
  8346. #u31799 {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:1084px;
  8350. top:128px;
  8351. width:60px;
  8352. height:40px;
  8353. display:flex;
  8354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8355. font-weight:400;
  8356. font-style:normal;
  8357. font-size:14px;
  8358. color:#FFFFFF;
  8359. }
  8360. #u31799 .text {
  8361. position:absolute;
  8362. align-self:center;
  8363. padding:5px 10px 5px 10px;
  8364. box-sizing:border-box;
  8365. width:100%;
  8366. }
  8367. #u31799_text {
  8368. border-width:0px;
  8369. word-wrap:break-word;
  8370. text-transform:none;
  8371. }
  8372. #u31800_div {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:0px;
  8376. top:0px;
  8377. width:73px;
  8378. height:25px;
  8379. background:inherit;
  8380. background-color:rgba(255, 255, 255, 0);
  8381. border:none;
  8382. border-radius:0px;
  8383. -moz-box-shadow:none;
  8384. -webkit-box-shadow:none;
  8385. box-shadow:none;
  8386. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8387. font-weight:500;
  8388. font-style:normal;
  8389. font-size:18px;
  8390. }
  8391. #u31800 {
  8392. border-width:0px;
  8393. position:absolute;
  8394. left:360px;
  8395. top:201px;
  8396. width:73px;
  8397. height:25px;
  8398. display:flex;
  8399. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8400. font-weight:500;
  8401. font-style:normal;
  8402. font-size:18px;
  8403. }
  8404. #u31800 .text {
  8405. position:absolute;
  8406. align-self:flex-start;
  8407. padding:0px 0px 0px 0px;
  8408. box-sizing:border-box;
  8409. width:100%;
  8410. }
  8411. #u31800_text {
  8412. border-width:0px;
  8413. white-space:nowrap;
  8414. text-transform:none;
  8415. }
  8416. #u31801 {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:0px;
  8420. top:0px;
  8421. width:0px;
  8422. height:0px;
  8423. }
  8424. #u31802_div {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:200px;
  8430. height:1192px;
  8431. background:inherit;
  8432. background-color:rgba(255, 255, 255, 1);
  8433. border:none;
  8434. border-radius:0px;
  8435. -moz-box-shadow:none;
  8436. -webkit-box-shadow:none;
  8437. box-shadow:none;
  8438. }
  8439. #u31802 {
  8440. border-width:0px;
  8441. position:absolute;
  8442. left:120px;
  8443. top:51px;
  8444. width:200px;
  8445. height:1192px;
  8446. display:flex;
  8447. }
  8448. #u31802 .text {
  8449. position:absolute;
  8450. align-self:center;
  8451. padding:2px 2px 2px 2px;
  8452. box-sizing:border-box;
  8453. width:100%;
  8454. }
  8455. #u31802_text {
  8456. border-width:0px;
  8457. word-wrap:break-word;
  8458. text-transform:none;
  8459. visibility:hidden;
  8460. }
  8461. #u31803_div {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:0px;
  8465. top:0px;
  8466. width:200px;
  8467. height:60px;
  8468. background:inherit;
  8469. background-color:rgba(224, 231, 247, 1);
  8470. border:none;
  8471. border-radius:0px;
  8472. -moz-box-shadow:none;
  8473. -webkit-box-shadow:none;
  8474. box-shadow:none;
  8475. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8476. font-weight:500;
  8477. font-style:normal;
  8478. font-size:18px;
  8479. }
  8480. #u31803 {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:120px;
  8484. top:51px;
  8485. width:200px;
  8486. height:60px;
  8487. display:flex;
  8488. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8489. font-weight:500;
  8490. font-style:normal;
  8491. font-size:18px;
  8492. }
  8493. #u31803 .text {
  8494. position:absolute;
  8495. align-self:center;
  8496. padding:0px 0px 0px 20px;
  8497. box-sizing:border-box;
  8498. width:100%;
  8499. }
  8500. #u31803_text {
  8501. border-width:0px;
  8502. word-wrap:break-word;
  8503. text-transform:none;
  8504. }
  8505. #u31804_div {
  8506. border-width:0px;
  8507. position:absolute;
  8508. left:0px;
  8509. top:0px;
  8510. width:97px;
  8511. height:22px;
  8512. background:inherit;
  8513. background-color:rgba(255, 255, 255, 0);
  8514. border:none;
  8515. border-radius:0px;
  8516. -moz-box-shadow:none;
  8517. -webkit-box-shadow:none;
  8518. box-shadow:none;
  8519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8520. font-weight:400;
  8521. font-style:normal;
  8522. font-size:16px;
  8523. }
  8524. #u31804 {
  8525. border-width:0px;
  8526. position:absolute;
  8527. left:147px;
  8528. top:291px;
  8529. width:97px;
  8530. height:22px;
  8531. display:flex;
  8532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8533. font-weight:400;
  8534. font-style:normal;
  8535. font-size:16px;
  8536. }
  8537. #u31804 .text {
  8538. position:absolute;
  8539. align-self:flex-start;
  8540. padding:0px 0px 0px 0px;
  8541. box-sizing:border-box;
  8542. width:100%;
  8543. }
  8544. #u31804_text {
  8545. border-width:0px;
  8546. white-space:nowrap;
  8547. text-transform:none;
  8548. }
  8549. #u31805_div {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:0px;
  8553. top:0px;
  8554. width:65px;
  8555. height:22px;
  8556. background:inherit;
  8557. background-color:rgba(255, 255, 255, 0);
  8558. border:none;
  8559. border-radius:0px;
  8560. -moz-box-shadow:none;
  8561. -webkit-box-shadow:none;
  8562. box-shadow:none;
  8563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8564. font-weight:400;
  8565. font-style:normal;
  8566. font-size:16px;
  8567. }
  8568. #u31805 {
  8569. border-width:0px;
  8570. position:absolute;
  8571. left:147px;
  8572. top:167px;
  8573. width:65px;
  8574. height:22px;
  8575. display:flex;
  8576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8577. font-weight:400;
  8578. font-style:normal;
  8579. font-size:16px;
  8580. }
  8581. #u31805 .text {
  8582. position:absolute;
  8583. align-self:flex-start;
  8584. padding:0px 0px 0px 0px;
  8585. box-sizing:border-box;
  8586. width:100%;
  8587. }
  8588. #u31805_text {
  8589. border-width:0px;
  8590. white-space:nowrap;
  8591. text-transform:none;
  8592. }
  8593. #u31806_div {
  8594. border-width:0px;
  8595. position:absolute;
  8596. left:0px;
  8597. top:0px;
  8598. width:49px;
  8599. height:17px;
  8600. background:inherit;
  8601. background-color:rgba(255, 255, 255, 0);
  8602. border:none;
  8603. border-radius:0px;
  8604. -moz-box-shadow:none;
  8605. -webkit-box-shadow:none;
  8606. box-shadow:none;
  8607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8608. font-weight:400;
  8609. font-style:normal;
  8610. font-size:12px;
  8611. color:#AAAAAA;
  8612. }
  8613. #u31806 {
  8614. border-width:0px;
  8615. position:absolute;
  8616. left:147px;
  8617. top:131px;
  8618. width:49px;
  8619. height:17px;
  8620. display:flex;
  8621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8622. font-weight:400;
  8623. font-style:normal;
  8624. font-size:12px;
  8625. color:#AAAAAA;
  8626. }
  8627. #u31806 .text {
  8628. position:absolute;
  8629. align-self:flex-start;
  8630. padding:0px 0px 0px 0px;
  8631. box-sizing:border-box;
  8632. width:100%;
  8633. }
  8634. #u31806_text {
  8635. border-width:0px;
  8636. white-space:nowrap;
  8637. text-transform:none;
  8638. }
  8639. #u31807_div {
  8640. border-width:0px;
  8641. position:absolute;
  8642. left:0px;
  8643. top:0px;
  8644. width:65px;
  8645. height:22px;
  8646. background:inherit;
  8647. background-color:rgba(255, 255, 255, 0);
  8648. border:none;
  8649. border-radius:0px;
  8650. -moz-box-shadow:none;
  8651. -webkit-box-shadow:none;
  8652. box-shadow:none;
  8653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8654. font-weight:400;
  8655. font-style:normal;
  8656. font-size:16px;
  8657. }
  8658. #u31807 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:147px;
  8662. top:209px;
  8663. width:65px;
  8664. height:22px;
  8665. display:flex;
  8666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:16px;
  8670. }
  8671. #u31807 .text {
  8672. position:absolute;
  8673. align-self:flex-start;
  8674. padding:0px 0px 0px 0px;
  8675. box-sizing:border-box;
  8676. width:100%;
  8677. }
  8678. #u31807_text {
  8679. border-width:0px;
  8680. white-space:nowrap;
  8681. text-transform:none;
  8682. }
  8683. #u31808_div {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:0px;
  8687. top:0px;
  8688. width:97px;
  8689. height:22px;
  8690. background:inherit;
  8691. background-color:rgba(255, 255, 255, 0);
  8692. border:none;
  8693. border-radius:0px;
  8694. -moz-box-shadow:none;
  8695. -webkit-box-shadow:none;
  8696. box-shadow:none;
  8697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8698. font-weight:400;
  8699. font-style:normal;
  8700. font-size:16px;
  8701. }
  8702. #u31808 {
  8703. border-width:0px;
  8704. position:absolute;
  8705. left:147px;
  8706. top:333px;
  8707. width:97px;
  8708. height:22px;
  8709. display:flex;
  8710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8711. font-weight:400;
  8712. font-style:normal;
  8713. font-size:16px;
  8714. }
  8715. #u31808 .text {
  8716. position:absolute;
  8717. align-self:flex-start;
  8718. padding:0px 0px 0px 0px;
  8719. box-sizing:border-box;
  8720. width:100%;
  8721. }
  8722. #u31808_text {
  8723. border-width:0px;
  8724. white-space:nowrap;
  8725. text-transform:none;
  8726. }
  8727. #u31809_div {
  8728. border-width:0px;
  8729. position:absolute;
  8730. left:0px;
  8731. top:0px;
  8732. width:65px;
  8733. height:22px;
  8734. background:inherit;
  8735. background-color:rgba(255, 255, 255, 0);
  8736. border:none;
  8737. border-radius:0px;
  8738. -moz-box-shadow:none;
  8739. -webkit-box-shadow:none;
  8740. box-shadow:none;
  8741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8742. font-weight:400;
  8743. font-style:normal;
  8744. font-size:16px;
  8745. }
  8746. #u31809 {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:147px;
  8750. top:440px;
  8751. width:65px;
  8752. height:22px;
  8753. display:flex;
  8754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8755. font-weight:400;
  8756. font-style:normal;
  8757. font-size:16px;
  8758. }
  8759. #u31809 .text {
  8760. position:absolute;
  8761. align-self:flex-start;
  8762. padding:0px 0px 0px 0px;
  8763. box-sizing:border-box;
  8764. width:100%;
  8765. }
  8766. #u31809_text {
  8767. border-width:0px;
  8768. white-space:nowrap;
  8769. text-transform:none;
  8770. }
  8771. #u31810_img {
  8772. border-width:0px;
  8773. position:absolute;
  8774. left:0px;
  8775. top:0px;
  8776. width:201px;
  8777. height:2px;
  8778. }
  8779. #u31810 {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:120px;
  8783. top:378px;
  8784. width:200px;
  8785. height:1px;
  8786. display:flex;
  8787. }
  8788. #u31810 .text {
  8789. position:absolute;
  8790. align-self:center;
  8791. padding:2px 2px 2px 2px;
  8792. box-sizing:border-box;
  8793. width:100%;
  8794. }
  8795. #u31810_text {
  8796. border-width:0px;
  8797. word-wrap:break-word;
  8798. text-transform:none;
  8799. visibility:hidden;
  8800. }
  8801. #u31811_div {
  8802. border-width:0px;
  8803. position:absolute;
  8804. left:0px;
  8805. top:0px;
  8806. width:49px;
  8807. height:17px;
  8808. background:inherit;
  8809. background-color:rgba(255, 255, 255, 0);
  8810. border:none;
  8811. border-radius:0px;
  8812. -moz-box-shadow:none;
  8813. -webkit-box-shadow:none;
  8814. box-shadow:none;
  8815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8816. font-weight:400;
  8817. font-style:normal;
  8818. font-size:12px;
  8819. color:#AAAAAA;
  8820. }
  8821. #u31811 {
  8822. border-width:0px;
  8823. position:absolute;
  8824. left:147px;
  8825. top:404px;
  8826. width:49px;
  8827. height:17px;
  8828. display:flex;
  8829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8830. font-weight:400;
  8831. font-style:normal;
  8832. font-size:12px;
  8833. color:#AAAAAA;
  8834. }
  8835. #u31811 .text {
  8836. position:absolute;
  8837. align-self:flex-start;
  8838. padding:0px 0px 0px 0px;
  8839. box-sizing:border-box;
  8840. width:100%;
  8841. }
  8842. #u31811_text {
  8843. border-width:0px;
  8844. white-space:nowrap;
  8845. text-transform:none;
  8846. }
  8847. #u31812_div {
  8848. border-width:0px;
  8849. position:absolute;
  8850. left:0px;
  8851. top:0px;
  8852. width:65px;
  8853. height:22px;
  8854. background:inherit;
  8855. background-color:rgba(255, 255, 255, 0);
  8856. border:none;
  8857. border-radius:0px;
  8858. -moz-box-shadow:none;
  8859. -webkit-box-shadow:none;
  8860. box-shadow:none;
  8861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8862. font-weight:400;
  8863. font-style:normal;
  8864. font-size:16px;
  8865. }
  8866. #u31812 {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:147px;
  8870. top:482px;
  8871. width:65px;
  8872. height:22px;
  8873. display:flex;
  8874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8875. font-weight:400;
  8876. font-style:normal;
  8877. font-size:16px;
  8878. }
  8879. #u31812 .text {
  8880. position:absolute;
  8881. align-self:flex-start;
  8882. padding:0px 0px 0px 0px;
  8883. box-sizing:border-box;
  8884. width:100%;
  8885. }
  8886. #u31812_text {
  8887. border-width:0px;
  8888. white-space:nowrap;
  8889. text-transform:none;
  8890. }
  8891. #u31813_div {
  8892. border-width:0px;
  8893. position:absolute;
  8894. left:0px;
  8895. top:0px;
  8896. width:65px;
  8897. height:22px;
  8898. background:inherit;
  8899. background-color:rgba(255, 255, 255, 0);
  8900. border:none;
  8901. border-radius:0px;
  8902. -moz-box-shadow:none;
  8903. -webkit-box-shadow:none;
  8904. box-shadow:none;
  8905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8906. font-weight:400;
  8907. font-style:normal;
  8908. font-size:16px;
  8909. }
  8910. #u31813 {
  8911. border-width:0px;
  8912. position:absolute;
  8913. left:147px;
  8914. top:586px;
  8915. width:65px;
  8916. height:22px;
  8917. display:flex;
  8918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8919. font-weight:400;
  8920. font-style:normal;
  8921. font-size:16px;
  8922. }
  8923. #u31813 .text {
  8924. position:absolute;
  8925. align-self:flex-start;
  8926. padding:0px 0px 0px 0px;
  8927. box-sizing:border-box;
  8928. width:100%;
  8929. }
  8930. #u31813_text {
  8931. border-width:0px;
  8932. white-space:nowrap;
  8933. text-transform:none;
  8934. }
  8935. #u31814_img {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:0px;
  8939. top:0px;
  8940. width:201px;
  8941. height:2px;
  8942. }
  8943. #u31814 {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:120px;
  8947. top:524px;
  8948. width:200px;
  8949. height:1px;
  8950. display:flex;
  8951. }
  8952. #u31814 .text {
  8953. position:absolute;
  8954. align-self:center;
  8955. padding:2px 2px 2px 2px;
  8956. box-sizing:border-box;
  8957. width:100%;
  8958. }
  8959. #u31814_text {
  8960. border-width:0px;
  8961. word-wrap:break-word;
  8962. text-transform:none;
  8963. visibility:hidden;
  8964. }
  8965. #u31815_div {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:0px;
  8969. top:0px;
  8970. width:49px;
  8971. height:17px;
  8972. background:inherit;
  8973. background-color:rgba(255, 255, 255, 0);
  8974. border:none;
  8975. border-radius:0px;
  8976. -moz-box-shadow:none;
  8977. -webkit-box-shadow:none;
  8978. box-shadow:none;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:12px;
  8983. color:#AAAAAA;
  8984. }
  8985. #u31815 {
  8986. border-width:0px;
  8987. position:absolute;
  8988. left:147px;
  8989. top:550px;
  8990. width:49px;
  8991. height:17px;
  8992. display:flex;
  8993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8994. font-weight:400;
  8995. font-style:normal;
  8996. font-size:12px;
  8997. color:#AAAAAA;
  8998. }
  8999. #u31815 .text {
  9000. position:absolute;
  9001. align-self:flex-start;
  9002. padding:0px 0px 0px 0px;
  9003. box-sizing:border-box;
  9004. width:100%;
  9005. }
  9006. #u31815_text {
  9007. border-width:0px;
  9008. white-space:nowrap;
  9009. text-transform:none;
  9010. }
  9011. #u31816_div {
  9012. border-width:0px;
  9013. position:absolute;
  9014. left:0px;
  9015. top:0px;
  9016. width:65px;
  9017. height:22px;
  9018. background:inherit;
  9019. background-color:rgba(255, 255, 255, 0);
  9020. border:none;
  9021. border-radius:0px;
  9022. -moz-box-shadow:none;
  9023. -webkit-box-shadow:none;
  9024. box-shadow:none;
  9025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9026. font-weight:400;
  9027. font-style:normal;
  9028. font-size:16px;
  9029. }
  9030. #u31816 {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:147px;
  9034. top:251px;
  9035. width:65px;
  9036. height:22px;
  9037. display:flex;
  9038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9039. font-weight:400;
  9040. font-style:normal;
  9041. font-size:16px;
  9042. }
  9043. #u31816 .text {
  9044. position:absolute;
  9045. align-self:flex-start;
  9046. padding:0px 0px 0px 0px;
  9047. box-sizing:border-box;
  9048. width:100%;
  9049. }
  9050. #u31816_text {
  9051. border-width:0px;
  9052. white-space:nowrap;
  9053. text-transform:none;
  9054. }