styles.css 110 KB

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