styles.css 123 KB

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