styles.css 121 KB

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