styles.css 211 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u31428_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. #u31428 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u31428 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u31428_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u31429_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. #u31429 {
  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. #u31429 .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. #u31429_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u31430_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. #u31430 {
  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. #u31430 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u31430_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u31431 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u31432_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u31432 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u31432 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u31432_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u31433_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. #u31433 {
  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. #u31433 .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. #u31433_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u31434_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. #u31434 {
  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. #u31434 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u31434_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u31435 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u31436_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u31436 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u31436 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u31436_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u31437_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u31437 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u31437 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u31437_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u31438 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u31439_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u31439 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u31439 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u31439_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u31440_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u31440 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u31440 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u31440_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u31441 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u31442_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u31442 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u31442 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u31442_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u31443_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u31443 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u31443 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u31443_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u31444 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u31445_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u31445 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u31445 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u31445_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u31446_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u31446 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u31446 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u31446_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u31447 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u31448_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u31448 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u31448 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u31448_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u31449_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u31449 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u31449 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u31449_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u31450 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u31451_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u31451 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u31451 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u31451_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u31452_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u31452 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u31452 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u31452_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u31453 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u31454_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u31454 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u31454 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u31454_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u31455_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u31455 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u31455 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u31455_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u31456 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u31457_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u31457 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u31457 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u31457_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u31458_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u31458 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u31458 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u31458_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u31459 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u31460_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u31460 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u31460 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u31460_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u31461_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u31461 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u31461 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u31461_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u31462 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u31463_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u31463 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u31463 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u31463_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u31464_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u31464 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u31464 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u31464_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u31465 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u31466_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u31466 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u31466 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u31466_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u31467_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u31467 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u31467 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u31467_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u31468 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u31469_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u31469_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u31469_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u31469 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u31469 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u31469_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u31469.disabled {
  1276. }
  1277. .u31469_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u31470_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u31470 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u31470 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u31470_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u31471_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u31471 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u31471 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u31471_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u31472_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u31472 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u31472 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u31472_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u31473 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u31474_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u31474 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u31474 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u31474_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u31475_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u31475 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u31475 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u31475_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u31476_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u31476 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u31476 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u31476_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u31477_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u31477 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u31477 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u31477_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u31478_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u31478 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u31478 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u31478_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u31479 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u31480_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u31480 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u31480 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u31480_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u31481_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u31481 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u31481 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u31481_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u31482_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1258px;
  1648. height:928px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. color:#FFFFFF;
  1661. text-align:left;
  1662. }
  1663. #u31482 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:330px;
  1667. top:310px;
  1668. width:1258px;
  1669. height:928px;
  1670. display:flex;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:12px;
  1675. color:#FFFFFF;
  1676. text-align:left;
  1677. }
  1678. #u31482 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 50px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u31482_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. visibility:hidden;
  1690. }
  1691. #u31483_div {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:1258px;
  1697. height:250px;
  1698. background:inherit;
  1699. background-color:rgba(255, 255, 255, 1);
  1700. border:none;
  1701. border-radius:0px;
  1702. -moz-box-shadow:none;
  1703. -webkit-box-shadow:none;
  1704. box-shadow:none;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:12px;
  1709. color:#FFFFFF;
  1710. text-align:left;
  1711. }
  1712. #u31483 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:330px;
  1716. top:50px;
  1717. width:1258px;
  1718. height:250px;
  1719. display:flex;
  1720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1721. font-weight:400;
  1722. font-style:normal;
  1723. font-size:12px;
  1724. color:#FFFFFF;
  1725. text-align:left;
  1726. }
  1727. #u31483 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 50px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u31483_text {
  1735. border-width:0px;
  1736. word-wrap:break-word;
  1737. text-transform:none;
  1738. visibility:hidden;
  1739. }
  1740. #u31484_div {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:0px;
  1744. top:0px;
  1745. width:73px;
  1746. height:50px;
  1747. background:inherit;
  1748. background-color:rgba(255, 255, 255, 0);
  1749. border:none;
  1750. border-left:0px;
  1751. border-top:0px;
  1752. border-right:0px;
  1753. border-radius:0px;
  1754. border-bottom-right-radius:0px;
  1755. border-bottom-left-radius:0px;
  1756. -moz-box-shadow:none;
  1757. -webkit-box-shadow:none;
  1758. box-shadow:none;
  1759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1760. font-weight:400;
  1761. font-style:normal;
  1762. font-size:18px;
  1763. }
  1764. #u31484 {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:351px;
  1768. top:50px;
  1769. width:73px;
  1770. height:50px;
  1771. display:flex;
  1772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1773. font-weight:400;
  1774. font-style:normal;
  1775. font-size:18px;
  1776. }
  1777. #u31484 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:0px 0px 0px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u31484_text {
  1785. border-width:0px;
  1786. white-space:nowrap;
  1787. text-transform:none;
  1788. }
  1789. #u31485 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:0px;
  1795. height:0px;
  1796. }
  1797. #u31486_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:259px;
  1803. height:100px;
  1804. background:inherit;
  1805. background-color:rgba(242, 242, 242, 1);
  1806. border:none;
  1807. border-radius:5px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. }
  1812. #u31486 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:351px;
  1816. top:180px;
  1817. width:259px;
  1818. height:100px;
  1819. display:flex;
  1820. }
  1821. #u31486 .text {
  1822. position:absolute;
  1823. align-self:center;
  1824. padding:2px 2px 2px 2px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u31486_text {
  1829. border-width:0px;
  1830. word-wrap:break-word;
  1831. text-transform:none;
  1832. visibility:hidden;
  1833. }
  1834. #u31487_div {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:118px;
  1840. height:40px;
  1841. background:inherit;
  1842. background-color:rgba(255, 255, 255, 0);
  1843. border:none;
  1844. border-left:0px;
  1845. border-top:0px;
  1846. border-right:0px;
  1847. border-radius:0px;
  1848. border-bottom-right-radius:0px;
  1849. border-bottom-left-radius:0px;
  1850. -moz-box-shadow:none;
  1851. -webkit-box-shadow:none;
  1852. box-shadow:none;
  1853. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1854. font-weight:500;
  1855. font-style:normal;
  1856. font-size:18px;
  1857. line-height:40px;
  1858. }
  1859. #u31487 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:373px;
  1863. top:190px;
  1864. width:118px;
  1865. height:40px;
  1866. display:flex;
  1867. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1868. font-weight:500;
  1869. font-style:normal;
  1870. font-size:18px;
  1871. line-height:40px;
  1872. }
  1873. #u31487 .text {
  1874. position:absolute;
  1875. align-self:center;
  1876. padding:0px 0px 0px 0px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u31487_text {
  1881. border-width:0px;
  1882. word-wrap:break-word;
  1883. text-transform:none;
  1884. }
  1885. #u31488_div {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:215px;
  1891. height:17px;
  1892. background:inherit;
  1893. background-color:rgba(255, 255, 255, 0);
  1894. border:none;
  1895. border-left:0px;
  1896. border-top:0px;
  1897. border-right:0px;
  1898. border-radius:0px;
  1899. border-bottom-right-radius:0px;
  1900. border-bottom-left-radius:0px;
  1901. -moz-box-shadow:none;
  1902. -webkit-box-shadow:none;
  1903. box-shadow:none;
  1904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1905. font-weight:400;
  1906. font-style:normal;
  1907. font-size:12px;
  1908. color:#7F7F7F;
  1909. }
  1910. #u31488 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:373px;
  1914. top:253px;
  1915. width:215px;
  1916. height:17px;
  1917. display:flex;
  1918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:12px;
  1922. color:#7F7F7F;
  1923. }
  1924. #u31488 .text {
  1925. position:absolute;
  1926. align-self:center;
  1927. padding:0px 0px 0px 0px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u31488_text {
  1932. border-width:0px;
  1933. word-wrap:break-word;
  1934. text-transform:none;
  1935. }
  1936. #u31489 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:0px;
  1942. height:0px;
  1943. }
  1944. #u31490_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:17px;
  1950. height:16px;
  1951. }
  1952. #u31490 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:541px;
  1956. top:202px;
  1957. width:17px;
  1958. height:16px;
  1959. display:flex;
  1960. font-family:'Microsoft YaHei', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:12px;
  1964. }
  1965. #u31490 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u31490_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. visibility:hidden;
  1977. }
  1978. #u31491_div {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:27px;
  1984. height:17px;
  1985. background:inherit;
  1986. background-color:rgba(255, 255, 255, 0);
  1987. border:none;
  1988. border-radius:0px;
  1989. -moz-box-shadow:none;
  1990. -webkit-box-shadow:none;
  1991. box-shadow:none;
  1992. font-family:'微软雅黑', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:12px;
  1996. text-decoration:underline ;
  1997. color:#0099FF;
  1998. }
  1999. #u31491 {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:560px;
  2003. top:202px;
  2004. width:27px;
  2005. height:17px;
  2006. display:flex;
  2007. font-family:'微软雅黑', sans-serif;
  2008. font-weight:400;
  2009. font-style:normal;
  2010. font-size:12px;
  2011. text-decoration:underline ;
  2012. color:#0099FF;
  2013. }
  2014. #u31491 .text {
  2015. position:absolute;
  2016. align-self:flex-start;
  2017. padding:0px 0px 0px 0px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u31491_text {
  2022. border-width:0px;
  2023. word-wrap:break-word;
  2024. text-transform:none;
  2025. }
  2026. #u31492 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:0px;
  2032. height:0px;
  2033. }
  2034. #u31493_div {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:396px;
  2040. height:100px;
  2041. background:inherit;
  2042. background-color:rgba(242, 242, 242, 1);
  2043. border:none;
  2044. border-radius:5px;
  2045. -moz-box-shadow:none;
  2046. -webkit-box-shadow:none;
  2047. box-shadow:none;
  2048. }
  2049. #u31493 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:621px;
  2053. top:180px;
  2054. width:396px;
  2055. height:100px;
  2056. display:flex;
  2057. }
  2058. #u31493 .text {
  2059. position:absolute;
  2060. align-self:center;
  2061. padding:2px 2px 2px 2px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u31493_text {
  2066. border-width:0px;
  2067. word-wrap:break-word;
  2068. text-transform:none;
  2069. visibility:hidden;
  2070. }
  2071. #u31494_div {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:38px;
  2077. height:40px;
  2078. background:inherit;
  2079. background-color:rgba(255, 255, 255, 0);
  2080. border:none;
  2081. border-left:0px;
  2082. border-top:0px;
  2083. border-right:0px;
  2084. border-radius:0px;
  2085. border-bottom-right-radius:0px;
  2086. border-bottom-left-radius:0px;
  2087. -moz-box-shadow:none;
  2088. -webkit-box-shadow:none;
  2089. box-shadow:none;
  2090. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2091. font-weight:500;
  2092. font-style:normal;
  2093. font-size:28px;
  2094. line-height:40px;
  2095. }
  2096. #u31494 {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:658px;
  2100. top:224px;
  2101. width:38px;
  2102. height:40px;
  2103. display:flex;
  2104. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2105. font-weight:500;
  2106. font-style:normal;
  2107. font-size:28px;
  2108. line-height:40px;
  2109. }
  2110. #u31494 .text {
  2111. position:absolute;
  2112. align-self:center;
  2113. padding:0px 0px 0px 0px;
  2114. box-sizing:border-box;
  2115. width:100%;
  2116. }
  2117. #u31494_text {
  2118. border-width:0px;
  2119. word-wrap:break-word;
  2120. text-transform:none;
  2121. }
  2122. #u31495_div {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:53px;
  2128. height:17px;
  2129. background:inherit;
  2130. background-color:rgba(255, 255, 255, 0);
  2131. border:none;
  2132. border-left:0px;
  2133. border-top:0px;
  2134. border-right:0px;
  2135. border-radius:0px;
  2136. border-bottom-right-radius:0px;
  2137. border-bottom-left-radius:0px;
  2138. -moz-box-shadow:none;
  2139. -webkit-box-shadow:none;
  2140. box-shadow:none;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. color:#7F7F7F;
  2146. }
  2147. #u31495 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:643px;
  2151. top:192px;
  2152. width:53px;
  2153. height:17px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. color:#7F7F7F;
  2160. }
  2161. #u31495 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:0px 0px 0px 0px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u31495_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. }
  2173. #u31496_div {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:53px;
  2179. height:50px;
  2180. background:inherit;
  2181. background-color:rgba(255, 255, 255, 0);
  2182. border:none;
  2183. border-left:0px;
  2184. border-top:0px;
  2185. border-right:0px;
  2186. border-radius:0px;
  2187. border-bottom-right-radius:0px;
  2188. border-bottom-left-radius:0px;
  2189. -moz-box-shadow:none;
  2190. -webkit-box-shadow:none;
  2191. box-shadow:none;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. color:#7F7F7F;
  2197. line-height:25px;
  2198. }
  2199. #u31496 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:757px;
  2203. top:219px;
  2204. width:53px;
  2205. height:50px;
  2206. display:flex;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:12px;
  2211. color:#7F7F7F;
  2212. line-height:25px;
  2213. }
  2214. #u31496 .text {
  2215. position:absolute;
  2216. align-self:center;
  2217. padding:0px 0px 0px 0px;
  2218. box-sizing:border-box;
  2219. width:100%;
  2220. }
  2221. #u31496_text {
  2222. border-width:0px;
  2223. word-wrap:break-word;
  2224. text-transform:none;
  2225. }
  2226. #u31497_div {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:53px;
  2232. height:50px;
  2233. background:inherit;
  2234. background-color:rgba(255, 255, 255, 0);
  2235. border:none;
  2236. border-left:0px;
  2237. border-top:0px;
  2238. border-right:0px;
  2239. border-radius:0px;
  2240. border-bottom-right-radius:0px;
  2241. border-bottom-left-radius:0px;
  2242. -moz-box-shadow:none;
  2243. -webkit-box-shadow:none;
  2244. box-shadow:none;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:12px;
  2249. color:#7F7F7F;
  2250. line-height:25px;
  2251. }
  2252. #u31497 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:894px;
  2256. top:219px;
  2257. width:53px;
  2258. height:50px;
  2259. display:flex;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:12px;
  2264. color:#7F7F7F;
  2265. line-height:25px;
  2266. }
  2267. #u31497 .text {
  2268. position:absolute;
  2269. align-self:center;
  2270. padding:0px 0px 0px 0px;
  2271. box-sizing:border-box;
  2272. width:100%;
  2273. }
  2274. #u31497_text {
  2275. border-width:0px;
  2276. word-wrap:break-word;
  2277. text-transform:none;
  2278. }
  2279. #u31498_div {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:0px;
  2283. top:0px;
  2284. width:14px;
  2285. height:50px;
  2286. background:inherit;
  2287. background-color:rgba(255, 255, 255, 0);
  2288. border:none;
  2289. border-left:0px;
  2290. border-top:0px;
  2291. border-right:0px;
  2292. border-radius:0px;
  2293. border-bottom-right-radius:0px;
  2294. border-bottom-left-radius:0px;
  2295. -moz-box-shadow:none;
  2296. -webkit-box-shadow:none;
  2297. box-shadow:none;
  2298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2299. font-weight:500;
  2300. font-style:normal;
  2301. font-size:12px;
  2302. line-height:25px;
  2303. }
  2304. #u31498 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:810px;
  2308. top:219px;
  2309. width:14px;
  2310. height:50px;
  2311. display:flex;
  2312. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2313. font-weight:500;
  2314. font-style:normal;
  2315. font-size:12px;
  2316. line-height:25px;
  2317. }
  2318. #u31498 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:0px 0px 0px 0px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u31498_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. }
  2330. #u31499_div {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:14px;
  2336. height:50px;
  2337. background:inherit;
  2338. background-color:rgba(255, 255, 255, 0);
  2339. border:none;
  2340. border-left:0px;
  2341. border-top:0px;
  2342. border-right:0px;
  2343. border-radius:0px;
  2344. border-bottom-right-radius:0px;
  2345. border-bottom-left-radius:0px;
  2346. -moz-box-shadow:none;
  2347. -webkit-box-shadow:none;
  2348. box-shadow:none;
  2349. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2350. font-weight:500;
  2351. font-style:normal;
  2352. font-size:12px;
  2353. line-height:25px;
  2354. }
  2355. #u31499 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:947px;
  2359. top:219px;
  2360. width:14px;
  2361. height:50px;
  2362. display:flex;
  2363. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2364. font-weight:500;
  2365. font-style:normal;
  2366. font-size:12px;
  2367. line-height:25px;
  2368. }
  2369. #u31499 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:0px 0px 0px 0px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u31499_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. }
  2381. #u31500 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:0px;
  2387. height:0px;
  2388. }
  2389. #u31501_div {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:173px;
  2395. height:100px;
  2396. background:inherit;
  2397. background-color:rgba(242, 242, 242, 1);
  2398. border:none;
  2399. border-radius:5px;
  2400. -moz-box-shadow:none;
  2401. -webkit-box-shadow:none;
  2402. box-shadow:none;
  2403. }
  2404. #u31501 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:1028px;
  2408. top:180px;
  2409. width:173px;
  2410. height:100px;
  2411. display:flex;
  2412. }
  2413. #u31501 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 2px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u31501_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. visibility:hidden;
  2425. }
  2426. #u31502_div {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:26px;
  2432. height:40px;
  2433. background:inherit;
  2434. background-color:rgba(255, 255, 255, 0);
  2435. border:none;
  2436. border-left:0px;
  2437. border-top:0px;
  2438. border-right:0px;
  2439. border-radius:0px;
  2440. border-bottom-right-radius:0px;
  2441. border-bottom-left-radius:0px;
  2442. -moz-box-shadow:none;
  2443. -webkit-box-shadow:none;
  2444. box-shadow:none;
  2445. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2446. font-weight:500;
  2447. font-style:normal;
  2448. font-size:28px;
  2449. line-height:40px;
  2450. }
  2451. #u31502 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:1065px;
  2455. top:224px;
  2456. width:26px;
  2457. height:40px;
  2458. display:flex;
  2459. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2460. font-weight:500;
  2461. font-style:normal;
  2462. font-size:28px;
  2463. line-height:40px;
  2464. }
  2465. #u31502 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:0px 0px 0px 0px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u31502_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. }
  2477. #u31503_div {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:79px;
  2483. height:17px;
  2484. background:inherit;
  2485. background-color:rgba(255, 255, 255, 0);
  2486. border:none;
  2487. border-left:0px;
  2488. border-top:0px;
  2489. border-right:0px;
  2490. border-radius:0px;
  2491. border-bottom-right-radius:0px;
  2492. border-bottom-left-radius:0px;
  2493. -moz-box-shadow:none;
  2494. -webkit-box-shadow:none;
  2495. box-shadow:none;
  2496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2497. font-weight:400;
  2498. font-style:normal;
  2499. font-size:12px;
  2500. color:#7F7F7F;
  2501. }
  2502. #u31503 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:1050px;
  2506. top:192px;
  2507. width:79px;
  2508. height:17px;
  2509. display:flex;
  2510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2511. font-weight:400;
  2512. font-style:normal;
  2513. font-size:12px;
  2514. color:#7F7F7F;
  2515. }
  2516. #u31503 .text {
  2517. position:absolute;
  2518. align-self:center;
  2519. padding:0px 0px 0px 0px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u31503_text {
  2524. border-width:0px;
  2525. word-wrap:break-word;
  2526. text-transform:none;
  2527. }
  2528. #u31504 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:0px;
  2532. top:0px;
  2533. width:0px;
  2534. height:0px;
  2535. }
  2536. #u31505_div {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:173px;
  2542. height:100px;
  2543. background:inherit;
  2544. background-color:rgba(242, 242, 242, 1);
  2545. border:none;
  2546. border-radius:5px;
  2547. -moz-box-shadow:none;
  2548. -webkit-box-shadow:none;
  2549. box-shadow:none;
  2550. }
  2551. #u31505 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:1212px;
  2555. top:180px;
  2556. width:173px;
  2557. height:100px;
  2558. display:flex;
  2559. }
  2560. #u31505 .text {
  2561. position:absolute;
  2562. align-self:center;
  2563. padding:2px 2px 2px 2px;
  2564. box-sizing:border-box;
  2565. width:100%;
  2566. }
  2567. #u31505_text {
  2568. border-width:0px;
  2569. word-wrap:break-word;
  2570. text-transform:none;
  2571. visibility:hidden;
  2572. }
  2573. #u31506_div {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:31px;
  2579. height:40px;
  2580. background:inherit;
  2581. background-color:rgba(255, 255, 255, 0);
  2582. border:none;
  2583. border-left:0px;
  2584. border-top:0px;
  2585. border-right:0px;
  2586. border-radius:0px;
  2587. border-bottom-right-radius:0px;
  2588. border-bottom-left-radius:0px;
  2589. -moz-box-shadow:none;
  2590. -webkit-box-shadow:none;
  2591. box-shadow:none;
  2592. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2593. font-weight:500;
  2594. font-style:normal;
  2595. font-size:28px;
  2596. line-height:40px;
  2597. }
  2598. #u31506 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:1233px;
  2602. top:224px;
  2603. width:31px;
  2604. height:40px;
  2605. display:flex;
  2606. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2607. font-weight:500;
  2608. font-style:normal;
  2609. font-size:28px;
  2610. line-height:40px;
  2611. }
  2612. #u31506 .text {
  2613. position:absolute;
  2614. align-self:center;
  2615. padding:0px 0px 0px 0px;
  2616. box-sizing:border-box;
  2617. width:100%;
  2618. }
  2619. #u31506_text {
  2620. border-width:0px;
  2621. word-wrap:break-word;
  2622. text-transform:none;
  2623. }
  2624. #u31507_div {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:79px;
  2630. height:17px;
  2631. background:inherit;
  2632. background-color:rgba(255, 255, 255, 0);
  2633. border:none;
  2634. border-left:0px;
  2635. border-top:0px;
  2636. border-right:0px;
  2637. border-radius:0px;
  2638. border-bottom-right-radius:0px;
  2639. border-bottom-left-radius:0px;
  2640. -moz-box-shadow:none;
  2641. -webkit-box-shadow:none;
  2642. box-shadow:none;
  2643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:12px;
  2647. color:#7F7F7F;
  2648. }
  2649. #u31507 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:1233px;
  2653. top:192px;
  2654. width:79px;
  2655. height:17px;
  2656. display:flex;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:12px;
  2661. color:#7F7F7F;
  2662. }
  2663. #u31507 .text {
  2664. position:absolute;
  2665. align-self:center;
  2666. padding:0px 0px 0px 0px;
  2667. box-sizing:border-box;
  2668. width:100%;
  2669. }
  2670. #u31507_text {
  2671. border-width:0px;
  2672. word-wrap:break-word;
  2673. text-transform:none;
  2674. }
  2675. #u31508_div {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:65px;
  2681. height:20px;
  2682. background:inherit;
  2683. background-color:rgba(255, 255, 255, 0);
  2684. box-sizing:border-box;
  2685. border-width:1px;
  2686. border-style:solid;
  2687. border-color:rgba(24, 144, 255, 1);
  2688. border-radius:2px;
  2689. -moz-box-shadow:none;
  2690. -webkit-box-shadow:none;
  2691. box-shadow:none;
  2692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2693. font-weight:400;
  2694. font-style:normal;
  2695. font-size:11px;
  2696. color:#1890FF;
  2697. }
  2698. #u31508 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:1305px;
  2702. top:234px;
  2703. width:65px;
  2704. height:20px;
  2705. display:flex;
  2706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2707. font-weight:400;
  2708. font-style:normal;
  2709. font-size:11px;
  2710. color:#1890FF;
  2711. }
  2712. #u31508 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 2px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u31508_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. }
  2724. #u31509 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:0px;
  2730. height:0px;
  2731. }
  2732. #u31510_div {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:173px;
  2738. height:100px;
  2739. background:inherit;
  2740. background-color:rgba(242, 242, 242, 1);
  2741. border:none;
  2742. border-radius:5px;
  2743. -moz-box-shadow:none;
  2744. -webkit-box-shadow:none;
  2745. box-shadow:none;
  2746. }
  2747. #u31510 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:1395px;
  2751. top:180px;
  2752. width:173px;
  2753. height:100px;
  2754. display:flex;
  2755. }
  2756. #u31510 .text {
  2757. position:absolute;
  2758. align-self:center;
  2759. padding:2px 2px 2px 2px;
  2760. box-sizing:border-box;
  2761. width:100%;
  2762. }
  2763. #u31510_text {
  2764. border-width:0px;
  2765. word-wrap:break-word;
  2766. text-transform:none;
  2767. visibility:hidden;
  2768. }
  2769. #u31511_div {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:0px;
  2773. top:0px;
  2774. width:31px;
  2775. height:40px;
  2776. background:inherit;
  2777. background-color:rgba(255, 255, 255, 0);
  2778. border:none;
  2779. border-left:0px;
  2780. border-top:0px;
  2781. border-right:0px;
  2782. border-radius:0px;
  2783. border-bottom-right-radius:0px;
  2784. border-bottom-left-radius:0px;
  2785. -moz-box-shadow:none;
  2786. -webkit-box-shadow:none;
  2787. box-shadow:none;
  2788. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2789. font-weight:500;
  2790. font-style:normal;
  2791. font-size:28px;
  2792. line-height:40px;
  2793. }
  2794. #u31511 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:1417px;
  2798. top:224px;
  2799. width:31px;
  2800. height:40px;
  2801. display:flex;
  2802. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2803. font-weight:500;
  2804. font-style:normal;
  2805. font-size:28px;
  2806. line-height:40px;
  2807. }
  2808. #u31511 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:0px 0px 0px 0px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u31511_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. }
  2820. #u31512_div {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:105px;
  2826. height:17px;
  2827. background:inherit;
  2828. background-color:rgba(255, 255, 255, 0);
  2829. border:none;
  2830. border-left:0px;
  2831. border-top:0px;
  2832. border-right:0px;
  2833. border-radius:0px;
  2834. border-bottom-right-radius:0px;
  2835. border-bottom-left-radius:0px;
  2836. -moz-box-shadow:none;
  2837. -webkit-box-shadow:none;
  2838. box-shadow:none;
  2839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2840. font-weight:400;
  2841. font-style:normal;
  2842. font-size:12px;
  2843. color:#7F7F7F;
  2844. }
  2845. #u31512 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:1417px;
  2849. top:192px;
  2850. width:105px;
  2851. height:17px;
  2852. display:flex;
  2853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2854. font-weight:400;
  2855. font-style:normal;
  2856. font-size:12px;
  2857. color:#7F7F7F;
  2858. }
  2859. #u31512 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:0px 0px 0px 0px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u31512_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. }
  2871. #u31513_div {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:67px;
  2877. height:20px;
  2878. background:inherit;
  2879. background-color:rgba(255, 255, 255, 0);
  2880. box-sizing:border-box;
  2881. border-width:1px;
  2882. border-style:solid;
  2883. border-color:rgba(24, 144, 255, 1);
  2884. border-radius:2px;
  2885. -moz-box-shadow:none;
  2886. -webkit-box-shadow:none;
  2887. box-shadow:none;
  2888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:11px;
  2892. color:#1890FF;
  2893. }
  2894. #u31513 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:1488px;
  2898. top:234px;
  2899. width:67px;
  2900. height:20px;
  2901. display:flex;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:11px;
  2906. color:#1890FF;
  2907. }
  2908. #u31513 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 2px 2px 2px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u31513_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. }
  2920. #u31514 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:350px;
  2924. top:462px;
  2925. width:1220px;
  2926. height:366px;
  2927. }
  2928. #u31515_img {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:40px;
  2934. height:39px;
  2935. }
  2936. #u31515 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:0px;
  2940. top:0px;
  2941. width:40px;
  2942. height:39px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:12px;
  2948. color:#FFFFFF;
  2949. }
  2950. #u31515 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:2px 2px 2px 0px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u31515_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. visibility:hidden;
  2962. }
  2963. #u31516_img {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:100px;
  2969. height:39px;
  2970. }
  2971. #u31516 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:40px;
  2975. top:0px;
  2976. width:100px;
  2977. height:39px;
  2978. display:flex;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:12px;
  2983. color:#FFFFFF;
  2984. }
  2985. #u31516 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 2px 2px 0px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u31516_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. }
  2997. #u31517_img {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:100px;
  3003. height:39px;
  3004. }
  3005. #u31517 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:140px;
  3009. top:0px;
  3010. width:100px;
  3011. height:39px;
  3012. display:flex;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:12px;
  3017. color:#FFFFFF;
  3018. }
  3019. #u31517 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 2px 2px 0px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u31517_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. }
  3031. #u31518_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:100px;
  3037. height:39px;
  3038. }
  3039. #u31518 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:240px;
  3043. top:0px;
  3044. width:100px;
  3045. height:39px;
  3046. display:flex;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:12px;
  3051. color:#FFFFFF;
  3052. }
  3053. #u31518 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 0px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u31518_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. }
  3065. #u31519_img {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:100px;
  3071. height:39px;
  3072. }
  3073. #u31519 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:340px;
  3077. top:0px;
  3078. width:100px;
  3079. height:39px;
  3080. display:flex;
  3081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:12px;
  3085. color:#FFFFFF;
  3086. }
  3087. #u31519 .text {
  3088. position:absolute;
  3089. align-self:center;
  3090. padding:2px 2px 2px 0px;
  3091. box-sizing:border-box;
  3092. width:100%;
  3093. }
  3094. #u31519_text {
  3095. border-width:0px;
  3096. word-wrap:break-word;
  3097. text-transform:none;
  3098. }
  3099. #u31520_img {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:100px;
  3105. height:39px;
  3106. }
  3107. #u31520 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:440px;
  3111. top:0px;
  3112. width:100px;
  3113. height:39px;
  3114. display:flex;
  3115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:12px;
  3119. color:#FFFFFF;
  3120. }
  3121. #u31520 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 0px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u31520_text {
  3129. border-width:0px;
  3130. word-wrap:break-word;
  3131. text-transform:none;
  3132. }
  3133. #u31521_img {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:100px;
  3139. height:39px;
  3140. }
  3141. #u31521 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:540px;
  3145. top:0px;
  3146. width:100px;
  3147. height:39px;
  3148. display:flex;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:12px;
  3153. color:#FFFFFF;
  3154. }
  3155. #u31521 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 2px 2px 0px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u31521_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. }
  3167. #u31522_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:100px;
  3173. height:39px;
  3174. }
  3175. #u31522 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:640px;
  3179. top:0px;
  3180. width:100px;
  3181. height:39px;
  3182. display:flex;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:12px;
  3187. color:#FFFFFF;
  3188. }
  3189. #u31522 .text {
  3190. position:absolute;
  3191. align-self:center;
  3192. padding:2px 2px 2px 0px;
  3193. box-sizing:border-box;
  3194. width:100%;
  3195. }
  3196. #u31522_text {
  3197. border-width:0px;
  3198. word-wrap:break-word;
  3199. text-transform:none;
  3200. }
  3201. #u31523_img {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:100px;
  3207. height:39px;
  3208. }
  3209. #u31523 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:740px;
  3213. top:0px;
  3214. width:100px;
  3215. height:39px;
  3216. display:flex;
  3217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:12px;
  3221. color:#FFFFFF;
  3222. }
  3223. #u31523 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 0px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u31523_text {
  3231. border-width:0px;
  3232. word-wrap:break-word;
  3233. text-transform:none;
  3234. }
  3235. #u31524_img {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:100px;
  3241. height:39px;
  3242. }
  3243. #u31524 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:840px;
  3247. top:0px;
  3248. width:100px;
  3249. height:39px;
  3250. display:flex;
  3251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:12px;
  3255. color:#FFFFFF;
  3256. }
  3257. #u31524 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 2px 2px 0px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u31524_text {
  3265. border-width:0px;
  3266. word-wrap:break-word;
  3267. text-transform:none;
  3268. }
  3269. #u31525_img {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:100px;
  3275. height:39px;
  3276. }
  3277. #u31525 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:940px;
  3281. top:0px;
  3282. width:100px;
  3283. height:39px;
  3284. display:flex;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:12px;
  3289. color:#FFFFFF;
  3290. }
  3291. #u31525 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:2px 2px 2px 0px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u31525_text {
  3299. border-width:0px;
  3300. word-wrap:break-word;
  3301. text-transform:none;
  3302. }
  3303. #u31526_img {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:100px;
  3309. height:39px;
  3310. }
  3311. #u31526 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:1040px;
  3315. top:0px;
  3316. width:100px;
  3317. height:39px;
  3318. display:flex;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:12px;
  3323. color:#FFFFFF;
  3324. }
  3325. #u31526 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u31526_text {
  3333. border-width:0px;
  3334. word-wrap:break-word;
  3335. text-transform:none;
  3336. }
  3337. #u31527_img {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:80px;
  3343. height:39px;
  3344. }
  3345. #u31527 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:1140px;
  3349. top:0px;
  3350. width:80px;
  3351. height:39px;
  3352. display:flex;
  3353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. font-size:12px;
  3357. color:#FFFFFF;
  3358. }
  3359. #u31527 .text {
  3360. position:absolute;
  3361. align-self:center;
  3362. padding:2px 2px 2px 0px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u31527_text {
  3367. border-width:0px;
  3368. word-wrap:break-word;
  3369. text-transform:none;
  3370. }
  3371. #u31528_img {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:40px;
  3377. height:38px;
  3378. }
  3379. #u31528 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:39px;
  3384. width:40px;
  3385. height:38px;
  3386. display:flex;
  3387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3388. font-weight:400;
  3389. font-style:normal;
  3390. font-size:12px;
  3391. color:#1890FF;
  3392. }
  3393. #u31528 .text {
  3394. position:absolute;
  3395. align-self:center;
  3396. padding:2px 2px 2px 0px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u31528_text {
  3401. border-width:0px;
  3402. word-wrap:break-word;
  3403. text-transform:none;
  3404. visibility:hidden;
  3405. }
  3406. #u31529_img {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:100px;
  3412. height:38px;
  3413. }
  3414. #u31529 {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:40px;
  3418. top:39px;
  3419. width:100px;
  3420. height:38px;
  3421. display:flex;
  3422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:12px;
  3426. color:#1890FF;
  3427. }
  3428. #u31529 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 0px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u31529_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. }
  3440. #u31530_img {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:100px;
  3446. height:38px;
  3447. }
  3448. #u31530 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:140px;
  3452. top:39px;
  3453. width:100px;
  3454. height:38px;
  3455. display:flex;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:12px;
  3460. }
  3461. #u31530 .text {
  3462. position:absolute;
  3463. align-self:center;
  3464. padding:2px 2px 2px 0px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u31530_text {
  3469. border-width:0px;
  3470. word-wrap:break-word;
  3471. text-transform:none;
  3472. }
  3473. #u31531_img {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:100px;
  3479. height:38px;
  3480. }
  3481. #u31531 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:240px;
  3485. top:39px;
  3486. width:100px;
  3487. height:38px;
  3488. display:flex;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:12px;
  3493. }
  3494. #u31531 .text {
  3495. position:absolute;
  3496. align-self:center;
  3497. padding:2px 2px 2px 0px;
  3498. box-sizing:border-box;
  3499. width:100%;
  3500. }
  3501. #u31531_text {
  3502. border-width:0px;
  3503. word-wrap:break-word;
  3504. text-transform:none;
  3505. }
  3506. #u31532_img {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:100px;
  3512. height:38px;
  3513. }
  3514. #u31532 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:340px;
  3518. top:39px;
  3519. width:100px;
  3520. height:38px;
  3521. display:flex;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:12px;
  3526. }
  3527. #u31532 .text {
  3528. position:absolute;
  3529. align-self:center;
  3530. padding:2px 2px 2px 0px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u31532_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. }
  3539. #u31533_img {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:100px;
  3545. height:38px;
  3546. }
  3547. #u31533 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:440px;
  3551. top:39px;
  3552. width:100px;
  3553. height:38px;
  3554. display:flex;
  3555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3556. font-weight:400;
  3557. font-style:normal;
  3558. font-size:12px;
  3559. }
  3560. #u31533 .text {
  3561. position:absolute;
  3562. align-self:center;
  3563. padding:2px 2px 2px 0px;
  3564. box-sizing:border-box;
  3565. width:100%;
  3566. }
  3567. #u31533_text {
  3568. border-width:0px;
  3569. word-wrap:break-word;
  3570. text-transform:none;
  3571. }
  3572. #u31534_img {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:100px;
  3578. height:38px;
  3579. }
  3580. #u31534 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:540px;
  3584. top:39px;
  3585. width:100px;
  3586. height:38px;
  3587. display:flex;
  3588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. font-size:12px;
  3592. }
  3593. #u31534 .text {
  3594. position:absolute;
  3595. align-self:center;
  3596. padding:2px 2px 2px 0px;
  3597. box-sizing:border-box;
  3598. width:100%;
  3599. }
  3600. #u31534_text {
  3601. border-width:0px;
  3602. word-wrap:break-word;
  3603. text-transform:none;
  3604. visibility:hidden;
  3605. }
  3606. #u31535_img {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:100px;
  3612. height:38px;
  3613. }
  3614. #u31535 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:640px;
  3618. top:39px;
  3619. width:100px;
  3620. height:38px;
  3621. display:flex;
  3622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:12px;
  3626. }
  3627. #u31535 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:2px 2px 2px 0px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u31535_text {
  3635. border-width:0px;
  3636. word-wrap:break-word;
  3637. text-transform:none;
  3638. }
  3639. #u31536_img {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:100px;
  3645. height:38px;
  3646. }
  3647. #u31536 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:740px;
  3651. top:39px;
  3652. width:100px;
  3653. height:38px;
  3654. display:flex;
  3655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:12px;
  3659. }
  3660. #u31536 .text {
  3661. position:absolute;
  3662. align-self:center;
  3663. padding:2px 2px 2px 0px;
  3664. box-sizing:border-box;
  3665. width:100%;
  3666. }
  3667. #u31536_text {
  3668. border-width:0px;
  3669. word-wrap:break-word;
  3670. text-transform:none;
  3671. visibility:hidden;
  3672. }
  3673. #u31537_img {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:0px;
  3677. top:0px;
  3678. width:100px;
  3679. height:38px;
  3680. }
  3681. #u31537 {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:840px;
  3685. top:39px;
  3686. width:100px;
  3687. height:38px;
  3688. display:flex;
  3689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3690. font-weight:400;
  3691. font-style:normal;
  3692. font-size:12px;
  3693. }
  3694. #u31537 .text {
  3695. position:absolute;
  3696. align-self:center;
  3697. padding:2px 2px 2px 0px;
  3698. box-sizing:border-box;
  3699. width:100%;
  3700. }
  3701. #u31537_text {
  3702. border-width:0px;
  3703. word-wrap:break-word;
  3704. text-transform:none;
  3705. visibility:hidden;
  3706. }
  3707. #u31538_img {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:100px;
  3713. height:38px;
  3714. }
  3715. #u31538 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:940px;
  3719. top:39px;
  3720. width:100px;
  3721. height:38px;
  3722. display:flex;
  3723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3724. font-weight:400;
  3725. font-style:normal;
  3726. font-size:12px;
  3727. }
  3728. #u31538 .text {
  3729. position:absolute;
  3730. align-self:center;
  3731. padding:2px 2px 2px 0px;
  3732. box-sizing:border-box;
  3733. width:100%;
  3734. }
  3735. #u31538_text {
  3736. border-width:0px;
  3737. word-wrap:break-word;
  3738. text-transform:none;
  3739. visibility:hidden;
  3740. }
  3741. #u31539_img {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:100px;
  3747. height:38px;
  3748. }
  3749. #u31539 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:1040px;
  3753. top:39px;
  3754. width:100px;
  3755. height:38px;
  3756. display:flex;
  3757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3758. font-weight:400;
  3759. font-style:normal;
  3760. font-size:12px;
  3761. }
  3762. #u31539 .text {
  3763. position:absolute;
  3764. align-self:center;
  3765. padding:2px 2px 2px 0px;
  3766. box-sizing:border-box;
  3767. width:100%;
  3768. }
  3769. #u31539_text {
  3770. border-width:0px;
  3771. word-wrap:break-word;
  3772. text-transform:none;
  3773. visibility:hidden;
  3774. }
  3775. #u31540_img {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:80px;
  3781. height:38px;
  3782. }
  3783. #u31540 {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:1140px;
  3787. top:39px;
  3788. width:80px;
  3789. height:38px;
  3790. display:flex;
  3791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3792. font-weight:400;
  3793. font-style:normal;
  3794. font-size:12px;
  3795. color:#1890FF;
  3796. }
  3797. #u31540 .text {
  3798. position:absolute;
  3799. align-self:center;
  3800. padding:2px 2px 2px 0px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u31540_text {
  3805. border-width:0px;
  3806. word-wrap:break-word;
  3807. text-transform:none;
  3808. }
  3809. #u31541_img {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:40px;
  3815. height:38px;
  3816. }
  3817. #u31541 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:77px;
  3822. width:40px;
  3823. height:38px;
  3824. display:flex;
  3825. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3826. font-weight:400;
  3827. font-style:normal;
  3828. font-size:12px;
  3829. }
  3830. #u31541 .text {
  3831. position:absolute;
  3832. align-self:center;
  3833. padding:2px 2px 2px 0px;
  3834. box-sizing:border-box;
  3835. width:100%;
  3836. }
  3837. #u31541_text {
  3838. border-width:0px;
  3839. word-wrap:break-word;
  3840. text-transform:none;
  3841. visibility:hidden;
  3842. }
  3843. #u31542_img {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:100px;
  3849. height:38px;
  3850. }
  3851. #u31542 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:40px;
  3855. top:77px;
  3856. width:100px;
  3857. height:38px;
  3858. display:flex;
  3859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. }
  3864. #u31542 .text {
  3865. position:absolute;
  3866. align-self:center;
  3867. padding:2px 2px 2px 0px;
  3868. box-sizing:border-box;
  3869. width:100%;
  3870. }
  3871. #u31542_text {
  3872. border-width:0px;
  3873. word-wrap:break-word;
  3874. text-transform:none;
  3875. visibility:hidden;
  3876. }
  3877. #u31543_img {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:100px;
  3883. height:38px;
  3884. }
  3885. #u31543 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:140px;
  3889. top:77px;
  3890. width:100px;
  3891. height:38px;
  3892. display:flex;
  3893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3894. font-weight:400;
  3895. font-style:normal;
  3896. font-size:12px;
  3897. }
  3898. #u31543 .text {
  3899. position:absolute;
  3900. align-self:center;
  3901. padding:2px 2px 2px 0px;
  3902. box-sizing:border-box;
  3903. width:100%;
  3904. }
  3905. #u31543_text {
  3906. border-width:0px;
  3907. word-wrap:break-word;
  3908. text-transform:none;
  3909. }
  3910. #u31544_img {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:100px;
  3916. height:38px;
  3917. }
  3918. #u31544 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:240px;
  3922. top:77px;
  3923. width:100px;
  3924. height:38px;
  3925. display:flex;
  3926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. font-size:12px;
  3930. }
  3931. #u31544 .text {
  3932. position:absolute;
  3933. align-self:center;
  3934. padding:2px 2px 2px 0px;
  3935. box-sizing:border-box;
  3936. width:100%;
  3937. }
  3938. #u31544_text {
  3939. border-width:0px;
  3940. word-wrap:break-word;
  3941. text-transform:none;
  3942. }
  3943. #u31545_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:100px;
  3949. height:38px;
  3950. }
  3951. #u31545 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:340px;
  3955. top:77px;
  3956. width:100px;
  3957. height:38px;
  3958. display:flex;
  3959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3960. font-weight:400;
  3961. font-style:normal;
  3962. font-size:12px;
  3963. }
  3964. #u31545 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:2px 2px 2px 0px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u31545_text {
  3972. border-width:0px;
  3973. word-wrap:break-word;
  3974. text-transform:none;
  3975. }
  3976. #u31546_img {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:100px;
  3982. height:38px;
  3983. }
  3984. #u31546 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:440px;
  3988. top:77px;
  3989. width:100px;
  3990. height:38px;
  3991. display:flex;
  3992. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:12px;
  3996. }
  3997. #u31546 .text {
  3998. position:absolute;
  3999. align-self:center;
  4000. padding:2px 2px 2px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u31546_text {
  4005. border-width:0px;
  4006. word-wrap:break-word;
  4007. text-transform:none;
  4008. visibility:hidden;
  4009. }
  4010. #u31547_img {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:100px;
  4016. height:38px;
  4017. }
  4018. #u31547 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:540px;
  4022. top:77px;
  4023. width:100px;
  4024. height:38px;
  4025. display:flex;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:12px;
  4030. }
  4031. #u31547 .text {
  4032. position:absolute;
  4033. align-self:center;
  4034. padding:2px 2px 2px 0px;
  4035. box-sizing:border-box;
  4036. width:100%;
  4037. }
  4038. #u31547_text {
  4039. border-width:0px;
  4040. word-wrap:break-word;
  4041. text-transform:none;
  4042. visibility:hidden;
  4043. }
  4044. #u31548_img {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:100px;
  4050. height:38px;
  4051. }
  4052. #u31548 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:640px;
  4056. top:77px;
  4057. width:100px;
  4058. height:38px;
  4059. display:flex;
  4060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4061. font-weight:400;
  4062. font-style:normal;
  4063. font-size:12px;
  4064. }
  4065. #u31548 .text {
  4066. position:absolute;
  4067. align-self:center;
  4068. padding:2px 2px 2px 0px;
  4069. box-sizing:border-box;
  4070. width:100%;
  4071. }
  4072. #u31548_text {
  4073. border-width:0px;
  4074. word-wrap:break-word;
  4075. text-transform:none;
  4076. }
  4077. #u31549_img {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:100px;
  4083. height:38px;
  4084. }
  4085. #u31549 {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:740px;
  4089. top:77px;
  4090. width:100px;
  4091. height:38px;
  4092. display:flex;
  4093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. font-size:12px;
  4097. }
  4098. #u31549 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 0px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u31549_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u31550_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:100px;
  4117. height:38px;
  4118. }
  4119. #u31550 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:840px;
  4123. top:77px;
  4124. width:100px;
  4125. height:38px;
  4126. display:flex;
  4127. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:12px;
  4131. }
  4132. #u31550 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:2px 2px 2px 0px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u31550_text {
  4140. border-width:0px;
  4141. word-wrap:break-word;
  4142. text-transform:none;
  4143. visibility:hidden;
  4144. }
  4145. #u31551_img {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:0px;
  4149. top:0px;
  4150. width:100px;
  4151. height:38px;
  4152. }
  4153. #u31551 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:940px;
  4157. top:77px;
  4158. width:100px;
  4159. height:38px;
  4160. display:flex;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:12px;
  4165. }
  4166. #u31551 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 0px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u31551_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. visibility:hidden;
  4178. }
  4179. #u31552_img {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:100px;
  4185. height:38px;
  4186. }
  4187. #u31552 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:1040px;
  4191. top:77px;
  4192. width:100px;
  4193. height:38px;
  4194. display:flex;
  4195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:12px;
  4199. }
  4200. #u31552 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 0px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u31552_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u31553_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:80px;
  4219. height:38px;
  4220. }
  4221. #u31553 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:1140px;
  4225. top:77px;
  4226. width:80px;
  4227. height:38px;
  4228. display:flex;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:12px;
  4233. }
  4234. #u31553 .text {
  4235. position:absolute;
  4236. align-self:center;
  4237. padding:2px 2px 2px 0px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u31553_text {
  4242. border-width:0px;
  4243. word-wrap:break-word;
  4244. text-transform:none;
  4245. }
  4246. #u31554_img {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:40px;
  4252. height:38px;
  4253. }
  4254. #u31554 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:115px;
  4259. width:40px;
  4260. height:38px;
  4261. display:flex;
  4262. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4263. font-weight:400;
  4264. font-style:normal;
  4265. font-size:12px;
  4266. }
  4267. #u31554 .text {
  4268. position:absolute;
  4269. align-self:center;
  4270. padding:2px 2px 2px 0px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u31554_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. visibility:hidden;
  4279. }
  4280. #u31555_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:100px;
  4286. height:38px;
  4287. }
  4288. #u31555 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:40px;
  4292. top:115px;
  4293. width:100px;
  4294. height:38px;
  4295. display:flex;
  4296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4297. font-weight:400;
  4298. font-style:normal;
  4299. font-size:12px;
  4300. }
  4301. #u31555 .text {
  4302. position:absolute;
  4303. align-self:center;
  4304. padding:2px 2px 2px 0px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u31555_text {
  4309. border-width:0px;
  4310. word-wrap:break-word;
  4311. text-transform:none;
  4312. visibility:hidden;
  4313. }
  4314. #u31556_img {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:100px;
  4320. height:38px;
  4321. }
  4322. #u31556 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:140px;
  4326. top:115px;
  4327. width:100px;
  4328. height:38px;
  4329. display:flex;
  4330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:12px;
  4334. }
  4335. #u31556 .text {
  4336. position:absolute;
  4337. align-self:center;
  4338. padding:2px 2px 2px 0px;
  4339. box-sizing:border-box;
  4340. width:100%;
  4341. }
  4342. #u31556_text {
  4343. border-width:0px;
  4344. word-wrap:break-word;
  4345. text-transform:none;
  4346. visibility:hidden;
  4347. }
  4348. #u31557_img {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:100px;
  4354. height:38px;
  4355. }
  4356. #u31557 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:240px;
  4360. top:115px;
  4361. width:100px;
  4362. height:38px;
  4363. display:flex;
  4364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:12px;
  4368. }
  4369. #u31557 .text {
  4370. position:absolute;
  4371. align-self:center;
  4372. padding:2px 2px 2px 0px;
  4373. box-sizing:border-box;
  4374. width:100%;
  4375. }
  4376. #u31557_text {
  4377. border-width:0px;
  4378. word-wrap:break-word;
  4379. text-transform:none;
  4380. }
  4381. #u31558_img {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:100px;
  4387. height:38px;
  4388. }
  4389. #u31558 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:340px;
  4393. top:115px;
  4394. width:100px;
  4395. height:38px;
  4396. display:flex;
  4397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:12px;
  4401. }
  4402. #u31558 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u31558_text {
  4410. border-width:0px;
  4411. word-wrap:break-word;
  4412. text-transform:none;
  4413. }
  4414. #u31559_img {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:100px;
  4420. height:38px;
  4421. }
  4422. #u31559 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:440px;
  4426. top:115px;
  4427. width:100px;
  4428. height:38px;
  4429. display:flex;
  4430. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:12px;
  4434. }
  4435. #u31559 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 0px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u31559_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u31560_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:100px;
  4454. height:38px;
  4455. }
  4456. #u31560 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:540px;
  4460. top:115px;
  4461. width:100px;
  4462. height:38px;
  4463. display:flex;
  4464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:12px;
  4468. }
  4469. #u31560 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 0px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u31560_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u31561_img {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:100px;
  4488. height:38px;
  4489. }
  4490. #u31561 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:640px;
  4494. top:115px;
  4495. width:100px;
  4496. height:38px;
  4497. display:flex;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:12px;
  4502. }
  4503. #u31561 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:2px 2px 2px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u31561_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. }
  4515. #u31562_img {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:100px;
  4521. height:38px;
  4522. }
  4523. #u31562 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:740px;
  4527. top:115px;
  4528. width:100px;
  4529. height:38px;
  4530. display:flex;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:12px;
  4535. }
  4536. #u31562 .text {
  4537. position:absolute;
  4538. align-self:center;
  4539. padding:2px 2px 2px 0px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u31562_text {
  4544. border-width:0px;
  4545. word-wrap:break-word;
  4546. text-transform:none;
  4547. visibility:hidden;
  4548. }
  4549. #u31563_img {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:100px;
  4555. height:38px;
  4556. }
  4557. #u31563 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:840px;
  4561. top:115px;
  4562. width:100px;
  4563. height:38px;
  4564. display:flex;
  4565. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4566. font-weight:400;
  4567. font-style:normal;
  4568. font-size:12px;
  4569. }
  4570. #u31563 .text {
  4571. position:absolute;
  4572. align-self:center;
  4573. padding:2px 2px 2px 0px;
  4574. box-sizing:border-box;
  4575. width:100%;
  4576. }
  4577. #u31563_text {
  4578. border-width:0px;
  4579. word-wrap:break-word;
  4580. text-transform:none;
  4581. visibility:hidden;
  4582. }
  4583. #u31564_img {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:100px;
  4589. height:38px;
  4590. }
  4591. #u31564 {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:940px;
  4595. top:115px;
  4596. width:100px;
  4597. height:38px;
  4598. display:flex;
  4599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. font-size:12px;
  4603. }
  4604. #u31564 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 0px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u31564_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u31565_img {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:100px;
  4623. height:38px;
  4624. }
  4625. #u31565 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:1040px;
  4629. top:115px;
  4630. width:100px;
  4631. height:38px;
  4632. display:flex;
  4633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:12px;
  4637. }
  4638. #u31565 .text {
  4639. position:absolute;
  4640. align-self:center;
  4641. padding:2px 2px 2px 0px;
  4642. box-sizing:border-box;
  4643. width:100%;
  4644. }
  4645. #u31565_text {
  4646. border-width:0px;
  4647. word-wrap:break-word;
  4648. text-transform:none;
  4649. visibility:hidden;
  4650. }
  4651. #u31566_img {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:80px;
  4657. height:38px;
  4658. }
  4659. #u31566 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:1140px;
  4663. top:115px;
  4664. width:80px;
  4665. height:38px;
  4666. display:flex;
  4667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:12px;
  4671. color:#1890FF;
  4672. }
  4673. #u31566 .text {
  4674. position:absolute;
  4675. align-self:center;
  4676. padding:2px 2px 2px 0px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u31566_text {
  4681. border-width:0px;
  4682. word-wrap:break-word;
  4683. text-transform:none;
  4684. }
  4685. #u31567_img {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:40px;
  4691. height:38px;
  4692. }
  4693. #u31567 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:153px;
  4698. width:40px;
  4699. height:38px;
  4700. display:flex;
  4701. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4702. font-weight:400;
  4703. font-style:normal;
  4704. font-size:12px;
  4705. }
  4706. #u31567 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:2px 2px 2px 0px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u31567_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. visibility:hidden;
  4718. }
  4719. #u31568_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:100px;
  4725. height:38px;
  4726. }
  4727. #u31568 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:40px;
  4731. top:153px;
  4732. width:100px;
  4733. height:38px;
  4734. display:flex;
  4735. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. font-size:12px;
  4739. }
  4740. #u31568 .text {
  4741. position:absolute;
  4742. align-self:center;
  4743. padding:2px 2px 2px 0px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u31568_text {
  4748. border-width:0px;
  4749. word-wrap:break-word;
  4750. text-transform:none;
  4751. visibility:hidden;
  4752. }
  4753. #u31569_img {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:100px;
  4759. height:38px;
  4760. }
  4761. #u31569 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:140px;
  4765. top:153px;
  4766. width:100px;
  4767. height:38px;
  4768. display:flex;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:12px;
  4773. }
  4774. #u31569 .text {
  4775. position:absolute;
  4776. align-self:center;
  4777. padding:2px 2px 2px 0px;
  4778. box-sizing:border-box;
  4779. width:100%;
  4780. }
  4781. #u31569_text {
  4782. border-width:0px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. visibility:hidden;
  4786. }
  4787. #u31570_img {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:100px;
  4793. height:38px;
  4794. }
  4795. #u31570 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:240px;
  4799. top:153px;
  4800. width:100px;
  4801. height:38px;
  4802. display:flex;
  4803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:12px;
  4807. }
  4808. #u31570 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 0px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u31570_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u31571_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:100px;
  4827. height:38px;
  4828. }
  4829. #u31571 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:340px;
  4833. top:153px;
  4834. width:100px;
  4835. height:38px;
  4836. display:flex;
  4837. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:12px;
  4841. }
  4842. #u31571 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:2px 2px 2px 0px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u31571_text {
  4850. border-width:0px;
  4851. word-wrap:break-word;
  4852. text-transform:none;
  4853. visibility:hidden;
  4854. }
  4855. #u31572_img {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:100px;
  4861. height:38px;
  4862. }
  4863. #u31572 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:440px;
  4867. top:153px;
  4868. width:100px;
  4869. height:38px;
  4870. display:flex;
  4871. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4872. font-weight:400;
  4873. font-style:normal;
  4874. font-size:12px;
  4875. }
  4876. #u31572 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:2px 2px 2px 0px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u31572_text {
  4884. border-width:0px;
  4885. word-wrap:break-word;
  4886. text-transform:none;
  4887. visibility:hidden;
  4888. }
  4889. #u31573_img {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:100px;
  4895. height:38px;
  4896. }
  4897. #u31573 {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:540px;
  4901. top:153px;
  4902. width:100px;
  4903. height:38px;
  4904. display:flex;
  4905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4906. font-weight:400;
  4907. font-style:normal;
  4908. font-size:12px;
  4909. }
  4910. #u31573 .text {
  4911. position:absolute;
  4912. align-self:center;
  4913. padding:2px 2px 2px 0px;
  4914. box-sizing:border-box;
  4915. width:100%;
  4916. }
  4917. #u31573_text {
  4918. border-width:0px;
  4919. word-wrap:break-word;
  4920. text-transform:none;
  4921. visibility:hidden;
  4922. }
  4923. #u31574_img {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:0px;
  4927. top:0px;
  4928. width:100px;
  4929. height:38px;
  4930. }
  4931. #u31574 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:640px;
  4935. top:153px;
  4936. width:100px;
  4937. height:38px;
  4938. display:flex;
  4939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4940. font-weight:400;
  4941. font-style:normal;
  4942. font-size:12px;
  4943. }
  4944. #u31574 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 2px 2px 0px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u31574_text {
  4952. border-width:0px;
  4953. word-wrap:break-word;
  4954. text-transform:none;
  4955. }
  4956. #u31575_img {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:100px;
  4962. height:38px;
  4963. }
  4964. #u31575 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:740px;
  4968. top:153px;
  4969. width:100px;
  4970. height:38px;
  4971. display:flex;
  4972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:12px;
  4976. }
  4977. #u31575 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 2px 2px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u31575_text {
  4985. border-width:0px;
  4986. word-wrap:break-word;
  4987. text-transform:none;
  4988. visibility:hidden;
  4989. }
  4990. #u31576_img {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:100px;
  4996. height:38px;
  4997. }
  4998. #u31576 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:840px;
  5002. top:153px;
  5003. width:100px;
  5004. height:38px;
  5005. display:flex;
  5006. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:12px;
  5010. }
  5011. #u31576 .text {
  5012. position:absolute;
  5013. align-self:center;
  5014. padding:2px 2px 2px 0px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u31576_text {
  5019. border-width:0px;
  5020. word-wrap:break-word;
  5021. text-transform:none;
  5022. visibility:hidden;
  5023. }
  5024. #u31577_img {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:100px;
  5030. height:38px;
  5031. }
  5032. #u31577 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:940px;
  5036. top:153px;
  5037. width:100px;
  5038. height:38px;
  5039. display:flex;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:12px;
  5044. }
  5045. #u31577 .text {
  5046. position:absolute;
  5047. align-self:center;
  5048. padding:2px 2px 2px 0px;
  5049. box-sizing:border-box;
  5050. width:100%;
  5051. }
  5052. #u31577_text {
  5053. border-width:0px;
  5054. word-wrap:break-word;
  5055. text-transform:none;
  5056. visibility:hidden;
  5057. }
  5058. #u31578_img {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:0px;
  5063. width:100px;
  5064. height:38px;
  5065. }
  5066. #u31578 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:1040px;
  5070. top:153px;
  5071. width:100px;
  5072. height:38px;
  5073. display:flex;
  5074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5075. font-weight:400;
  5076. font-style:normal;
  5077. font-size:12px;
  5078. }
  5079. #u31578 .text {
  5080. position:absolute;
  5081. align-self:center;
  5082. padding:2px 2px 2px 0px;
  5083. box-sizing:border-box;
  5084. width:100%;
  5085. }
  5086. #u31578_text {
  5087. border-width:0px;
  5088. word-wrap:break-word;
  5089. text-transform:none;
  5090. visibility:hidden;
  5091. }
  5092. #u31579_img {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:0px;
  5096. top:0px;
  5097. width:80px;
  5098. height:38px;
  5099. }
  5100. #u31579 {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:1140px;
  5104. top:153px;
  5105. width:80px;
  5106. height:38px;
  5107. display:flex;
  5108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5109. font-weight:400;
  5110. font-style:normal;
  5111. font-size:12px;
  5112. color:#AAAAAA;
  5113. }
  5114. #u31579 .text {
  5115. position:absolute;
  5116. align-self:center;
  5117. padding:2px 2px 2px 0px;
  5118. box-sizing:border-box;
  5119. width:100%;
  5120. }
  5121. #u31579_text {
  5122. border-width:0px;
  5123. word-wrap:break-word;
  5124. text-transform:none;
  5125. }
  5126. #u31580_img {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:40px;
  5132. height:35px;
  5133. }
  5134. #u31580 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:191px;
  5139. width:40px;
  5140. height:35px;
  5141. display:flex;
  5142. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:12px;
  5146. color:#606266;
  5147. }
  5148. #u31580 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 0px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u31580_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u31581_img {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:100px;
  5167. height:35px;
  5168. }
  5169. #u31581 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:40px;
  5173. top:191px;
  5174. width:100px;
  5175. height:35px;
  5176. display:flex;
  5177. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:12px;
  5181. color:#606266;
  5182. }
  5183. #u31581 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:2px 2px 2px 0px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u31581_text {
  5191. border-width:0px;
  5192. word-wrap:break-word;
  5193. text-transform:none;
  5194. visibility:hidden;
  5195. }
  5196. #u31582_img {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:100px;
  5202. height:35px;
  5203. }
  5204. #u31582 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:140px;
  5208. top:191px;
  5209. width:100px;
  5210. height:35px;
  5211. display:flex;
  5212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5213. font-weight:400;
  5214. font-style:normal;
  5215. font-size:12px;
  5216. color:#606266;
  5217. }
  5218. #u31582 .text {
  5219. position:absolute;
  5220. align-self:center;
  5221. padding:2px 2px 2px 0px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u31582_text {
  5226. border-width:0px;
  5227. word-wrap:break-word;
  5228. text-transform:none;
  5229. visibility:hidden;
  5230. }
  5231. #u31583_img {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:100px;
  5237. height:35px;
  5238. }
  5239. #u31583 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:240px;
  5243. top:191px;
  5244. width:100px;
  5245. height:35px;
  5246. display:flex;
  5247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5248. font-weight:400;
  5249. font-style:normal;
  5250. font-size:12px;
  5251. color:#606266;
  5252. }
  5253. #u31583 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:2px 2px 2px 0px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u31583_text {
  5261. border-width:0px;
  5262. word-wrap:break-word;
  5263. text-transform:none;
  5264. visibility:hidden;
  5265. }
  5266. #u31584_img {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:100px;
  5272. height:35px;
  5273. }
  5274. #u31584 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:340px;
  5278. top:191px;
  5279. width:100px;
  5280. height:35px;
  5281. display:flex;
  5282. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:12px;
  5286. color:#606266;
  5287. }
  5288. #u31584 .text {
  5289. position:absolute;
  5290. align-self:center;
  5291. padding:2px 2px 2px 0px;
  5292. box-sizing:border-box;
  5293. width:100%;
  5294. }
  5295. #u31584_text {
  5296. border-width:0px;
  5297. word-wrap:break-word;
  5298. text-transform:none;
  5299. visibility:hidden;
  5300. }
  5301. #u31585_img {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:100px;
  5307. height:35px;
  5308. }
  5309. #u31585 {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:440px;
  5313. top:191px;
  5314. width:100px;
  5315. height:35px;
  5316. display:flex;
  5317. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:12px;
  5321. color:#606266;
  5322. }
  5323. #u31585 .text {
  5324. position:absolute;
  5325. align-self:center;
  5326. padding:2px 2px 2px 0px;
  5327. box-sizing:border-box;
  5328. width:100%;
  5329. }
  5330. #u31585_text {
  5331. border-width:0px;
  5332. word-wrap:break-word;
  5333. text-transform:none;
  5334. visibility:hidden;
  5335. }
  5336. #u31586_img {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:100px;
  5342. height:35px;
  5343. }
  5344. #u31586 {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:540px;
  5348. top:191px;
  5349. width:100px;
  5350. height:35px;
  5351. display:flex;
  5352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5353. font-weight:400;
  5354. font-style:normal;
  5355. font-size:12px;
  5356. color:#606266;
  5357. }
  5358. #u31586 .text {
  5359. position:absolute;
  5360. align-self:center;
  5361. padding:2px 2px 2px 0px;
  5362. box-sizing:border-box;
  5363. width:100%;
  5364. }
  5365. #u31586_text {
  5366. border-width:0px;
  5367. word-wrap:break-word;
  5368. text-transform:none;
  5369. visibility:hidden;
  5370. }
  5371. #u31587_img {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:100px;
  5377. height:35px;
  5378. }
  5379. #u31587 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:640px;
  5383. top:191px;
  5384. width:100px;
  5385. height:35px;
  5386. display:flex;
  5387. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5388. font-weight:400;
  5389. font-style:normal;
  5390. font-size:12px;
  5391. color:#606266;
  5392. }
  5393. #u31587 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:2px 2px 2px 0px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u31587_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. visibility:hidden;
  5405. }
  5406. #u31588_img {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:100px;
  5412. height:35px;
  5413. }
  5414. #u31588 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:740px;
  5418. top:191px;
  5419. width:100px;
  5420. height:35px;
  5421. display:flex;
  5422. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. font-size:12px;
  5426. color:#606266;
  5427. }
  5428. #u31588 .text {
  5429. position:absolute;
  5430. align-self:center;
  5431. padding:2px 2px 2px 0px;
  5432. box-sizing:border-box;
  5433. width:100%;
  5434. }
  5435. #u31588_text {
  5436. border-width:0px;
  5437. word-wrap:break-word;
  5438. text-transform:none;
  5439. visibility:hidden;
  5440. }
  5441. #u31589_img {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:100px;
  5447. height:35px;
  5448. }
  5449. #u31589 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:840px;
  5453. top:191px;
  5454. width:100px;
  5455. height:35px;
  5456. display:flex;
  5457. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5458. font-weight:400;
  5459. font-style:normal;
  5460. font-size:12px;
  5461. color:#606266;
  5462. }
  5463. #u31589 .text {
  5464. position:absolute;
  5465. align-self:center;
  5466. padding:2px 2px 2px 0px;
  5467. box-sizing:border-box;
  5468. width:100%;
  5469. }
  5470. #u31589_text {
  5471. border-width:0px;
  5472. word-wrap:break-word;
  5473. text-transform:none;
  5474. visibility:hidden;
  5475. }
  5476. #u31590_img {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:100px;
  5482. height:35px;
  5483. }
  5484. #u31590 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:940px;
  5488. top:191px;
  5489. width:100px;
  5490. height:35px;
  5491. display:flex;
  5492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:12px;
  5496. color:#606266;
  5497. }
  5498. #u31590 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 2px 2px 0px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u31590_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. visibility:hidden;
  5510. }
  5511. #u31591_img {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:100px;
  5517. height:35px;
  5518. }
  5519. #u31591 {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:1040px;
  5523. top:191px;
  5524. width:100px;
  5525. height:35px;
  5526. display:flex;
  5527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5528. font-weight:400;
  5529. font-style:normal;
  5530. font-size:12px;
  5531. color:#606266;
  5532. }
  5533. #u31591 .text {
  5534. position:absolute;
  5535. align-self:center;
  5536. padding:2px 2px 2px 0px;
  5537. box-sizing:border-box;
  5538. width:100%;
  5539. }
  5540. #u31591_text {
  5541. border-width:0px;
  5542. word-wrap:break-word;
  5543. text-transform:none;
  5544. visibility:hidden;
  5545. }
  5546. #u31592_img {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:80px;
  5552. height:35px;
  5553. }
  5554. #u31592 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:1140px;
  5558. top:191px;
  5559. width:80px;
  5560. height:35px;
  5561. display:flex;
  5562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:12px;
  5566. color:#02A7F0;
  5567. }
  5568. #u31592 .text {
  5569. position:absolute;
  5570. align-self:center;
  5571. padding:2px 2px 2px 0px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u31592_text {
  5576. border-width:0px;
  5577. word-wrap:break-word;
  5578. text-transform:none;
  5579. visibility:hidden;
  5580. }
  5581. #u31593_img {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:0px;
  5585. top:0px;
  5586. width:40px;
  5587. height:35px;
  5588. }
  5589. #u31593 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:0px;
  5593. top:226px;
  5594. width:40px;
  5595. height:35px;
  5596. display:flex;
  5597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:12px;
  5601. color:#606266;
  5602. }
  5603. #u31593 .text {
  5604. position:absolute;
  5605. align-self:center;
  5606. padding:2px 2px 2px 0px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u31593_text {
  5611. border-width:0px;
  5612. word-wrap:break-word;
  5613. text-transform:none;
  5614. visibility:hidden;
  5615. }
  5616. #u31594_img {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:100px;
  5622. height:35px;
  5623. }
  5624. #u31594 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:40px;
  5628. top:226px;
  5629. width:100px;
  5630. height:35px;
  5631. display:flex;
  5632. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:12px;
  5636. color:#606266;
  5637. }
  5638. #u31594 .text {
  5639. position:absolute;
  5640. align-self:center;
  5641. padding:2px 2px 2px 0px;
  5642. box-sizing:border-box;
  5643. width:100%;
  5644. }
  5645. #u31594_text {
  5646. border-width:0px;
  5647. word-wrap:break-word;
  5648. text-transform:none;
  5649. visibility:hidden;
  5650. }
  5651. #u31595_img {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:100px;
  5657. height:35px;
  5658. }
  5659. #u31595 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:140px;
  5663. top:226px;
  5664. width:100px;
  5665. height:35px;
  5666. display:flex;
  5667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:12px;
  5671. color:#606266;
  5672. }
  5673. #u31595 .text {
  5674. position:absolute;
  5675. align-self:center;
  5676. padding:2px 2px 2px 0px;
  5677. box-sizing:border-box;
  5678. width:100%;
  5679. }
  5680. #u31595_text {
  5681. border-width:0px;
  5682. word-wrap:break-word;
  5683. text-transform:none;
  5684. visibility:hidden;
  5685. }
  5686. #u31596_img {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:0px;
  5690. top:0px;
  5691. width:100px;
  5692. height:35px;
  5693. }
  5694. #u31596 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:240px;
  5698. top:226px;
  5699. width:100px;
  5700. height:35px;
  5701. display:flex;
  5702. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:12px;
  5706. color:#606266;
  5707. }
  5708. #u31596 .text {
  5709. position:absolute;
  5710. align-self:center;
  5711. padding:2px 2px 2px 0px;
  5712. box-sizing:border-box;
  5713. width:100%;
  5714. }
  5715. #u31596_text {
  5716. border-width:0px;
  5717. word-wrap:break-word;
  5718. text-transform:none;
  5719. visibility:hidden;
  5720. }
  5721. #u31597_img {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:100px;
  5727. height:35px;
  5728. }
  5729. #u31597 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:340px;
  5733. top:226px;
  5734. width:100px;
  5735. height:35px;
  5736. display:flex;
  5737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:12px;
  5741. color:#606266;
  5742. }
  5743. #u31597 .text {
  5744. position:absolute;
  5745. align-self:center;
  5746. padding:2px 2px 2px 0px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u31597_text {
  5751. border-width:0px;
  5752. word-wrap:break-word;
  5753. text-transform:none;
  5754. visibility:hidden;
  5755. }
  5756. #u31598_img {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:100px;
  5762. height:35px;
  5763. }
  5764. #u31598 {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:440px;
  5768. top:226px;
  5769. width:100px;
  5770. height:35px;
  5771. display:flex;
  5772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:12px;
  5776. color:#606266;
  5777. }
  5778. #u31598 .text {
  5779. position:absolute;
  5780. align-self:center;
  5781. padding:2px 2px 2px 0px;
  5782. box-sizing:border-box;
  5783. width:100%;
  5784. }
  5785. #u31598_text {
  5786. border-width:0px;
  5787. word-wrap:break-word;
  5788. text-transform:none;
  5789. visibility:hidden;
  5790. }
  5791. #u31599_img {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:100px;
  5797. height:35px;
  5798. }
  5799. #u31599 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:540px;
  5803. top:226px;
  5804. width:100px;
  5805. height:35px;
  5806. display:flex;
  5807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:12px;
  5811. color:#606266;
  5812. }
  5813. #u31599 .text {
  5814. position:absolute;
  5815. align-self:center;
  5816. padding:2px 2px 2px 0px;
  5817. box-sizing:border-box;
  5818. width:100%;
  5819. }
  5820. #u31599_text {
  5821. border-width:0px;
  5822. word-wrap:break-word;
  5823. text-transform:none;
  5824. visibility:hidden;
  5825. }
  5826. #u31600_img {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:100px;
  5832. height:35px;
  5833. }
  5834. #u31600 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:640px;
  5838. top:226px;
  5839. width:100px;
  5840. height:35px;
  5841. display:flex;
  5842. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:12px;
  5846. color:#606266;
  5847. }
  5848. #u31600 .text {
  5849. position:absolute;
  5850. align-self:center;
  5851. padding:2px 2px 2px 0px;
  5852. box-sizing:border-box;
  5853. width:100%;
  5854. }
  5855. #u31600_text {
  5856. border-width:0px;
  5857. word-wrap:break-word;
  5858. text-transform:none;
  5859. visibility:hidden;
  5860. }
  5861. #u31601_img {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:100px;
  5867. height:35px;
  5868. }
  5869. #u31601 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:740px;
  5873. top:226px;
  5874. width:100px;
  5875. height:35px;
  5876. display:flex;
  5877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:12px;
  5881. color:#606266;
  5882. }
  5883. #u31601 .text {
  5884. position:absolute;
  5885. align-self:center;
  5886. padding:2px 2px 2px 0px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u31601_text {
  5891. border-width:0px;
  5892. word-wrap:break-word;
  5893. text-transform:none;
  5894. visibility:hidden;
  5895. }
  5896. #u31602_img {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:100px;
  5902. height:35px;
  5903. }
  5904. #u31602 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:840px;
  5908. top:226px;
  5909. width:100px;
  5910. height:35px;
  5911. display:flex;
  5912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:12px;
  5916. color:#606266;
  5917. }
  5918. #u31602 .text {
  5919. position:absolute;
  5920. align-self:center;
  5921. padding:2px 2px 2px 0px;
  5922. box-sizing:border-box;
  5923. width:100%;
  5924. }
  5925. #u31602_text {
  5926. border-width:0px;
  5927. word-wrap:break-word;
  5928. text-transform:none;
  5929. visibility:hidden;
  5930. }
  5931. #u31603_img {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:100px;
  5937. height:35px;
  5938. }
  5939. #u31603 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:940px;
  5943. top:226px;
  5944. width:100px;
  5945. height:35px;
  5946. display:flex;
  5947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5948. font-weight:400;
  5949. font-style:normal;
  5950. font-size:12px;
  5951. color:#606266;
  5952. }
  5953. #u31603 .text {
  5954. position:absolute;
  5955. align-self:center;
  5956. padding:2px 2px 2px 0px;
  5957. box-sizing:border-box;
  5958. width:100%;
  5959. }
  5960. #u31603_text {
  5961. border-width:0px;
  5962. word-wrap:break-word;
  5963. text-transform:none;
  5964. visibility:hidden;
  5965. }
  5966. #u31604_img {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:100px;
  5972. height:35px;
  5973. }
  5974. #u31604 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:1040px;
  5978. top:226px;
  5979. width:100px;
  5980. height:35px;
  5981. display:flex;
  5982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5983. font-weight:400;
  5984. font-style:normal;
  5985. font-size:12px;
  5986. color:#606266;
  5987. }
  5988. #u31604 .text {
  5989. position:absolute;
  5990. align-self:center;
  5991. padding:2px 2px 2px 0px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u31604_text {
  5996. border-width:0px;
  5997. word-wrap:break-word;
  5998. text-transform:none;
  5999. visibility:hidden;
  6000. }
  6001. #u31605_img {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:80px;
  6007. height:35px;
  6008. }
  6009. #u31605 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:1140px;
  6013. top:226px;
  6014. width:80px;
  6015. height:35px;
  6016. display:flex;
  6017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6018. font-weight:400;
  6019. font-style:normal;
  6020. font-size:12px;
  6021. color:#02A7F0;
  6022. }
  6023. #u31605 .text {
  6024. position:absolute;
  6025. align-self:center;
  6026. padding:2px 2px 2px 0px;
  6027. box-sizing:border-box;
  6028. width:100%;
  6029. }
  6030. #u31605_text {
  6031. border-width:0px;
  6032. word-wrap:break-word;
  6033. text-transform:none;
  6034. visibility:hidden;
  6035. }
  6036. #u31606_img {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:40px;
  6042. height:35px;
  6043. }
  6044. #u31606 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:261px;
  6049. width:40px;
  6050. height:35px;
  6051. display:flex;
  6052. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6053. font-weight:400;
  6054. font-style:normal;
  6055. font-size:12px;
  6056. color:#606266;
  6057. }
  6058. #u31606 .text {
  6059. position:absolute;
  6060. align-self:center;
  6061. padding:2px 2px 2px 0px;
  6062. box-sizing:border-box;
  6063. width:100%;
  6064. }
  6065. #u31606_text {
  6066. border-width:0px;
  6067. word-wrap:break-word;
  6068. text-transform:none;
  6069. visibility:hidden;
  6070. }
  6071. #u31607_img {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:100px;
  6077. height:35px;
  6078. }
  6079. #u31607 {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:40px;
  6083. top:261px;
  6084. width:100px;
  6085. height:35px;
  6086. display:flex;
  6087. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:12px;
  6091. color:#606266;
  6092. }
  6093. #u31607 .text {
  6094. position:absolute;
  6095. align-self:center;
  6096. padding:2px 2px 2px 0px;
  6097. box-sizing:border-box;
  6098. width:100%;
  6099. }
  6100. #u31607_text {
  6101. border-width:0px;
  6102. word-wrap:break-word;
  6103. text-transform:none;
  6104. visibility:hidden;
  6105. }
  6106. #u31608_img {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:100px;
  6112. height:35px;
  6113. }
  6114. #u31608 {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:140px;
  6118. top:261px;
  6119. width:100px;
  6120. height:35px;
  6121. display:flex;
  6122. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6123. font-weight:400;
  6124. font-style:normal;
  6125. font-size:12px;
  6126. color:#606266;
  6127. }
  6128. #u31608 .text {
  6129. position:absolute;
  6130. align-self:center;
  6131. padding:2px 2px 2px 0px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u31608_text {
  6136. border-width:0px;
  6137. word-wrap:break-word;
  6138. text-transform:none;
  6139. visibility:hidden;
  6140. }
  6141. #u31609_img {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:0px;
  6145. top:0px;
  6146. width:100px;
  6147. height:35px;
  6148. }
  6149. #u31609 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:240px;
  6153. top:261px;
  6154. width:100px;
  6155. height:35px;
  6156. display:flex;
  6157. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:12px;
  6161. color:#606266;
  6162. }
  6163. #u31609 .text {
  6164. position:absolute;
  6165. align-self:center;
  6166. padding:2px 2px 2px 0px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u31609_text {
  6171. border-width:0px;
  6172. word-wrap:break-word;
  6173. text-transform:none;
  6174. visibility:hidden;
  6175. }
  6176. #u31610_img {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:100px;
  6182. height:35px;
  6183. }
  6184. #u31610 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:340px;
  6188. top:261px;
  6189. width:100px;
  6190. height:35px;
  6191. display:flex;
  6192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:12px;
  6196. color:#606266;
  6197. }
  6198. #u31610 .text {
  6199. position:absolute;
  6200. align-self:center;
  6201. padding:2px 2px 2px 0px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u31610_text {
  6206. border-width:0px;
  6207. word-wrap:break-word;
  6208. text-transform:none;
  6209. visibility:hidden;
  6210. }
  6211. #u31611_img {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:0px;
  6215. top:0px;
  6216. width:100px;
  6217. height:35px;
  6218. }
  6219. #u31611 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:440px;
  6223. top:261px;
  6224. width:100px;
  6225. height:35px;
  6226. display:flex;
  6227. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6228. font-weight:400;
  6229. font-style:normal;
  6230. font-size:12px;
  6231. color:#606266;
  6232. }
  6233. #u31611 .text {
  6234. position:absolute;
  6235. align-self:center;
  6236. padding:2px 2px 2px 0px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u31611_text {
  6241. border-width:0px;
  6242. word-wrap:break-word;
  6243. text-transform:none;
  6244. visibility:hidden;
  6245. }
  6246. #u31612_img {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:100px;
  6252. height:35px;
  6253. }
  6254. #u31612 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:540px;
  6258. top:261px;
  6259. width:100px;
  6260. height:35px;
  6261. display:flex;
  6262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6263. font-weight:400;
  6264. font-style:normal;
  6265. font-size:12px;
  6266. color:#606266;
  6267. }
  6268. #u31612 .text {
  6269. position:absolute;
  6270. align-self:center;
  6271. padding:2px 2px 2px 0px;
  6272. box-sizing:border-box;
  6273. width:100%;
  6274. }
  6275. #u31612_text {
  6276. border-width:0px;
  6277. word-wrap:break-word;
  6278. text-transform:none;
  6279. visibility:hidden;
  6280. }
  6281. #u31613_img {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:0px;
  6285. top:0px;
  6286. width:100px;
  6287. height:35px;
  6288. }
  6289. #u31613 {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:640px;
  6293. top:261px;
  6294. width:100px;
  6295. height:35px;
  6296. display:flex;
  6297. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6298. font-weight:400;
  6299. font-style:normal;
  6300. font-size:12px;
  6301. color:#606266;
  6302. }
  6303. #u31613 .text {
  6304. position:absolute;
  6305. align-self:center;
  6306. padding:2px 2px 2px 0px;
  6307. box-sizing:border-box;
  6308. width:100%;
  6309. }
  6310. #u31613_text {
  6311. border-width:0px;
  6312. word-wrap:break-word;
  6313. text-transform:none;
  6314. visibility:hidden;
  6315. }
  6316. #u31614_img {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:100px;
  6322. height:35px;
  6323. }
  6324. #u31614 {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:740px;
  6328. top:261px;
  6329. width:100px;
  6330. height:35px;
  6331. display:flex;
  6332. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:12px;
  6336. color:#606266;
  6337. }
  6338. #u31614 .text {
  6339. position:absolute;
  6340. align-self:center;
  6341. padding:2px 2px 2px 0px;
  6342. box-sizing:border-box;
  6343. width:100%;
  6344. }
  6345. #u31614_text {
  6346. border-width:0px;
  6347. word-wrap:break-word;
  6348. text-transform:none;
  6349. visibility:hidden;
  6350. }
  6351. #u31615_img {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:100px;
  6357. height:35px;
  6358. }
  6359. #u31615 {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:840px;
  6363. top:261px;
  6364. width:100px;
  6365. height:35px;
  6366. display:flex;
  6367. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6368. font-weight:400;
  6369. font-style:normal;
  6370. font-size:12px;
  6371. color:#606266;
  6372. }
  6373. #u31615 .text {
  6374. position:absolute;
  6375. align-self:center;
  6376. padding:2px 2px 2px 0px;
  6377. box-sizing:border-box;
  6378. width:100%;
  6379. }
  6380. #u31615_text {
  6381. border-width:0px;
  6382. word-wrap:break-word;
  6383. text-transform:none;
  6384. visibility:hidden;
  6385. }
  6386. #u31616_img {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:100px;
  6392. height:35px;
  6393. }
  6394. #u31616 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:940px;
  6398. top:261px;
  6399. width:100px;
  6400. height:35px;
  6401. display:flex;
  6402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6403. font-weight:400;
  6404. font-style:normal;
  6405. font-size:12px;
  6406. color:#606266;
  6407. }
  6408. #u31616 .text {
  6409. position:absolute;
  6410. align-self:center;
  6411. padding:2px 2px 2px 0px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u31616_text {
  6416. border-width:0px;
  6417. word-wrap:break-word;
  6418. text-transform:none;
  6419. visibility:hidden;
  6420. }
  6421. #u31617_img {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:0px;
  6425. top:0px;
  6426. width:100px;
  6427. height:35px;
  6428. }
  6429. #u31617 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:1040px;
  6433. top:261px;
  6434. width:100px;
  6435. height:35px;
  6436. display:flex;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:12px;
  6441. color:#606266;
  6442. }
  6443. #u31617 .text {
  6444. position:absolute;
  6445. align-self:center;
  6446. padding:2px 2px 2px 0px;
  6447. box-sizing:border-box;
  6448. width:100%;
  6449. }
  6450. #u31617_text {
  6451. border-width:0px;
  6452. word-wrap:break-word;
  6453. text-transform:none;
  6454. visibility:hidden;
  6455. }
  6456. #u31618_img {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:80px;
  6462. height:35px;
  6463. }
  6464. #u31618 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:1140px;
  6468. top:261px;
  6469. width:80px;
  6470. height:35px;
  6471. display:flex;
  6472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6473. font-weight:400;
  6474. font-style:normal;
  6475. font-size:12px;
  6476. color:#02A7F0;
  6477. }
  6478. #u31618 .text {
  6479. position:absolute;
  6480. align-self:center;
  6481. padding:2px 2px 2px 0px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u31618_text {
  6486. border-width:0px;
  6487. word-wrap:break-word;
  6488. text-transform:none;
  6489. visibility:hidden;
  6490. }
  6491. #u31619_img {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:40px;
  6497. height:35px;
  6498. }
  6499. #u31619 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:0px;
  6503. top:296px;
  6504. width:40px;
  6505. height:35px;
  6506. display:flex;
  6507. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:12px;
  6511. color:#606266;
  6512. }
  6513. #u31619 .text {
  6514. position:absolute;
  6515. align-self:center;
  6516. padding:2px 2px 2px 0px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u31619_text {
  6521. border-width:0px;
  6522. word-wrap:break-word;
  6523. text-transform:none;
  6524. visibility:hidden;
  6525. }
  6526. #u31620_img {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:100px;
  6532. height:35px;
  6533. }
  6534. #u31620 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:40px;
  6538. top:296px;
  6539. width:100px;
  6540. height:35px;
  6541. display:flex;
  6542. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:12px;
  6546. color:#606266;
  6547. }
  6548. #u31620 .text {
  6549. position:absolute;
  6550. align-self:center;
  6551. padding:2px 2px 2px 0px;
  6552. box-sizing:border-box;
  6553. width:100%;
  6554. }
  6555. #u31620_text {
  6556. border-width:0px;
  6557. word-wrap:break-word;
  6558. text-transform:none;
  6559. visibility:hidden;
  6560. }
  6561. #u31621_img {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:100px;
  6567. height:35px;
  6568. }
  6569. #u31621 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:140px;
  6573. top:296px;
  6574. width:100px;
  6575. height:35px;
  6576. display:flex;
  6577. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:12px;
  6581. color:#606266;
  6582. }
  6583. #u31621 .text {
  6584. position:absolute;
  6585. align-self:center;
  6586. padding:2px 2px 2px 0px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u31621_text {
  6591. border-width:0px;
  6592. word-wrap:break-word;
  6593. text-transform:none;
  6594. visibility:hidden;
  6595. }
  6596. #u31622_img {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:100px;
  6602. height:35px;
  6603. }
  6604. #u31622 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:240px;
  6608. top:296px;
  6609. width:100px;
  6610. height:35px;
  6611. display:flex;
  6612. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:12px;
  6616. color:#606266;
  6617. }
  6618. #u31622 .text {
  6619. position:absolute;
  6620. align-self:center;
  6621. padding:2px 2px 2px 0px;
  6622. box-sizing:border-box;
  6623. width:100%;
  6624. }
  6625. #u31622_text {
  6626. border-width:0px;
  6627. word-wrap:break-word;
  6628. text-transform:none;
  6629. visibility:hidden;
  6630. }
  6631. #u31623_img {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:100px;
  6637. height:35px;
  6638. }
  6639. #u31623 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:340px;
  6643. top:296px;
  6644. width:100px;
  6645. height:35px;
  6646. display:flex;
  6647. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:12px;
  6651. color:#606266;
  6652. }
  6653. #u31623 .text {
  6654. position:absolute;
  6655. align-self:center;
  6656. padding:2px 2px 2px 0px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u31623_text {
  6661. border-width:0px;
  6662. word-wrap:break-word;
  6663. text-transform:none;
  6664. visibility:hidden;
  6665. }
  6666. #u31624_img {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:100px;
  6672. height:35px;
  6673. }
  6674. #u31624 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:440px;
  6678. top:296px;
  6679. width:100px;
  6680. height:35px;
  6681. display:flex;
  6682. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:12px;
  6686. color:#606266;
  6687. }
  6688. #u31624 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:2px 2px 2px 0px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u31624_text {
  6696. border-width:0px;
  6697. word-wrap:break-word;
  6698. text-transform:none;
  6699. visibility:hidden;
  6700. }
  6701. #u31625_img {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:100px;
  6707. height:35px;
  6708. }
  6709. #u31625 {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:540px;
  6713. top:296px;
  6714. width:100px;
  6715. height:35px;
  6716. display:flex;
  6717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:12px;
  6721. color:#606266;
  6722. }
  6723. #u31625 .text {
  6724. position:absolute;
  6725. align-self:center;
  6726. padding:2px 2px 2px 0px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u31625_text {
  6731. border-width:0px;
  6732. word-wrap:break-word;
  6733. text-transform:none;
  6734. visibility:hidden;
  6735. }
  6736. #u31626_img {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:0px;
  6740. top:0px;
  6741. width:100px;
  6742. height:35px;
  6743. }
  6744. #u31626 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:640px;
  6748. top:296px;
  6749. width:100px;
  6750. height:35px;
  6751. display:flex;
  6752. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:12px;
  6756. color:#606266;
  6757. }
  6758. #u31626 .text {
  6759. position:absolute;
  6760. align-self:center;
  6761. padding:2px 2px 2px 0px;
  6762. box-sizing:border-box;
  6763. width:100%;
  6764. }
  6765. #u31626_text {
  6766. border-width:0px;
  6767. word-wrap:break-word;
  6768. text-transform:none;
  6769. visibility:hidden;
  6770. }
  6771. #u31627_img {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:100px;
  6777. height:35px;
  6778. }
  6779. #u31627 {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:740px;
  6783. top:296px;
  6784. width:100px;
  6785. height:35px;
  6786. display:flex;
  6787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6788. font-weight:400;
  6789. font-style:normal;
  6790. font-size:12px;
  6791. color:#606266;
  6792. }
  6793. #u31627 .text {
  6794. position:absolute;
  6795. align-self:center;
  6796. padding:2px 2px 2px 0px;
  6797. box-sizing:border-box;
  6798. width:100%;
  6799. }
  6800. #u31627_text {
  6801. border-width:0px;
  6802. word-wrap:break-word;
  6803. text-transform:none;
  6804. visibility:hidden;
  6805. }
  6806. #u31628_img {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:100px;
  6812. height:35px;
  6813. }
  6814. #u31628 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:840px;
  6818. top:296px;
  6819. width:100px;
  6820. height:35px;
  6821. display:flex;
  6822. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6823. font-weight:400;
  6824. font-style:normal;
  6825. font-size:12px;
  6826. color:#606266;
  6827. }
  6828. #u31628 .text {
  6829. position:absolute;
  6830. align-self:center;
  6831. padding:2px 2px 2px 0px;
  6832. box-sizing:border-box;
  6833. width:100%;
  6834. }
  6835. #u31628_text {
  6836. border-width:0px;
  6837. word-wrap:break-word;
  6838. text-transform:none;
  6839. visibility:hidden;
  6840. }
  6841. #u31629_img {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:100px;
  6847. height:35px;
  6848. }
  6849. #u31629 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:940px;
  6853. top:296px;
  6854. width:100px;
  6855. height:35px;
  6856. display:flex;
  6857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:12px;
  6861. color:#606266;
  6862. }
  6863. #u31629 .text {
  6864. position:absolute;
  6865. align-self:center;
  6866. padding:2px 2px 2px 0px;
  6867. box-sizing:border-box;
  6868. width:100%;
  6869. }
  6870. #u31629_text {
  6871. border-width:0px;
  6872. word-wrap:break-word;
  6873. text-transform:none;
  6874. visibility:hidden;
  6875. }
  6876. #u31630_img {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:100px;
  6882. height:35px;
  6883. }
  6884. #u31630 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:1040px;
  6888. top:296px;
  6889. width:100px;
  6890. height:35px;
  6891. display:flex;
  6892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6893. font-weight:400;
  6894. font-style:normal;
  6895. font-size:12px;
  6896. color:#606266;
  6897. }
  6898. #u31630 .text {
  6899. position:absolute;
  6900. align-self:center;
  6901. padding:2px 2px 2px 0px;
  6902. box-sizing:border-box;
  6903. width:100%;
  6904. }
  6905. #u31630_text {
  6906. border-width:0px;
  6907. word-wrap:break-word;
  6908. text-transform:none;
  6909. visibility:hidden;
  6910. }
  6911. #u31631_img {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:80px;
  6917. height:35px;
  6918. }
  6919. #u31631 {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:1140px;
  6923. top:296px;
  6924. width:80px;
  6925. height:35px;
  6926. display:flex;
  6927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6928. font-weight:400;
  6929. font-style:normal;
  6930. font-size:12px;
  6931. color:#02A7F0;
  6932. }
  6933. #u31631 .text {
  6934. position:absolute;
  6935. align-self:center;
  6936. padding:2px 2px 2px 0px;
  6937. box-sizing:border-box;
  6938. width:100%;
  6939. }
  6940. #u31631_text {
  6941. border-width:0px;
  6942. word-wrap:break-word;
  6943. text-transform:none;
  6944. visibility:hidden;
  6945. }
  6946. #u31632_img {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:40px;
  6952. height:35px;
  6953. }
  6954. #u31632 {
  6955. border-width:0px;
  6956. position:absolute;
  6957. left:0px;
  6958. top:331px;
  6959. width:40px;
  6960. height:35px;
  6961. display:flex;
  6962. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6963. font-weight:400;
  6964. font-style:normal;
  6965. font-size:12px;
  6966. color:#606266;
  6967. }
  6968. #u31632 .text {
  6969. position:absolute;
  6970. align-self:center;
  6971. padding:2px 2px 2px 0px;
  6972. box-sizing:border-box;
  6973. width:100%;
  6974. }
  6975. #u31632_text {
  6976. border-width:0px;
  6977. word-wrap:break-word;
  6978. text-transform:none;
  6979. visibility:hidden;
  6980. }
  6981. #u31633_img {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:0px;
  6985. top:0px;
  6986. width:100px;
  6987. height:35px;
  6988. }
  6989. #u31633 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:40px;
  6993. top:331px;
  6994. width:100px;
  6995. height:35px;
  6996. display:flex;
  6997. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:12px;
  7001. color:#606266;
  7002. }
  7003. #u31633 .text {
  7004. position:absolute;
  7005. align-self:center;
  7006. padding:2px 2px 2px 0px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u31633_text {
  7011. border-width:0px;
  7012. word-wrap:break-word;
  7013. text-transform:none;
  7014. visibility:hidden;
  7015. }
  7016. #u31634_img {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:100px;
  7022. height:35px;
  7023. }
  7024. #u31634 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:140px;
  7028. top:331px;
  7029. width:100px;
  7030. height:35px;
  7031. display:flex;
  7032. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:12px;
  7036. color:#606266;
  7037. }
  7038. #u31634 .text {
  7039. position:absolute;
  7040. align-self:center;
  7041. padding:2px 2px 2px 0px;
  7042. box-sizing:border-box;
  7043. width:100%;
  7044. }
  7045. #u31634_text {
  7046. border-width:0px;
  7047. word-wrap:break-word;
  7048. text-transform:none;
  7049. visibility:hidden;
  7050. }
  7051. #u31635_img {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:100px;
  7057. height:35px;
  7058. }
  7059. #u31635 {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:240px;
  7063. top:331px;
  7064. width:100px;
  7065. height:35px;
  7066. display:flex;
  7067. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:12px;
  7071. color:#606266;
  7072. }
  7073. #u31635 .text {
  7074. position:absolute;
  7075. align-self:center;
  7076. padding:2px 2px 2px 0px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u31635_text {
  7081. border-width:0px;
  7082. word-wrap:break-word;
  7083. text-transform:none;
  7084. visibility:hidden;
  7085. }
  7086. #u31636_img {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:100px;
  7092. height:35px;
  7093. }
  7094. #u31636 {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:340px;
  7098. top:331px;
  7099. width:100px;
  7100. height:35px;
  7101. display:flex;
  7102. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7103. font-weight:400;
  7104. font-style:normal;
  7105. font-size:12px;
  7106. color:#606266;
  7107. }
  7108. #u31636 .text {
  7109. position:absolute;
  7110. align-self:center;
  7111. padding:2px 2px 2px 0px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u31636_text {
  7116. border-width:0px;
  7117. word-wrap:break-word;
  7118. text-transform:none;
  7119. visibility:hidden;
  7120. }
  7121. #u31637_img {
  7122. border-width:0px;
  7123. position:absolute;
  7124. left:0px;
  7125. top:0px;
  7126. width:100px;
  7127. height:35px;
  7128. }
  7129. #u31637 {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:440px;
  7133. top:331px;
  7134. width:100px;
  7135. height:35px;
  7136. display:flex;
  7137. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7138. font-weight:400;
  7139. font-style:normal;
  7140. font-size:12px;
  7141. color:#606266;
  7142. }
  7143. #u31637 .text {
  7144. position:absolute;
  7145. align-self:center;
  7146. padding:2px 2px 2px 0px;
  7147. box-sizing:border-box;
  7148. width:100%;
  7149. }
  7150. #u31637_text {
  7151. border-width:0px;
  7152. word-wrap:break-word;
  7153. text-transform:none;
  7154. visibility:hidden;
  7155. }
  7156. #u31638_img {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:0px;
  7160. top:0px;
  7161. width:100px;
  7162. height:35px;
  7163. }
  7164. #u31638 {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:540px;
  7168. top:331px;
  7169. width:100px;
  7170. height:35px;
  7171. display:flex;
  7172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7173. font-weight:400;
  7174. font-style:normal;
  7175. font-size:12px;
  7176. color:#606266;
  7177. }
  7178. #u31638 .text {
  7179. position:absolute;
  7180. align-self:center;
  7181. padding:2px 2px 2px 0px;
  7182. box-sizing:border-box;
  7183. width:100%;
  7184. }
  7185. #u31638_text {
  7186. border-width:0px;
  7187. word-wrap:break-word;
  7188. text-transform:none;
  7189. visibility:hidden;
  7190. }
  7191. #u31639_img {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:100px;
  7197. height:35px;
  7198. }
  7199. #u31639 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:640px;
  7203. top:331px;
  7204. width:100px;
  7205. height:35px;
  7206. display:flex;
  7207. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7208. font-weight:400;
  7209. font-style:normal;
  7210. font-size:12px;
  7211. color:#606266;
  7212. }
  7213. #u31639 .text {
  7214. position:absolute;
  7215. align-self:center;
  7216. padding:2px 2px 2px 0px;
  7217. box-sizing:border-box;
  7218. width:100%;
  7219. }
  7220. #u31639_text {
  7221. border-width:0px;
  7222. word-wrap:break-word;
  7223. text-transform:none;
  7224. visibility:hidden;
  7225. }
  7226. #u31640_img {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:100px;
  7232. height:35px;
  7233. }
  7234. #u31640 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:740px;
  7238. top:331px;
  7239. width:100px;
  7240. height:35px;
  7241. display:flex;
  7242. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:12px;
  7246. color:#606266;
  7247. }
  7248. #u31640 .text {
  7249. position:absolute;
  7250. align-self:center;
  7251. padding:2px 2px 2px 0px;
  7252. box-sizing:border-box;
  7253. width:100%;
  7254. }
  7255. #u31640_text {
  7256. border-width:0px;
  7257. word-wrap:break-word;
  7258. text-transform:none;
  7259. visibility:hidden;
  7260. }
  7261. #u31641_img {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:100px;
  7267. height:35px;
  7268. }
  7269. #u31641 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:840px;
  7273. top:331px;
  7274. width:100px;
  7275. height:35px;
  7276. display:flex;
  7277. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:12px;
  7281. color:#606266;
  7282. }
  7283. #u31641 .text {
  7284. position:absolute;
  7285. align-self:center;
  7286. padding:2px 2px 2px 0px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u31641_text {
  7291. border-width:0px;
  7292. word-wrap:break-word;
  7293. text-transform:none;
  7294. visibility:hidden;
  7295. }
  7296. #u31642_img {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:100px;
  7302. height:35px;
  7303. }
  7304. #u31642 {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:940px;
  7308. top:331px;
  7309. width:100px;
  7310. height:35px;
  7311. display:flex;
  7312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7313. font-weight:400;
  7314. font-style:normal;
  7315. font-size:12px;
  7316. color:#606266;
  7317. }
  7318. #u31642 .text {
  7319. position:absolute;
  7320. align-self:center;
  7321. padding:2px 2px 2px 0px;
  7322. box-sizing:border-box;
  7323. width:100%;
  7324. }
  7325. #u31642_text {
  7326. border-width:0px;
  7327. word-wrap:break-word;
  7328. text-transform:none;
  7329. visibility:hidden;
  7330. }
  7331. #u31643_img {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:100px;
  7337. height:35px;
  7338. }
  7339. #u31643 {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:1040px;
  7343. top:331px;
  7344. width:100px;
  7345. height:35px;
  7346. display:flex;
  7347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:12px;
  7351. color:#606266;
  7352. }
  7353. #u31643 .text {
  7354. position:absolute;
  7355. align-self:center;
  7356. padding:2px 2px 2px 0px;
  7357. box-sizing:border-box;
  7358. width:100%;
  7359. }
  7360. #u31643_text {
  7361. border-width:0px;
  7362. word-wrap:break-word;
  7363. text-transform:none;
  7364. visibility:hidden;
  7365. }
  7366. #u31644_img {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:80px;
  7372. height:35px;
  7373. }
  7374. #u31644 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:1140px;
  7378. top:331px;
  7379. width:80px;
  7380. height:35px;
  7381. display:flex;
  7382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:12px;
  7386. color:#02A7F0;
  7387. }
  7388. #u31644 .text {
  7389. position:absolute;
  7390. align-self:center;
  7391. padding:2px 2px 2px 0px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u31644_text {
  7396. border-width:0px;
  7397. word-wrap:break-word;
  7398. text-transform:none;
  7399. visibility:hidden;
  7400. }
  7401. #u31645 {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:0px;
  7407. height:0px;
  7408. }
  7409. #u31646_div {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:0px;
  7413. top:0px;
  7414. width:59px;
  7415. height:30px;
  7416. background:inherit;
  7417. background-color:rgba(24, 144, 255, 1);
  7418. box-sizing:border-box;
  7419. border-width:1px;
  7420. border-style:solid;
  7421. border-color:rgba(0, 153, 255, 1);
  7422. border-radius:4px;
  7423. -moz-box-shadow:none;
  7424. -webkit-box-shadow:none;
  7425. box-shadow:none;
  7426. font-family:'Microsoft YaHei', sans-serif;
  7427. font-weight:400;
  7428. font-style:normal;
  7429. font-size:14px;
  7430. color:#FFFFFF;
  7431. }
  7432. #u31646 {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:1400px;
  7436. top:371px;
  7437. width:59px;
  7438. height:30px;
  7439. display:flex;
  7440. font-family:'Microsoft YaHei', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. font-size:14px;
  7444. color:#FFFFFF;
  7445. }
  7446. #u31646 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:5px 15px 5px 15px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u31646_text {
  7454. border-width:0px;
  7455. white-space:nowrap;
  7456. text-transform:none;
  7457. }
  7458. #u31647_div {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:55px;
  7464. height:30px;
  7465. background:inherit;
  7466. background-color:rgba(255, 255, 255, 1);
  7467. box-sizing:border-box;
  7468. border-width:1px;
  7469. border-style:solid;
  7470. border-color:rgba(170, 170, 170, 1);
  7471. border-radius:4px;
  7472. -moz-box-shadow:none;
  7473. -webkit-box-shadow:none;
  7474. box-shadow:none;
  7475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7476. font-weight:400;
  7477. font-style:normal;
  7478. font-size:12px;
  7479. color:#555555;
  7480. }
  7481. #u31647 {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:1469px;
  7485. top:371px;
  7486. width:55px;
  7487. height:30px;
  7488. display:flex;
  7489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7490. font-weight:400;
  7491. font-style:normal;
  7492. font-size:12px;
  7493. color:#555555;
  7494. }
  7495. #u31647 .text {
  7496. position:absolute;
  7497. align-self:center;
  7498. padding:5px 15px 5px 15px;
  7499. box-sizing:border-box;
  7500. width:100%;
  7501. }
  7502. #u31647_text {
  7503. border-width:0px;
  7504. white-space:nowrap;
  7505. text-transform:none;
  7506. }
  7507. #u31648 {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:0px;
  7511. top:0px;
  7512. width:0px;
  7513. height:0px;
  7514. }
  7515. #u31649_div {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:0px;
  7519. top:0px;
  7520. width:140px;
  7521. height:30px;
  7522. background:inherit;
  7523. background-color:rgba(255, 255, 255, 1);
  7524. box-sizing:border-box;
  7525. border-width:1px;
  7526. border-style:solid;
  7527. border-color:rgba(201, 201, 201, 1);
  7528. border-radius:4px;
  7529. -moz-box-shadow:none;
  7530. -webkit-box-shadow:none;
  7531. box-shadow:none;
  7532. font-family:'Microsoft YaHei', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:14px;
  7536. color:#CCCCCC;
  7537. text-align:left;
  7538. }
  7539. #u31649 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:950px;
  7543. top:370px;
  7544. width:140px;
  7545. height:30px;
  7546. display:flex;
  7547. font-family:'Microsoft YaHei', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:14px;
  7551. color:#CCCCCC;
  7552. text-align:left;
  7553. }
  7554. #u31649 .text {
  7555. position:absolute;
  7556. align-self:center;
  7557. padding:2px 8px 2px 8px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u31649_text {
  7562. border-width:0px;
  7563. word-wrap:break-word;
  7564. text-transform:none;
  7565. visibility:hidden;
  7566. }
  7567. #u31650_input {
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:127px;
  7572. height:25px;
  7573. padding:2px 2px 2px 2px;
  7574. font-family:'Microsoft YaHei', sans-serif;
  7575. font-weight:400;
  7576. font-style:normal;
  7577. font-size:10px;
  7578. letter-spacing:normal;
  7579. color:#000000;
  7580. vertical-align:none;
  7581. text-align:left;
  7582. text-transform:none;
  7583. background-color:transparent;
  7584. border-color:transparent;
  7585. }
  7586. #u31650_input.disabled {
  7587. position:absolute;
  7588. left:0px;
  7589. top:0px;
  7590. width:127px;
  7591. height:25px;
  7592. padding:2px 2px 2px 2px;
  7593. font-family:'Microsoft YaHei', sans-serif;
  7594. font-weight:400;
  7595. font-style:normal;
  7596. font-size:10px;
  7597. letter-spacing:normal;
  7598. color:#000000;
  7599. vertical-align:none;
  7600. text-align:left;
  7601. text-transform:none;
  7602. background-color:transparent;
  7603. border-color:transparent;
  7604. }
  7605. #u31650_div {
  7606. border-width:0px;
  7607. position:absolute;
  7608. left:0px;
  7609. top:0px;
  7610. width:127px;
  7611. height:25px;
  7612. background:inherit;
  7613. background-color:rgba(255, 255, 255, 1);
  7614. border:none;
  7615. border-radius:0px;
  7616. -moz-box-shadow:none;
  7617. -webkit-box-shadow:none;
  7618. box-shadow:none;
  7619. font-family:'Microsoft YaHei', sans-serif;
  7620. font-weight:400;
  7621. font-style:normal;
  7622. font-size:10px;
  7623. }
  7624. #u31650 {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:958px;
  7628. top:371px;
  7629. width:127px;
  7630. height:25px;
  7631. display:flex;
  7632. font-family:'Microsoft YaHei', sans-serif;
  7633. font-weight:400;
  7634. font-style:normal;
  7635. font-size:10px;
  7636. }
  7637. #u31650 .text {
  7638. position:absolute;
  7639. align-self:center;
  7640. padding:2px 2px 2px 2px;
  7641. box-sizing:border-box;
  7642. width:100%;
  7643. }
  7644. #u31650_div.disabled {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:127px;
  7650. height:25px;
  7651. background:inherit;
  7652. background-color:rgba(240, 240, 240, 1);
  7653. border:none;
  7654. border-radius:0px;
  7655. -moz-box-shadow:none;
  7656. -webkit-box-shadow:none;
  7657. box-shadow:none;
  7658. font-family:'Microsoft YaHei', sans-serif;
  7659. font-weight:400;
  7660. font-style:normal;
  7661. font-size:10px;
  7662. }
  7663. #u31650.disabled {
  7664. }
  7665. #u31651 {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:0px;
  7671. height:0px;
  7672. }
  7673. #u31652_div {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:0px;
  7677. top:0px;
  7678. width:140px;
  7679. height:30px;
  7680. background:inherit;
  7681. background-color:rgba(255, 255, 255, 1);
  7682. box-sizing:border-box;
  7683. border-width:1px;
  7684. border-style:solid;
  7685. border-color:rgba(215, 215, 215, 1);
  7686. border-radius:4px;
  7687. -moz-box-shadow:none;
  7688. -webkit-box-shadow:none;
  7689. box-shadow:none;
  7690. font-size:11px;
  7691. }
  7692. #u31652 {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:500px;
  7696. top:371px;
  7697. width:140px;
  7698. height:30px;
  7699. display:flex;
  7700. font-size:11px;
  7701. }
  7702. #u31652 .text {
  7703. position:absolute;
  7704. align-self:center;
  7705. padding:2px 2px 2px 2px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u31652_text {
  7710. border-width:0px;
  7711. word-wrap:break-word;
  7712. text-transform:none;
  7713. visibility:hidden;
  7714. }
  7715. #u31653_input {
  7716. position:absolute;
  7717. left:0px;
  7718. top:0px;
  7719. width:126px;
  7720. height:23px;
  7721. padding:2px 2px 2px 2px;
  7722. font-family:'ArialMT', 'Arial', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:11px;
  7726. letter-spacing:normal;
  7727. color:#AAAAAA;
  7728. vertical-align:none;
  7729. text-align:left;
  7730. text-transform:none;
  7731. background-color:transparent;
  7732. border-color:transparent;
  7733. }
  7734. #u31653_input.disabled {
  7735. position:absolute;
  7736. left:0px;
  7737. top:0px;
  7738. width:126px;
  7739. height:23px;
  7740. padding:2px 2px 2px 2px;
  7741. font-family:'ArialMT', 'Arial', sans-serif;
  7742. font-weight:400;
  7743. font-style:normal;
  7744. font-size:11px;
  7745. letter-spacing:normal;
  7746. color:#AAAAAA;
  7747. vertical-align:none;
  7748. text-align:left;
  7749. text-transform:none;
  7750. background-color:transparent;
  7751. border-color:transparent;
  7752. }
  7753. #u31653_div {
  7754. border-width:0px;
  7755. position:absolute;
  7756. left:0px;
  7757. top:0px;
  7758. width:126px;
  7759. height:23px;
  7760. background:inherit;
  7761. background-color:rgba(255, 255, 255, 1);
  7762. border:none;
  7763. border-radius:0px;
  7764. -moz-box-shadow:none;
  7765. -webkit-box-shadow:none;
  7766. box-shadow:none;
  7767. font-size:11px;
  7768. color:#AAAAAA;
  7769. }
  7770. #u31653 {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:507px;
  7774. top:373px;
  7775. width:126px;
  7776. height:23px;
  7777. display:flex;
  7778. font-size:11px;
  7779. color:#AAAAAA;
  7780. }
  7781. #u31653 .text {
  7782. position:absolute;
  7783. align-self:flex-start;
  7784. padding:2px 2px 2px 2px;
  7785. box-sizing:border-box;
  7786. width:100%;
  7787. }
  7788. #u31653_div.disabled {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:0px;
  7792. top:0px;
  7793. width:126px;
  7794. height:23px;
  7795. background:inherit;
  7796. background-color:rgba(240, 240, 240, 1);
  7797. border:none;
  7798. border-radius:0px;
  7799. -moz-box-shadow:none;
  7800. -webkit-box-shadow:none;
  7801. box-shadow:none;
  7802. font-size:11px;
  7803. color:#AAAAAA;
  7804. }
  7805. #u31653.disabled {
  7806. }
  7807. .u31653_input_option {
  7808. font-size:11px;
  7809. }
  7810. #u31654_div {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:109px;
  7816. height:50px;
  7817. background:inherit;
  7818. background-color:rgba(255, 255, 255, 0);
  7819. border:none;
  7820. border-left:0px;
  7821. border-top:0px;
  7822. border-right:0px;
  7823. border-radius:0px;
  7824. border-bottom-right-radius:0px;
  7825. border-bottom-left-radius:0px;
  7826. -moz-box-shadow:none;
  7827. -webkit-box-shadow:none;
  7828. box-shadow:none;
  7829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. font-size:18px;
  7833. }
  7834. #u31654 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:350px;
  7838. top:310px;
  7839. width:109px;
  7840. height:50px;
  7841. display:flex;
  7842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7843. font-weight:400;
  7844. font-style:normal;
  7845. font-size:18px;
  7846. }
  7847. #u31654 .text {
  7848. position:absolute;
  7849. align-self:center;
  7850. padding:0px 0px 0px 0px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u31654_text {
  7855. border-width:0px;
  7856. white-space:nowrap;
  7857. text-transform:none;
  7858. }
  7859. #u31655_div {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:59px;
  7865. height:30px;
  7866. background:inherit;
  7867. background-color:rgba(255, 255, 255, 1);
  7868. box-sizing:border-box;
  7869. border-width:1px;
  7870. border-style:solid;
  7871. border-color:rgba(170, 170, 170, 1);
  7872. border-radius:4px;
  7873. -moz-box-shadow:none;
  7874. -webkit-box-shadow:none;
  7875. box-shadow:none;
  7876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7877. font-weight:400;
  7878. font-style:normal;
  7879. font-size:14px;
  7880. color:#555555;
  7881. }
  7882. #u31655 {
  7883. border-width:0px;
  7884. position:absolute;
  7885. left:447px;
  7886. top:421px;
  7887. width:59px;
  7888. height:30px;
  7889. display:flex;
  7890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7891. font-weight:400;
  7892. font-style:normal;
  7893. font-size:14px;
  7894. color:#555555;
  7895. }
  7896. #u31655 .text {
  7897. position:absolute;
  7898. align-self:center;
  7899. padding:5px 15px 5px 15px;
  7900. box-sizing:border-box;
  7901. width:100%;
  7902. }
  7903. #u31655_text {
  7904. border-width:0px;
  7905. white-space:nowrap;
  7906. text-transform:none;
  7907. }
  7908. #u31656_div {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:0px;
  7912. top:0px;
  7913. width:87px;
  7914. height:30px;
  7915. background:inherit;
  7916. background-color:rgba(255, 255, 255, 1);
  7917. box-sizing:border-box;
  7918. border-width:1px;
  7919. border-style:solid;
  7920. border-color:rgba(170, 170, 170, 1);
  7921. border-radius:4px;
  7922. -moz-box-shadow:none;
  7923. -webkit-box-shadow:none;
  7924. box-shadow:none;
  7925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7926. font-weight:400;
  7927. font-style:normal;
  7928. font-size:14px;
  7929. color:#555555;
  7930. }
  7931. #u31656 {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:350px;
  7935. top:421px;
  7936. width:87px;
  7937. height:30px;
  7938. display:flex;
  7939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7940. font-weight:400;
  7941. font-style:normal;
  7942. font-size:14px;
  7943. color:#555555;
  7944. }
  7945. #u31656 .text {
  7946. position:absolute;
  7947. align-self:center;
  7948. padding:5px 15px 5px 15px;
  7949. box-sizing:border-box;
  7950. width:100%;
  7951. }
  7952. #u31656_text {
  7953. border-width:0px;
  7954. white-space:nowrap;
  7955. text-transform:none;
  7956. }
  7957. #u31657 {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:0px;
  7961. top:0px;
  7962. width:0px;
  7963. height:0px;
  7964. }
  7965. #u31658_div {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:140px;
  7971. height:30px;
  7972. background:inherit;
  7973. background-color:rgba(255, 255, 255, 1);
  7974. box-sizing:border-box;
  7975. border-width:1px;
  7976. border-style:solid;
  7977. border-color:rgba(201, 201, 201, 1);
  7978. border-radius:4px;
  7979. -moz-box-shadow:none;
  7980. -webkit-box-shadow:none;
  7981. box-shadow:none;
  7982. font-family:'Microsoft YaHei', sans-serif;
  7983. font-weight:400;
  7984. font-style:normal;
  7985. font-size:14px;
  7986. color:#CCCCCC;
  7987. text-align:left;
  7988. }
  7989. #u31658 {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:1100px;
  7993. top:370px;
  7994. width:140px;
  7995. height:30px;
  7996. display:flex;
  7997. font-family:'Microsoft YaHei', sans-serif;
  7998. font-weight:400;
  7999. font-style:normal;
  8000. font-size:14px;
  8001. color:#CCCCCC;
  8002. text-align:left;
  8003. }
  8004. #u31658 .text {
  8005. position:absolute;
  8006. align-self:center;
  8007. padding:2px 8px 2px 8px;
  8008. box-sizing:border-box;
  8009. width:100%;
  8010. }
  8011. #u31658_text {
  8012. border-width:0px;
  8013. word-wrap:break-word;
  8014. text-transform:none;
  8015. visibility:hidden;
  8016. }
  8017. #u31659_input {
  8018. position:absolute;
  8019. left:0px;
  8020. top:0px;
  8021. width:127px;
  8022. height:25px;
  8023. padding:2px 2px 2px 2px;
  8024. font-family:'Microsoft YaHei', sans-serif;
  8025. font-weight:400;
  8026. font-style:normal;
  8027. font-size:10px;
  8028. letter-spacing:normal;
  8029. color:#000000;
  8030. vertical-align:none;
  8031. text-align:left;
  8032. text-transform:none;
  8033. background-color:transparent;
  8034. border-color:transparent;
  8035. }
  8036. #u31659_input.disabled {
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:127px;
  8041. height:25px;
  8042. padding:2px 2px 2px 2px;
  8043. font-family:'Microsoft YaHei', sans-serif;
  8044. font-weight:400;
  8045. font-style:normal;
  8046. font-size:10px;
  8047. letter-spacing:normal;
  8048. color:#000000;
  8049. vertical-align:none;
  8050. text-align:left;
  8051. text-transform:none;
  8052. background-color:transparent;
  8053. border-color:transparent;
  8054. }
  8055. #u31659_div {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:0px;
  8059. top:0px;
  8060. width:127px;
  8061. height:25px;
  8062. background:inherit;
  8063. background-color:rgba(255, 255, 255, 1);
  8064. border:none;
  8065. border-radius:0px;
  8066. -moz-box-shadow:none;
  8067. -webkit-box-shadow:none;
  8068. box-shadow:none;
  8069. font-family:'Microsoft YaHei', sans-serif;
  8070. font-weight:400;
  8071. font-style:normal;
  8072. font-size:10px;
  8073. }
  8074. #u31659 {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:1108px;
  8078. top:371px;
  8079. width:127px;
  8080. height:25px;
  8081. display:flex;
  8082. font-family:'Microsoft YaHei', sans-serif;
  8083. font-weight:400;
  8084. font-style:normal;
  8085. font-size:10px;
  8086. }
  8087. #u31659 .text {
  8088. position:absolute;
  8089. align-self:center;
  8090. padding:2px 2px 2px 2px;
  8091. box-sizing:border-box;
  8092. width:100%;
  8093. }
  8094. #u31659_div.disabled {
  8095. border-width:0px;
  8096. position:absolute;
  8097. left:0px;
  8098. top:0px;
  8099. width:127px;
  8100. height:25px;
  8101. background:inherit;
  8102. background-color:rgba(240, 240, 240, 1);
  8103. border:none;
  8104. border-radius:0px;
  8105. -moz-box-shadow:none;
  8106. -webkit-box-shadow:none;
  8107. box-shadow:none;
  8108. font-family:'Microsoft YaHei', sans-serif;
  8109. font-weight:400;
  8110. font-style:normal;
  8111. font-size:10px;
  8112. }
  8113. #u31659.disabled {
  8114. }
  8115. #u31660 {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:0px;
  8119. top:0px;
  8120. width:0px;
  8121. height:0px;
  8122. }
  8123. #u31661_div {
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:0px;
  8127. top:0px;
  8128. width:140px;
  8129. height:30px;
  8130. background:inherit;
  8131. background-color:rgba(255, 255, 255, 1);
  8132. box-sizing:border-box;
  8133. border-width:1px;
  8134. border-style:solid;
  8135. border-color:rgba(215, 215, 215, 1);
  8136. border-radius:4px;
  8137. -moz-box-shadow:none;
  8138. -webkit-box-shadow:none;
  8139. box-shadow:none;
  8140. font-size:11px;
  8141. }
  8142. #u31661 {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:1250px;
  8146. top:371px;
  8147. width:140px;
  8148. height:30px;
  8149. display:flex;
  8150. font-size:11px;
  8151. }
  8152. #u31661 .text {
  8153. position:absolute;
  8154. align-self:center;
  8155. padding:2px 2px 2px 2px;
  8156. box-sizing:border-box;
  8157. width:100%;
  8158. }
  8159. #u31661_text {
  8160. border-width:0px;
  8161. word-wrap:break-word;
  8162. text-transform:none;
  8163. visibility:hidden;
  8164. }
  8165. #u31662_input {
  8166. position:absolute;
  8167. left:0px;
  8168. top:0px;
  8169. width:126px;
  8170. height:23px;
  8171. padding:2px 2px 2px 2px;
  8172. font-family:'ArialMT', 'Arial', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:11px;
  8176. letter-spacing:normal;
  8177. color:#AAAAAA;
  8178. vertical-align:none;
  8179. text-align:left;
  8180. text-transform:none;
  8181. background-color:transparent;
  8182. border-color:transparent;
  8183. }
  8184. #u31662_input.disabled {
  8185. position:absolute;
  8186. left:0px;
  8187. top:0px;
  8188. width:126px;
  8189. height:23px;
  8190. padding:2px 2px 2px 2px;
  8191. font-family:'ArialMT', 'Arial', sans-serif;
  8192. font-weight:400;
  8193. font-style:normal;
  8194. font-size:11px;
  8195. letter-spacing:normal;
  8196. color:#AAAAAA;
  8197. vertical-align:none;
  8198. text-align:left;
  8199. text-transform:none;
  8200. background-color:transparent;
  8201. border-color:transparent;
  8202. }
  8203. #u31662_div {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:0px;
  8207. top:0px;
  8208. width:126px;
  8209. height:23px;
  8210. background:inherit;
  8211. background-color:rgba(255, 255, 255, 1);
  8212. border:none;
  8213. border-radius:0px;
  8214. -moz-box-shadow:none;
  8215. -webkit-box-shadow:none;
  8216. box-shadow:none;
  8217. font-size:11px;
  8218. color:#AAAAAA;
  8219. }
  8220. #u31662 {
  8221. border-width:0px;
  8222. position:absolute;
  8223. left:1257px;
  8224. top:373px;
  8225. width:126px;
  8226. height:23px;
  8227. display:flex;
  8228. font-size:11px;
  8229. color:#AAAAAA;
  8230. }
  8231. #u31662 .text {
  8232. position:absolute;
  8233. align-self:flex-start;
  8234. padding:2px 2px 2px 2px;
  8235. box-sizing:border-box;
  8236. width:100%;
  8237. }
  8238. #u31662_div.disabled {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:0px;
  8242. top:0px;
  8243. width:126px;
  8244. height:23px;
  8245. background:inherit;
  8246. background-color:rgba(240, 240, 240, 1);
  8247. border:none;
  8248. border-radius:0px;
  8249. -moz-box-shadow:none;
  8250. -webkit-box-shadow:none;
  8251. box-shadow:none;
  8252. font-size:11px;
  8253. color:#AAAAAA;
  8254. }
  8255. #u31662.disabled {
  8256. }
  8257. .u31662_input_option {
  8258. font-size:11px;
  8259. }
  8260. #u31663 {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:0px;
  8266. height:0px;
  8267. }
  8268. #u31664_div {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:0px;
  8272. top:0px;
  8273. width:140px;
  8274. height:30px;
  8275. background:inherit;
  8276. background-color:rgba(255, 255, 255, 1);
  8277. box-sizing:border-box;
  8278. border-width:1px;
  8279. border-style:solid;
  8280. border-color:rgba(215, 215, 215, 1);
  8281. border-radius:4px;
  8282. -moz-box-shadow:none;
  8283. -webkit-box-shadow:none;
  8284. box-shadow:none;
  8285. font-size:11px;
  8286. }
  8287. #u31664 {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:350px;
  8291. top:371px;
  8292. width:140px;
  8293. height:30px;
  8294. display:flex;
  8295. font-size:11px;
  8296. }
  8297. #u31664 .text {
  8298. position:absolute;
  8299. align-self:center;
  8300. padding:2px 2px 2px 2px;
  8301. box-sizing:border-box;
  8302. width:100%;
  8303. }
  8304. #u31664_text {
  8305. border-width:0px;
  8306. word-wrap:break-word;
  8307. text-transform:none;
  8308. visibility:hidden;
  8309. }
  8310. #u31665_input {
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:126px;
  8315. height:23px;
  8316. padding:2px 2px 2px 2px;
  8317. font-family:'ArialMT', 'Arial', sans-serif;
  8318. font-weight:400;
  8319. font-style:normal;
  8320. font-size:11px;
  8321. letter-spacing:normal;
  8322. color:#AAAAAA;
  8323. vertical-align:none;
  8324. text-align:left;
  8325. text-transform:none;
  8326. background-color:transparent;
  8327. border-color:transparent;
  8328. }
  8329. #u31665_input.disabled {
  8330. position:absolute;
  8331. left:0px;
  8332. top:0px;
  8333. width:126px;
  8334. height:23px;
  8335. padding:2px 2px 2px 2px;
  8336. font-family:'ArialMT', 'Arial', sans-serif;
  8337. font-weight:400;
  8338. font-style:normal;
  8339. font-size:11px;
  8340. letter-spacing:normal;
  8341. color:#AAAAAA;
  8342. vertical-align:none;
  8343. text-align:left;
  8344. text-transform:none;
  8345. background-color:transparent;
  8346. border-color:transparent;
  8347. }
  8348. #u31665_div {
  8349. border-width:0px;
  8350. position:absolute;
  8351. left:0px;
  8352. top:0px;
  8353. width:126px;
  8354. height:23px;
  8355. background:inherit;
  8356. background-color:rgba(255, 255, 255, 1);
  8357. border:none;
  8358. border-radius:0px;
  8359. -moz-box-shadow:none;
  8360. -webkit-box-shadow:none;
  8361. box-shadow:none;
  8362. font-size:11px;
  8363. color:#AAAAAA;
  8364. }
  8365. #u31665 {
  8366. border-width:0px;
  8367. position:absolute;
  8368. left:357px;
  8369. top:373px;
  8370. width:126px;
  8371. height:23px;
  8372. display:flex;
  8373. font-size:11px;
  8374. color:#AAAAAA;
  8375. }
  8376. #u31665 .text {
  8377. position:absolute;
  8378. align-self:flex-start;
  8379. padding:2px 2px 2px 2px;
  8380. box-sizing:border-box;
  8381. width:100%;
  8382. }
  8383. #u31665_div.disabled {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:0px;
  8387. top:0px;
  8388. width:126px;
  8389. height:23px;
  8390. background:inherit;
  8391. background-color:rgba(240, 240, 240, 1);
  8392. border:none;
  8393. border-radius:0px;
  8394. -moz-box-shadow:none;
  8395. -webkit-box-shadow:none;
  8396. box-shadow:none;
  8397. font-size:11px;
  8398. color:#AAAAAA;
  8399. }
  8400. #u31665.disabled {
  8401. }
  8402. .u31665_input_option {
  8403. font-size:11px;
  8404. }
  8405. #u31666 {
  8406. border-width:0px;
  8407. position:absolute;
  8408. left:0px;
  8409. top:0px;
  8410. width:0px;
  8411. height:0px;
  8412. }
  8413. #u31667_div {
  8414. border-width:0px;
  8415. position:absolute;
  8416. left:0px;
  8417. top:0px;
  8418. width:140px;
  8419. height:30px;
  8420. background:inherit;
  8421. background-color:rgba(255, 255, 255, 1);
  8422. box-sizing:border-box;
  8423. border-width:1px;
  8424. border-style:solid;
  8425. border-color:rgba(201, 201, 201, 1);
  8426. border-radius:4px;
  8427. -moz-box-shadow:none;
  8428. -webkit-box-shadow:none;
  8429. box-shadow:none;
  8430. font-family:'Microsoft YaHei', sans-serif;
  8431. font-weight:400;
  8432. font-style:normal;
  8433. font-size:14px;
  8434. color:#CCCCCC;
  8435. text-align:left;
  8436. }
  8437. #u31667 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:800px;
  8441. top:370px;
  8442. width:140px;
  8443. height:30px;
  8444. display:flex;
  8445. font-family:'Microsoft YaHei', sans-serif;
  8446. font-weight:400;
  8447. font-style:normal;
  8448. font-size:14px;
  8449. color:#CCCCCC;
  8450. text-align:left;
  8451. }
  8452. #u31667 .text {
  8453. position:absolute;
  8454. align-self:center;
  8455. padding:2px 8px 2px 8px;
  8456. box-sizing:border-box;
  8457. width:100%;
  8458. }
  8459. #u31667_text {
  8460. border-width:0px;
  8461. word-wrap:break-word;
  8462. text-transform:none;
  8463. visibility:hidden;
  8464. }
  8465. #u31668_input {
  8466. position:absolute;
  8467. left:0px;
  8468. top:0px;
  8469. width:127px;
  8470. height:25px;
  8471. padding:2px 2px 2px 2px;
  8472. font-family:'Microsoft YaHei', sans-serif;
  8473. font-weight:400;
  8474. font-style:normal;
  8475. font-size:10px;
  8476. letter-spacing:normal;
  8477. color:#000000;
  8478. vertical-align:none;
  8479. text-align:left;
  8480. text-transform:none;
  8481. background-color:transparent;
  8482. border-color:transparent;
  8483. }
  8484. #u31668_input.disabled {
  8485. position:absolute;
  8486. left:0px;
  8487. top:0px;
  8488. width:127px;
  8489. height:25px;
  8490. padding:2px 2px 2px 2px;
  8491. font-family:'Microsoft YaHei', sans-serif;
  8492. font-weight:400;
  8493. font-style:normal;
  8494. font-size:10px;
  8495. letter-spacing:normal;
  8496. color:#000000;
  8497. vertical-align:none;
  8498. text-align:left;
  8499. text-transform:none;
  8500. background-color:transparent;
  8501. border-color:transparent;
  8502. }
  8503. #u31668_div {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:127px;
  8509. height:25px;
  8510. background:inherit;
  8511. background-color:rgba(255, 255, 255, 1);
  8512. border:none;
  8513. border-radius:0px;
  8514. -moz-box-shadow:none;
  8515. -webkit-box-shadow:none;
  8516. box-shadow:none;
  8517. font-family:'Microsoft YaHei', sans-serif;
  8518. font-weight:400;
  8519. font-style:normal;
  8520. font-size:10px;
  8521. }
  8522. #u31668 {
  8523. border-width:0px;
  8524. position:absolute;
  8525. left:808px;
  8526. top:371px;
  8527. width:127px;
  8528. height:25px;
  8529. display:flex;
  8530. font-family:'Microsoft YaHei', sans-serif;
  8531. font-weight:400;
  8532. font-style:normal;
  8533. font-size:10px;
  8534. }
  8535. #u31668 .text {
  8536. position:absolute;
  8537. align-self:center;
  8538. padding:2px 2px 2px 2px;
  8539. box-sizing:border-box;
  8540. width:100%;
  8541. }
  8542. #u31668_div.disabled {
  8543. border-width:0px;
  8544. position:absolute;
  8545. left:0px;
  8546. top:0px;
  8547. width:127px;
  8548. height:25px;
  8549. background:inherit;
  8550. background-color:rgba(240, 240, 240, 1);
  8551. border:none;
  8552. border-radius:0px;
  8553. -moz-box-shadow:none;
  8554. -webkit-box-shadow:none;
  8555. box-shadow:none;
  8556. font-family:'Microsoft YaHei', sans-serif;
  8557. font-weight:400;
  8558. font-style:normal;
  8559. font-size:10px;
  8560. }
  8561. #u31668.disabled {
  8562. }
  8563. #u31669 {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:0px;
  8567. top:0px;
  8568. width:0px;
  8569. height:0px;
  8570. }
  8571. #u31670_div {
  8572. border-width:0px;
  8573. position:absolute;
  8574. left:0px;
  8575. top:0px;
  8576. width:140px;
  8577. height:30px;
  8578. background:inherit;
  8579. background-color:rgba(255, 255, 255, 1);
  8580. box-sizing:border-box;
  8581. border-width:1px;
  8582. border-style:solid;
  8583. border-color:rgba(215, 215, 215, 1);
  8584. border-radius:4px;
  8585. -moz-box-shadow:none;
  8586. -webkit-box-shadow:none;
  8587. box-shadow:none;
  8588. font-size:11px;
  8589. }
  8590. #u31670 {
  8591. border-width:0px;
  8592. position:absolute;
  8593. left:650px;
  8594. top:371px;
  8595. width:140px;
  8596. height:30px;
  8597. display:flex;
  8598. font-size:11px;
  8599. }
  8600. #u31670 .text {
  8601. position:absolute;
  8602. align-self:center;
  8603. padding:2px 2px 2px 2px;
  8604. box-sizing:border-box;
  8605. width:100%;
  8606. }
  8607. #u31670_text {
  8608. border-width:0px;
  8609. word-wrap:break-word;
  8610. text-transform:none;
  8611. visibility:hidden;
  8612. }
  8613. #u31671_input {
  8614. position:absolute;
  8615. left:0px;
  8616. top:0px;
  8617. width:126px;
  8618. height:23px;
  8619. padding:2px 2px 2px 2px;
  8620. font-family:'ArialMT', 'Arial', sans-serif;
  8621. font-weight:400;
  8622. font-style:normal;
  8623. font-size:11px;
  8624. letter-spacing:normal;
  8625. color:#AAAAAA;
  8626. vertical-align:none;
  8627. text-align:left;
  8628. text-transform:none;
  8629. background-color:transparent;
  8630. border-color:transparent;
  8631. }
  8632. #u31671_input.disabled {
  8633. position:absolute;
  8634. left:0px;
  8635. top:0px;
  8636. width:126px;
  8637. height:23px;
  8638. padding:2px 2px 2px 2px;
  8639. font-family:'ArialMT', 'Arial', sans-serif;
  8640. font-weight:400;
  8641. font-style:normal;
  8642. font-size:11px;
  8643. letter-spacing:normal;
  8644. color:#AAAAAA;
  8645. vertical-align:none;
  8646. text-align:left;
  8647. text-transform:none;
  8648. background-color:transparent;
  8649. border-color:transparent;
  8650. }
  8651. #u31671_div {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:126px;
  8657. height:23px;
  8658. background:inherit;
  8659. background-color:rgba(255, 255, 255, 1);
  8660. border:none;
  8661. border-radius:0px;
  8662. -moz-box-shadow:none;
  8663. -webkit-box-shadow:none;
  8664. box-shadow:none;
  8665. font-size:11px;
  8666. color:#AAAAAA;
  8667. }
  8668. #u31671 {
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:657px;
  8672. top:373px;
  8673. width:126px;
  8674. height:23px;
  8675. display:flex;
  8676. font-size:11px;
  8677. color:#AAAAAA;
  8678. }
  8679. #u31671 .text {
  8680. position:absolute;
  8681. align-self:flex-start;
  8682. padding:2px 2px 2px 2px;
  8683. box-sizing:border-box;
  8684. width:100%;
  8685. }
  8686. #u31671_div.disabled {
  8687. border-width:0px;
  8688. position:absolute;
  8689. left:0px;
  8690. top:0px;
  8691. width:126px;
  8692. height:23px;
  8693. background:inherit;
  8694. background-color:rgba(240, 240, 240, 1);
  8695. border:none;
  8696. border-radius:0px;
  8697. -moz-box-shadow:none;
  8698. -webkit-box-shadow:none;
  8699. box-shadow:none;
  8700. font-size:11px;
  8701. color:#AAAAAA;
  8702. }
  8703. #u31671.disabled {
  8704. }
  8705. .u31671_input_option {
  8706. font-size:11px;
  8707. }
  8708. #u31673_div {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:0px;
  8712. top:0px;
  8713. width:200px;
  8714. height:1188px;
  8715. background:inherit;
  8716. background-color:rgba(255, 255, 255, 1);
  8717. border:none;
  8718. border-radius:0px;
  8719. -moz-box-shadow:none;
  8720. -webkit-box-shadow:none;
  8721. box-shadow:none;
  8722. }
  8723. #u31673 {
  8724. border-width:0px;
  8725. position:absolute;
  8726. left:120px;
  8727. top:50px;
  8728. width:200px;
  8729. height:1188px;
  8730. display:flex;
  8731. }
  8732. #u31673 .text {
  8733. position:absolute;
  8734. align-self:center;
  8735. padding:2px 2px 2px 2px;
  8736. box-sizing:border-box;
  8737. width:100%;
  8738. }
  8739. #u31673_text {
  8740. border-width:0px;
  8741. word-wrap:break-word;
  8742. text-transform:none;
  8743. visibility:hidden;
  8744. }
  8745. #u31674_div {
  8746. border-width:0px;
  8747. position:absolute;
  8748. left:0px;
  8749. top:0px;
  8750. width:200px;
  8751. height:60px;
  8752. background:inherit;
  8753. background-color:rgba(224, 231, 247, 1);
  8754. border:none;
  8755. border-radius:0px;
  8756. -moz-box-shadow:none;
  8757. -webkit-box-shadow:none;
  8758. box-shadow:none;
  8759. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8760. font-weight:500;
  8761. font-style:normal;
  8762. font-size:18px;
  8763. }
  8764. #u31674 {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:120px;
  8768. top:50px;
  8769. width:200px;
  8770. height:60px;
  8771. display:flex;
  8772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8773. font-weight:500;
  8774. font-style:normal;
  8775. font-size:18px;
  8776. }
  8777. #u31674 .text {
  8778. position:absolute;
  8779. align-self:center;
  8780. padding:0px 0px 0px 20px;
  8781. box-sizing:border-box;
  8782. width:100%;
  8783. }
  8784. #u31674_text {
  8785. border-width:0px;
  8786. word-wrap:break-word;
  8787. text-transform:none;
  8788. }
  8789. #u31675_div {
  8790. border-width:0px;
  8791. position:absolute;
  8792. left:0px;
  8793. top:0px;
  8794. width:65px;
  8795. height:22px;
  8796. background:inherit;
  8797. background-color:rgba(255, 255, 255, 0);
  8798. border:none;
  8799. border-radius:0px;
  8800. -moz-box-shadow:none;
  8801. -webkit-box-shadow:none;
  8802. box-shadow:none;
  8803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8804. font-weight:400;
  8805. font-style:normal;
  8806. font-size:16px;
  8807. }
  8808. #u31675 {
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:147px;
  8812. top:346px;
  8813. width:65px;
  8814. height:22px;
  8815. display:flex;
  8816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8817. font-weight:400;
  8818. font-style:normal;
  8819. font-size:16px;
  8820. }
  8821. #u31675 .text {
  8822. position:absolute;
  8823. align-self:flex-start;
  8824. padding:0px 0px 0px 0px;
  8825. box-sizing:border-box;
  8826. width:100%;
  8827. }
  8828. #u31675_text {
  8829. border-width:0px;
  8830. white-space:nowrap;
  8831. text-transform:none;
  8832. }
  8833. #u31676_div {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:0px;
  8837. top:0px;
  8838. width:65px;
  8839. height:22px;
  8840. background:inherit;
  8841. background-color:rgba(255, 255, 255, 0);
  8842. border:none;
  8843. border-radius:0px;
  8844. -moz-box-shadow:none;
  8845. -webkit-box-shadow:none;
  8846. box-shadow:none;
  8847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8848. font-weight:400;
  8849. font-style:normal;
  8850. font-size:16px;
  8851. }
  8852. #u31676 {
  8853. border-width:0px;
  8854. position:absolute;
  8855. left:147px;
  8856. top:388px;
  8857. width:65px;
  8858. height:22px;
  8859. display:flex;
  8860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8861. font-weight:400;
  8862. font-style:normal;
  8863. font-size:16px;
  8864. }
  8865. #u31676 .text {
  8866. position:absolute;
  8867. align-self:flex-start;
  8868. padding:0px 0px 0px 0px;
  8869. box-sizing:border-box;
  8870. width:100%;
  8871. }
  8872. #u31676_text {
  8873. border-width:0px;
  8874. white-space:nowrap;
  8875. text-transform:none;
  8876. }
  8877. #u31677_div {
  8878. border-width:0px;
  8879. position:absolute;
  8880. left:0px;
  8881. top:0px;
  8882. width:49px;
  8883. height:22px;
  8884. background:inherit;
  8885. background-color:rgba(255, 255, 255, 0);
  8886. border:none;
  8887. border-radius:0px;
  8888. -moz-box-shadow:none;
  8889. -webkit-box-shadow:none;
  8890. box-shadow:none;
  8891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8892. font-weight:400;
  8893. font-style:normal;
  8894. font-size:16px;
  8895. }
  8896. #u31677 {
  8897. border-width:0px;
  8898. position:absolute;
  8899. left:147px;
  8900. top:499px;
  8901. width:49px;
  8902. height:22px;
  8903. display:flex;
  8904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8905. font-weight:400;
  8906. font-style:normal;
  8907. font-size:16px;
  8908. }
  8909. #u31677 .text {
  8910. position:absolute;
  8911. align-self:flex-start;
  8912. padding:0px 0px 0px 0px;
  8913. box-sizing:border-box;
  8914. width:100%;
  8915. }
  8916. #u31677_text {
  8917. border-width:0px;
  8918. white-space:nowrap;
  8919. text-transform:none;
  8920. }
  8921. #u31678_div {
  8922. border-width:0px;
  8923. position:absolute;
  8924. left:0px;
  8925. top:0px;
  8926. width:65px;
  8927. height:22px;
  8928. background:inherit;
  8929. background-color:rgba(255, 255, 255, 0);
  8930. border:none;
  8931. border-radius:0px;
  8932. -moz-box-shadow:none;
  8933. -webkit-box-shadow:none;
  8934. box-shadow:none;
  8935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8936. font-weight:400;
  8937. font-style:normal;
  8938. font-size:16px;
  8939. }
  8940. #u31678 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:147px;
  8944. top:625px;
  8945. width:65px;
  8946. height:22px;
  8947. display:flex;
  8948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8949. font-weight:400;
  8950. font-style:normal;
  8951. font-size:16px;
  8952. }
  8953. #u31678 .text {
  8954. position:absolute;
  8955. align-self:flex-start;
  8956. padding:0px 0px 0px 0px;
  8957. box-sizing:border-box;
  8958. width:100%;
  8959. }
  8960. #u31678_text {
  8961. border-width:0px;
  8962. white-space:nowrap;
  8963. text-transform:none;
  8964. }
  8965. #u31679_div {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:0px;
  8969. top:0px;
  8970. width:49px;
  8971. height:17px;
  8972. background:inherit;
  8973. background-color:rgba(255, 255, 255, 0);
  8974. border:none;
  8975. border-radius:0px;
  8976. -moz-box-shadow:none;
  8977. -webkit-box-shadow:none;
  8978. box-shadow:none;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:12px;
  8983. color:#AAAAAA;
  8984. }
  8985. #u31679 {
  8986. border-width:0px;
  8987. position:absolute;
  8988. left:147px;
  8989. top:270px;
  8990. width:49px;
  8991. height:17px;
  8992. display:flex;
  8993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8994. font-weight:400;
  8995. font-style:normal;
  8996. font-size:12px;
  8997. color:#AAAAAA;
  8998. }
  8999. #u31679 .text {
  9000. position:absolute;
  9001. align-self:flex-start;
  9002. padding:0px 0px 0px 0px;
  9003. box-sizing:border-box;
  9004. width:100%;
  9005. }
  9006. #u31679_text {
  9007. border-width:0px;
  9008. white-space:nowrap;
  9009. text-transform:none;
  9010. }
  9011. #u31680_img {
  9012. border-width:0px;
  9013. position:absolute;
  9014. left:0px;
  9015. top:0px;
  9016. width:201px;
  9017. height:2px;
  9018. }
  9019. #u31680 {
  9020. border-width:0px;
  9021. position:absolute;
  9022. left:120px;
  9023. top:440px;
  9024. width:200px;
  9025. height:1px;
  9026. display:flex;
  9027. }
  9028. #u31680 .text {
  9029. position:absolute;
  9030. align-self:center;
  9031. padding:2px 2px 2px 2px;
  9032. box-sizing:border-box;
  9033. width:100%;
  9034. }
  9035. #u31680_text {
  9036. border-width:0px;
  9037. word-wrap:break-word;
  9038. text-transform:none;
  9039. visibility:hidden;
  9040. }
  9041. #u31681_div {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:65px;
  9047. height:22px;
  9048. background:inherit;
  9049. background-color:rgba(255, 255, 255, 0);
  9050. border:none;
  9051. border-radius:0px;
  9052. -moz-box-shadow:none;
  9053. -webkit-box-shadow:none;
  9054. box-shadow:none;
  9055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9056. font-weight:400;
  9057. font-style:normal;
  9058. font-size:16px;
  9059. }
  9060. #u31681 {
  9061. border-width:0px;
  9062. position:absolute;
  9063. left:147px;
  9064. top:583px;
  9065. width:65px;
  9066. height:22px;
  9067. display:flex;
  9068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9069. font-weight:400;
  9070. font-style:normal;
  9071. font-size:16px;
  9072. }
  9073. #u31681 .text {
  9074. position:absolute;
  9075. align-self:flex-start;
  9076. padding:0px 0px 0px 0px;
  9077. box-sizing:border-box;
  9078. width:100%;
  9079. }
  9080. #u31681_text {
  9081. border-width:0px;
  9082. white-space:nowrap;
  9083. text-transform:none;
  9084. }
  9085. #u31682_div {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:65px;
  9091. height:22px;
  9092. background:inherit;
  9093. background-color:rgba(255, 255, 255, 0);
  9094. border:none;
  9095. border-radius:0px;
  9096. -moz-box-shadow:none;
  9097. -webkit-box-shadow:none;
  9098. box-shadow:none;
  9099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9100. font-weight:400;
  9101. font-style:normal;
  9102. font-size:16px;
  9103. }
  9104. #u31682 {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:147px;
  9108. top:667px;
  9109. width:65px;
  9110. height:22px;
  9111. display:flex;
  9112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9113. font-weight:400;
  9114. font-style:normal;
  9115. font-size:16px;
  9116. }
  9117. #u31682 .text {
  9118. position:absolute;
  9119. align-self:flex-start;
  9120. padding:0px 0px 0px 0px;
  9121. box-sizing:border-box;
  9122. width:100%;
  9123. }
  9124. #u31682_text {
  9125. border-width:0px;
  9126. white-space:nowrap;
  9127. text-transform:none;
  9128. }
  9129. #u31683_div {
  9130. border-width:0px;
  9131. position:absolute;
  9132. left:0px;
  9133. top:0px;
  9134. width:49px;
  9135. height:17px;
  9136. background:inherit;
  9137. background-color:rgba(255, 255, 255, 0);
  9138. border:none;
  9139. border-radius:0px;
  9140. -moz-box-shadow:none;
  9141. -webkit-box-shadow:none;
  9142. box-shadow:none;
  9143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9144. font-weight:400;
  9145. font-style:normal;
  9146. font-size:12px;
  9147. color:#AAAAAA;
  9148. }
  9149. #u31683 {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:147px;
  9153. top:462px;
  9154. width:49px;
  9155. height:17px;
  9156. display:flex;
  9157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9158. font-weight:400;
  9159. font-style:normal;
  9160. font-size:12px;
  9161. color:#AAAAAA;
  9162. }
  9163. #u31683 .text {
  9164. position:absolute;
  9165. align-self:flex-start;
  9166. padding:0px 0px 0px 0px;
  9167. box-sizing:border-box;
  9168. width:100%;
  9169. }
  9170. #u31683_text {
  9171. border-width:0px;
  9172. white-space:nowrap;
  9173. text-transform:none;
  9174. }
  9175. #u31684_div {
  9176. border-width:0px;
  9177. position:absolute;
  9178. left:0px;
  9179. top:0px;
  9180. width:65px;
  9181. height:22px;
  9182. background:inherit;
  9183. background-color:rgba(255, 255, 255, 0);
  9184. border:none;
  9185. border-radius:0px;
  9186. -moz-box-shadow:none;
  9187. -webkit-box-shadow:none;
  9188. box-shadow:none;
  9189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9190. font-weight:400;
  9191. font-style:normal;
  9192. font-size:16px;
  9193. }
  9194. #u31684 {
  9195. border-width:0px;
  9196. position:absolute;
  9197. left:147px;
  9198. top:166px;
  9199. width:65px;
  9200. height:22px;
  9201. display:flex;
  9202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9203. font-weight:400;
  9204. font-style:normal;
  9205. font-size:16px;
  9206. }
  9207. #u31684 .text {
  9208. position:absolute;
  9209. align-self:flex-start;
  9210. padding:0px 0px 0px 0px;
  9211. box-sizing:border-box;
  9212. width:100%;
  9213. }
  9214. #u31684_text {
  9215. border-width:0px;
  9216. white-space:nowrap;
  9217. text-transform:none;
  9218. }
  9219. #u31685_div {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:65px;
  9225. height:22px;
  9226. background:inherit;
  9227. background-color:rgba(255, 255, 255, 0);
  9228. border:none;
  9229. border-radius:0px;
  9230. -moz-box-shadow:none;
  9231. -webkit-box-shadow:none;
  9232. box-shadow:none;
  9233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9234. font-weight:400;
  9235. font-style:normal;
  9236. font-size:16px;
  9237. }
  9238. #u31685 {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:147px;
  9242. top:304px;
  9243. width:65px;
  9244. height:22px;
  9245. display:flex;
  9246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9247. font-weight:400;
  9248. font-style:normal;
  9249. font-size:16px;
  9250. }
  9251. #u31685 .text {
  9252. position:absolute;
  9253. align-self:flex-start;
  9254. padding:0px 0px 0px 0px;
  9255. box-sizing:border-box;
  9256. width:100%;
  9257. }
  9258. #u31685_text {
  9259. border-width:0px;
  9260. white-space:nowrap;
  9261. text-transform:none;
  9262. }
  9263. #u31686_div {
  9264. border-width:0px;
  9265. position:absolute;
  9266. left:0px;
  9267. top:0px;
  9268. width:49px;
  9269. height:17px;
  9270. background:inherit;
  9271. background-color:rgba(255, 255, 255, 0);
  9272. border:none;
  9273. border-radius:0px;
  9274. -moz-box-shadow:none;
  9275. -webkit-box-shadow:none;
  9276. box-shadow:none;
  9277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9278. font-weight:400;
  9279. font-style:normal;
  9280. font-size:12px;
  9281. color:#AAAAAA;
  9282. }
  9283. #u31686 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:147px;
  9287. top:130px;
  9288. width:49px;
  9289. height:17px;
  9290. display:flex;
  9291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9292. font-weight:400;
  9293. font-style:normal;
  9294. font-size:12px;
  9295. color:#AAAAAA;
  9296. }
  9297. #u31686 .text {
  9298. position:absolute;
  9299. align-self:flex-start;
  9300. padding:0px 0px 0px 0px;
  9301. box-sizing:border-box;
  9302. width:100%;
  9303. }
  9304. #u31686_text {
  9305. border-width:0px;
  9306. white-space:nowrap;
  9307. text-transform:none;
  9308. }
  9309. #u31687_img {
  9310. border-width:0px;
  9311. position:absolute;
  9312. left:0px;
  9313. top:0px;
  9314. width:201px;
  9315. height:2px;
  9316. }
  9317. #u31687 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:120px;
  9321. top:249px;
  9322. width:200px;
  9323. height:1px;
  9324. display:flex;
  9325. }
  9326. #u31687 .text {
  9327. position:absolute;
  9328. align-self:center;
  9329. padding:2px 2px 2px 2px;
  9330. box-sizing:border-box;
  9331. width:100%;
  9332. }
  9333. #u31687_text {
  9334. border-width:0px;
  9335. word-wrap:break-word;
  9336. text-transform:none;
  9337. visibility:hidden;
  9338. }
  9339. #u31688_div {
  9340. border-width:0px;
  9341. position:absolute;
  9342. left:0px;
  9343. top:0px;
  9344. width:65px;
  9345. height:22px;
  9346. background:inherit;
  9347. background-color:rgba(255, 255, 255, 0);
  9348. border:none;
  9349. border-radius:0px;
  9350. -moz-box-shadow:none;
  9351. -webkit-box-shadow:none;
  9352. box-shadow:none;
  9353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9354. font-weight:400;
  9355. font-style:normal;
  9356. font-size:16px;
  9357. }
  9358. #u31688 {
  9359. border-width:0px;
  9360. position:absolute;
  9361. left:147px;
  9362. top:206px;
  9363. width:65px;
  9364. height:22px;
  9365. display:flex;
  9366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9367. font-weight:400;
  9368. font-style:normal;
  9369. font-size:16px;
  9370. }
  9371. #u31688 .text {
  9372. position:absolute;
  9373. align-self:flex-start;
  9374. padding:0px 0px 0px 0px;
  9375. box-sizing:border-box;
  9376. width:100%;
  9377. }
  9378. #u31688_text {
  9379. border-width:0px;
  9380. white-space:nowrap;
  9381. text-transform:none;
  9382. }
  9383. #u31689_div {
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:0px;
  9387. top:0px;
  9388. width:65px;
  9389. height:22px;
  9390. background:inherit;
  9391. background-color:rgba(255, 255, 255, 0);
  9392. border:none;
  9393. border-radius:0px;
  9394. -moz-box-shadow:none;
  9395. -webkit-box-shadow:none;
  9396. box-shadow:none;
  9397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9398. font-weight:400;
  9399. font-style:normal;
  9400. font-size:16px;
  9401. }
  9402. #u31689 {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:147px;
  9406. top:541px;
  9407. width:65px;
  9408. height:22px;
  9409. display:flex;
  9410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9411. font-weight:400;
  9412. font-style:normal;
  9413. font-size:16px;
  9414. }
  9415. #u31689 .text {
  9416. position:absolute;
  9417. align-self:flex-start;
  9418. padding:0px 0px 0px 0px;
  9419. box-sizing:border-box;
  9420. width:100%;
  9421. }
  9422. #u31689_text {
  9423. border-width:0px;
  9424. white-space:nowrap;
  9425. text-transform:none;
  9426. }
  9427. #u31690_div {
  9428. border-width:0px;
  9429. position:absolute;
  9430. left:0px;
  9431. top:0px;
  9432. width:470px;
  9433. height:20px;
  9434. background:inherit;
  9435. background-color:rgba(255, 255, 255, 0);
  9436. border:none;
  9437. border-left:0px;
  9438. border-top:0px;
  9439. border-right:0px;
  9440. border-radius:0px;
  9441. border-bottom-right-radius:0px;
  9442. border-bottom-left-radius:0px;
  9443. -moz-box-shadow:none;
  9444. -webkit-box-shadow:none;
  9445. box-shadow:none;
  9446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9447. font-weight:400;
  9448. font-style:normal;
  9449. font-size:14px;
  9450. color:#7F7F7F;
  9451. }
  9452. #u31690 {
  9453. border-width:0px;
  9454. position:absolute;
  9455. left:352px;
  9456. top:100px;
  9457. width:470px;
  9458. height:20px;
  9459. display:flex;
  9460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9461. font-weight:400;
  9462. font-style:normal;
  9463. font-size:14px;
  9464. color:#7F7F7F;
  9465. }
  9466. #u31690 .text {
  9467. position:absolute;
  9468. align-self:center;
  9469. padding:0px 0px 0px 0px;
  9470. box-sizing:border-box;
  9471. width:100%;
  9472. }
  9473. #u31690_text {
  9474. border-width:0px;
  9475. white-space:nowrap;
  9476. text-transform:none;
  9477. }
  9478. #u31691_div {
  9479. border-width:0px;
  9480. position:absolute;
  9481. left:0px;
  9482. top:0px;
  9483. width:441px;
  9484. height:60px;
  9485. background:inherit;
  9486. background-color:rgba(255, 255, 255, 0);
  9487. border:none;
  9488. border-radius:0px;
  9489. -moz-box-shadow:none;
  9490. -webkit-box-shadow:none;
  9491. box-shadow:none;
  9492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9493. font-weight:400;
  9494. font-style:normal;
  9495. font-size:14px;
  9496. color:#D9001B;
  9497. }
  9498. #u31691 {
  9499. border-width:0px;
  9500. position:absolute;
  9501. left:1129px;
  9502. top:656px;
  9503. width:441px;
  9504. height:60px;
  9505. display:flex;
  9506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9507. font-weight:400;
  9508. font-style:normal;
  9509. font-size:14px;
  9510. color:#D9001B;
  9511. }
  9512. #u31691 .text {
  9513. position:absolute;
  9514. align-self:flex-start;
  9515. padding:0px 0px 0px 0px;
  9516. box-sizing:border-box;
  9517. width:100%;
  9518. }
  9519. #u31691_text {
  9520. border-width:0px;
  9521. white-space:nowrap;
  9522. text-transform:none;
  9523. }
  9524. #u31692 {
  9525. border-width:0px;
  9526. position:absolute;
  9527. left:0px;
  9528. top:0px;
  9529. width:0px;
  9530. height:0px;
  9531. }
  9532. #u31693 {
  9533. border-width:0px;
  9534. position:absolute;
  9535. left:0px;
  9536. top:0px;
  9537. width:0px;
  9538. height:0px;
  9539. }
  9540. #u31694 {
  9541. border-width:0px;
  9542. position:absolute;
  9543. left:0px;
  9544. top:0px;
  9545. width:0px;
  9546. height:0px;
  9547. }
  9548. #u31695_div {
  9549. border-width:0px;
  9550. position:absolute;
  9551. left:0px;
  9552. top:0px;
  9553. width:480px;
  9554. height:280px;
  9555. background:inherit;
  9556. background-color:rgba(255, 255, 255, 1);
  9557. box-sizing:border-box;
  9558. border-width:1px;
  9559. border-style:solid;
  9560. border-color:rgba(204, 204, 204, 1);
  9561. border-radius:4px;
  9562. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9563. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9564. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9565. font-family:'Microsoft YaHei', sans-serif;
  9566. font-weight:400;
  9567. font-style:normal;
  9568. }
  9569. #u31695 {
  9570. border-width:0px;
  9571. position:absolute;
  9572. left:432px;
  9573. top:838px;
  9574. width:480px;
  9575. height:280px;
  9576. display:flex;
  9577. font-family:'Microsoft YaHei', sans-serif;
  9578. font-weight:400;
  9579. font-style:normal;
  9580. }
  9581. #u31695 .text {
  9582. position:absolute;
  9583. align-self:center;
  9584. padding:2px 2px 2px 2px;
  9585. box-sizing:border-box;
  9586. width:100%;
  9587. }
  9588. #u31695_text {
  9589. border-width:0px;
  9590. word-wrap:break-word;
  9591. text-transform:none;
  9592. visibility:hidden;
  9593. }
  9594. #u31696_div {
  9595. border-width:0px;
  9596. position:absolute;
  9597. left:0px;
  9598. top:0px;
  9599. width:64px;
  9600. height:22px;
  9601. background:inherit;
  9602. background-color:rgba(255, 255, 255, 0);
  9603. border:none;
  9604. border-radius:0px;
  9605. -moz-box-shadow:none;
  9606. -webkit-box-shadow:none;
  9607. box-shadow:none;
  9608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9609. font-weight:400;
  9610. font-style:normal;
  9611. font-size:14px;
  9612. color:#666666;
  9613. line-height:22px;
  9614. }
  9615. #u31696 {
  9616. border-width:0px;
  9617. position:absolute;
  9618. left:459px;
  9619. top:901px;
  9620. width:64px;
  9621. height:22px;
  9622. display:flex;
  9623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9624. font-weight:400;
  9625. font-style:normal;
  9626. font-size:14px;
  9627. color:#666666;
  9628. line-height:22px;
  9629. }
  9630. #u31696 .text {
  9631. position:absolute;
  9632. align-self:flex-start;
  9633. padding:0px 0px 0px 0px;
  9634. box-sizing:border-box;
  9635. width:100%;
  9636. }
  9637. #u31696_text {
  9638. border-width:0px;
  9639. white-space:nowrap;
  9640. text-transform:none;
  9641. }
  9642. #u31697_div {
  9643. border-width:0px;
  9644. position:absolute;
  9645. left:0px;
  9646. top:0px;
  9647. width:73px;
  9648. height:21px;
  9649. background:inherit;
  9650. background-color:rgba(255, 255, 255, 0);
  9651. border:none;
  9652. border-radius:0px;
  9653. -moz-box-shadow:none;
  9654. -webkit-box-shadow:none;
  9655. box-shadow:none;
  9656. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9657. font-weight:650;
  9658. font-style:normal;
  9659. font-size:18px;
  9660. color:#000000;
  9661. line-height:22px;
  9662. }
  9663. #u31697 {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:459px;
  9667. top:859px;
  9668. width:73px;
  9669. height:21px;
  9670. display:flex;
  9671. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9672. font-weight:650;
  9673. font-style:normal;
  9674. font-size:18px;
  9675. color:#000000;
  9676. line-height:22px;
  9677. }
  9678. #u31697 .text {
  9679. position:absolute;
  9680. align-self:flex-start;
  9681. padding:0px 0px 0px 0px;
  9682. box-sizing:border-box;
  9683. width:100%;
  9684. }
  9685. #u31697_text {
  9686. border-width:0px;
  9687. white-space:nowrap;
  9688. text-transform:none;
  9689. }
  9690. #u31698 label {
  9691. left:0px;
  9692. width:100%;
  9693. }
  9694. #u31698_img {
  9695. border-width:0px;
  9696. position:absolute;
  9697. left:0px;
  9698. top:3px;
  9699. width:12px;
  9700. height:12px;
  9701. }
  9702. #u31698 {
  9703. border-width:0px;
  9704. position:absolute;
  9705. left:536px;
  9706. top:904px;
  9707. width:100px;
  9708. height:18px;
  9709. display:flex;
  9710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9711. font-weight:400;
  9712. font-style:normal;
  9713. }
  9714. #u31698 .text {
  9715. position:absolute;
  9716. align-self:center;
  9717. padding:0px 2px 0px 2px;
  9718. box-sizing:border-box;
  9719. }
  9720. #u31698_img.selected {
  9721. }
  9722. #u31698.selected {
  9723. }
  9724. #u31698_img.disabled {
  9725. }
  9726. #u31698.disabled {
  9727. }
  9728. #u31698_img.selectedDisabled {
  9729. }
  9730. #u31698.selectedDisabled {
  9731. }
  9732. #u31698_text {
  9733. border-width:0px;
  9734. position:absolute;
  9735. left:14px;
  9736. top:0px;
  9737. width:84px;
  9738. word-wrap:break-word;
  9739. text-transform:none;
  9740. }
  9741. #u31698_input {
  9742. border-width:0px;
  9743. position:absolute;
  9744. left:0px;
  9745. top:0px;
  9746. width:0px;
  9747. height:0px;
  9748. opacity:0;
  9749. }
  9750. #u31699 label {
  9751. left:0px;
  9752. width:100%;
  9753. }
  9754. #u31699_img {
  9755. border-width:0px;
  9756. position:absolute;
  9757. left:0px;
  9758. top:3px;
  9759. width:12px;
  9760. height:12px;
  9761. }
  9762. #u31699 {
  9763. border-width:0px;
  9764. position:absolute;
  9765. left:536px;
  9766. top:937px;
  9767. width:100px;
  9768. height:18px;
  9769. display:flex;
  9770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9771. font-weight:400;
  9772. font-style:normal;
  9773. }
  9774. #u31699 .text {
  9775. position:absolute;
  9776. align-self:center;
  9777. padding:0px 2px 0px 2px;
  9778. box-sizing:border-box;
  9779. }
  9780. #u31699_img.selected {
  9781. }
  9782. #u31699.selected {
  9783. }
  9784. #u31699_img.disabled {
  9785. }
  9786. #u31699.disabled {
  9787. }
  9788. #u31699_img.selectedDisabled {
  9789. }
  9790. #u31699.selectedDisabled {
  9791. }
  9792. #u31699_text {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:14px;
  9796. top:0px;
  9797. width:84px;
  9798. word-wrap:break-word;
  9799. text-transform:none;
  9800. }
  9801. #u31699_input {
  9802. border-width:0px;
  9803. position:absolute;
  9804. left:0px;
  9805. top:0px;
  9806. width:0px;
  9807. height:0px;
  9808. opacity:0;
  9809. }
  9810. #u31700 label {
  9811. left:0px;
  9812. width:100%;
  9813. }
  9814. #u31700_img {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:0px;
  9818. top:3px;
  9819. width:12px;
  9820. height:12px;
  9821. }
  9822. #u31700 {
  9823. border-width:0px;
  9824. position:absolute;
  9825. left:536px;
  9826. top:969px;
  9827. width:100px;
  9828. height:18px;
  9829. display:flex;
  9830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9831. font-weight:400;
  9832. font-style:normal;
  9833. }
  9834. #u31700 .text {
  9835. position:absolute;
  9836. align-self:center;
  9837. padding:0px 2px 0px 2px;
  9838. box-sizing:border-box;
  9839. }
  9840. #u31700_img.selected {
  9841. }
  9842. #u31700.selected {
  9843. }
  9844. #u31700_img.disabled {
  9845. }
  9846. #u31700.disabled {
  9847. }
  9848. #u31700_img.selectedDisabled {
  9849. }
  9850. #u31700.selectedDisabled {
  9851. }
  9852. #u31700_text {
  9853. border-width:0px;
  9854. position:absolute;
  9855. left:14px;
  9856. top:0px;
  9857. width:84px;
  9858. word-wrap:break-word;
  9859. text-transform:none;
  9860. }
  9861. #u31700_input {
  9862. border-width:0px;
  9863. position:absolute;
  9864. left:0px;
  9865. top:0px;
  9866. width:0px;
  9867. height:0px;
  9868. opacity:0;
  9869. }
  9870. #u31701 {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:0px;
  9874. top:0px;
  9875. width:0px;
  9876. height:0px;
  9877. }
  9878. #u31702_div {
  9879. border-width:0px;
  9880. position:absolute;
  9881. left:0px;
  9882. top:0px;
  9883. width:347px;
  9884. height:60px;
  9885. background:inherit;
  9886. background-color:rgba(255, 255, 255, 1);
  9887. box-sizing:border-box;
  9888. border-width:1px;
  9889. border-style:solid;
  9890. border-color:rgba(41, 143, 255, 1);
  9891. border-radius:4px;
  9892. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  9893. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  9894. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  9895. font-family:'Microsoft YaHei', sans-serif;
  9896. font-weight:400;
  9897. font-style:normal;
  9898. font-size:14px;
  9899. color:#CCCCCC;
  9900. text-align:left;
  9901. }
  9902. #u31702 {
  9903. border-width:0px;
  9904. position:absolute;
  9905. left:536px;
  9906. top:997px;
  9907. width:347px;
  9908. height:60px;
  9909. display:flex;
  9910. font-family:'Microsoft YaHei', sans-serif;
  9911. font-weight:400;
  9912. font-style:normal;
  9913. font-size:14px;
  9914. color:#CCCCCC;
  9915. text-align:left;
  9916. }
  9917. #u31702 .text {
  9918. position:absolute;
  9919. align-self:center;
  9920. padding:2px 8px 2px 8px;
  9921. box-sizing:border-box;
  9922. width:100%;
  9923. }
  9924. #u31702_text {
  9925. border-width:0px;
  9926. word-wrap:break-word;
  9927. text-transform:none;
  9928. visibility:hidden;
  9929. }
  9930. #u31703_input {
  9931. position:absolute;
  9932. left:0px;
  9933. top:0px;
  9934. width:330px;
  9935. height:38px;
  9936. padding:2px 2px 2px 2px;
  9937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9938. font-weight:400;
  9939. font-style:normal;
  9940. font-size:14px;
  9941. letter-spacing:normal;
  9942. color:#000000;
  9943. vertical-align:none;
  9944. text-align:left;
  9945. text-transform:none;
  9946. background-color:transparent;
  9947. border-color:transparent;
  9948. }
  9949. #u31703_input.disabled {
  9950. position:absolute;
  9951. left:0px;
  9952. top:0px;
  9953. width:330px;
  9954. height:38px;
  9955. padding:2px 2px 2px 2px;
  9956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9957. font-weight:400;
  9958. font-style:normal;
  9959. font-size:14px;
  9960. letter-spacing:normal;
  9961. color:#000000;
  9962. vertical-align:none;
  9963. text-align:left;
  9964. text-transform:none;
  9965. background-color:transparent;
  9966. border-color:transparent;
  9967. }
  9968. #u31703_div {
  9969. border-width:0px;
  9970. position:absolute;
  9971. left:0px;
  9972. top:0px;
  9973. width:330px;
  9974. height:38px;
  9975. background:inherit;
  9976. background-color:rgba(255, 255, 255, 1);
  9977. border:none;
  9978. border-radius:0px;
  9979. -moz-box-shadow:none;
  9980. -webkit-box-shadow:none;
  9981. box-shadow:none;
  9982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9983. font-weight:400;
  9984. font-style:normal;
  9985. font-size:14px;
  9986. }
  9987. #u31703 {
  9988. border-width:0px;
  9989. position:absolute;
  9990. left:545px;
  9991. top:998px;
  9992. width:330px;
  9993. height:38px;
  9994. display:flex;
  9995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9996. font-weight:400;
  9997. font-style:normal;
  9998. font-size:14px;
  9999. }
  10000. #u31703 .text {
  10001. position:absolute;
  10002. align-self:center;
  10003. padding:2px 2px 2px 2px;
  10004. box-sizing:border-box;
  10005. width:100%;
  10006. }
  10007. #u31703_div.disabled {
  10008. border-width:0px;
  10009. position:absolute;
  10010. left:0px;
  10011. top:0px;
  10012. width:330px;
  10013. height:38px;
  10014. background:inherit;
  10015. background-color:rgba(240, 240, 240, 1);
  10016. border:none;
  10017. border-radius:0px;
  10018. -moz-box-shadow:none;
  10019. -webkit-box-shadow:none;
  10020. box-shadow:none;
  10021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10022. font-weight:400;
  10023. font-style:normal;
  10024. font-size:14px;
  10025. }
  10026. #u31703.disabled {
  10027. }
  10028. #u31704 {
  10029. border-width:0px;
  10030. position:absolute;
  10031. left:0px;
  10032. top:0px;
  10033. width:0px;
  10034. height:0px;
  10035. }
  10036. #u31705_div {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:0px;
  10040. top:0px;
  10041. width:80px;
  10042. height:30px;
  10043. background:inherit;
  10044. background-color:rgba(24, 144, 255, 1);
  10045. border:none;
  10046. border-radius:4px;
  10047. -moz-box-shadow:none;
  10048. -webkit-box-shadow:none;
  10049. box-shadow:none;
  10050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10051. font-weight:400;
  10052. font-style:normal;
  10053. font-size:14px;
  10054. color:#FFFFFF;
  10055. }
  10056. #u31705 {
  10057. border-width:0px;
  10058. position:absolute;
  10059. left:803px;
  10060. top:1076px;
  10061. width:80px;
  10062. height:30px;
  10063. display:flex;
  10064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10065. font-weight:400;
  10066. font-style:normal;
  10067. font-size:14px;
  10068. color:#FFFFFF;
  10069. }
  10070. #u31705 .text {
  10071. position:absolute;
  10072. align-self:center;
  10073. padding:2px 2px 2px 2px;
  10074. box-sizing:border-box;
  10075. width:100%;
  10076. }
  10077. #u31705_text {
  10078. border-width:0px;
  10079. word-wrap:break-word;
  10080. text-transform:none;
  10081. }
  10082. #u31706_div {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:0px;
  10086. top:0px;
  10087. width:80px;
  10088. height:30px;
  10089. background:inherit;
  10090. background-color:rgba(255, 255, 255, 1);
  10091. box-sizing:border-box;
  10092. border-width:1px;
  10093. border-style:solid;
  10094. border-color:rgba(170, 170, 170, 1);
  10095. border-radius:4px;
  10096. -moz-box-shadow:none;
  10097. -webkit-box-shadow:none;
  10098. box-shadow:none;
  10099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10100. font-weight:400;
  10101. font-style:normal;
  10102. font-size:14px;
  10103. }
  10104. #u31706 {
  10105. border-width:0px;
  10106. position:absolute;
  10107. left:704px;
  10108. top:1076px;
  10109. width:80px;
  10110. height:30px;
  10111. display:flex;
  10112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10113. font-weight:400;
  10114. font-style:normal;
  10115. font-size:14px;
  10116. }
  10117. #u31706 .text {
  10118. position:absolute;
  10119. align-self:center;
  10120. padding:2px 2px 2px 2px;
  10121. box-sizing:border-box;
  10122. width:100%;
  10123. }
  10124. #u31706_text {
  10125. border-width:0px;
  10126. word-wrap:break-word;
  10127. text-transform:none;
  10128. }
  10129. #u31707_div {
  10130. border-width:0px;
  10131. position:absolute;
  10132. left:0px;
  10133. top:0px;
  10134. width:329px;
  10135. height:20px;
  10136. background:inherit;
  10137. background-color:rgba(255, 255, 255, 0);
  10138. border:none;
  10139. border-left:0px;
  10140. border-top:0px;
  10141. border-right:0px;
  10142. border-radius:0px;
  10143. border-bottom-right-radius:0px;
  10144. border-bottom-left-radius:0px;
  10145. -moz-box-shadow:none;
  10146. -webkit-box-shadow:none;
  10147. box-shadow:none;
  10148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10149. font-weight:400;
  10150. font-style:normal;
  10151. font-size:14px;
  10152. color:#D9001B;
  10153. }
  10154. #u31707 {
  10155. border-width:0px;
  10156. position:absolute;
  10157. left:931px;
  10158. top:921px;
  10159. width:329px;
  10160. height:20px;
  10161. display:flex;
  10162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10163. font-weight:400;
  10164. font-style:normal;
  10165. font-size:14px;
  10166. color:#D9001B;
  10167. }
  10168. #u31707 .text {
  10169. position:absolute;
  10170. align-self:center;
  10171. padding:0px 0px 0px 0px;
  10172. box-sizing:border-box;
  10173. width:100%;
  10174. }
  10175. #u31707_text {
  10176. border-width:0px;
  10177. white-space:nowrap;
  10178. text-transform:none;
  10179. }
  10180. #u31708 {
  10181. border-width:0px;
  10182. position:absolute;
  10183. left:0px;
  10184. top:0px;
  10185. width:0px;
  10186. height:0px;
  10187. }
  10188. #u31709 {
  10189. border-width:0px;
  10190. position:absolute;
  10191. left:0px;
  10192. top:0px;
  10193. width:0px;
  10194. height:0px;
  10195. }
  10196. #u31710_div {
  10197. border-width:0px;
  10198. position:absolute;
  10199. left:0px;
  10200. top:0px;
  10201. width:380px;
  10202. height:164px;
  10203. background:inherit;
  10204. background-color:rgba(255, 255, 255, 1);
  10205. box-sizing:border-box;
  10206. border-width:1px;
  10207. border-style:solid;
  10208. border-color:rgba(204, 204, 204, 1);
  10209. border-radius:4px;
  10210. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10211. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10212. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10213. font-family:'Microsoft YaHei', sans-serif;
  10214. font-weight:400;
  10215. font-style:normal;
  10216. }
  10217. #u31710 {
  10218. border-width:0px;
  10219. position:absolute;
  10220. left:922px;
  10221. top:954px;
  10222. width:380px;
  10223. height:164px;
  10224. display:flex;
  10225. font-family:'Microsoft YaHei', sans-serif;
  10226. font-weight:400;
  10227. font-style:normal;
  10228. }
  10229. #u31710 .text {
  10230. position:absolute;
  10231. align-self:center;
  10232. padding:2px 2px 2px 2px;
  10233. box-sizing:border-box;
  10234. width:100%;
  10235. }
  10236. #u31710_text {
  10237. border-width:0px;
  10238. word-wrap:break-word;
  10239. text-transform:none;
  10240. visibility:hidden;
  10241. }
  10242. #u31711_div {
  10243. border-width:0px;
  10244. position:absolute;
  10245. left:0px;
  10246. top:0px;
  10247. width:299px;
  10248. height:22px;
  10249. background:inherit;
  10250. background-color:rgba(255, 255, 255, 0);
  10251. border:none;
  10252. border-radius:0px;
  10253. -moz-box-shadow:none;
  10254. -webkit-box-shadow:none;
  10255. box-shadow:none;
  10256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10257. font-weight:400;
  10258. font-style:normal;
  10259. font-size:14px;
  10260. color:#666666;
  10261. line-height:22px;
  10262. }
  10263. #u31711 {
  10264. border-width:0px;
  10265. position:absolute;
  10266. left:982px;
  10267. top:1009px;
  10268. width:299px;
  10269. height:22px;
  10270. display:flex;
  10271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10272. font-weight:400;
  10273. font-style:normal;
  10274. font-size:14px;
  10275. color:#666666;
  10276. line-height:22px;
  10277. }
  10278. #u31711 .text {
  10279. position:absolute;
  10280. align-self:flex-start;
  10281. padding:0px 0px 0px 0px;
  10282. box-sizing:border-box;
  10283. width:100%;
  10284. }
  10285. #u31711_text {
  10286. border-width:0px;
  10287. word-wrap:break-word;
  10288. text-transform:none;
  10289. }
  10290. #u31712_div {
  10291. border-width:0px;
  10292. position:absolute;
  10293. left:0px;
  10294. top:0px;
  10295. width:163px;
  10296. height:21px;
  10297. background:inherit;
  10298. background-color:rgba(255, 255, 255, 0);
  10299. border:none;
  10300. border-radius:0px;
  10301. -moz-box-shadow:none;
  10302. -webkit-box-shadow:none;
  10303. box-shadow:none;
  10304. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10305. font-weight:650;
  10306. font-style:normal;
  10307. font-size:18px;
  10308. color:#000000;
  10309. line-height:22px;
  10310. }
  10311. #u31712 {
  10312. border-width:0px;
  10313. position:absolute;
  10314. left:982px;
  10315. top:979px;
  10316. width:163px;
  10317. height:21px;
  10318. display:flex;
  10319. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10320. font-weight:650;
  10321. font-style:normal;
  10322. font-size:18px;
  10323. color:#000000;
  10324. line-height:22px;
  10325. }
  10326. #u31712 .text {
  10327. position:absolute;
  10328. align-self:flex-start;
  10329. padding:0px 0px 0px 0px;
  10330. box-sizing:border-box;
  10331. width:100%;
  10332. }
  10333. #u31712_text {
  10334. border-width:0px;
  10335. white-space:nowrap;
  10336. text-transform:none;
  10337. }
  10338. #u31713_div {
  10339. border-width:0px;
  10340. position:absolute;
  10341. left:0px;
  10342. top:0px;
  10343. width:61px;
  10344. height:30px;
  10345. background:inherit;
  10346. background-color:rgba(24, 144, 255, 1);
  10347. border:none;
  10348. border-radius:4px;
  10349. -moz-box-shadow:none;
  10350. -webkit-box-shadow:none;
  10351. box-shadow:none;
  10352. font-family:'Microsoft YaHei', sans-serif;
  10353. font-weight:400;
  10354. font-style:normal;
  10355. font-size:14px;
  10356. color:#FFFFFF;
  10357. }
  10358. #u31713 {
  10359. border-width:0px;
  10360. position:absolute;
  10361. left:1224px;
  10362. top:1069px;
  10363. width:61px;
  10364. height:30px;
  10365. display:flex;
  10366. font-family:'Microsoft YaHei', sans-serif;
  10367. font-weight:400;
  10368. font-style:normal;
  10369. font-size:14px;
  10370. color:#FFFFFF;
  10371. }
  10372. #u31713 .text {
  10373. position:absolute;
  10374. align-self:center;
  10375. padding:2px 16px 2px 16px;
  10376. box-sizing:border-box;
  10377. width:100%;
  10378. }
  10379. #u31713_text {
  10380. border-width:0px;
  10381. white-space:nowrap;
  10382. text-transform:none;
  10383. }
  10384. #u31714_div {
  10385. border-width:0px;
  10386. position:absolute;
  10387. left:0px;
  10388. top:0px;
  10389. width:66px;
  10390. height:30px;
  10391. background:inherit;
  10392. background-color:rgba(255, 255, 255, 1);
  10393. box-sizing:border-box;
  10394. border-width:1px;
  10395. border-style:solid;
  10396. border-color:rgba(217, 217, 217, 1);
  10397. border-radius:4px;
  10398. -moz-box-shadow:none;
  10399. -webkit-box-shadow:none;
  10400. box-shadow:none;
  10401. font-family:'Microsoft YaHei', sans-serif;
  10402. font-weight:400;
  10403. font-style:normal;
  10404. font-size:14px;
  10405. color:rgba(0, 0, 0, 0.647058823529412);
  10406. line-height:21px;
  10407. }
  10408. #u31714 {
  10409. border-width:0px;
  10410. position:absolute;
  10411. left:1142px;
  10412. top:1069px;
  10413. width:66px;
  10414. height:30px;
  10415. display:flex;
  10416. font-family:'Microsoft YaHei', sans-serif;
  10417. font-weight:400;
  10418. font-style:normal;
  10419. font-size:14px;
  10420. color:rgba(0, 0, 0, 0.647058823529412);
  10421. line-height:21px;
  10422. }
  10423. #u31714 .text {
  10424. position:absolute;
  10425. align-self:center;
  10426. padding:2px 16px 2px 16px;
  10427. box-sizing:border-box;
  10428. width:100%;
  10429. }
  10430. #u31714_text {
  10431. border-width:0px;
  10432. white-space:nowrap;
  10433. text-transform:none;
  10434. }
  10435. #u31715_img {
  10436. border-width:0px;
  10437. position:absolute;
  10438. left:0px;
  10439. top:0px;
  10440. width:20px;
  10441. height:20px;
  10442. }
  10443. #u31715 {
  10444. border-width:0px;
  10445. position:absolute;
  10446. left:951px;
  10447. top:983px;
  10448. width:20px;
  10449. height:20px;
  10450. display:flex;
  10451. }
  10452. #u31715 .text {
  10453. position:absolute;
  10454. align-self:center;
  10455. padding:2px 2px 2px 2px;
  10456. box-sizing:border-box;
  10457. width:100%;
  10458. }
  10459. #u31715_text {
  10460. border-width:0px;
  10461. word-wrap:break-word;
  10462. text-transform:none;
  10463. visibility:hidden;
  10464. }
  10465. #u31716 label {
  10466. left:0px;
  10467. width:100%;
  10468. }
  10469. #u31716_img {
  10470. border-width:0px;
  10471. position:absolute;
  10472. left:0px;
  10473. top:0px;
  10474. width:12px;
  10475. height:12px;
  10476. }
  10477. #u31716 {
  10478. border-width:0px;
  10479. position:absolute;
  10480. left:366px;
  10481. top:476px;
  10482. width:36px;
  10483. height:16px;
  10484. display:flex;
  10485. }
  10486. #u31716 .text {
  10487. position:absolute;
  10488. align-self:center;
  10489. padding:0px 2px 0px 2px;
  10490. box-sizing:border-box;
  10491. }
  10492. #u31716_img.selected {
  10493. }
  10494. #u31716.selected {
  10495. }
  10496. #u31716_img.disabled {
  10497. }
  10498. #u31716.disabled {
  10499. }
  10500. #u31716_img.selectedDisabled {
  10501. }
  10502. #u31716.selectedDisabled {
  10503. }
  10504. #u31716_text {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:14px;
  10508. top:0px;
  10509. width:20px;
  10510. word-wrap:break-word;
  10511. text-transform:none;
  10512. visibility:hidden;
  10513. }
  10514. #u31716_input {
  10515. border-width:0px;
  10516. position:absolute;
  10517. left:0px;
  10518. top:0px;
  10519. width:0px;
  10520. height:0px;
  10521. opacity:0;
  10522. }
  10523. #u31717 label {
  10524. left:0px;
  10525. width:100%;
  10526. }
  10527. #u31717_img {
  10528. border-width:0px;
  10529. position:absolute;
  10530. left:0px;
  10531. top:0px;
  10532. width:12px;
  10533. height:12px;
  10534. }
  10535. #u31717 {
  10536. border-width:0px;
  10537. position:absolute;
  10538. left:366px;
  10539. top:514px;
  10540. width:36px;
  10541. height:16px;
  10542. display:flex;
  10543. }
  10544. #u31717 .text {
  10545. position:absolute;
  10546. align-self:center;
  10547. padding:0px 2px 0px 2px;
  10548. box-sizing:border-box;
  10549. }
  10550. #u31717_img.selected {
  10551. }
  10552. #u31717.selected {
  10553. }
  10554. #u31717_img.disabled {
  10555. }
  10556. #u31717.disabled {
  10557. }
  10558. #u31717_img.selectedDisabled {
  10559. }
  10560. #u31717.selectedDisabled {
  10561. }
  10562. #u31717_text {
  10563. border-width:0px;
  10564. position:absolute;
  10565. left:14px;
  10566. top:0px;
  10567. width:20px;
  10568. word-wrap:break-word;
  10569. text-transform:none;
  10570. visibility:hidden;
  10571. }
  10572. #u31717_input {
  10573. border-width:0px;
  10574. position:absolute;
  10575. left:0px;
  10576. top:0px;
  10577. width:0px;
  10578. height:0px;
  10579. opacity:0;
  10580. }
  10581. #u31719 {
  10582. border-width:0px;
  10583. position:absolute;
  10584. left:0px;
  10585. top:0px;
  10586. width:0px;
  10587. height:0px;
  10588. }
  10589. #u31720_div {
  10590. border-width:0px;
  10591. position:absolute;
  10592. left:0px;
  10593. top:0px;
  10594. width:30px;
  10595. height:30px;
  10596. background:inherit;
  10597. background-color:rgba(255, 255, 255, 1);
  10598. box-sizing:border-box;
  10599. border-width:1px;
  10600. border-style:solid;
  10601. border-color:rgba(228, 228, 228, 1);
  10602. border-radius:4px;
  10603. -moz-box-shadow:none;
  10604. -webkit-box-shadow:none;
  10605. box-shadow:none;
  10606. font-family:'Microsoft YaHei', sans-serif;
  10607. font-weight:400;
  10608. font-style:normal;
  10609. font-size:14px;
  10610. }
  10611. #u31720 {
  10612. border-width:0px;
  10613. position:absolute;
  10614. left:996px;
  10615. top:1183px;
  10616. width:30px;
  10617. height:30px;
  10618. display:flex;
  10619. font-family:'Microsoft YaHei', sans-serif;
  10620. font-weight:400;
  10621. font-style:normal;
  10622. font-size:14px;
  10623. }
  10624. #u31720 .text {
  10625. position:absolute;
  10626. align-self:center;
  10627. padding:2px 2px 2px 2px;
  10628. box-sizing:border-box;
  10629. width:100%;
  10630. }
  10631. #u31720_text {
  10632. border-width:0px;
  10633. word-wrap:break-word;
  10634. text-transform:none;
  10635. }
  10636. #u31721_div {
  10637. border-width:0px;
  10638. position:absolute;
  10639. left:0px;
  10640. top:0px;
  10641. width:49px;
  10642. height:30px;
  10643. background:inherit;
  10644. background-color:rgba(255, 255, 255, 0);
  10645. box-sizing:border-box;
  10646. border-width:1px;
  10647. border-style:solid;
  10648. border-color:rgba(188, 188, 188, 1);
  10649. border-radius:4px;
  10650. -moz-box-shadow:none;
  10651. -webkit-box-shadow:none;
  10652. box-shadow:none;
  10653. font-family:'Microsoft YaHei', sans-serif;
  10654. font-weight:400;
  10655. font-style:normal;
  10656. font-size:14px;
  10657. color:#1E1E1E;
  10658. }
  10659. #u31721 {
  10660. border-width:0px;
  10661. position:absolute;
  10662. left:1512px;
  10663. top:1183px;
  10664. width:49px;
  10665. height:30px;
  10666. display:flex;
  10667. font-family:'Microsoft YaHei', sans-serif;
  10668. font-weight:400;
  10669. font-style:normal;
  10670. font-size:14px;
  10671. color:#1E1E1E;
  10672. }
  10673. #u31721 .text {
  10674. position:absolute;
  10675. align-self:center;
  10676. padding:5px 10px 5px 10px;
  10677. box-sizing:border-box;
  10678. width:100%;
  10679. }
  10680. #u31721_text {
  10681. border-width:0px;
  10682. white-space:nowrap;
  10683. text-transform:none;
  10684. }
  10685. #u31722 {
  10686. border-width:0px;
  10687. position:absolute;
  10688. left:0px;
  10689. top:0px;
  10690. width:0px;
  10691. height:0px;
  10692. }
  10693. #u31723_div {
  10694. border-width:0px;
  10695. position:absolute;
  10696. left:0px;
  10697. top:0px;
  10698. width:33px;
  10699. height:24px;
  10700. background:inherit;
  10701. background-color:rgba(255, 255, 255, 1);
  10702. border:none;
  10703. border-radius:0px;
  10704. -moz-box-shadow:none;
  10705. -webkit-box-shadow:none;
  10706. box-shadow:none;
  10707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10708. font-weight:400;
  10709. font-style:normal;
  10710. font-size:14px;
  10711. color:#BCBCBC;
  10712. text-align:left;
  10713. }
  10714. #u31723 {
  10715. border-width:0px;
  10716. position:absolute;
  10717. left:1280px;
  10718. top:1186px;
  10719. width:33px;
  10720. height:24px;
  10721. display:flex;
  10722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10723. font-weight:400;
  10724. font-style:normal;
  10725. font-size:14px;
  10726. color:#BCBCBC;
  10727. text-align:left;
  10728. }
  10729. #u31723 .text {
  10730. position:absolute;
  10731. align-self:center;
  10732. padding:2px 2px 2px 2px;
  10733. box-sizing:border-box;
  10734. width:100%;
  10735. }
  10736. #u31723_text {
  10737. border-width:0px;
  10738. white-space:nowrap;
  10739. text-transform:none;
  10740. }
  10741. #u31724_div {
  10742. border-width:0px;
  10743. position:absolute;
  10744. left:0px;
  10745. top:0px;
  10746. width:40px;
  10747. height:30px;
  10748. background:inherit;
  10749. background-color:rgba(255, 255, 255, 1);
  10750. box-sizing:border-box;
  10751. border-width:1px;
  10752. border-style:solid;
  10753. border-color:rgba(228, 228, 228, 1);
  10754. border-radius:4px;
  10755. -moz-box-shadow:none;
  10756. -webkit-box-shadow:none;
  10757. box-shadow:none;
  10758. font-family:'Microsoft YaHei', sans-serif;
  10759. font-weight:400;
  10760. font-style:normal;
  10761. font-size:14px;
  10762. }
  10763. #u31724 {
  10764. border-width:0px;
  10765. position:absolute;
  10766. left:1315px;
  10767. top:1183px;
  10768. width:40px;
  10769. height:30px;
  10770. display:flex;
  10771. font-family:'Microsoft YaHei', sans-serif;
  10772. font-weight:400;
  10773. font-style:normal;
  10774. font-size:14px;
  10775. }
  10776. #u31724 .text {
  10777. position:absolute;
  10778. align-self:center;
  10779. padding:2px 2px 2px 2px;
  10780. box-sizing:border-box;
  10781. width:100%;
  10782. }
  10783. #u31724_text {
  10784. border-width:0px;
  10785. word-wrap:break-word;
  10786. text-transform:none;
  10787. visibility:hidden;
  10788. }
  10789. #u31725_div {
  10790. border-width:0px;
  10791. position:absolute;
  10792. left:0px;
  10793. top:0px;
  10794. width:19px;
  10795. height:24px;
  10796. background:inherit;
  10797. background-color:rgba(255, 255, 255, 1);
  10798. border:none;
  10799. border-radius:0px;
  10800. -moz-box-shadow:none;
  10801. -webkit-box-shadow:none;
  10802. box-shadow:none;
  10803. font-family:'Microsoft YaHei', sans-serif;
  10804. font-weight:400;
  10805. font-style:normal;
  10806. font-size:14px;
  10807. color:#BCBCBC;
  10808. text-align:left;
  10809. }
  10810. #u31725 {
  10811. border-width:0px;
  10812. position:absolute;
  10813. left:1357px;
  10814. top:1187px;
  10815. width:19px;
  10816. height:24px;
  10817. display:flex;
  10818. font-family:'Microsoft YaHei', sans-serif;
  10819. font-weight:400;
  10820. font-style:normal;
  10821. font-size:14px;
  10822. color:#BCBCBC;
  10823. text-align:left;
  10824. }
  10825. #u31725 .text {
  10826. position:absolute;
  10827. align-self:center;
  10828. padding:2px 2px 2px 2px;
  10829. box-sizing:border-box;
  10830. width:100%;
  10831. }
  10832. #u31725_text {
  10833. border-width:0px;
  10834. white-space:nowrap;
  10835. text-transform:none;
  10836. }
  10837. #u31726_input {
  10838. position:absolute;
  10839. left:0px;
  10840. top:0px;
  10841. width:34px;
  10842. height:25px;
  10843. padding:2px 2px 2px 2px;
  10844. font-family:'Microsoft YaHei', sans-serif;
  10845. font-weight:400;
  10846. font-style:normal;
  10847. font-size:13px;
  10848. letter-spacing:normal;
  10849. color:#000000;
  10850. vertical-align:none;
  10851. text-align:left;
  10852. text-transform:none;
  10853. background-color:transparent;
  10854. border-color:transparent;
  10855. }
  10856. #u31726_input.disabled {
  10857. position:absolute;
  10858. left:0px;
  10859. top:0px;
  10860. width:34px;
  10861. height:25px;
  10862. padding:2px 2px 2px 2px;
  10863. font-family:'Microsoft YaHei', sans-serif;
  10864. font-weight:400;
  10865. font-style:normal;
  10866. font-size:13px;
  10867. letter-spacing:normal;
  10868. color:#000000;
  10869. vertical-align:none;
  10870. text-align:left;
  10871. text-transform:none;
  10872. background-color:transparent;
  10873. border-color:transparent;
  10874. }
  10875. #u31726_div {
  10876. border-width:0px;
  10877. position:absolute;
  10878. left:0px;
  10879. top:0px;
  10880. width:34px;
  10881. height:25px;
  10882. background:inherit;
  10883. background-color:rgba(255, 255, 255, 1);
  10884. border:none;
  10885. border-radius:0px;
  10886. -moz-box-shadow:none;
  10887. -webkit-box-shadow:none;
  10888. box-shadow:none;
  10889. font-family:'Microsoft YaHei', sans-serif;
  10890. font-weight:400;
  10891. font-style:normal;
  10892. }
  10893. #u31726 {
  10894. border-width:0px;
  10895. position:absolute;
  10896. left:1318px;
  10897. top:1185px;
  10898. width:34px;
  10899. height:25px;
  10900. display:flex;
  10901. font-family:'Microsoft YaHei', sans-serif;
  10902. font-weight:400;
  10903. font-style:normal;
  10904. }
  10905. #u31726 .text {
  10906. position:absolute;
  10907. align-self:center;
  10908. padding:2px 2px 2px 2px;
  10909. box-sizing:border-box;
  10910. width:100%;
  10911. }
  10912. #u31726_div.disabled {
  10913. border-width:0px;
  10914. position:absolute;
  10915. left:0px;
  10916. top:0px;
  10917. width:34px;
  10918. height:25px;
  10919. background:inherit;
  10920. background-color:rgba(240, 240, 240, 1);
  10921. border:none;
  10922. border-radius:0px;
  10923. -moz-box-shadow:none;
  10924. -webkit-box-shadow:none;
  10925. box-shadow:none;
  10926. font-family:'Microsoft YaHei', sans-serif;
  10927. font-weight:400;
  10928. font-style:normal;
  10929. }
  10930. #u31726.disabled {
  10931. }
  10932. #u31727_div {
  10933. border-width:0px;
  10934. position:absolute;
  10935. left:0px;
  10936. top:0px;
  10937. width:30px;
  10938. height:30px;
  10939. background:inherit;
  10940. background-color:rgba(41, 143, 255, 1);
  10941. border:none;
  10942. border-radius:4px;
  10943. -moz-box-shadow:none;
  10944. -webkit-box-shadow:none;
  10945. box-shadow:none;
  10946. font-family:'Microsoft YaHei', sans-serif;
  10947. font-weight:400;
  10948. font-style:normal;
  10949. font-size:14px;
  10950. color:#FFFFFF;
  10951. }
  10952. #u31727 {
  10953. border-width:0px;
  10954. position:absolute;
  10955. left:1030px;
  10956. top:1183px;
  10957. width:30px;
  10958. height:30px;
  10959. display:flex;
  10960. font-family:'Microsoft YaHei', sans-serif;
  10961. font-weight:400;
  10962. font-style:normal;
  10963. font-size:14px;
  10964. color:#FFFFFF;
  10965. }
  10966. #u31727 .text {
  10967. position:absolute;
  10968. align-self:center;
  10969. padding:2px 2px 2px 2px;
  10970. box-sizing:border-box;
  10971. width:100%;
  10972. }
  10973. #u31727_text {
  10974. border-width:0px;
  10975. word-wrap:break-word;
  10976. text-transform:none;
  10977. }
  10978. #u31728_div {
  10979. border-width:0px;
  10980. position:absolute;
  10981. left:0px;
  10982. top:0px;
  10983. width:30px;
  10984. height:30px;
  10985. background:inherit;
  10986. background-color:rgba(255, 255, 255, 1);
  10987. box-sizing:border-box;
  10988. border-width:1px;
  10989. border-style:solid;
  10990. border-color:rgba(228, 228, 228, 1);
  10991. border-radius:4px;
  10992. -moz-box-shadow:none;
  10993. -webkit-box-shadow:none;
  10994. box-shadow:none;
  10995. font-family:'Microsoft YaHei', sans-serif;
  10996. font-weight:400;
  10997. font-style:normal;
  10998. font-size:14px;
  10999. }
  11000. #u31728 {
  11001. border-width:0px;
  11002. position:absolute;
  11003. left:1064px;
  11004. top:1183px;
  11005. width:30px;
  11006. height:30px;
  11007. display:flex;
  11008. font-family:'Microsoft YaHei', sans-serif;
  11009. font-weight:400;
  11010. font-style:normal;
  11011. font-size:14px;
  11012. }
  11013. #u31728 .text {
  11014. position:absolute;
  11015. align-self:center;
  11016. padding:2px 2px 2px 2px;
  11017. box-sizing:border-box;
  11018. width:100%;
  11019. }
  11020. #u31728_text {
  11021. border-width:0px;
  11022. word-wrap:break-word;
  11023. text-transform:none;
  11024. }
  11025. #u31729_div {
  11026. border-width:0px;
  11027. position:absolute;
  11028. left:0px;
  11029. top:0px;
  11030. width:30px;
  11031. height:30px;
  11032. background:inherit;
  11033. background-color:rgba(255, 255, 255, 1);
  11034. box-sizing:border-box;
  11035. border-width:1px;
  11036. border-style:solid;
  11037. border-color:rgba(228, 228, 228, 1);
  11038. border-radius:4px;
  11039. -moz-box-shadow:none;
  11040. -webkit-box-shadow:none;
  11041. box-shadow:none;
  11042. font-family:'Microsoft YaHei', sans-serif;
  11043. font-weight:400;
  11044. font-style:normal;
  11045. font-size:14px;
  11046. }
  11047. #u31729 {
  11048. border-width:0px;
  11049. position:absolute;
  11050. left:1098px;
  11051. top:1183px;
  11052. width:30px;
  11053. height:30px;
  11054. display:flex;
  11055. font-family:'Microsoft YaHei', sans-serif;
  11056. font-weight:400;
  11057. font-style:normal;
  11058. font-size:14px;
  11059. }
  11060. #u31729 .text {
  11061. position:absolute;
  11062. align-self:center;
  11063. padding:2px 2px 2px 2px;
  11064. box-sizing:border-box;
  11065. width:100%;
  11066. }
  11067. #u31729_text {
  11068. border-width:0px;
  11069. word-wrap:break-word;
  11070. text-transform:none;
  11071. }
  11072. #u31730_div {
  11073. border-width:0px;
  11074. position:absolute;
  11075. left:0px;
  11076. top:0px;
  11077. width:30px;
  11078. height:30px;
  11079. background:inherit;
  11080. background-color:rgba(255, 255, 255, 1);
  11081. border:none;
  11082. border-radius:4px;
  11083. -moz-box-shadow:none;
  11084. -webkit-box-shadow:none;
  11085. box-shadow:none;
  11086. font-family:'Microsoft YaHei', sans-serif;
  11087. font-weight:400;
  11088. font-style:normal;
  11089. font-size:14px;
  11090. }
  11091. #u31730 {
  11092. border-width:0px;
  11093. position:absolute;
  11094. left:1128px;
  11095. top:1183px;
  11096. width:30px;
  11097. height:30px;
  11098. display:flex;
  11099. font-family:'Microsoft YaHei', sans-serif;
  11100. font-weight:400;
  11101. font-style:normal;
  11102. font-size:14px;
  11103. }
  11104. #u31730 .text {
  11105. position:absolute;
  11106. align-self:center;
  11107. padding:2px 2px 2px 2px;
  11108. box-sizing:border-box;
  11109. width:100%;
  11110. }
  11111. #u31730_text {
  11112. border-width:0px;
  11113. word-wrap:break-word;
  11114. text-transform:none;
  11115. }
  11116. #u31731_div {
  11117. border-width:0px;
  11118. position:absolute;
  11119. left:0px;
  11120. top:0px;
  11121. width:30px;
  11122. height:30px;
  11123. background:inherit;
  11124. background-color:rgba(255, 255, 255, 1);
  11125. box-sizing:border-box;
  11126. border-width:1px;
  11127. border-style:solid;
  11128. border-color:rgba(228, 228, 228, 1);
  11129. border-radius:4px;
  11130. -moz-box-shadow:none;
  11131. -webkit-box-shadow:none;
  11132. box-shadow:none;
  11133. font-family:'Microsoft YaHei', sans-serif;
  11134. font-weight:400;
  11135. font-style:normal;
  11136. font-size:14px;
  11137. }
  11138. #u31731 {
  11139. border-width:0px;
  11140. position:absolute;
  11141. left:1162px;
  11142. top:1183px;
  11143. width:30px;
  11144. height:30px;
  11145. display:flex;
  11146. font-family:'Microsoft YaHei', sans-serif;
  11147. font-weight:400;
  11148. font-style:normal;
  11149. font-size:14px;
  11150. }
  11151. #u31731 .text {
  11152. position:absolute;
  11153. align-self:center;
  11154. padding:2px 2px 2px 2px;
  11155. box-sizing:border-box;
  11156. width:100%;
  11157. }
  11158. #u31731_text {
  11159. border-width:0px;
  11160. word-wrap:break-word;
  11161. text-transform:none;
  11162. }
  11163. #u31732_div {
  11164. border-width:0px;
  11165. position:absolute;
  11166. left:0px;
  11167. top:0px;
  11168. width:32px;
  11169. height:21px;
  11170. background:inherit;
  11171. background-color:rgba(255, 255, 255, 1);
  11172. border:none;
  11173. border-radius:15px;
  11174. -moz-box-shadow:none;
  11175. -webkit-box-shadow:none;
  11176. box-shadow:none;
  11177. font-family:'Microsoft YaHei', sans-serif;
  11178. font-weight:400;
  11179. font-style:normal;
  11180. font-size:14px;
  11181. color:#1E1E1E;
  11182. }
  11183. #u31732 {
  11184. border-width:0px;
  11185. position:absolute;
  11186. left:1236px;
  11187. top:1188px;
  11188. width:32px;
  11189. height:21px;
  11190. display:flex;
  11191. font-family:'Microsoft YaHei', sans-serif;
  11192. font-weight:400;
  11193. font-style:normal;
  11194. font-size:14px;
  11195. color:#1E1E1E;
  11196. }
  11197. #u31732 .text {
  11198. position:absolute;
  11199. align-self:center;
  11200. padding:2px 2px 2px 2px;
  11201. box-sizing:border-box;
  11202. width:100%;
  11203. }
  11204. #u31732_text {
  11205. border-width:0px;
  11206. white-space:nowrap;
  11207. text-transform:none;
  11208. }
  11209. #u31733 {
  11210. border-width:0px;
  11211. position:absolute;
  11212. left:0px;
  11213. top:0px;
  11214. width:0px;
  11215. height:0px;
  11216. }
  11217. #u31734_div {
  11218. border-width:0px;
  11219. position:absolute;
  11220. left:0px;
  11221. top:0px;
  11222. width:31px;
  11223. height:30px;
  11224. background:inherit;
  11225. background-color:rgba(255, 255, 255, 1);
  11226. box-sizing:border-box;
  11227. border-width:1px;
  11228. border-style:solid;
  11229. border-color:rgba(228, 228, 228, 1);
  11230. border-radius:4px;
  11231. -moz-box-shadow:none;
  11232. -webkit-box-shadow:none;
  11233. box-shadow:none;
  11234. font-family:'Microsoft YaHei', sans-serif;
  11235. font-weight:400;
  11236. font-style:normal;
  11237. font-size:12px;
  11238. }
  11239. #u31734 {
  11240. border-width:0px;
  11241. position:absolute;
  11242. left:961px;
  11243. top:1183px;
  11244. width:31px;
  11245. height:30px;
  11246. display:flex;
  11247. font-family:'Microsoft YaHei', sans-serif;
  11248. font-weight:400;
  11249. font-style:normal;
  11250. font-size:12px;
  11251. }
  11252. #u31734 .text {
  11253. position:absolute;
  11254. align-self:center;
  11255. padding:2px 2px 2px 2px;
  11256. box-sizing:border-box;
  11257. width:100%;
  11258. }
  11259. #u31734_text {
  11260. border-width:0px;
  11261. word-wrap:break-word;
  11262. text-transform:none;
  11263. visibility:hidden;
  11264. }
  11265. #u31735_img {
  11266. border-width:0px;
  11267. position:absolute;
  11268. left:0px;
  11269. top:0px;
  11270. width:8px;
  11271. height:14px;
  11272. }
  11273. #u31735 {
  11274. border-width:0px;
  11275. position:absolute;
  11276. left:973px;
  11277. top:1191px;
  11278. width:8px;
  11279. height:14px;
  11280. display:flex;
  11281. font-family:'Microsoft YaHei', sans-serif;
  11282. font-weight:400;
  11283. font-style:normal;
  11284. font-size:12px;
  11285. }
  11286. #u31735 .text {
  11287. position:absolute;
  11288. align-self:center;
  11289. padding:2px 2px 2px 2px;
  11290. box-sizing:border-box;
  11291. width:100%;
  11292. }
  11293. #u31735_text {
  11294. border-width:0px;
  11295. word-wrap:break-word;
  11296. text-transform:none;
  11297. visibility:hidden;
  11298. }
  11299. #u31736 {
  11300. border-width:0px;
  11301. position:absolute;
  11302. left:0px;
  11303. top:0px;
  11304. width:0px;
  11305. height:0px;
  11306. }
  11307. #u31737_div {
  11308. border-width:0px;
  11309. position:absolute;
  11310. left:0px;
  11311. top:0px;
  11312. width:31px;
  11313. height:30px;
  11314. background:inherit;
  11315. background-color:rgba(255, 255, 255, 1);
  11316. box-sizing:border-box;
  11317. border-width:1px;
  11318. border-style:solid;
  11319. border-color:rgba(228, 228, 228, 1);
  11320. border-radius:4px;
  11321. -moz-box-shadow:none;
  11322. -webkit-box-shadow:none;
  11323. box-shadow:none;
  11324. font-family:'Microsoft YaHei', sans-serif;
  11325. font-weight:400;
  11326. font-style:normal;
  11327. font-size:12px;
  11328. }
  11329. #u31737 {
  11330. border-width:0px;
  11331. position:absolute;
  11332. left:1195px;
  11333. top:1183px;
  11334. width:31px;
  11335. height:30px;
  11336. display:flex;
  11337. font-family:'Microsoft YaHei', sans-serif;
  11338. font-weight:400;
  11339. font-style:normal;
  11340. font-size:12px;
  11341. }
  11342. #u31737 .text {
  11343. position:absolute;
  11344. align-self:center;
  11345. padding:2px 2px 2px 2px;
  11346. box-sizing:border-box;
  11347. width:100%;
  11348. }
  11349. #u31737_text {
  11350. border-width:0px;
  11351. word-wrap:break-word;
  11352. text-transform:none;
  11353. visibility:hidden;
  11354. }
  11355. #u31738_img {
  11356. border-width:0px;
  11357. position:absolute;
  11358. left:0px;
  11359. top:0px;
  11360. width:8px;
  11361. height:14px;
  11362. }
  11363. #u31738 {
  11364. border-width:0px;
  11365. position:absolute;
  11366. left:1208px;
  11367. top:1191px;
  11368. width:8px;
  11369. height:14px;
  11370. display:flex;
  11371. font-family:'Microsoft YaHei', sans-serif;
  11372. font-weight:400;
  11373. font-style:normal;
  11374. font-size:12px;
  11375. }
  11376. #u31738 .text {
  11377. position:absolute;
  11378. align-self:center;
  11379. padding:2px 2px 2px 2px;
  11380. box-sizing:border-box;
  11381. width:100%;
  11382. }
  11383. #u31738_text {
  11384. border-width:0px;
  11385. word-wrap:break-word;
  11386. text-transform:none;
  11387. visibility:hidden;
  11388. }
  11389. #u31739 {
  11390. border-width:0px;
  11391. position:absolute;
  11392. left:0px;
  11393. top:0px;
  11394. width:0px;
  11395. height:0px;
  11396. }
  11397. #u31740_div {
  11398. border-width:0px;
  11399. position:absolute;
  11400. left:0px;
  11401. top:0px;
  11402. width:33px;
  11403. height:24px;
  11404. background:inherit;
  11405. background-color:rgba(255, 255, 255, 1);
  11406. border:none;
  11407. border-radius:0px;
  11408. -moz-box-shadow:none;
  11409. -webkit-box-shadow:none;
  11410. box-shadow:none;
  11411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11412. font-weight:400;
  11413. font-style:normal;
  11414. font-size:14px;
  11415. color:#BCBCBC;
  11416. text-align:left;
  11417. }
  11418. #u31740 {
  11419. border-width:0px;
  11420. position:absolute;
  11421. left:1396px;
  11422. top:1186px;
  11423. width:33px;
  11424. height:24px;
  11425. display:flex;
  11426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11427. font-weight:400;
  11428. font-style:normal;
  11429. font-size:14px;
  11430. color:#BCBCBC;
  11431. text-align:left;
  11432. }
  11433. #u31740 .text {
  11434. position:absolute;
  11435. align-self:center;
  11436. padding:2px 2px 2px 2px;
  11437. box-sizing:border-box;
  11438. width:100%;
  11439. }
  11440. #u31740_text {
  11441. border-width:0px;
  11442. white-space:nowrap;
  11443. text-transform:none;
  11444. }
  11445. #u31741_div {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:0px;
  11449. top:0px;
  11450. width:40px;
  11451. height:30px;
  11452. background:inherit;
  11453. background-color:rgba(255, 255, 255, 1);
  11454. box-sizing:border-box;
  11455. border-width:1px;
  11456. border-style:solid;
  11457. border-color:rgba(228, 228, 228, 1);
  11458. border-radius:4px;
  11459. -moz-box-shadow:none;
  11460. -webkit-box-shadow:none;
  11461. box-shadow:none;
  11462. font-family:'Microsoft YaHei', sans-serif;
  11463. font-weight:400;
  11464. font-style:normal;
  11465. font-size:14px;
  11466. }
  11467. #u31741 {
  11468. border-width:0px;
  11469. position:absolute;
  11470. left:1431px;
  11471. top:1183px;
  11472. width:40px;
  11473. height:30px;
  11474. display:flex;
  11475. font-family:'Microsoft YaHei', sans-serif;
  11476. font-weight:400;
  11477. font-style:normal;
  11478. font-size:14px;
  11479. }
  11480. #u31741 .text {
  11481. position:absolute;
  11482. align-self:center;
  11483. padding:2px 2px 2px 2px;
  11484. box-sizing:border-box;
  11485. width:100%;
  11486. }
  11487. #u31741_text {
  11488. border-width:0px;
  11489. word-wrap:break-word;
  11490. text-transform:none;
  11491. visibility:hidden;
  11492. }
  11493. #u31742_div {
  11494. border-width:0px;
  11495. position:absolute;
  11496. left:0px;
  11497. top:0px;
  11498. width:19px;
  11499. height:24px;
  11500. background:inherit;
  11501. background-color:rgba(255, 255, 255, 1);
  11502. border:none;
  11503. border-radius:0px;
  11504. -moz-box-shadow:none;
  11505. -webkit-box-shadow:none;
  11506. box-shadow:none;
  11507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11508. font-weight:400;
  11509. font-style:normal;
  11510. font-size:14px;
  11511. color:#BCBCBC;
  11512. text-align:left;
  11513. }
  11514. #u31742 {
  11515. border-width:0px;
  11516. position:absolute;
  11517. left:1473px;
  11518. top:1187px;
  11519. width:19px;
  11520. height:24px;
  11521. display:flex;
  11522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11523. font-weight:400;
  11524. font-style:normal;
  11525. font-size:14px;
  11526. color:#BCBCBC;
  11527. text-align:left;
  11528. }
  11529. #u31742 .text {
  11530. position:absolute;
  11531. align-self:center;
  11532. padding:2px 2px 2px 2px;
  11533. box-sizing:border-box;
  11534. width:100%;
  11535. }
  11536. #u31742_text {
  11537. border-width:0px;
  11538. white-space:nowrap;
  11539. text-transform:none;
  11540. }
  11541. #u31743_input {
  11542. position:absolute;
  11543. left:0px;
  11544. top:0px;
  11545. width:34px;
  11546. height:25px;
  11547. padding:2px 2px 2px 2px;
  11548. font-family:'Microsoft YaHei', sans-serif;
  11549. font-weight:400;
  11550. font-style:normal;
  11551. font-size:13px;
  11552. letter-spacing:normal;
  11553. color:#000000;
  11554. vertical-align:none;
  11555. text-align:left;
  11556. text-transform:none;
  11557. background-color:transparent;
  11558. border-color:transparent;
  11559. }
  11560. #u31743_input.disabled {
  11561. position:absolute;
  11562. left:0px;
  11563. top:0px;
  11564. width:34px;
  11565. height:25px;
  11566. padding:2px 2px 2px 2px;
  11567. font-family:'Microsoft YaHei', sans-serif;
  11568. font-weight:400;
  11569. font-style:normal;
  11570. font-size:13px;
  11571. letter-spacing:normal;
  11572. color:#000000;
  11573. vertical-align:none;
  11574. text-align:left;
  11575. text-transform:none;
  11576. background-color:transparent;
  11577. border-color:transparent;
  11578. }
  11579. #u31743_div {
  11580. border-width:0px;
  11581. position:absolute;
  11582. left:0px;
  11583. top:0px;
  11584. width:34px;
  11585. height:25px;
  11586. background:inherit;
  11587. background-color:rgba(255, 255, 255, 1);
  11588. border:none;
  11589. border-radius:0px;
  11590. -moz-box-shadow:none;
  11591. -webkit-box-shadow:none;
  11592. box-shadow:none;
  11593. font-family:'Microsoft YaHei', sans-serif;
  11594. font-weight:400;
  11595. font-style:normal;
  11596. }
  11597. #u31743 {
  11598. border-width:0px;
  11599. position:absolute;
  11600. left:1434px;
  11601. top:1185px;
  11602. width:34px;
  11603. height:25px;
  11604. display:flex;
  11605. font-family:'Microsoft YaHei', sans-serif;
  11606. font-weight:400;
  11607. font-style:normal;
  11608. }
  11609. #u31743 .text {
  11610. position:absolute;
  11611. align-self:center;
  11612. padding:2px 2px 2px 2px;
  11613. box-sizing:border-box;
  11614. width:100%;
  11615. }
  11616. #u31743_div.disabled {
  11617. border-width:0px;
  11618. position:absolute;
  11619. left:0px;
  11620. top:0px;
  11621. width:34px;
  11622. height:25px;
  11623. background:inherit;
  11624. background-color:rgba(240, 240, 240, 1);
  11625. border:none;
  11626. border-radius:0px;
  11627. -moz-box-shadow:none;
  11628. -webkit-box-shadow:none;
  11629. box-shadow:none;
  11630. font-family:'Microsoft YaHei', sans-serif;
  11631. font-weight:400;
  11632. font-style:normal;
  11633. }
  11634. #u31743.disabled {
  11635. }
  11636. #u31744 {
  11637. border-width:0px;
  11638. position:absolute;
  11639. left:0px;
  11640. top:0px;
  11641. width:0px;
  11642. height:0px;
  11643. }
  11644. #u31745_div {
  11645. border-width:0px;
  11646. position:absolute;
  11647. left:0px;
  11648. top:0px;
  11649. width:140px;
  11650. height:30px;
  11651. background:inherit;
  11652. background-color:rgba(255, 255, 255, 1);
  11653. box-sizing:border-box;
  11654. border-width:1px;
  11655. border-style:solid;
  11656. border-color:rgba(215, 215, 215, 1);
  11657. border-radius:4px;
  11658. -moz-box-shadow:none;
  11659. -webkit-box-shadow:none;
  11660. box-shadow:none;
  11661. font-size:11px;
  11662. }
  11663. #u31745 {
  11664. border-width:0px;
  11665. position:absolute;
  11666. left:500px;
  11667. top:140px;
  11668. width:140px;
  11669. height:30px;
  11670. display:flex;
  11671. font-size:11px;
  11672. }
  11673. #u31745 .text {
  11674. position:absolute;
  11675. align-self:center;
  11676. padding:2px 2px 2px 2px;
  11677. box-sizing:border-box;
  11678. width:100%;
  11679. }
  11680. #u31745_text {
  11681. border-width:0px;
  11682. word-wrap:break-word;
  11683. text-transform:none;
  11684. visibility:hidden;
  11685. }
  11686. #u31746_input {
  11687. position:absolute;
  11688. left:0px;
  11689. top:0px;
  11690. width:126px;
  11691. height:23px;
  11692. padding:2px 2px 2px 2px;
  11693. font-family:'ArialMT', 'Arial', sans-serif;
  11694. font-weight:400;
  11695. font-style:normal;
  11696. font-size:11px;
  11697. letter-spacing:normal;
  11698. color:#AAAAAA;
  11699. vertical-align:none;
  11700. text-align:left;
  11701. text-transform:none;
  11702. background-color:transparent;
  11703. border-color:transparent;
  11704. }
  11705. #u31746_input.disabled {
  11706. position:absolute;
  11707. left:0px;
  11708. top:0px;
  11709. width:126px;
  11710. height:23px;
  11711. padding:2px 2px 2px 2px;
  11712. font-family:'ArialMT', 'Arial', sans-serif;
  11713. font-weight:400;
  11714. font-style:normal;
  11715. font-size:11px;
  11716. letter-spacing:normal;
  11717. color:#AAAAAA;
  11718. vertical-align:none;
  11719. text-align:left;
  11720. text-transform:none;
  11721. background-color:transparent;
  11722. border-color:transparent;
  11723. }
  11724. #u31746_div {
  11725. border-width:0px;
  11726. position:absolute;
  11727. left:0px;
  11728. top:0px;
  11729. width:126px;
  11730. height:23px;
  11731. background:inherit;
  11732. background-color:rgba(255, 255, 255, 1);
  11733. border:none;
  11734. border-radius:0px;
  11735. -moz-box-shadow:none;
  11736. -webkit-box-shadow:none;
  11737. box-shadow:none;
  11738. font-size:11px;
  11739. color:#AAAAAA;
  11740. }
  11741. #u31746 {
  11742. border-width:0px;
  11743. position:absolute;
  11744. left:507px;
  11745. top:142px;
  11746. width:126px;
  11747. height:23px;
  11748. display:flex;
  11749. font-size:11px;
  11750. color:#AAAAAA;
  11751. }
  11752. #u31746 .text {
  11753. position:absolute;
  11754. align-self:flex-start;
  11755. padding:2px 2px 2px 2px;
  11756. box-sizing:border-box;
  11757. width:100%;
  11758. }
  11759. #u31746_div.disabled {
  11760. border-width:0px;
  11761. position:absolute;
  11762. left:0px;
  11763. top:0px;
  11764. width:126px;
  11765. height:23px;
  11766. background:inherit;
  11767. background-color:rgba(240, 240, 240, 1);
  11768. border:none;
  11769. border-radius:0px;
  11770. -moz-box-shadow:none;
  11771. -webkit-box-shadow:none;
  11772. box-shadow:none;
  11773. font-size:11px;
  11774. color:#AAAAAA;
  11775. }
  11776. #u31746.disabled {
  11777. }
  11778. .u31746_input_option {
  11779. font-size:11px;
  11780. }
  11781. #u31747 {
  11782. border-width:0px;
  11783. position:absolute;
  11784. left:0px;
  11785. top:0px;
  11786. width:0px;
  11787. height:0px;
  11788. }
  11789. #u31748_div {
  11790. border-width:0px;
  11791. position:absolute;
  11792. left:0px;
  11793. top:0px;
  11794. width:140px;
  11795. height:30px;
  11796. background:inherit;
  11797. background-color:rgba(255, 255, 255, 1);
  11798. box-sizing:border-box;
  11799. border-width:1px;
  11800. border-style:solid;
  11801. border-color:rgba(215, 215, 215, 1);
  11802. border-radius:4px;
  11803. -moz-box-shadow:none;
  11804. -webkit-box-shadow:none;
  11805. box-shadow:none;
  11806. font-size:11px;
  11807. }
  11808. #u31748 {
  11809. border-width:0px;
  11810. position:absolute;
  11811. left:350px;
  11812. top:140px;
  11813. width:140px;
  11814. height:30px;
  11815. display:flex;
  11816. font-size:11px;
  11817. }
  11818. #u31748 .text {
  11819. position:absolute;
  11820. align-self:center;
  11821. padding:2px 2px 2px 2px;
  11822. box-sizing:border-box;
  11823. width:100%;
  11824. }
  11825. #u31748_text {
  11826. border-width:0px;
  11827. word-wrap:break-word;
  11828. text-transform:none;
  11829. visibility:hidden;
  11830. }
  11831. #u31749_input {
  11832. position:absolute;
  11833. left:0px;
  11834. top:0px;
  11835. width:126px;
  11836. height:23px;
  11837. padding:2px 2px 2px 2px;
  11838. font-family:'ArialMT', 'Arial', sans-serif;
  11839. font-weight:400;
  11840. font-style:normal;
  11841. font-size:11px;
  11842. letter-spacing:normal;
  11843. color:#AAAAAA;
  11844. vertical-align:none;
  11845. text-align:left;
  11846. text-transform:none;
  11847. background-color:transparent;
  11848. border-color:transparent;
  11849. }
  11850. #u31749_input.disabled {
  11851. position:absolute;
  11852. left:0px;
  11853. top:0px;
  11854. width:126px;
  11855. height:23px;
  11856. padding:2px 2px 2px 2px;
  11857. font-family:'ArialMT', 'Arial', sans-serif;
  11858. font-weight:400;
  11859. font-style:normal;
  11860. font-size:11px;
  11861. letter-spacing:normal;
  11862. color:#AAAAAA;
  11863. vertical-align:none;
  11864. text-align:left;
  11865. text-transform:none;
  11866. background-color:transparent;
  11867. border-color:transparent;
  11868. }
  11869. #u31749_div {
  11870. border-width:0px;
  11871. position:absolute;
  11872. left:0px;
  11873. top:0px;
  11874. width:126px;
  11875. height:23px;
  11876. background:inherit;
  11877. background-color:rgba(255, 255, 255, 1);
  11878. border:none;
  11879. border-radius:0px;
  11880. -moz-box-shadow:none;
  11881. -webkit-box-shadow:none;
  11882. box-shadow:none;
  11883. font-size:11px;
  11884. color:#AAAAAA;
  11885. }
  11886. #u31749 {
  11887. border-width:0px;
  11888. position:absolute;
  11889. left:357px;
  11890. top:142px;
  11891. width:126px;
  11892. height:23px;
  11893. display:flex;
  11894. font-size:11px;
  11895. color:#AAAAAA;
  11896. }
  11897. #u31749 .text {
  11898. position:absolute;
  11899. align-self:flex-start;
  11900. padding:2px 2px 2px 2px;
  11901. box-sizing:border-box;
  11902. width:100%;
  11903. }
  11904. #u31749_div.disabled {
  11905. border-width:0px;
  11906. position:absolute;
  11907. left:0px;
  11908. top:0px;
  11909. width:126px;
  11910. height:23px;
  11911. background:inherit;
  11912. background-color:rgba(240, 240, 240, 1);
  11913. border:none;
  11914. border-radius:0px;
  11915. -moz-box-shadow:none;
  11916. -webkit-box-shadow:none;
  11917. box-shadow:none;
  11918. font-size:11px;
  11919. color:#AAAAAA;
  11920. }
  11921. #u31749.disabled {
  11922. }
  11923. .u31749_input_option {
  11924. font-size:11px;
  11925. }