styles.css 128 KB

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