styles.css 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524
  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. #u31250_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. #u31250 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u31250 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u31250_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u31251_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. #u31251 {
  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. #u31251 .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. #u31251_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u31252_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. #u31252 {
  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. #u31252 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u31252_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u31253 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u31254_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u31254 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u31254 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u31254_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u31255_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. #u31255 {
  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. #u31255 .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. #u31255_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u31256_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. #u31256 {
  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. #u31256 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u31256_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u31257 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u31258_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. #u31258 {
  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. #u31258 .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. #u31258_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u31259_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u31259 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u31259 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u31259_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u31260 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u31261_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. #u31261 {
  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. #u31261 .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. #u31261_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u31262_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u31262 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u31262 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u31262_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u31263 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u31264_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. #u31264 {
  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. #u31264 .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. #u31264_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u31265_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u31265 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u31265 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u31265_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u31266 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u31267_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. #u31267 {
  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. #u31267 .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. #u31267_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u31268_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u31268 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u31268 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u31268_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u31269 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u31270_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. #u31270 {
  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. #u31270 .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. #u31270_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u31271_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u31271 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u31271 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u31271_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u31272 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u31273_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. #u31273 {
  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. #u31273 .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. #u31273_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u31274_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u31274 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u31274 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u31274_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u31275 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u31276_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. #u31276 {
  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. #u31276 .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. #u31276_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u31277_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u31277 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u31277 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u31277_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u31278 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u31279_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. #u31279 {
  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. #u31279 .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. #u31279_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u31280_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u31280 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u31280 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u31280_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u31281 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u31282_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. #u31282 {
  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. #u31282 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u31282_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u31283_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u31283 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u31283 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u31283_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u31284 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u31285_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. #u31285 {
  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. #u31285 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u31285_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u31286_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u31286 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u31286 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u31286_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u31287 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u31288_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. #u31288 {
  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. #u31288 .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. #u31288_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u31289_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u31289 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u31289 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u31289_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u31290 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u31291_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. #u31291_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. #u31291_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. #u31291 {
  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. #u31291 .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. #u31291_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. #u31291.disabled {
  1276. }
  1277. .u31291_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u31292_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u31292 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u31292 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u31292_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u31293_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. #u31293 {
  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. #u31293 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u31293_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u31294_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u31294 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u31294 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u31294_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u31295 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u31296_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. #u31296 {
  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. #u31296 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u31296_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u31297_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u31297 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u31297 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u31297_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u31298_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u31298 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u31298 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u31298_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u31299_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u31299 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u31299 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u31299_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u31300_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u31300 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u31300 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u31300_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u31301 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u31302_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. #u31302 {
  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. #u31302 .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. #u31302_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u31303_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u31303 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u31303 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u31303_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u31304_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1260px;
  1648. height:1179px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(242, 242, 242, 1);
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. }
  1660. #u31304 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:332px;
  1664. top:51px;
  1665. width:1260px;
  1666. height:1179px;
  1667. display:flex;
  1668. }
  1669. #u31304 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u31304_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u31305_div {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:80px;
  1688. height:40px;
  1689. background:inherit;
  1690. background-color:rgba(24, 144, 255, 1);
  1691. border:none;
  1692. border-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:14px;
  1700. color:#FFFFFF;
  1701. }
  1702. #u31305 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:436px;
  1706. top:373px;
  1707. width:80px;
  1708. height:40px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. font-size:14px;
  1714. color:#FFFFFF;
  1715. }
  1716. #u31305 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:2px 2px 2px 2px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u31305_text {
  1724. border-width:0px;
  1725. word-wrap:break-word;
  1726. text-transform:none;
  1727. }
  1728. #u31306_div {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:80px;
  1734. height:40px;
  1735. background:inherit;
  1736. background-color:rgba(255, 255, 255, 1);
  1737. box-sizing:border-box;
  1738. border-width:1px;
  1739. border-style:solid;
  1740. border-color:rgba(170, 170, 170, 1);
  1741. border-radius:0px;
  1742. -moz-box-shadow:none;
  1743. -webkit-box-shadow:none;
  1744. box-shadow:none;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:14px;
  1749. }
  1750. #u31306 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:356px;
  1754. top:373px;
  1755. width:80px;
  1756. height:40px;
  1757. display:flex;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:14px;
  1762. }
  1763. #u31306 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:2px 2px 2px 2px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u31306_text {
  1771. border-width:0px;
  1772. word-wrap:break-word;
  1773. text-transform:none;
  1774. }
  1775. #u31307_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:73px;
  1781. height:50px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 0);
  1784. border:none;
  1785. border-left:0px;
  1786. border-top:0px;
  1787. border-right:0px;
  1788. border-radius:0px;
  1789. border-bottom-right-radius:0px;
  1790. border-bottom-left-radius:0px;
  1791. -moz-box-shadow:none;
  1792. -webkit-box-shadow:none;
  1793. box-shadow:none;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:18px;
  1798. line-height:40px;
  1799. }
  1800. #u31307 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:355px;
  1804. top:50px;
  1805. width:73px;
  1806. height:50px;
  1807. display:flex;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:18px;
  1812. line-height:40px;
  1813. }
  1814. #u31307 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:0px 0px 0px 0px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u31307_text {
  1822. border-width:0px;
  1823. white-space:nowrap;
  1824. text-transform:none;
  1825. }
  1826. #u31308_div {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:1207px;
  1832. height:120px;
  1833. background:inherit;
  1834. background-color:rgba(255, 255, 255, 1);
  1835. box-sizing:border-box;
  1836. border-width:1px;
  1837. border-style:solid;
  1838. border-color:rgba(201, 201, 201, 1);
  1839. border-radius:4px;
  1840. -moz-box-shadow:none;
  1841. -webkit-box-shadow:none;
  1842. box-shadow:none;
  1843. font-family:'Microsoft YaHei', sans-serif;
  1844. font-weight:400;
  1845. font-style:normal;
  1846. font-size:14px;
  1847. color:#CCCCCC;
  1848. text-align:left;
  1849. }
  1850. #u31308 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:356px;
  1854. top:231px;
  1855. width:1207px;
  1856. height:120px;
  1857. display:flex;
  1858. font-family:'Microsoft YaHei', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:14px;
  1862. color:#CCCCCC;
  1863. text-align:left;
  1864. }
  1865. #u31308 .text {
  1866. position:absolute;
  1867. align-self:center;
  1868. padding:2px 8px 2px 8px;
  1869. box-sizing:border-box;
  1870. width:100%;
  1871. }
  1872. #u31308_text {
  1873. border-width:0px;
  1874. word-wrap:break-word;
  1875. text-transform:none;
  1876. visibility:hidden;
  1877. }
  1878. #u31309_div {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:127px;
  1884. height:60px;
  1885. background:inherit;
  1886. background-color:rgba(255, 255, 255, 0);
  1887. border:none;
  1888. border-left:0px;
  1889. border-top:0px;
  1890. border-right:0px;
  1891. border-radius:0px;
  1892. border-bottom-right-radius:0px;
  1893. border-bottom-left-radius:0px;
  1894. -moz-box-shadow:none;
  1895. -webkit-box-shadow:none;
  1896. box-shadow:none;
  1897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1898. font-weight:400;
  1899. font-style:normal;
  1900. font-size:14px;
  1901. line-height:30px;
  1902. }
  1903. #u31309 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:481px;
  1907. top:261px;
  1908. width:127px;
  1909. height:60px;
  1910. display:flex;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:14px;
  1915. line-height:30px;
  1916. }
  1917. #u31309 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:0px 0px 0px 0px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u31309_text {
  1925. border-width:0px;
  1926. white-space:nowrap;
  1927. text-transform:none;
  1928. }
  1929. #u31310_img {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:75px;
  1935. height:75px;
  1936. }
  1937. #u31310 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:385px;
  1941. top:251px;
  1942. width:75px;
  1943. height:75px;
  1944. display:flex;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. }
  1949. #u31310 .text {
  1950. position:absolute;
  1951. align-self:center;
  1952. padding:2px 2px 2px 2px;
  1953. box-sizing:border-box;
  1954. width:100%;
  1955. }
  1956. #u31310_text {
  1957. border-width:0px;
  1958. word-wrap:break-word;
  1959. text-transform:none;
  1960. }
  1961. #u31311_div {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:127px;
  1967. height:90px;
  1968. background:inherit;
  1969. background-color:rgba(255, 255, 255, 0);
  1970. border:none;
  1971. border-left:0px;
  1972. border-top:0px;
  1973. border-right:0px;
  1974. border-radius:0px;
  1975. border-bottom-right-radius:0px;
  1976. border-bottom-left-radius:0px;
  1977. -moz-box-shadow:none;
  1978. -webkit-box-shadow:none;
  1979. box-shadow:none;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:14px;
  1984. line-height:30px;
  1985. }
  1986. #u31311 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:946px;
  1990. top:246px;
  1991. width:127px;
  1992. height:90px;
  1993. display:flex;
  1994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1995. font-weight:400;
  1996. font-style:normal;
  1997. font-size:14px;
  1998. line-height:30px;
  1999. }
  2000. #u31311 .text {
  2001. position:absolute;
  2002. align-self:center;
  2003. padding:0px 0px 0px 0px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u31311_text {
  2008. border-width:0px;
  2009. white-space:nowrap;
  2010. text-transform:none;
  2011. }
  2012. #u31312_img {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:75px;
  2018. height:75px;
  2019. }
  2020. #u31312 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:850px;
  2024. top:251px;
  2025. width:75px;
  2026. height:75px;
  2027. display:flex;
  2028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2029. font-weight:400;
  2030. font-style:normal;
  2031. }
  2032. #u31312 .text {
  2033. position:absolute;
  2034. align-self:center;
  2035. padding:2px 2px 2px 2px;
  2036. box-sizing:border-box;
  2037. width:100%;
  2038. }
  2039. #u31312_text {
  2040. border-width:0px;
  2041. word-wrap:break-word;
  2042. text-transform:none;
  2043. }
  2044. #u31313_div {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:127px;
  2050. height:90px;
  2051. background:inherit;
  2052. background-color:rgba(255, 255, 255, 0);
  2053. border:none;
  2054. border-left:0px;
  2055. border-top:0px;
  2056. border-right:0px;
  2057. border-radius:0px;
  2058. border-bottom-right-radius:0px;
  2059. border-bottom-left-radius:0px;
  2060. -moz-box-shadow:none;
  2061. -webkit-box-shadow:none;
  2062. box-shadow:none;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. line-height:30px;
  2068. }
  2069. #u31313 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:1372px;
  2073. top:246px;
  2074. width:127px;
  2075. height:90px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:14px;
  2081. line-height:30px;
  2082. }
  2083. #u31313 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:0px 0px 0px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u31313_text {
  2091. border-width:0px;
  2092. white-space:nowrap;
  2093. text-transform:none;
  2094. }
  2095. #u31314_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:75px;
  2101. height:75px;
  2102. }
  2103. #u31314 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:1276px;
  2107. top:251px;
  2108. width:75px;
  2109. height:75px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. }
  2115. #u31314 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 2px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u31314_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. }
  2127. #u31315_div {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:100px;
  2133. height:30px;
  2134. background:inherit;
  2135. background-color:rgba(24, 144, 255, 1);
  2136. border:none;
  2137. border-radius:4px;
  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:14px;
  2145. color:#FFFFFF;
  2146. }
  2147. #u31315 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:1460px;
  2151. top:373px;
  2152. width:100px;
  2153. height:30px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:14px;
  2159. color:#FFFFFF;
  2160. }
  2161. #u31315 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:2px 2px 2px 2px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u31315_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. }
  2173. #u31316_div {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:60px;
  2179. height:30px;
  2180. background:inherit;
  2181. background-color:rgba(255, 255, 255, 1);
  2182. box-sizing:border-box;
  2183. border-width:1px;
  2184. border-style:solid;
  2185. border-color:rgba(170, 170, 170, 1);
  2186. border-radius:4px;
  2187. -moz-box-shadow:none;
  2188. -webkit-box-shadow:none;
  2189. box-shadow:none;
  2190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2191. font-weight:400;
  2192. font-style:normal;
  2193. font-size:14px;
  2194. }
  2195. #u31316 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:1390px;
  2199. top:373px;
  2200. width:60px;
  2201. height:30px;
  2202. display:flex;
  2203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2204. font-weight:400;
  2205. font-style:normal;
  2206. font-size:14px;
  2207. }
  2208. #u31316 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u31316_text {
  2216. border-width:0px;
  2217. word-wrap:break-word;
  2218. text-transform:none;
  2219. }
  2220. #u31317 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:0px;
  2226. height:0px;
  2227. }
  2228. #u31318_img {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:10px;
  2234. height:10px;
  2235. }
  2236. #u31318 {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:373px;
  2240. top:437px;
  2241. width:10px;
  2242. height:10px;
  2243. display:flex;
  2244. color:#D9001B;
  2245. }
  2246. #u31318 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 2px 2px 2px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u31318_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. visibility:hidden;
  2258. }
  2259. #u31319_div {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:37px;
  2265. height:20px;
  2266. background:inherit;
  2267. background-color:rgba(255, 255, 255, 0);
  2268. border:none;
  2269. border-radius:0px;
  2270. -moz-box-shadow:none;
  2271. -webkit-box-shadow:none;
  2272. box-shadow:none;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:12px;
  2277. color:#4B4D53;
  2278. }
  2279. #u31319 {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:391px;
  2283. top:433px;
  2284. width:37px;
  2285. height:20px;
  2286. display:flex;
  2287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:12px;
  2291. color:#4B4D53;
  2292. }
  2293. #u31319 .text {
  2294. position:absolute;
  2295. align-self:flex-start;
  2296. padding:0px 0px 0px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u31319_text {
  2301. border-width:0px;
  2302. white-space:nowrap;
  2303. text-transform:none;
  2304. }
  2305. #u31320 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:0px;
  2311. height:0px;
  2312. }
  2313. #u31321_img {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:10px;
  2319. height:10px;
  2320. }
  2321. #u31321 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:449px;
  2325. top:438px;
  2326. width:10px;
  2327. height:10px;
  2328. display:flex;
  2329. }
  2330. #u31321 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:2px 2px 2px 2px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u31321_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. visibility:hidden;
  2342. }
  2343. #u31322_div {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:37px;
  2349. height:20px;
  2350. background:inherit;
  2351. background-color:rgba(255, 255, 255, 0);
  2352. border:none;
  2353. border-radius:0px;
  2354. -moz-box-shadow:none;
  2355. -webkit-box-shadow:none;
  2356. box-shadow:none;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:12px;
  2361. color:#4B4D53;
  2362. }
  2363. #u31322 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:467px;
  2367. top:433px;
  2368. width:37px;
  2369. height:20px;
  2370. display:flex;
  2371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2372. font-weight:400;
  2373. font-style:normal;
  2374. font-size:12px;
  2375. color:#4B4D53;
  2376. }
  2377. #u31322 .text {
  2378. position:absolute;
  2379. align-self:flex-start;
  2380. padding:0px 0px 0px 0px;
  2381. box-sizing:border-box;
  2382. width:100%;
  2383. }
  2384. #u31322_text {
  2385. border-width:0px;
  2386. white-space:nowrap;
  2387. text-transform:none;
  2388. }
  2389. #u31323 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:0px;
  2395. height:0px;
  2396. }
  2397. #u31324_img {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:10px;
  2403. height:10px;
  2404. }
  2405. #u31324 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:526px;
  2409. top:438px;
  2410. width:10px;
  2411. height:10px;
  2412. display:flex;
  2413. }
  2414. #u31324 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 2px 2px 2px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u31324_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. visibility:hidden;
  2426. }
  2427. #u31325_div {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:37px;
  2433. height:20px;
  2434. background:inherit;
  2435. background-color:rgba(255, 255, 255, 0);
  2436. border:none;
  2437. border-radius:0px;
  2438. -moz-box-shadow:none;
  2439. -webkit-box-shadow:none;
  2440. box-shadow:none;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:12px;
  2445. color:#4B4D53;
  2446. }
  2447. #u31325 {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:544px;
  2451. top:433px;
  2452. width:37px;
  2453. height:20px;
  2454. display:flex;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. font-size:12px;
  2459. color:#4B4D53;
  2460. }
  2461. #u31325 .text {
  2462. position:absolute;
  2463. align-self:flex-start;
  2464. padding:0px 0px 0px 0px;
  2465. box-sizing:border-box;
  2466. width:100%;
  2467. }
  2468. #u31325_text {
  2469. border-width:0px;
  2470. white-space:nowrap;
  2471. text-transform:none;
  2472. }
  2473. #u31326 {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:0px;
  2479. height:0px;
  2480. }
  2481. #u31327_div {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:200px;
  2487. height:30px;
  2488. background:inherit;
  2489. background-color:rgba(255, 255, 255, 1);
  2490. box-sizing:border-box;
  2491. border-width:1px;
  2492. border-style:solid;
  2493. border-color:rgba(201, 201, 201, 1);
  2494. border-radius:0px;
  2495. -moz-box-shadow:none;
  2496. -webkit-box-shadow:none;
  2497. box-shadow:none;
  2498. font-family:'Microsoft YaHei', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:14px;
  2502. color:#CCCCCC;
  2503. text-align:left;
  2504. }
  2505. #u31327 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:1363px;
  2509. top:423px;
  2510. width:200px;
  2511. height:30px;
  2512. display:flex;
  2513. font-family:'Microsoft YaHei', sans-serif;
  2514. font-weight:400;
  2515. font-style:normal;
  2516. font-size:14px;
  2517. color:#CCCCCC;
  2518. text-align:left;
  2519. }
  2520. #u31327 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 8px 2px 8px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u31327_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. visibility:hidden;
  2532. }
  2533. #u31328_img {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:13px;
  2539. height:13px;
  2540. }
  2541. #u31328 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:1541px;
  2545. top:432px;
  2546. width:13px;
  2547. height:13px;
  2548. display:flex;
  2549. }
  2550. #u31328 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:2px 2px 2px 2px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u31328_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. visibility:hidden;
  2562. }
  2563. #u31329_input {
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:80px;
  2568. height:22px;
  2569. padding:2px 2px 2px 2px;
  2570. font-family:'ArialMT', 'Arial', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:13px;
  2574. letter-spacing:normal;
  2575. color:#000000;
  2576. vertical-align:none;
  2577. text-align:left;
  2578. text-transform:none;
  2579. background-color:transparent;
  2580. border-color:transparent;
  2581. }
  2582. #u31329_input.disabled {
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:80px;
  2587. height:22px;
  2588. padding:2px 2px 2px 2px;
  2589. font-family:'ArialMT', 'Arial', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:13px;
  2593. letter-spacing:normal;
  2594. color:#000000;
  2595. vertical-align:none;
  2596. text-align:left;
  2597. text-transform:none;
  2598. background-color:transparent;
  2599. border-color:transparent;
  2600. }
  2601. #u31329_div {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:80px;
  2607. height:22px;
  2608. background:inherit;
  2609. background-color:rgba(255, 255, 255, 1);
  2610. border:none;
  2611. border-radius:0px;
  2612. -moz-box-shadow:none;
  2613. -webkit-box-shadow:none;
  2614. box-shadow:none;
  2615. }
  2616. #u31329 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:1374px;
  2620. top:427px;
  2621. width:80px;
  2622. height:22px;
  2623. display:flex;
  2624. }
  2625. #u31329 .text {
  2626. position:absolute;
  2627. align-self:flex-start;
  2628. padding:2px 2px 2px 2px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u31329_div.disabled {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:80px;
  2638. height:22px;
  2639. background:inherit;
  2640. background-color:rgba(240, 240, 240, 1);
  2641. border:none;
  2642. border-radius:0px;
  2643. -moz-box-shadow:none;
  2644. -webkit-box-shadow:none;
  2645. box-shadow:none;
  2646. }
  2647. #u31329.disabled {
  2648. }
  2649. .u31329_input_option {
  2650. }
  2651. #u31330_input {
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:80px;
  2656. height:22px;
  2657. padding:2px 2px 2px 2px;
  2658. font-family:'ArialMT', 'Arial', sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:13px;
  2662. letter-spacing:normal;
  2663. color:#000000;
  2664. vertical-align:none;
  2665. text-align:left;
  2666. text-transform:none;
  2667. background-color:transparent;
  2668. border-color:transparent;
  2669. }
  2670. #u31330_input.disabled {
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:80px;
  2675. height:22px;
  2676. padding:2px 2px 2px 2px;
  2677. font-family:'ArialMT', 'Arial', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:13px;
  2681. letter-spacing:normal;
  2682. color:#000000;
  2683. vertical-align:none;
  2684. text-align:left;
  2685. text-transform:none;
  2686. background-color:transparent;
  2687. border-color:transparent;
  2688. }
  2689. #u31330_div {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:80px;
  2695. height:22px;
  2696. background:inherit;
  2697. background-color:rgba(255, 255, 255, 1);
  2698. border:none;
  2699. border-radius:0px;
  2700. -moz-box-shadow:none;
  2701. -webkit-box-shadow:none;
  2702. box-shadow:none;
  2703. }
  2704. #u31330 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:1454px;
  2708. top:427px;
  2709. width:80px;
  2710. height:22px;
  2711. display:flex;
  2712. }
  2713. #u31330 .text {
  2714. position:absolute;
  2715. align-self:flex-start;
  2716. padding:2px 2px 2px 2px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u31330_div.disabled {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:80px;
  2726. height:22px;
  2727. background:inherit;
  2728. background-color:rgba(240, 240, 240, 1);
  2729. border:none;
  2730. border-radius:0px;
  2731. -moz-box-shadow:none;
  2732. -webkit-box-shadow:none;
  2733. box-shadow:none;
  2734. }
  2735. #u31330.disabled {
  2736. }
  2737. .u31330_input_option {
  2738. }
  2739. #u31331_div {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:150px;
  2745. height:60px;
  2746. background:inherit;
  2747. background-color:rgba(255, 255, 255, 0);
  2748. box-sizing:border-box;
  2749. border-width:1px;
  2750. border-style:solid;
  2751. border-color:rgba(215, 215, 215, 1);
  2752. border-left:0px;
  2753. border-top:0px;
  2754. border-right:0px;
  2755. border-radius:0px;
  2756. border-bottom-right-radius:0px;
  2757. border-bottom-left-radius:0px;
  2758. -moz-box-shadow:none;
  2759. -webkit-box-shadow:none;
  2760. box-shadow:none;
  2761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2762. font-weight:400;
  2763. font-style:normal;
  2764. font-size:14px;
  2765. text-align:right;
  2766. line-height:30px;
  2767. }
  2768. #u31331 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:373px;
  2772. top:476px;
  2773. width:150px;
  2774. height:60px;
  2775. display:flex;
  2776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2777. font-weight:400;
  2778. font-style:normal;
  2779. font-size:14px;
  2780. text-align:right;
  2781. line-height:30px;
  2782. }
  2783. #u31331 .text {
  2784. position:absolute;
  2785. align-self:center;
  2786. padding:0px 0px 0px 0px;
  2787. box-sizing:border-box;
  2788. width:100%;
  2789. }
  2790. #u31331_text {
  2791. border-width:0px;
  2792. word-wrap:break-word;
  2793. text-transform:none;
  2794. }
  2795. #u31332_div {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:150px;
  2801. height:60px;
  2802. background:inherit;
  2803. background-color:rgba(255, 255, 255, 0);
  2804. box-sizing:border-box;
  2805. border-width:1px;
  2806. border-style:solid;
  2807. border-color:rgba(215, 215, 215, 1);
  2808. border-left:0px;
  2809. border-top:0px;
  2810. border-right:0px;
  2811. border-radius:0px;
  2812. border-bottom-right-radius:0px;
  2813. border-bottom-left-radius:0px;
  2814. -moz-box-shadow:none;
  2815. -webkit-box-shadow:none;
  2816. box-shadow:none;
  2817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2818. font-weight:400;
  2819. font-style:normal;
  2820. font-size:14px;
  2821. text-align:right;
  2822. line-height:30px;
  2823. }
  2824. #u31332 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:546px;
  2828. top:476px;
  2829. width:150px;
  2830. height:60px;
  2831. display:flex;
  2832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2833. font-weight:400;
  2834. font-style:normal;
  2835. font-size:14px;
  2836. text-align:right;
  2837. line-height:30px;
  2838. }
  2839. #u31332 .text {
  2840. position:absolute;
  2841. align-self:center;
  2842. padding:0px 0px 0px 0px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u31332_text {
  2847. border-width:0px;
  2848. word-wrap:break-word;
  2849. text-transform:none;
  2850. }
  2851. #u31333_div {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:150px;
  2857. height:60px;
  2858. background:inherit;
  2859. background-color:rgba(255, 255, 255, 0);
  2860. box-sizing:border-box;
  2861. border-width:1px;
  2862. border-style:solid;
  2863. border-color:rgba(215, 215, 215, 1);
  2864. border-left:0px;
  2865. border-top:0px;
  2866. border-right:0px;
  2867. border-radius:0px;
  2868. border-bottom-right-radius:0px;
  2869. border-bottom-left-radius:0px;
  2870. -moz-box-shadow:none;
  2871. -webkit-box-shadow:none;
  2872. box-shadow:none;
  2873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:14px;
  2877. text-align:right;
  2878. line-height:30px;
  2879. }
  2880. #u31333 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:720px;
  2884. top:476px;
  2885. width:150px;
  2886. height:60px;
  2887. display:flex;
  2888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:14px;
  2892. text-align:right;
  2893. line-height:30px;
  2894. }
  2895. #u31333 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:0px 0px 0px 0px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u31333_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. }
  2907. #u31334_div {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:150px;
  2913. height:60px;
  2914. background:inherit;
  2915. background-color:rgba(255, 255, 255, 0);
  2916. box-sizing:border-box;
  2917. border-width:1px;
  2918. border-style:solid;
  2919. border-color:rgba(215, 215, 215, 1);
  2920. border-left:0px;
  2921. border-top:0px;
  2922. border-right:0px;
  2923. border-radius:0px;
  2924. border-bottom-right-radius:0px;
  2925. border-bottom-left-radius:0px;
  2926. -moz-box-shadow:none;
  2927. -webkit-box-shadow:none;
  2928. box-shadow:none;
  2929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2930. font-weight:400;
  2931. font-style:normal;
  2932. font-size:14px;
  2933. text-align:right;
  2934. line-height:30px;
  2935. }
  2936. #u31334 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:893px;
  2940. top:476px;
  2941. width:150px;
  2942. height:60px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:14px;
  2948. text-align:right;
  2949. line-height:30px;
  2950. }
  2951. #u31334 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:0px 0px 0px 0px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u31334_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. }
  2963. #u31335_div {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:150px;
  2969. height:60px;
  2970. background:inherit;
  2971. background-color:rgba(255, 255, 255, 0);
  2972. box-sizing:border-box;
  2973. border-width:1px;
  2974. border-style:solid;
  2975. border-color:rgba(215, 215, 215, 1);
  2976. border-left:0px;
  2977. border-top:0px;
  2978. border-right:0px;
  2979. border-radius:0px;
  2980. border-bottom-right-radius:0px;
  2981. border-bottom-left-radius:0px;
  2982. -moz-box-shadow:none;
  2983. -webkit-box-shadow:none;
  2984. box-shadow:none;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:14px;
  2989. text-align:right;
  2990. line-height:30px;
  2991. }
  2992. #u31335 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:1066px;
  2996. top:476px;
  2997. width:150px;
  2998. height:60px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:14px;
  3004. text-align:right;
  3005. line-height:30px;
  3006. }
  3007. #u31335 .text {
  3008. position:absolute;
  3009. align-self:center;
  3010. padding:0px 0px 0px 0px;
  3011. box-sizing:border-box;
  3012. width:100%;
  3013. }
  3014. #u31335_text {
  3015. border-width:0px;
  3016. word-wrap:break-word;
  3017. text-transform:none;
  3018. }
  3019. #u31336_div {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:150px;
  3025. height:60px;
  3026. background:inherit;
  3027. background-color:rgba(255, 255, 255, 0);
  3028. box-sizing:border-box;
  3029. border-width:1px;
  3030. border-style:solid;
  3031. border-color:rgba(215, 215, 215, 1);
  3032. border-left:0px;
  3033. border-top:0px;
  3034. border-right:0px;
  3035. border-radius:0px;
  3036. border-bottom-right-radius:0px;
  3037. border-bottom-left-radius:0px;
  3038. -moz-box-shadow:none;
  3039. -webkit-box-shadow:none;
  3040. box-shadow:none;
  3041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3042. font-weight:400;
  3043. font-style:normal;
  3044. font-size:14px;
  3045. text-align:right;
  3046. line-height:30px;
  3047. }
  3048. #u31336 {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:1240px;
  3052. top:476px;
  3053. width:150px;
  3054. height:60px;
  3055. display:flex;
  3056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3057. font-weight:400;
  3058. font-style:normal;
  3059. font-size:14px;
  3060. text-align:right;
  3061. line-height:30px;
  3062. }
  3063. #u31336 .text {
  3064. position:absolute;
  3065. align-self:center;
  3066. padding:0px 0px 0px 0px;
  3067. box-sizing:border-box;
  3068. width:100%;
  3069. }
  3070. #u31336_text {
  3071. border-width:0px;
  3072. word-wrap:break-word;
  3073. text-transform:none;
  3074. }
  3075. #u31337_div {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:150px;
  3081. height:60px;
  3082. background:inherit;
  3083. background-color:rgba(255, 255, 255, 0);
  3084. box-sizing:border-box;
  3085. border-width:1px;
  3086. border-style:solid;
  3087. border-color:rgba(215, 215, 215, 1);
  3088. border-left:0px;
  3089. border-top:0px;
  3090. border-right:0px;
  3091. border-radius:0px;
  3092. border-bottom-right-radius:0px;
  3093. border-bottom-left-radius:0px;
  3094. -moz-box-shadow:none;
  3095. -webkit-box-shadow:none;
  3096. box-shadow:none;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:14px;
  3101. text-align:right;
  3102. line-height:30px;
  3103. }
  3104. #u31337 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:1413px;
  3108. top:476px;
  3109. width:150px;
  3110. height:60px;
  3111. display:flex;
  3112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3113. font-weight:400;
  3114. font-style:normal;
  3115. font-size:14px;
  3116. text-align:right;
  3117. line-height:30px;
  3118. }
  3119. #u31337 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:0px 0px 0px 0px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u31337_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. }
  3131. #u31338_div {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:150px;
  3137. height:120px;
  3138. background:inherit;
  3139. background-color:rgba(255, 255, 255, 0);
  3140. box-sizing:border-box;
  3141. border-width:1px;
  3142. border-style:solid;
  3143. border-color:rgba(215, 215, 215, 1);
  3144. border-left:0px;
  3145. border-top:0px;
  3146. border-right:0px;
  3147. border-radius:0px;
  3148. border-bottom-right-radius:0px;
  3149. border-bottom-left-radius:0px;
  3150. -moz-box-shadow:none;
  3151. -webkit-box-shadow:none;
  3152. box-shadow:none;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:14px;
  3157. text-align:right;
  3158. line-height:30px;
  3159. }
  3160. #u31338 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:373px;
  3164. top:536px;
  3165. width:150px;
  3166. height:120px;
  3167. display:flex;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:14px;
  3172. text-align:right;
  3173. line-height:30px;
  3174. }
  3175. #u31338 .text {
  3176. position:absolute;
  3177. align-self:flex-start;
  3178. padding:0px 0px 0px 0px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u31338_text {
  3183. border-width:0px;
  3184. word-wrap:break-word;
  3185. text-transform:none;
  3186. }
  3187. #u31339_div {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:150px;
  3193. height:120px;
  3194. background:inherit;
  3195. background-color:rgba(255, 255, 255, 0);
  3196. box-sizing:border-box;
  3197. border-width:1px;
  3198. border-style:solid;
  3199. border-color:rgba(215, 215, 215, 1);
  3200. border-left:0px;
  3201. border-top:0px;
  3202. border-right:0px;
  3203. border-radius:0px;
  3204. border-bottom-right-radius:0px;
  3205. border-bottom-left-radius:0px;
  3206. -moz-box-shadow:none;
  3207. -webkit-box-shadow:none;
  3208. box-shadow:none;
  3209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:14px;
  3213. text-align:right;
  3214. line-height:30px;
  3215. }
  3216. #u31339 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:546px;
  3220. top:536px;
  3221. width:150px;
  3222. height:120px;
  3223. display:flex;
  3224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:14px;
  3228. text-align:right;
  3229. line-height:30px;
  3230. }
  3231. #u31339 .text {
  3232. position:absolute;
  3233. align-self:flex-start;
  3234. padding:0px 0px 0px 0px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u31339_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. }
  3243. #u31340_div {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:150px;
  3249. height:120px;
  3250. background:inherit;
  3251. background-color:rgba(255, 255, 255, 0);
  3252. box-sizing:border-box;
  3253. border-width:1px;
  3254. border-style:solid;
  3255. border-color:rgba(215, 215, 215, 1);
  3256. border-left:0px;
  3257. border-top:0px;
  3258. border-right:0px;
  3259. border-radius:0px;
  3260. border-bottom-right-radius:0px;
  3261. border-bottom-left-radius:0px;
  3262. -moz-box-shadow:none;
  3263. -webkit-box-shadow:none;
  3264. box-shadow:none;
  3265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:14px;
  3269. text-align:right;
  3270. line-height:30px;
  3271. }
  3272. #u31340 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:720px;
  3276. top:536px;
  3277. width:150px;
  3278. height:120px;
  3279. display:flex;
  3280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3281. font-weight:400;
  3282. font-style:normal;
  3283. font-size:14px;
  3284. text-align:right;
  3285. line-height:30px;
  3286. }
  3287. #u31340 .text {
  3288. position:absolute;
  3289. align-self:flex-start;
  3290. padding:0px 0px 0px 0px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u31340_text {
  3295. border-width:0px;
  3296. word-wrap:break-word;
  3297. text-transform:none;
  3298. }
  3299. #u31341_div {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:150px;
  3305. height:120px;
  3306. background:inherit;
  3307. background-color:rgba(255, 255, 255, 0);
  3308. box-sizing:border-box;
  3309. border-width:1px;
  3310. border-style:solid;
  3311. border-color:rgba(215, 215, 215, 1);
  3312. border-left:0px;
  3313. border-top:0px;
  3314. border-right:0px;
  3315. border-radius:0px;
  3316. border-bottom-right-radius:0px;
  3317. border-bottom-left-radius:0px;
  3318. -moz-box-shadow:none;
  3319. -webkit-box-shadow:none;
  3320. box-shadow:none;
  3321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3322. font-weight:400;
  3323. font-style:normal;
  3324. font-size:14px;
  3325. text-align:right;
  3326. line-height:30px;
  3327. }
  3328. #u31341 {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:893px;
  3332. top:536px;
  3333. width:150px;
  3334. height:120px;
  3335. display:flex;
  3336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3337. font-weight:400;
  3338. font-style:normal;
  3339. font-size:14px;
  3340. text-align:right;
  3341. line-height:30px;
  3342. }
  3343. #u31341 .text {
  3344. position:absolute;
  3345. align-self:flex-start;
  3346. padding:0px 0px 0px 0px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u31341_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. }
  3355. #u31342_div {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:150px;
  3361. height:120px;
  3362. background:inherit;
  3363. background-color:rgba(255, 255, 255, 0);
  3364. box-sizing:border-box;
  3365. border-width:1px;
  3366. border-style:solid;
  3367. border-color:rgba(215, 215, 215, 1);
  3368. border-left:0px;
  3369. border-top:0px;
  3370. border-right:0px;
  3371. border-radius:0px;
  3372. border-bottom-right-radius:0px;
  3373. border-bottom-left-radius:0px;
  3374. -moz-box-shadow:none;
  3375. -webkit-box-shadow:none;
  3376. box-shadow:none;
  3377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:14px;
  3381. text-align:right;
  3382. line-height:30px;
  3383. }
  3384. #u31342 {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:1066px;
  3388. top:536px;
  3389. width:150px;
  3390. height:120px;
  3391. display:flex;
  3392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3393. font-weight:400;
  3394. font-style:normal;
  3395. font-size:14px;
  3396. text-align:right;
  3397. line-height:30px;
  3398. }
  3399. #u31342 .text {
  3400. position:absolute;
  3401. align-self:flex-start;
  3402. padding:0px 0px 0px 0px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u31342_text {
  3407. border-width:0px;
  3408. word-wrap:break-word;
  3409. text-transform:none;
  3410. }
  3411. #u31343_div {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:150px;
  3417. height:120px;
  3418. background:inherit;
  3419. background-color:rgba(255, 255, 255, 0);
  3420. box-sizing:border-box;
  3421. border-width:1px;
  3422. border-style:solid;
  3423. border-color:rgba(215, 215, 215, 1);
  3424. border-left:0px;
  3425. border-top:0px;
  3426. border-right:0px;
  3427. border-radius:0px;
  3428. border-bottom-right-radius:0px;
  3429. border-bottom-left-radius:0px;
  3430. -moz-box-shadow:none;
  3431. -webkit-box-shadow:none;
  3432. box-shadow:none;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:14px;
  3437. text-align:right;
  3438. line-height:30px;
  3439. }
  3440. #u31343 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:1240px;
  3444. top:536px;
  3445. width:150px;
  3446. height:120px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:14px;
  3452. text-align:right;
  3453. line-height:30px;
  3454. }
  3455. #u31343 .text {
  3456. position:absolute;
  3457. align-self:flex-start;
  3458. padding:0px 0px 0px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u31343_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. }
  3467. #u31344_div {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:150px;
  3473. height:120px;
  3474. background:inherit;
  3475. background-color:rgba(255, 255, 255, 0);
  3476. box-sizing:border-box;
  3477. border-width:1px;
  3478. border-style:solid;
  3479. border-color:rgba(215, 215, 215, 1);
  3480. border-left:0px;
  3481. border-top:0px;
  3482. border-right:0px;
  3483. border-radius:0px;
  3484. border-bottom-right-radius:0px;
  3485. border-bottom-left-radius:0px;
  3486. -moz-box-shadow:none;
  3487. -webkit-box-shadow:none;
  3488. box-shadow:none;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:14px;
  3493. text-align:right;
  3494. line-height:30px;
  3495. }
  3496. #u31344 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:1413px;
  3500. top:536px;
  3501. width:150px;
  3502. height:120px;
  3503. display:flex;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:14px;
  3508. text-align:right;
  3509. line-height:30px;
  3510. }
  3511. #u31344 .text {
  3512. position:absolute;
  3513. align-self:flex-start;
  3514. padding:0px 0px 0px 0px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u31344_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. }
  3523. #u31345_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:150px;
  3529. height:120px;
  3530. background:inherit;
  3531. background-color:rgba(255, 255, 255, 0);
  3532. box-sizing:border-box;
  3533. border-width:1px;
  3534. border-style:solid;
  3535. border-color:rgba(215, 215, 215, 1);
  3536. border-left:0px;
  3537. border-top:0px;
  3538. border-right:0px;
  3539. border-radius:0px;
  3540. border-bottom-right-radius:0px;
  3541. border-bottom-left-radius:0px;
  3542. -moz-box-shadow:none;
  3543. -webkit-box-shadow:none;
  3544. box-shadow:none;
  3545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:14px;
  3549. text-align:right;
  3550. line-height:30px;
  3551. }
  3552. #u31345 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:373px;
  3556. top:657px;
  3557. width:150px;
  3558. height:120px;
  3559. display:flex;
  3560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3561. font-weight:400;
  3562. font-style:normal;
  3563. font-size:14px;
  3564. text-align:right;
  3565. line-height:30px;
  3566. }
  3567. #u31345 .text {
  3568. position:absolute;
  3569. align-self:flex-start;
  3570. padding:0px 0px 0px 0px;
  3571. box-sizing:border-box;
  3572. width:100%;
  3573. }
  3574. #u31345_text {
  3575. border-width:0px;
  3576. word-wrap:break-word;
  3577. text-transform:none;
  3578. }
  3579. #u31346_div {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:150px;
  3585. height:120px;
  3586. background:inherit;
  3587. background-color:rgba(255, 255, 255, 0);
  3588. box-sizing:border-box;
  3589. border-width:1px;
  3590. border-style:solid;
  3591. border-color:rgba(215, 215, 215, 1);
  3592. border-left:0px;
  3593. border-top:0px;
  3594. border-right:0px;
  3595. border-radius:0px;
  3596. border-bottom-right-radius:0px;
  3597. border-bottom-left-radius:0px;
  3598. -moz-box-shadow:none;
  3599. -webkit-box-shadow:none;
  3600. box-shadow:none;
  3601. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3602. font-weight:500;
  3603. font-style:normal;
  3604. font-size:14px;
  3605. color:#1890FF;
  3606. text-align:right;
  3607. line-height:30px;
  3608. }
  3609. #u31346 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:546px;
  3613. top:657px;
  3614. width:150px;
  3615. height:120px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3618. font-weight:500;
  3619. font-style:normal;
  3620. font-size:14px;
  3621. color:#1890FF;
  3622. text-align:right;
  3623. line-height:30px;
  3624. }
  3625. #u31346 .text {
  3626. position:absolute;
  3627. align-self:flex-start;
  3628. padding:0px 0px 0px 0px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u31346_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. }
  3637. #u31347_div {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:150px;
  3643. height:120px;
  3644. background:inherit;
  3645. background-color:rgba(255, 255, 255, 0);
  3646. box-sizing:border-box;
  3647. border-width:1px;
  3648. border-style:solid;
  3649. border-color:rgba(215, 215, 215, 1);
  3650. border-left:0px;
  3651. border-top:0px;
  3652. border-right:0px;
  3653. border-radius:0px;
  3654. border-bottom-right-radius:0px;
  3655. border-bottom-left-radius:0px;
  3656. -moz-box-shadow:none;
  3657. -webkit-box-shadow:none;
  3658. box-shadow:none;
  3659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:14px;
  3663. text-align:right;
  3664. line-height:30px;
  3665. }
  3666. #u31347 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:720px;
  3670. top:657px;
  3671. width:150px;
  3672. height:120px;
  3673. display:flex;
  3674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:14px;
  3678. text-align:right;
  3679. line-height:30px;
  3680. }
  3681. #u31347 .text {
  3682. position:absolute;
  3683. align-self:flex-start;
  3684. padding:0px 0px 0px 0px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u31347_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. }
  3693. #u31348_div {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:150px;
  3699. height:120px;
  3700. background:inherit;
  3701. background-color:rgba(255, 255, 255, 0);
  3702. box-sizing:border-box;
  3703. border-width:1px;
  3704. border-style:solid;
  3705. border-color:rgba(215, 215, 215, 1);
  3706. border-left:0px;
  3707. border-top:0px;
  3708. border-right:0px;
  3709. border-radius:0px;
  3710. border-bottom-right-radius:0px;
  3711. border-bottom-left-radius:0px;
  3712. -moz-box-shadow:none;
  3713. -webkit-box-shadow:none;
  3714. box-shadow:none;
  3715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:14px;
  3719. text-align:right;
  3720. line-height:30px;
  3721. }
  3722. #u31348 {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:893px;
  3726. top:657px;
  3727. width:150px;
  3728. height:120px;
  3729. display:flex;
  3730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3731. font-weight:400;
  3732. font-style:normal;
  3733. font-size:14px;
  3734. text-align:right;
  3735. line-height:30px;
  3736. }
  3737. #u31348 .text {
  3738. position:absolute;
  3739. align-self:flex-start;
  3740. padding:0px 0px 0px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u31348_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. }
  3749. #u31349_div {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:150px;
  3755. height:120px;
  3756. background:inherit;
  3757. background-color:rgba(255, 255, 255, 0);
  3758. box-sizing:border-box;
  3759. border-width:1px;
  3760. border-style:solid;
  3761. border-color:rgba(215, 215, 215, 1);
  3762. border-left:0px;
  3763. border-top:0px;
  3764. border-right:0px;
  3765. border-radius:0px;
  3766. border-bottom-right-radius:0px;
  3767. border-bottom-left-radius:0px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. font-size:14px;
  3775. text-align:right;
  3776. line-height:30px;
  3777. }
  3778. #u31349 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:1066px;
  3782. top:657px;
  3783. width:150px;
  3784. height:120px;
  3785. display:flex;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:14px;
  3790. text-align:right;
  3791. line-height:30px;
  3792. }
  3793. #u31349 .text {
  3794. position:absolute;
  3795. align-self:flex-start;
  3796. padding:0px 0px 0px 0px;
  3797. box-sizing:border-box;
  3798. width:100%;
  3799. }
  3800. #u31349_text {
  3801. border-width:0px;
  3802. word-wrap:break-word;
  3803. text-transform:none;
  3804. }
  3805. #u31350_div {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:150px;
  3811. height:120px;
  3812. background:inherit;
  3813. background-color:rgba(255, 255, 255, 0);
  3814. box-sizing:border-box;
  3815. border-width:1px;
  3816. border-style:solid;
  3817. border-color:rgba(215, 215, 215, 1);
  3818. border-left:0px;
  3819. border-top:0px;
  3820. border-right:0px;
  3821. border-radius:0px;
  3822. border-bottom-right-radius:0px;
  3823. border-bottom-left-radius:0px;
  3824. -moz-box-shadow:none;
  3825. -webkit-box-shadow:none;
  3826. box-shadow:none;
  3827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3828. font-weight:400;
  3829. font-style:normal;
  3830. font-size:14px;
  3831. text-align:right;
  3832. line-height:30px;
  3833. }
  3834. #u31350 {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:1240px;
  3838. top:657px;
  3839. width:150px;
  3840. height:120px;
  3841. display:flex;
  3842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3843. font-weight:400;
  3844. font-style:normal;
  3845. font-size:14px;
  3846. text-align:right;
  3847. line-height:30px;
  3848. }
  3849. #u31350 .text {
  3850. position:absolute;
  3851. align-self:flex-start;
  3852. padding:0px 0px 0px 0px;
  3853. box-sizing:border-box;
  3854. width:100%;
  3855. }
  3856. #u31350_text {
  3857. border-width:0px;
  3858. word-wrap:break-word;
  3859. text-transform:none;
  3860. }
  3861. #u31351_div {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:0px;
  3865. top:0px;
  3866. width:150px;
  3867. height:120px;
  3868. background:inherit;
  3869. background-color:rgba(255, 255, 255, 0);
  3870. box-sizing:border-box;
  3871. border-width:1px;
  3872. border-style:solid;
  3873. border-color:rgba(215, 215, 215, 1);
  3874. border-left:0px;
  3875. border-top:0px;
  3876. border-right:0px;
  3877. border-radius:0px;
  3878. border-bottom-right-radius:0px;
  3879. border-bottom-left-radius:0px;
  3880. -moz-box-shadow:none;
  3881. -webkit-box-shadow:none;
  3882. box-shadow:none;
  3883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3884. font-weight:400;
  3885. font-style:normal;
  3886. font-size:14px;
  3887. text-align:right;
  3888. line-height:30px;
  3889. }
  3890. #u31351 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:1413px;
  3894. top:657px;
  3895. width:150px;
  3896. height:120px;
  3897. display:flex;
  3898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3899. font-weight:400;
  3900. font-style:normal;
  3901. font-size:14px;
  3902. text-align:right;
  3903. line-height:30px;
  3904. }
  3905. #u31351 .text {
  3906. position:absolute;
  3907. align-self:flex-start;
  3908. padding:0px 0px 0px 0px;
  3909. box-sizing:border-box;
  3910. width:100%;
  3911. }
  3912. #u31351_text {
  3913. border-width:0px;
  3914. word-wrap:break-word;
  3915. text-transform:none;
  3916. }
  3917. #u31352_div {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:150px;
  3923. height:120px;
  3924. background:inherit;
  3925. background-color:rgba(255, 255, 255, 0);
  3926. box-sizing:border-box;
  3927. border-width:1px;
  3928. border-style:solid;
  3929. border-color:rgba(215, 215, 215, 1);
  3930. border-left:0px;
  3931. border-top:0px;
  3932. border-right:0px;
  3933. border-radius:0px;
  3934. border-bottom-right-radius:0px;
  3935. border-bottom-left-radius:0px;
  3936. -moz-box-shadow:none;
  3937. -webkit-box-shadow:none;
  3938. box-shadow:none;
  3939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:14px;
  3943. text-align:right;
  3944. line-height:30px;
  3945. }
  3946. #u31352 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:373px;
  3950. top:778px;
  3951. width:150px;
  3952. height:120px;
  3953. display:flex;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:14px;
  3958. text-align:right;
  3959. line-height:30px;
  3960. }
  3961. #u31352 .text {
  3962. position:absolute;
  3963. align-self:flex-start;
  3964. padding:0px 0px 0px 0px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u31352_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. }
  3973. #u31353_div {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:150px;
  3979. height:120px;
  3980. background:inherit;
  3981. background-color:rgba(255, 255, 255, 0);
  3982. box-sizing:border-box;
  3983. border-width:1px;
  3984. border-style:solid;
  3985. border-color:rgba(215, 215, 215, 1);
  3986. border-left:0px;
  3987. border-top:0px;
  3988. border-right:0px;
  3989. border-radius:0px;
  3990. border-bottom-right-radius:0px;
  3991. border-bottom-left-radius:0px;
  3992. -moz-box-shadow:none;
  3993. -webkit-box-shadow:none;
  3994. box-shadow:none;
  3995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3996. font-weight:400;
  3997. font-style:normal;
  3998. font-size:14px;
  3999. text-align:right;
  4000. line-height:30px;
  4001. }
  4002. #u31353 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:546px;
  4006. top:778px;
  4007. width:150px;
  4008. height:120px;
  4009. display:flex;
  4010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4011. font-weight:400;
  4012. font-style:normal;
  4013. font-size:14px;
  4014. text-align:right;
  4015. line-height:30px;
  4016. }
  4017. #u31353 .text {
  4018. position:absolute;
  4019. align-self:flex-start;
  4020. padding:0px 0px 0px 0px;
  4021. box-sizing:border-box;
  4022. width:100%;
  4023. }
  4024. #u31353_text {
  4025. border-width:0px;
  4026. word-wrap:break-word;
  4027. text-transform:none;
  4028. }
  4029. #u31354_div {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:150px;
  4035. height:120px;
  4036. background:inherit;
  4037. background-color:rgba(255, 255, 255, 0);
  4038. box-sizing:border-box;
  4039. border-width:1px;
  4040. border-style:solid;
  4041. border-color:rgba(215, 215, 215, 1);
  4042. border-left:0px;
  4043. border-top:0px;
  4044. border-right:0px;
  4045. border-radius:0px;
  4046. border-bottom-right-radius:0px;
  4047. border-bottom-left-radius:0px;
  4048. -moz-box-shadow:none;
  4049. -webkit-box-shadow:none;
  4050. box-shadow:none;
  4051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:14px;
  4055. text-align:right;
  4056. line-height:30px;
  4057. }
  4058. #u31354 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:720px;
  4062. top:778px;
  4063. width:150px;
  4064. height:120px;
  4065. display:flex;
  4066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4067. font-weight:400;
  4068. font-style:normal;
  4069. font-size:14px;
  4070. text-align:right;
  4071. line-height:30px;
  4072. }
  4073. #u31354 .text {
  4074. position:absolute;
  4075. align-self:flex-start;
  4076. padding:0px 0px 0px 0px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u31354_text {
  4081. border-width:0px;
  4082. word-wrap:break-word;
  4083. text-transform:none;
  4084. }
  4085. #u31355_div {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:150px;
  4091. height:120px;
  4092. background:inherit;
  4093. background-color:rgba(255, 255, 255, 0);
  4094. box-sizing:border-box;
  4095. border-width:1px;
  4096. border-style:solid;
  4097. border-color:rgba(215, 215, 215, 1);
  4098. border-left:0px;
  4099. border-top:0px;
  4100. border-right:0px;
  4101. border-radius:0px;
  4102. border-bottom-right-radius:0px;
  4103. border-bottom-left-radius:0px;
  4104. -moz-box-shadow:none;
  4105. -webkit-box-shadow:none;
  4106. box-shadow:none;
  4107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. font-size:14px;
  4111. text-align:right;
  4112. line-height:30px;
  4113. }
  4114. #u31355 {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:893px;
  4118. top:778px;
  4119. width:150px;
  4120. height:120px;
  4121. display:flex;
  4122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4123. font-weight:400;
  4124. font-style:normal;
  4125. font-size:14px;
  4126. text-align:right;
  4127. line-height:30px;
  4128. }
  4129. #u31355 .text {
  4130. position:absolute;
  4131. align-self:flex-start;
  4132. padding:0px 0px 0px 0px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u31355_text {
  4137. border-width:0px;
  4138. word-wrap:break-word;
  4139. text-transform:none;
  4140. }
  4141. #u31356_div {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:150px;
  4147. height:120px;
  4148. background:inherit;
  4149. background-color:rgba(255, 255, 255, 0);
  4150. box-sizing:border-box;
  4151. border-width:1px;
  4152. border-style:solid;
  4153. border-color:rgba(215, 215, 215, 1);
  4154. border-left:0px;
  4155. border-top:0px;
  4156. border-right:0px;
  4157. border-radius:0px;
  4158. border-bottom-right-radius:0px;
  4159. border-bottom-left-radius:0px;
  4160. -moz-box-shadow:none;
  4161. -webkit-box-shadow:none;
  4162. box-shadow:none;
  4163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4164. font-weight:400;
  4165. font-style:normal;
  4166. font-size:14px;
  4167. text-align:right;
  4168. line-height:30px;
  4169. }
  4170. #u31356 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:1066px;
  4174. top:778px;
  4175. width:150px;
  4176. height:120px;
  4177. display:flex;
  4178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:14px;
  4182. text-align:right;
  4183. line-height:30px;
  4184. }
  4185. #u31356 .text {
  4186. position:absolute;
  4187. align-self:flex-start;
  4188. padding:0px 0px 0px 0px;
  4189. box-sizing:border-box;
  4190. width:100%;
  4191. }
  4192. #u31356_text {
  4193. border-width:0px;
  4194. word-wrap:break-word;
  4195. text-transform:none;
  4196. }
  4197. #u31357_div {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:150px;
  4203. height:120px;
  4204. background:inherit;
  4205. background-color:rgba(255, 255, 255, 0);
  4206. box-sizing:border-box;
  4207. border-width:1px;
  4208. border-style:solid;
  4209. border-color:rgba(215, 215, 215, 1);
  4210. border-left:0px;
  4211. border-top:0px;
  4212. border-right:0px;
  4213. border-radius:0px;
  4214. border-bottom-right-radius:0px;
  4215. border-bottom-left-radius:0px;
  4216. -moz-box-shadow:none;
  4217. -webkit-box-shadow:none;
  4218. box-shadow:none;
  4219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:14px;
  4223. text-align:right;
  4224. line-height:30px;
  4225. }
  4226. #u31357 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:1240px;
  4230. top:778px;
  4231. width:150px;
  4232. height:120px;
  4233. display:flex;
  4234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:14px;
  4238. text-align:right;
  4239. line-height:30px;
  4240. }
  4241. #u31357 .text {
  4242. position:absolute;
  4243. align-self:flex-start;
  4244. padding:0px 0px 0px 0px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u31357_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. }
  4253. #u31358_div {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:150px;
  4259. height:120px;
  4260. background:inherit;
  4261. background-color:rgba(255, 255, 255, 0);
  4262. box-sizing:border-box;
  4263. border-width:1px;
  4264. border-style:solid;
  4265. border-color:rgba(215, 215, 215, 1);
  4266. border-left:0px;
  4267. border-top:0px;
  4268. border-right:0px;
  4269. border-radius:0px;
  4270. border-bottom-right-radius:0px;
  4271. border-bottom-left-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:14px;
  4279. text-align:right;
  4280. line-height:30px;
  4281. }
  4282. #u31358 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:1413px;
  4286. top:778px;
  4287. width:150px;
  4288. height:120px;
  4289. display:flex;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:14px;
  4294. text-align:right;
  4295. line-height:30px;
  4296. }
  4297. #u31358 .text {
  4298. position:absolute;
  4299. align-self:flex-start;
  4300. padding:0px 0px 0px 0px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u31358_text {
  4305. border-width:0px;
  4306. word-wrap:break-word;
  4307. text-transform:none;
  4308. }
  4309. #u31359_div {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:150px;
  4315. height:120px;
  4316. background:inherit;
  4317. background-color:rgba(255, 255, 255, 0);
  4318. box-sizing:border-box;
  4319. border-width:1px;
  4320. border-style:solid;
  4321. border-color:rgba(215, 215, 215, 1);
  4322. border-left:0px;
  4323. border-top:0px;
  4324. border-right:0px;
  4325. border-radius:0px;
  4326. border-bottom-right-radius:0px;
  4327. border-bottom-left-radius:0px;
  4328. -moz-box-shadow:none;
  4329. -webkit-box-shadow:none;
  4330. box-shadow:none;
  4331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:14px;
  4335. text-align:right;
  4336. line-height:30px;
  4337. }
  4338. #u31359 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:373px;
  4342. top:899px;
  4343. width:150px;
  4344. height:120px;
  4345. display:flex;
  4346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4347. font-weight:400;
  4348. font-style:normal;
  4349. font-size:14px;
  4350. text-align:right;
  4351. line-height:30px;
  4352. }
  4353. #u31359 .text {
  4354. position:absolute;
  4355. align-self:flex-start;
  4356. padding:0px 0px 0px 0px;
  4357. box-sizing:border-box;
  4358. width:100%;
  4359. }
  4360. #u31359_text {
  4361. border-width:0px;
  4362. word-wrap:break-word;
  4363. text-transform:none;
  4364. }
  4365. #u31360_div {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:150px;
  4371. height:120px;
  4372. background:inherit;
  4373. background-color:rgba(255, 255, 255, 0);
  4374. box-sizing:border-box;
  4375. border-width:1px;
  4376. border-style:solid;
  4377. border-color:rgba(215, 215, 215, 1);
  4378. border-left:0px;
  4379. border-top:0px;
  4380. border-right:0px;
  4381. border-radius:0px;
  4382. border-bottom-right-radius:0px;
  4383. border-bottom-left-radius:0px;
  4384. -moz-box-shadow:none;
  4385. -webkit-box-shadow:none;
  4386. box-shadow:none;
  4387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4388. font-weight:400;
  4389. font-style:normal;
  4390. font-size:14px;
  4391. text-align:right;
  4392. line-height:30px;
  4393. }
  4394. #u31360 {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:546px;
  4398. top:899px;
  4399. width:150px;
  4400. height:120px;
  4401. display:flex;
  4402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:14px;
  4406. text-align:right;
  4407. line-height:30px;
  4408. }
  4409. #u31360 .text {
  4410. position:absolute;
  4411. align-self:flex-start;
  4412. padding:0px 0px 0px 0px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u31360_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. }
  4421. #u31361_div {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:150px;
  4427. height:120px;
  4428. background:inherit;
  4429. background-color:rgba(255, 255, 255, 0);
  4430. box-sizing:border-box;
  4431. border-width:1px;
  4432. border-style:solid;
  4433. border-color:rgba(215, 215, 215, 1);
  4434. border-left:0px;
  4435. border-top:0px;
  4436. border-right:0px;
  4437. border-radius:0px;
  4438. border-bottom-right-radius:0px;
  4439. border-bottom-left-radius:0px;
  4440. -moz-box-shadow:none;
  4441. -webkit-box-shadow:none;
  4442. box-shadow:none;
  4443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. font-size:14px;
  4447. text-align:right;
  4448. line-height:30px;
  4449. }
  4450. #u31361 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:720px;
  4454. top:899px;
  4455. width:150px;
  4456. height:120px;
  4457. display:flex;
  4458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4459. font-weight:400;
  4460. font-style:normal;
  4461. font-size:14px;
  4462. text-align:right;
  4463. line-height:30px;
  4464. }
  4465. #u31361 .text {
  4466. position:absolute;
  4467. align-self:flex-start;
  4468. padding:0px 0px 0px 0px;
  4469. box-sizing:border-box;
  4470. width:100%;
  4471. }
  4472. #u31361_text {
  4473. border-width:0px;
  4474. word-wrap:break-word;
  4475. text-transform:none;
  4476. }
  4477. #u31362_div {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:150px;
  4483. height:120px;
  4484. background:inherit;
  4485. background-color:rgba(255, 255, 255, 0);
  4486. box-sizing:border-box;
  4487. border-width:1px;
  4488. border-style:solid;
  4489. border-color:rgba(215, 215, 215, 1);
  4490. border-left:0px;
  4491. border-top:0px;
  4492. border-right:0px;
  4493. border-radius:0px;
  4494. border-bottom-right-radius:0px;
  4495. border-bottom-left-radius:0px;
  4496. -moz-box-shadow:none;
  4497. -webkit-box-shadow:none;
  4498. box-shadow:none;
  4499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:14px;
  4503. text-align:right;
  4504. line-height:30px;
  4505. }
  4506. #u31362 {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:893px;
  4510. top:899px;
  4511. width:150px;
  4512. height:120px;
  4513. display:flex;
  4514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:14px;
  4518. text-align:right;
  4519. line-height:30px;
  4520. }
  4521. #u31362 .text {
  4522. position:absolute;
  4523. align-self:flex-start;
  4524. padding:0px 0px 0px 0px;
  4525. box-sizing:border-box;
  4526. width:100%;
  4527. }
  4528. #u31362_text {
  4529. border-width:0px;
  4530. word-wrap:break-word;
  4531. text-transform:none;
  4532. }
  4533. #u31363_div {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:150px;
  4539. height:120px;
  4540. background:inherit;
  4541. background-color:rgba(255, 255, 255, 0);
  4542. box-sizing:border-box;
  4543. border-width:1px;
  4544. border-style:solid;
  4545. border-color:rgba(215, 215, 215, 1);
  4546. border-left:0px;
  4547. border-top:0px;
  4548. border-right:0px;
  4549. border-radius:0px;
  4550. border-bottom-right-radius:0px;
  4551. border-bottom-left-radius:0px;
  4552. -moz-box-shadow:none;
  4553. -webkit-box-shadow:none;
  4554. box-shadow:none;
  4555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4556. font-weight:400;
  4557. font-style:normal;
  4558. font-size:14px;
  4559. text-align:right;
  4560. line-height:30px;
  4561. }
  4562. #u31363 {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:1066px;
  4566. top:899px;
  4567. width:150px;
  4568. height:120px;
  4569. display:flex;
  4570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:14px;
  4574. text-align:right;
  4575. line-height:30px;
  4576. }
  4577. #u31363 .text {
  4578. position:absolute;
  4579. align-self:flex-start;
  4580. padding:0px 0px 0px 0px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u31363_text {
  4585. border-width:0px;
  4586. word-wrap:break-word;
  4587. text-transform:none;
  4588. }
  4589. #u31364_div {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:150px;
  4595. height:120px;
  4596. background:inherit;
  4597. background-color:rgba(255, 255, 255, 0);
  4598. box-sizing:border-box;
  4599. border-width:1px;
  4600. border-style:solid;
  4601. border-color:rgba(215, 215, 215, 1);
  4602. border-left:0px;
  4603. border-top:0px;
  4604. border-right:0px;
  4605. border-radius:0px;
  4606. border-bottom-right-radius:0px;
  4607. border-bottom-left-radius:0px;
  4608. -moz-box-shadow:none;
  4609. -webkit-box-shadow:none;
  4610. box-shadow:none;
  4611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. font-size:14px;
  4615. text-align:right;
  4616. line-height:30px;
  4617. }
  4618. #u31364 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:1240px;
  4622. top:899px;
  4623. width:150px;
  4624. height:120px;
  4625. display:flex;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:14px;
  4630. text-align:right;
  4631. line-height:30px;
  4632. }
  4633. #u31364 .text {
  4634. position:absolute;
  4635. align-self:flex-start;
  4636. padding:0px 0px 0px 0px;
  4637. box-sizing:border-box;
  4638. width:100%;
  4639. }
  4640. #u31364_text {
  4641. border-width:0px;
  4642. word-wrap:break-word;
  4643. text-transform:none;
  4644. }
  4645. #u31365_div {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:0px;
  4649. top:0px;
  4650. width:150px;
  4651. height:120px;
  4652. background:inherit;
  4653. background-color:rgba(255, 255, 255, 0);
  4654. box-sizing:border-box;
  4655. border-width:1px;
  4656. border-style:solid;
  4657. border-color:rgba(215, 215, 215, 1);
  4658. border-left:0px;
  4659. border-top:0px;
  4660. border-right:0px;
  4661. border-radius:0px;
  4662. border-bottom-right-radius:0px;
  4663. border-bottom-left-radius:0px;
  4664. -moz-box-shadow:none;
  4665. -webkit-box-shadow:none;
  4666. box-shadow:none;
  4667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:14px;
  4671. text-align:right;
  4672. line-height:30px;
  4673. }
  4674. #u31365 {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:1413px;
  4678. top:899px;
  4679. width:150px;
  4680. height:120px;
  4681. display:flex;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:14px;
  4686. text-align:right;
  4687. line-height:30px;
  4688. }
  4689. #u31365 .text {
  4690. position:absolute;
  4691. align-self:flex-start;
  4692. padding:0px 0px 0px 0px;
  4693. box-sizing:border-box;
  4694. width:100%;
  4695. }
  4696. #u31365_text {
  4697. border-width:0px;
  4698. word-wrap:break-word;
  4699. text-transform:none;
  4700. }
  4701. #u31366_div {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:150px;
  4707. height:120px;
  4708. background:inherit;
  4709. background-color:rgba(255, 255, 255, 0);
  4710. box-sizing:border-box;
  4711. border-width:1px;
  4712. border-style:solid;
  4713. border-color:rgba(215, 215, 215, 1);
  4714. border-left:0px;
  4715. border-top:0px;
  4716. border-right:0px;
  4717. border-radius:0px;
  4718. border-bottom-right-radius:0px;
  4719. border-bottom-left-radius:0px;
  4720. -moz-box-shadow:none;
  4721. -webkit-box-shadow:none;
  4722. box-shadow:none;
  4723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4724. font-weight:400;
  4725. font-style:normal;
  4726. font-size:14px;
  4727. text-align:right;
  4728. line-height:30px;
  4729. }
  4730. #u31366 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:373px;
  4734. top:1020px;
  4735. width:150px;
  4736. height:120px;
  4737. display:flex;
  4738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:14px;
  4742. text-align:right;
  4743. line-height:30px;
  4744. }
  4745. #u31366 .text {
  4746. position:absolute;
  4747. align-self:flex-start;
  4748. padding:0px 0px 0px 0px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u31366_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. }
  4757. #u31367_div {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:150px;
  4763. height:120px;
  4764. background:inherit;
  4765. background-color:rgba(255, 255, 255, 0);
  4766. box-sizing:border-box;
  4767. border-width:1px;
  4768. border-style:solid;
  4769. border-color:rgba(215, 215, 215, 1);
  4770. border-left:0px;
  4771. border-top:0px;
  4772. border-right:0px;
  4773. border-radius:0px;
  4774. border-bottom-right-radius:0px;
  4775. border-bottom-left-radius:0px;
  4776. -moz-box-shadow:none;
  4777. -webkit-box-shadow:none;
  4778. box-shadow:none;
  4779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:14px;
  4783. text-align:right;
  4784. line-height:30px;
  4785. }
  4786. #u31367 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:546px;
  4790. top:1020px;
  4791. width:150px;
  4792. height:120px;
  4793. display:flex;
  4794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4795. font-weight:400;
  4796. font-style:normal;
  4797. font-size:14px;
  4798. text-align:right;
  4799. line-height:30px;
  4800. }
  4801. #u31367 .text {
  4802. position:absolute;
  4803. align-self:flex-start;
  4804. padding:0px 0px 0px 0px;
  4805. box-sizing:border-box;
  4806. width:100%;
  4807. }
  4808. #u31367_text {
  4809. border-width:0px;
  4810. word-wrap:break-word;
  4811. text-transform:none;
  4812. }
  4813. #u31368_div {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:150px;
  4819. height:120px;
  4820. background:inherit;
  4821. background-color:rgba(255, 255, 255, 0);
  4822. box-sizing:border-box;
  4823. border-width:1px;
  4824. border-style:solid;
  4825. border-color:rgba(215, 215, 215, 1);
  4826. border-left:0px;
  4827. border-top:0px;
  4828. border-right:0px;
  4829. border-radius:0px;
  4830. border-bottom-right-radius:0px;
  4831. border-bottom-left-radius:0px;
  4832. -moz-box-shadow:none;
  4833. -webkit-box-shadow:none;
  4834. box-shadow:none;
  4835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4836. font-weight:400;
  4837. font-style:normal;
  4838. font-size:14px;
  4839. text-align:right;
  4840. line-height:30px;
  4841. }
  4842. #u31368 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:720px;
  4846. top:1020px;
  4847. width:150px;
  4848. height:120px;
  4849. display:flex;
  4850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. font-size:14px;
  4854. text-align:right;
  4855. line-height:30px;
  4856. }
  4857. #u31368 .text {
  4858. position:absolute;
  4859. align-self:flex-start;
  4860. padding:0px 0px 0px 0px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u31368_text {
  4865. border-width:0px;
  4866. word-wrap:break-word;
  4867. text-transform:none;
  4868. }
  4869. #u31369_div {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:150px;
  4875. height:120px;
  4876. background:inherit;
  4877. background-color:rgba(255, 255, 255, 0);
  4878. box-sizing:border-box;
  4879. border-width:1px;
  4880. border-style:solid;
  4881. border-color:rgba(215, 215, 215, 1);
  4882. border-left:0px;
  4883. border-top:0px;
  4884. border-right:0px;
  4885. border-radius:0px;
  4886. border-bottom-right-radius:0px;
  4887. border-bottom-left-radius:0px;
  4888. -moz-box-shadow:none;
  4889. -webkit-box-shadow:none;
  4890. box-shadow:none;
  4891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4892. font-weight:400;
  4893. font-style:normal;
  4894. font-size:14px;
  4895. color:#AAAAAA;
  4896. text-align:right;
  4897. line-height:30px;
  4898. }
  4899. #u31369 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:893px;
  4903. top:1020px;
  4904. width:150px;
  4905. height:120px;
  4906. display:flex;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:14px;
  4911. color:#AAAAAA;
  4912. text-align:right;
  4913. line-height:30px;
  4914. }
  4915. #u31369 .text {
  4916. position:absolute;
  4917. align-self:flex-start;
  4918. padding:0px 0px 0px 0px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u31369_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. }
  4927. #u31370_div {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:150px;
  4933. height:120px;
  4934. background:inherit;
  4935. background-color:rgba(255, 255, 255, 0);
  4936. box-sizing:border-box;
  4937. border-width:1px;
  4938. border-style:solid;
  4939. border-color:rgba(215, 215, 215, 1);
  4940. border-left:0px;
  4941. border-top:0px;
  4942. border-right:0px;
  4943. border-radius:0px;
  4944. border-bottom-right-radius:0px;
  4945. border-bottom-left-radius:0px;
  4946. -moz-box-shadow:none;
  4947. -webkit-box-shadow:none;
  4948. box-shadow:none;
  4949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:14px;
  4953. color:#AAAAAA;
  4954. text-align:right;
  4955. line-height:30px;
  4956. }
  4957. #u31370 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:1066px;
  4961. top:1020px;
  4962. width:150px;
  4963. height:120px;
  4964. display:flex;
  4965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4966. font-weight:400;
  4967. font-style:normal;
  4968. font-size:14px;
  4969. color:#AAAAAA;
  4970. text-align:right;
  4971. line-height:30px;
  4972. }
  4973. #u31370 .text {
  4974. position:absolute;
  4975. align-self:flex-start;
  4976. padding:0px 0px 0px 0px;
  4977. box-sizing:border-box;
  4978. width:100%;
  4979. }
  4980. #u31370_text {
  4981. border-width:0px;
  4982. word-wrap:break-word;
  4983. text-transform:none;
  4984. }
  4985. #u31371_div {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:150px;
  4991. height:120px;
  4992. background:inherit;
  4993. background-color:rgba(255, 255, 255, 0);
  4994. box-sizing:border-box;
  4995. border-width:1px;
  4996. border-style:solid;
  4997. border-color:rgba(215, 215, 215, 1);
  4998. border-left:0px;
  4999. border-top:0px;
  5000. border-right:0px;
  5001. border-radius:0px;
  5002. border-bottom-right-radius:0px;
  5003. border-bottom-left-radius:0px;
  5004. -moz-box-shadow:none;
  5005. -webkit-box-shadow:none;
  5006. box-shadow:none;
  5007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. font-size:14px;
  5011. color:#AAAAAA;
  5012. text-align:right;
  5013. line-height:30px;
  5014. }
  5015. #u31371 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:1240px;
  5019. top:1020px;
  5020. width:150px;
  5021. height:120px;
  5022. display:flex;
  5023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:14px;
  5027. color:#AAAAAA;
  5028. text-align:right;
  5029. line-height:30px;
  5030. }
  5031. #u31371 .text {
  5032. position:absolute;
  5033. align-self:flex-start;
  5034. padding:0px 0px 0px 0px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u31371_text {
  5039. border-width:0px;
  5040. word-wrap:break-word;
  5041. text-transform:none;
  5042. }
  5043. #u31372_div {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:150px;
  5049. height:120px;
  5050. background:inherit;
  5051. background-color:rgba(255, 255, 255, 0);
  5052. box-sizing:border-box;
  5053. border-width:1px;
  5054. border-style:solid;
  5055. border-color:rgba(215, 215, 215, 1);
  5056. border-left:0px;
  5057. border-top:0px;
  5058. border-right:0px;
  5059. border-radius:0px;
  5060. border-bottom-right-radius:0px;
  5061. border-bottom-left-radius:0px;
  5062. -moz-box-shadow:none;
  5063. -webkit-box-shadow:none;
  5064. box-shadow:none;
  5065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5066. font-weight:400;
  5067. font-style:normal;
  5068. font-size:14px;
  5069. color:#AAAAAA;
  5070. text-align:right;
  5071. line-height:30px;
  5072. }
  5073. #u31372 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:1413px;
  5077. top:1020px;
  5078. width:150px;
  5079. height:120px;
  5080. display:flex;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:14px;
  5085. color:#AAAAAA;
  5086. text-align:right;
  5087. line-height:30px;
  5088. }
  5089. #u31372 .text {
  5090. position:absolute;
  5091. align-self:flex-start;
  5092. padding:0px 0px 0px 0px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u31372_text {
  5097. border-width:0px;
  5098. word-wrap:break-word;
  5099. text-transform:none;
  5100. }
  5101. #u31373_div {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:109px;
  5107. height:90px;
  5108. background:inherit;
  5109. background-color:rgba(255, 255, 255, 0);
  5110. border:none;
  5111. border-left:0px;
  5112. border-top:0px;
  5113. border-right:0px;
  5114. border-radius:0px;
  5115. border-bottom-right-radius:0px;
  5116. border-bottom-left-radius:0px;
  5117. -moz-box-shadow:none;
  5118. -webkit-box-shadow:none;
  5119. box-shadow:none;
  5120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. line-height:30px;
  5124. }
  5125. #u31373 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:557px;
  5129. top:672px;
  5130. width:109px;
  5131. height:90px;
  5132. display:flex;
  5133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5134. font-weight:400;
  5135. font-style:normal;
  5136. line-height:30px;
  5137. }
  5138. #u31373 .text {
  5139. position:absolute;
  5140. align-self:flex-start;
  5141. padding:0px 0px 0px 0px;
  5142. box-sizing:border-box;
  5143. width:100%;
  5144. }
  5145. #u31373_text {
  5146. border-width:0px;
  5147. white-space:nowrap;
  5148. text-transform:none;
  5149. }
  5150. #u31374 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:0px;
  5156. height:0px;
  5157. }
  5158. #u31375_img {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:10px;
  5164. height:10px;
  5165. }
  5166. #u31375 {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:602px;
  5170. top:438px;
  5171. width:10px;
  5172. height:10px;
  5173. display:flex;
  5174. }
  5175. #u31375 .text {
  5176. position:absolute;
  5177. align-self:center;
  5178. padding:2px 2px 2px 2px;
  5179. box-sizing:border-box;
  5180. width:100%;
  5181. }
  5182. #u31375_text {
  5183. border-width:0px;
  5184. word-wrap:break-word;
  5185. text-transform:none;
  5186. visibility:hidden;
  5187. }
  5188. #u31376_div {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:37px;
  5194. height:20px;
  5195. background:inherit;
  5196. background-color:rgba(255, 255, 255, 0);
  5197. border:none;
  5198. border-radius:0px;
  5199. -moz-box-shadow:none;
  5200. -webkit-box-shadow:none;
  5201. box-shadow:none;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:12px;
  5206. color:#4B4D53;
  5207. }
  5208. #u31376 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:620px;
  5212. top:433px;
  5213. width:37px;
  5214. height:20px;
  5215. display:flex;
  5216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:12px;
  5220. color:#4B4D53;
  5221. }
  5222. #u31376 .text {
  5223. position:absolute;
  5224. align-self:flex-start;
  5225. padding:0px 0px 0px 0px;
  5226. box-sizing:border-box;
  5227. width:100%;
  5228. }
  5229. #u31376_text {
  5230. border-width:0px;
  5231. white-space:nowrap;
  5232. text-transform:none;
  5233. }
  5234. #u31377 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:0px;
  5238. top:0px;
  5239. width:0px;
  5240. height:0px;
  5241. }
  5242. #u31378_div {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:160px;
  5248. height:30px;
  5249. background:inherit;
  5250. background-color:rgba(255, 255, 255, 1);
  5251. box-sizing:border-box;
  5252. border-width:1px;
  5253. border-style:solid;
  5254. border-color:rgba(201, 201, 201, 1);
  5255. border-radius:4px;
  5256. -moz-box-shadow:none;
  5257. -webkit-box-shadow:none;
  5258. box-shadow:none;
  5259. font-family:'Microsoft YaHei', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:14px;
  5263. color:#CCCCCC;
  5264. text-align:left;
  5265. }
  5266. #u31378 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:868px;
  5270. top:141px;
  5271. width:160px;
  5272. height:30px;
  5273. display:flex;
  5274. font-family:'Microsoft YaHei', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:14px;
  5278. color:#CCCCCC;
  5279. text-align:left;
  5280. }
  5281. #u31378 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:2px 8px 2px 8px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u31378_text {
  5289. border-width:0px;
  5290. word-wrap:break-word;
  5291. text-transform:none;
  5292. visibility:hidden;
  5293. }
  5294. #u31379_input {
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:150px;
  5299. height:28px;
  5300. padding:2px 2px 2px 2px;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:14px;
  5305. letter-spacing:normal;
  5306. color:#000000;
  5307. vertical-align:none;
  5308. text-align:left;
  5309. text-transform:none;
  5310. background-color:transparent;
  5311. border-color:transparent;
  5312. }
  5313. #u31379_input.disabled {
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:150px;
  5318. height:28px;
  5319. padding:2px 2px 2px 2px;
  5320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:14px;
  5324. letter-spacing:normal;
  5325. color:#000000;
  5326. vertical-align:none;
  5327. text-align:left;
  5328. text-transform:none;
  5329. background-color:transparent;
  5330. border-color:transparent;
  5331. }
  5332. #u31379_div {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:150px;
  5338. height:28px;
  5339. background:inherit;
  5340. background-color:rgba(255, 255, 255, 1);
  5341. border:none;
  5342. border-radius:0px;
  5343. -moz-box-shadow:none;
  5344. -webkit-box-shadow:none;
  5345. box-shadow:none;
  5346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5347. font-weight:400;
  5348. font-style:normal;
  5349. font-size:14px;
  5350. }
  5351. #u31379 {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:874px;
  5355. top:142px;
  5356. width:150px;
  5357. height:28px;
  5358. display:flex;
  5359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:14px;
  5363. }
  5364. #u31379 .text {
  5365. position:absolute;
  5366. align-self:center;
  5367. padding:2px 2px 2px 2px;
  5368. box-sizing:border-box;
  5369. width:100%;
  5370. }
  5371. #u31379_div.disabled {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:150px;
  5377. height:28px;
  5378. background:inherit;
  5379. background-color:rgba(240, 240, 240, 1);
  5380. border:none;
  5381. border-radius:0px;
  5382. -moz-box-shadow:none;
  5383. -webkit-box-shadow:none;
  5384. box-shadow:none;
  5385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5386. font-weight:400;
  5387. font-style:normal;
  5388. font-size:14px;
  5389. }
  5390. #u31379.disabled {
  5391. }
  5392. #u31380 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:0px;
  5398. height:0px;
  5399. }
  5400. #u31381_div {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:60px;
  5406. height:30px;
  5407. background:inherit;
  5408. background-color:rgba(24, 144, 255, 1);
  5409. border:none;
  5410. border-radius:4px;
  5411. -moz-box-shadow:none;
  5412. -webkit-box-shadow:none;
  5413. box-shadow:none;
  5414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. font-size:14px;
  5418. color:#FFFFFF;
  5419. }
  5420. #u31381 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:527px;
  5424. top:181px;
  5425. width:60px;
  5426. height:30px;
  5427. display:flex;
  5428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:14px;
  5432. color:#FFFFFF;
  5433. }
  5434. #u31381 .text {
  5435. position:absolute;
  5436. align-self:center;
  5437. padding:2px 2px 2px 2px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u31381_text {
  5442. border-width:0px;
  5443. word-wrap:break-word;
  5444. text-transform:none;
  5445. }
  5446. #u31382_div {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:60px;
  5452. height:30px;
  5453. background:inherit;
  5454. background-color:rgba(255, 255, 255, 1);
  5455. box-sizing:border-box;
  5456. border-width:1px;
  5457. border-style:solid;
  5458. border-color:rgba(170, 170, 170, 1);
  5459. border-radius:4px;
  5460. -moz-box-shadow:none;
  5461. -webkit-box-shadow:none;
  5462. box-shadow:none;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:14px;
  5467. }
  5468. #u31382 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:597px;
  5472. top:181px;
  5473. width:60px;
  5474. height:30px;
  5475. display:flex;
  5476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:14px;
  5480. }
  5481. #u31382 .text {
  5482. position:absolute;
  5483. align-self:center;
  5484. padding:2px 2px 2px 2px;
  5485. box-sizing:border-box;
  5486. width:100%;
  5487. }
  5488. #u31382_text {
  5489. border-width:0px;
  5490. word-wrap:break-word;
  5491. text-transform:none;
  5492. }
  5493. #u31383 {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:0px;
  5499. height:0px;
  5500. }
  5501. #u31384_div {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:160px;
  5507. height:30px;
  5508. background:inherit;
  5509. background-color:rgba(255, 255, 255, 1);
  5510. box-sizing:border-box;
  5511. border-width:1px;
  5512. border-style:solid;
  5513. border-color:rgba(215, 215, 215, 1);
  5514. border-radius:4px;
  5515. -moz-box-shadow:none;
  5516. -webkit-box-shadow:none;
  5517. box-shadow:none;
  5518. font-size:14px;
  5519. }
  5520. #u31384 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:1038px;
  5524. top:141px;
  5525. width:160px;
  5526. height:30px;
  5527. display:flex;
  5528. font-size:14px;
  5529. }
  5530. #u31384 .text {
  5531. position:absolute;
  5532. align-self:center;
  5533. padding:2px 2px 2px 2px;
  5534. box-sizing:border-box;
  5535. width:100%;
  5536. }
  5537. #u31384_text {
  5538. border-width:0px;
  5539. word-wrap:break-word;
  5540. text-transform:none;
  5541. visibility:hidden;
  5542. }
  5543. #u31385_input {
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:153px;
  5548. height:23px;
  5549. padding:2px 2px 2px 2px;
  5550. font-family:'ArialMT', 'Arial', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. font-size:14px;
  5554. letter-spacing:normal;
  5555. color:#AAAAAA;
  5556. vertical-align:none;
  5557. text-align:left;
  5558. text-transform:none;
  5559. background-color:transparent;
  5560. border-color:transparent;
  5561. }
  5562. #u31385_input.disabled {
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:153px;
  5567. height:23px;
  5568. padding:2px 2px 2px 2px;
  5569. font-family:'ArialMT', 'Arial', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:14px;
  5573. letter-spacing:normal;
  5574. color:#AAAAAA;
  5575. vertical-align:none;
  5576. text-align:left;
  5577. text-transform:none;
  5578. background-color:transparent;
  5579. border-color:transparent;
  5580. }
  5581. #u31385_div {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:0px;
  5585. top:0px;
  5586. width:153px;
  5587. height:23px;
  5588. background:inherit;
  5589. background-color:rgba(255, 255, 255, 1);
  5590. border:none;
  5591. border-radius:0px;
  5592. -moz-box-shadow:none;
  5593. -webkit-box-shadow:none;
  5594. box-shadow:none;
  5595. font-size:14px;
  5596. color:#AAAAAA;
  5597. }
  5598. #u31385 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:1043px;
  5602. top:143px;
  5603. width:153px;
  5604. height:23px;
  5605. display:flex;
  5606. font-size:14px;
  5607. color:#AAAAAA;
  5608. }
  5609. #u31385 .text {
  5610. position:absolute;
  5611. align-self:flex-start;
  5612. padding:2px 2px 2px 2px;
  5613. box-sizing:border-box;
  5614. width:100%;
  5615. }
  5616. #u31385_div.disabled {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:153px;
  5622. height:23px;
  5623. background:inherit;
  5624. background-color:rgba(240, 240, 240, 1);
  5625. border:none;
  5626. border-radius:0px;
  5627. -moz-box-shadow:none;
  5628. -webkit-box-shadow:none;
  5629. box-shadow:none;
  5630. font-size:14px;
  5631. color:#AAAAAA;
  5632. }
  5633. #u31385.disabled {
  5634. }
  5635. .u31385_input_option {
  5636. font-size:14px;
  5637. }
  5638. #u31386 {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:0px;
  5644. height:0px;
  5645. }
  5646. #u31387_div {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:160px;
  5652. height:30px;
  5653. background:inherit;
  5654. background-color:rgba(255, 255, 255, 1);
  5655. box-sizing:border-box;
  5656. border-width:1px;
  5657. border-style:solid;
  5658. border-color:rgba(215, 215, 215, 1);
  5659. border-radius:4px;
  5660. -moz-box-shadow:none;
  5661. -webkit-box-shadow:none;
  5662. box-shadow:none;
  5663. font-size:14px;
  5664. }
  5665. #u31387 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:698px;
  5669. top:141px;
  5670. width:160px;
  5671. height:30px;
  5672. display:flex;
  5673. font-size:14px;
  5674. }
  5675. #u31387 .text {
  5676. position:absolute;
  5677. align-self:center;
  5678. padding:2px 2px 2px 2px;
  5679. box-sizing:border-box;
  5680. width:100%;
  5681. }
  5682. #u31387_text {
  5683. border-width:0px;
  5684. word-wrap:break-word;
  5685. text-transform:none;
  5686. visibility:hidden;
  5687. }
  5688. #u31388_input {
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:153px;
  5693. height:23px;
  5694. padding:2px 2px 2px 2px;
  5695. font-family:'ArialMT', 'Arial', sans-serif;
  5696. font-weight:400;
  5697. font-style:normal;
  5698. font-size:14px;
  5699. letter-spacing:normal;
  5700. color:#AAAAAA;
  5701. vertical-align:none;
  5702. text-align:left;
  5703. text-transform:none;
  5704. background-color:transparent;
  5705. border-color:transparent;
  5706. }
  5707. #u31388_input.disabled {
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:153px;
  5712. height:23px;
  5713. padding:2px 2px 2px 2px;
  5714. font-family:'ArialMT', 'Arial', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:14px;
  5718. letter-spacing:normal;
  5719. color:#AAAAAA;
  5720. vertical-align:none;
  5721. text-align:left;
  5722. text-transform:none;
  5723. background-color:transparent;
  5724. border-color:transparent;
  5725. }
  5726. #u31388_div {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:0px;
  5730. top:0px;
  5731. width:153px;
  5732. height:23px;
  5733. background:inherit;
  5734. background-color:rgba(255, 255, 255, 1);
  5735. border:none;
  5736. border-radius:0px;
  5737. -moz-box-shadow:none;
  5738. -webkit-box-shadow:none;
  5739. box-shadow:none;
  5740. font-size:14px;
  5741. color:#AAAAAA;
  5742. }
  5743. #u31388 {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:703px;
  5747. top:143px;
  5748. width:153px;
  5749. height:23px;
  5750. display:flex;
  5751. font-size:14px;
  5752. color:#AAAAAA;
  5753. }
  5754. #u31388 .text {
  5755. position:absolute;
  5756. align-self:flex-start;
  5757. padding:2px 2px 2px 2px;
  5758. box-sizing:border-box;
  5759. width:100%;
  5760. }
  5761. #u31388_div.disabled {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:153px;
  5767. height:23px;
  5768. background:inherit;
  5769. background-color:rgba(240, 240, 240, 1);
  5770. border:none;
  5771. border-radius:0px;
  5772. -moz-box-shadow:none;
  5773. -webkit-box-shadow:none;
  5774. box-shadow:none;
  5775. font-size:14px;
  5776. color:#AAAAAA;
  5777. }
  5778. #u31388.disabled {
  5779. }
  5780. .u31388_input_option {
  5781. font-size:14px;
  5782. }
  5783. #u31389 {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:0px;
  5789. height:0px;
  5790. }
  5791. #u31390_div {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:160px;
  5797. height:30px;
  5798. background:inherit;
  5799. background-color:rgba(255, 255, 255, 1);
  5800. box-sizing:border-box;
  5801. border-width:1px;
  5802. border-style:solid;
  5803. border-color:rgba(215, 215, 215, 1);
  5804. border-radius:4px;
  5805. -moz-box-shadow:none;
  5806. -webkit-box-shadow:none;
  5807. box-shadow:none;
  5808. font-size:14px;
  5809. }
  5810. #u31390 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:1378px;
  5814. top:141px;
  5815. width:160px;
  5816. height:30px;
  5817. display:flex;
  5818. font-size:14px;
  5819. }
  5820. #u31390 .text {
  5821. position:absolute;
  5822. align-self:center;
  5823. padding:2px 2px 2px 2px;
  5824. box-sizing:border-box;
  5825. width:100%;
  5826. }
  5827. #u31390_text {
  5828. border-width:0px;
  5829. word-wrap:break-word;
  5830. text-transform:none;
  5831. visibility:hidden;
  5832. }
  5833. #u31391_input {
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:153px;
  5838. height:23px;
  5839. padding:2px 2px 2px 2px;
  5840. font-family:'ArialMT', 'Arial', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. font-size:14px;
  5844. letter-spacing:normal;
  5845. color:#AAAAAA;
  5846. vertical-align:none;
  5847. text-align:left;
  5848. text-transform:none;
  5849. background-color:transparent;
  5850. border-color:transparent;
  5851. }
  5852. #u31391_input.disabled {
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:153px;
  5857. height:23px;
  5858. padding:2px 2px 2px 2px;
  5859. font-family:'ArialMT', 'Arial', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:14px;
  5863. letter-spacing:normal;
  5864. color:#AAAAAA;
  5865. vertical-align:none;
  5866. text-align:left;
  5867. text-transform:none;
  5868. background-color:transparent;
  5869. border-color:transparent;
  5870. }
  5871. #u31391_div {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:0px;
  5875. top:0px;
  5876. width:153px;
  5877. height:23px;
  5878. background:inherit;
  5879. background-color:rgba(255, 255, 255, 1);
  5880. border:none;
  5881. border-radius:0px;
  5882. -moz-box-shadow:none;
  5883. -webkit-box-shadow:none;
  5884. box-shadow:none;
  5885. font-size:14px;
  5886. color:#AAAAAA;
  5887. }
  5888. #u31391 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:1383px;
  5892. top:143px;
  5893. width:153px;
  5894. height:23px;
  5895. display:flex;
  5896. font-size:14px;
  5897. color:#AAAAAA;
  5898. }
  5899. #u31391 .text {
  5900. position:absolute;
  5901. align-self:flex-start;
  5902. padding:2px 2px 2px 2px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u31391_div.disabled {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:153px;
  5912. height:23px;
  5913. background:inherit;
  5914. background-color:rgba(240, 240, 240, 1);
  5915. border:none;
  5916. border-radius:0px;
  5917. -moz-box-shadow:none;
  5918. -webkit-box-shadow:none;
  5919. box-shadow:none;
  5920. font-size:14px;
  5921. color:#AAAAAA;
  5922. }
  5923. #u31391.disabled {
  5924. }
  5925. .u31391_input_option {
  5926. font-size:14px;
  5927. }
  5928. #u31392 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:0px;
  5934. height:0px;
  5935. }
  5936. #u31393_div {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:160px;
  5942. height:30px;
  5943. background:inherit;
  5944. background-color:rgba(255, 255, 255, 1);
  5945. box-sizing:border-box;
  5946. border-width:1px;
  5947. border-style:solid;
  5948. border-color:rgba(215, 215, 215, 1);
  5949. border-radius:4px;
  5950. -moz-box-shadow:none;
  5951. -webkit-box-shadow:none;
  5952. box-shadow:none;
  5953. font-size:14px;
  5954. }
  5955. #u31393 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:357px;
  5959. top:181px;
  5960. width:160px;
  5961. height:30px;
  5962. display:flex;
  5963. font-size:14px;
  5964. }
  5965. #u31393 .text {
  5966. position:absolute;
  5967. align-self:center;
  5968. padding:2px 2px 2px 2px;
  5969. box-sizing:border-box;
  5970. width:100%;
  5971. }
  5972. #u31393_text {
  5973. border-width:0px;
  5974. word-wrap:break-word;
  5975. text-transform:none;
  5976. visibility:hidden;
  5977. }
  5978. #u31394_input {
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:153px;
  5983. height:23px;
  5984. padding:2px 2px 2px 2px;
  5985. font-family:'ArialMT', 'Arial', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:14px;
  5989. letter-spacing:normal;
  5990. color:#AAAAAA;
  5991. vertical-align:none;
  5992. text-align:left;
  5993. text-transform:none;
  5994. background-color:transparent;
  5995. border-color:transparent;
  5996. }
  5997. #u31394_input.disabled {
  5998. position:absolute;
  5999. left:0px;
  6000. top:0px;
  6001. width:153px;
  6002. height:23px;
  6003. padding:2px 2px 2px 2px;
  6004. font-family:'ArialMT', 'Arial', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:14px;
  6008. letter-spacing:normal;
  6009. color:#AAAAAA;
  6010. vertical-align:none;
  6011. text-align:left;
  6012. text-transform:none;
  6013. background-color:transparent;
  6014. border-color:transparent;
  6015. }
  6016. #u31394_div {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:153px;
  6022. height:23px;
  6023. background:inherit;
  6024. background-color:rgba(255, 255, 255, 1);
  6025. border:none;
  6026. border-radius:0px;
  6027. -moz-box-shadow:none;
  6028. -webkit-box-shadow:none;
  6029. box-shadow:none;
  6030. font-size:14px;
  6031. color:#AAAAAA;
  6032. }
  6033. #u31394 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:362px;
  6037. top:183px;
  6038. width:153px;
  6039. height:23px;
  6040. display:flex;
  6041. font-size:14px;
  6042. color:#AAAAAA;
  6043. }
  6044. #u31394 .text {
  6045. position:absolute;
  6046. align-self:flex-start;
  6047. padding:2px 2px 2px 2px;
  6048. box-sizing:border-box;
  6049. width:100%;
  6050. }
  6051. #u31394_div.disabled {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:153px;
  6057. height:23px;
  6058. background:inherit;
  6059. background-color:rgba(240, 240, 240, 1);
  6060. border:none;
  6061. border-radius:0px;
  6062. -moz-box-shadow:none;
  6063. -webkit-box-shadow:none;
  6064. box-shadow:none;
  6065. font-size:14px;
  6066. color:#AAAAAA;
  6067. }
  6068. #u31394.disabled {
  6069. }
  6070. .u31394_input_option {
  6071. font-size:14px;
  6072. }
  6073. #u31395 {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:0px;
  6079. height:0px;
  6080. }
  6081. #u31396_div {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:160px;
  6087. height:30px;
  6088. background:inherit;
  6089. background-color:rgba(255, 255, 255, 1);
  6090. box-sizing:border-box;
  6091. border-width:1px;
  6092. border-style:solid;
  6093. border-color:rgba(215, 215, 215, 1);
  6094. border-radius:4px;
  6095. -moz-box-shadow:none;
  6096. -webkit-box-shadow:none;
  6097. box-shadow:none;
  6098. font-size:14px;
  6099. }
  6100. #u31396 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:1208px;
  6104. top:141px;
  6105. width:160px;
  6106. height:30px;
  6107. display:flex;
  6108. font-size:14px;
  6109. }
  6110. #u31396 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:2px 2px 2px 2px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u31396_text {
  6118. border-width:0px;
  6119. word-wrap:break-word;
  6120. text-transform:none;
  6121. visibility:hidden;
  6122. }
  6123. #u31397_input {
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:153px;
  6128. height:23px;
  6129. padding:2px 2px 2px 2px;
  6130. font-family:'ArialMT', 'Arial', sans-serif;
  6131. font-weight:400;
  6132. font-style:normal;
  6133. font-size:14px;
  6134. letter-spacing:normal;
  6135. color:#AAAAAA;
  6136. vertical-align:none;
  6137. text-align:left;
  6138. text-transform:none;
  6139. background-color:transparent;
  6140. border-color:transparent;
  6141. }
  6142. #u31397_input.disabled {
  6143. position:absolute;
  6144. left:0px;
  6145. top:0px;
  6146. width:153px;
  6147. height:23px;
  6148. padding:2px 2px 2px 2px;
  6149. font-family:'ArialMT', 'Arial', sans-serif;
  6150. font-weight:400;
  6151. font-style:normal;
  6152. font-size:14px;
  6153. letter-spacing:normal;
  6154. color:#AAAAAA;
  6155. vertical-align:none;
  6156. text-align:left;
  6157. text-transform:none;
  6158. background-color:transparent;
  6159. border-color:transparent;
  6160. }
  6161. #u31397_div {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:153px;
  6167. height:23px;
  6168. background:inherit;
  6169. background-color:rgba(255, 255, 255, 1);
  6170. border:none;
  6171. border-radius:0px;
  6172. -moz-box-shadow:none;
  6173. -webkit-box-shadow:none;
  6174. box-shadow:none;
  6175. font-size:14px;
  6176. color:#AAAAAA;
  6177. }
  6178. #u31397 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:1213px;
  6182. top:143px;
  6183. width:153px;
  6184. height:23px;
  6185. display:flex;
  6186. font-size:14px;
  6187. color:#AAAAAA;
  6188. }
  6189. #u31397 .text {
  6190. position:absolute;
  6191. align-self:flex-start;
  6192. padding:2px 2px 2px 2px;
  6193. box-sizing:border-box;
  6194. width:100%;
  6195. }
  6196. #u31397_div.disabled {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:153px;
  6202. height:23px;
  6203. background:inherit;
  6204. background-color:rgba(240, 240, 240, 1);
  6205. border:none;
  6206. border-radius:0px;
  6207. -moz-box-shadow:none;
  6208. -webkit-box-shadow:none;
  6209. box-shadow:none;
  6210. font-size:14px;
  6211. color:#AAAAAA;
  6212. }
  6213. #u31397.disabled {
  6214. }
  6215. .u31397_input_option {
  6216. font-size:14px;
  6217. }
  6218. #u31398 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:0px;
  6224. height:0px;
  6225. }
  6226. #u31399_div {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:160px;
  6232. height:30px;
  6233. background:inherit;
  6234. background-color:rgba(255, 255, 255, 1);
  6235. box-sizing:border-box;
  6236. border-width:1px;
  6237. border-style:solid;
  6238. border-color:rgba(215, 215, 215, 1);
  6239. border-radius:4px;
  6240. -moz-box-shadow:none;
  6241. -webkit-box-shadow:none;
  6242. box-shadow:none;
  6243. font-size:14px;
  6244. }
  6245. #u31399 {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:357px;
  6249. top:141px;
  6250. width:160px;
  6251. height:30px;
  6252. display:flex;
  6253. font-size:14px;
  6254. }
  6255. #u31399 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:2px 2px 2px 2px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u31399_text {
  6263. border-width:0px;
  6264. word-wrap:break-word;
  6265. text-transform:none;
  6266. visibility:hidden;
  6267. }
  6268. #u31400_input {
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:153px;
  6273. height:23px;
  6274. padding:2px 2px 2px 2px;
  6275. font-family:'ArialMT', 'Arial', sans-serif;
  6276. font-weight:400;
  6277. font-style:normal;
  6278. font-size:14px;
  6279. letter-spacing:normal;
  6280. color:#AAAAAA;
  6281. vertical-align:none;
  6282. text-align:left;
  6283. text-transform:none;
  6284. background-color:transparent;
  6285. border-color:transparent;
  6286. }
  6287. #u31400_input.disabled {
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:153px;
  6292. height:23px;
  6293. padding:2px 2px 2px 2px;
  6294. font-family:'ArialMT', 'Arial', sans-serif;
  6295. font-weight:400;
  6296. font-style:normal;
  6297. font-size:14px;
  6298. letter-spacing:normal;
  6299. color:#AAAAAA;
  6300. vertical-align:none;
  6301. text-align:left;
  6302. text-transform:none;
  6303. background-color:transparent;
  6304. border-color:transparent;
  6305. }
  6306. #u31400_div {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:153px;
  6312. height:23px;
  6313. background:inherit;
  6314. background-color:rgba(255, 255, 255, 1);
  6315. border:none;
  6316. border-radius:0px;
  6317. -moz-box-shadow:none;
  6318. -webkit-box-shadow:none;
  6319. box-shadow:none;
  6320. font-size:14px;
  6321. color:#AAAAAA;
  6322. }
  6323. #u31400 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:362px;
  6327. top:143px;
  6328. width:153px;
  6329. height:23px;
  6330. display:flex;
  6331. font-size:14px;
  6332. color:#AAAAAA;
  6333. }
  6334. #u31400 .text {
  6335. position:absolute;
  6336. align-self:flex-start;
  6337. padding:2px 2px 2px 2px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u31400_div.disabled {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:153px;
  6347. height:23px;
  6348. background:inherit;
  6349. background-color:rgba(240, 240, 240, 1);
  6350. border:none;
  6351. border-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-size:14px;
  6356. color:#AAAAAA;
  6357. }
  6358. #u31400.disabled {
  6359. }
  6360. .u31400_input_option {
  6361. font-size:14px;
  6362. }
  6363. #u31401 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:0px;
  6369. height:0px;
  6370. }
  6371. #u31402_div {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:160px;
  6377. height:30px;
  6378. background:inherit;
  6379. background-color:rgba(255, 255, 255, 1);
  6380. box-sizing:border-box;
  6381. border-width:1px;
  6382. border-style:solid;
  6383. border-color:rgba(215, 215, 215, 1);
  6384. border-radius:4px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-size:14px;
  6389. }
  6390. #u31402 {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:527px;
  6394. top:141px;
  6395. width:160px;
  6396. height:30px;
  6397. display:flex;
  6398. font-size:14px;
  6399. }
  6400. #u31402 .text {
  6401. position:absolute;
  6402. align-self:center;
  6403. padding:2px 2px 2px 2px;
  6404. box-sizing:border-box;
  6405. width:100%;
  6406. }
  6407. #u31402_text {
  6408. border-width:0px;
  6409. word-wrap:break-word;
  6410. text-transform:none;
  6411. visibility:hidden;
  6412. }
  6413. #u31403_input {
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:153px;
  6418. height:23px;
  6419. padding:2px 2px 2px 2px;
  6420. font-family:'ArialMT', 'Arial', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:14px;
  6424. letter-spacing:normal;
  6425. color:#AAAAAA;
  6426. vertical-align:none;
  6427. text-align:left;
  6428. text-transform:none;
  6429. background-color:transparent;
  6430. border-color:transparent;
  6431. }
  6432. #u31403_input.disabled {
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:153px;
  6437. height:23px;
  6438. padding:2px 2px 2px 2px;
  6439. font-family:'ArialMT', 'Arial', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:14px;
  6443. letter-spacing:normal;
  6444. color:#AAAAAA;
  6445. vertical-align:none;
  6446. text-align:left;
  6447. text-transform:none;
  6448. background-color:transparent;
  6449. border-color:transparent;
  6450. }
  6451. #u31403_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:153px;
  6457. height:23px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 1);
  6460. border:none;
  6461. border-radius:0px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-size:14px;
  6466. color:#AAAAAA;
  6467. }
  6468. #u31403 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:532px;
  6472. top:143px;
  6473. width:153px;
  6474. height:23px;
  6475. display:flex;
  6476. font-size:14px;
  6477. color:#AAAAAA;
  6478. }
  6479. #u31403 .text {
  6480. position:absolute;
  6481. align-self:flex-start;
  6482. padding:2px 2px 2px 2px;
  6483. box-sizing:border-box;
  6484. width:100%;
  6485. }
  6486. #u31403_div.disabled {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:153px;
  6492. height:23px;
  6493. background:inherit;
  6494. background-color:rgba(240, 240, 240, 1);
  6495. border:none;
  6496. border-radius:0px;
  6497. -moz-box-shadow:none;
  6498. -webkit-box-shadow:none;
  6499. box-shadow:none;
  6500. font-size:14px;
  6501. color:#AAAAAA;
  6502. }
  6503. #u31403.disabled {
  6504. }
  6505. .u31403_input_option {
  6506. font-size:14px;
  6507. }
  6508. #u31405_div {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:200px;
  6514. height:1188px;
  6515. background:inherit;
  6516. background-color:rgba(255, 255, 255, 1);
  6517. border:none;
  6518. border-radius:0px;
  6519. -moz-box-shadow:none;
  6520. -webkit-box-shadow:none;
  6521. box-shadow:none;
  6522. }
  6523. #u31405 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:120px;
  6527. top:50px;
  6528. width:200px;
  6529. height:1188px;
  6530. display:flex;
  6531. }
  6532. #u31405 .text {
  6533. position:absolute;
  6534. align-self:center;
  6535. padding:2px 2px 2px 2px;
  6536. box-sizing:border-box;
  6537. width:100%;
  6538. }
  6539. #u31405_text {
  6540. border-width:0px;
  6541. word-wrap:break-word;
  6542. text-transform:none;
  6543. visibility:hidden;
  6544. }
  6545. #u31406_div {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:0px;
  6549. top:0px;
  6550. width:200px;
  6551. height:60px;
  6552. background:inherit;
  6553. background-color:rgba(224, 231, 247, 1);
  6554. border:none;
  6555. border-radius:0px;
  6556. -moz-box-shadow:none;
  6557. -webkit-box-shadow:none;
  6558. box-shadow:none;
  6559. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6560. font-weight:500;
  6561. font-style:normal;
  6562. font-size:18px;
  6563. }
  6564. #u31406 {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:120px;
  6568. top:50px;
  6569. width:200px;
  6570. height:60px;
  6571. display:flex;
  6572. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6573. font-weight:500;
  6574. font-style:normal;
  6575. font-size:18px;
  6576. }
  6577. #u31406 .text {
  6578. position:absolute;
  6579. align-self:center;
  6580. padding:0px 0px 0px 20px;
  6581. box-sizing:border-box;
  6582. width:100%;
  6583. }
  6584. #u31406_text {
  6585. border-width:0px;
  6586. word-wrap:break-word;
  6587. text-transform:none;
  6588. }
  6589. #u31407_div {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:65px;
  6595. height:22px;
  6596. background:inherit;
  6597. background-color:rgba(255, 255, 255, 0);
  6598. border:none;
  6599. border-radius:0px;
  6600. -moz-box-shadow:none;
  6601. -webkit-box-shadow:none;
  6602. box-shadow:none;
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:16px;
  6607. }
  6608. #u31407 {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:147px;
  6612. top:346px;
  6613. width:65px;
  6614. height:22px;
  6615. display:flex;
  6616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6617. font-weight:400;
  6618. font-style:normal;
  6619. font-size:16px;
  6620. }
  6621. #u31407 .text {
  6622. position:absolute;
  6623. align-self:flex-start;
  6624. padding:0px 0px 0px 0px;
  6625. box-sizing:border-box;
  6626. width:100%;
  6627. }
  6628. #u31407_text {
  6629. border-width:0px;
  6630. white-space:nowrap;
  6631. text-transform:none;
  6632. }
  6633. #u31408_div {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:65px;
  6639. height:22px;
  6640. background:inherit;
  6641. background-color:rgba(255, 255, 255, 0);
  6642. border:none;
  6643. border-radius:0px;
  6644. -moz-box-shadow:none;
  6645. -webkit-box-shadow:none;
  6646. box-shadow:none;
  6647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:16px;
  6651. }
  6652. #u31408 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:147px;
  6656. top:388px;
  6657. width:65px;
  6658. height:22px;
  6659. display:flex;
  6660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:16px;
  6664. }
  6665. #u31408 .text {
  6666. position:absolute;
  6667. align-self:flex-start;
  6668. padding:0px 0px 0px 0px;
  6669. box-sizing:border-box;
  6670. width:100%;
  6671. }
  6672. #u31408_text {
  6673. border-width:0px;
  6674. white-space:nowrap;
  6675. text-transform:none;
  6676. }
  6677. #u31409_div {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:49px;
  6683. height:22px;
  6684. background:inherit;
  6685. background-color:rgba(255, 255, 255, 0);
  6686. border:none;
  6687. border-radius:0px;
  6688. -moz-box-shadow:none;
  6689. -webkit-box-shadow:none;
  6690. box-shadow:none;
  6691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6692. font-weight:400;
  6693. font-style:normal;
  6694. font-size:16px;
  6695. }
  6696. #u31409 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:147px;
  6700. top:499px;
  6701. width:49px;
  6702. height:22px;
  6703. display:flex;
  6704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:16px;
  6708. }
  6709. #u31409 .text {
  6710. position:absolute;
  6711. align-self:flex-start;
  6712. padding:0px 0px 0px 0px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u31409_text {
  6717. border-width:0px;
  6718. white-space:nowrap;
  6719. text-transform:none;
  6720. }
  6721. #u31410_div {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:65px;
  6727. height:22px;
  6728. background:inherit;
  6729. background-color:rgba(255, 255, 255, 0);
  6730. border:none;
  6731. border-radius:0px;
  6732. -moz-box-shadow:none;
  6733. -webkit-box-shadow:none;
  6734. box-shadow:none;
  6735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6736. font-weight:400;
  6737. font-style:normal;
  6738. font-size:16px;
  6739. }
  6740. #u31410 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:147px;
  6744. top:625px;
  6745. width:65px;
  6746. height:22px;
  6747. display:flex;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:16px;
  6752. }
  6753. #u31410 .text {
  6754. position:absolute;
  6755. align-self:flex-start;
  6756. padding:0px 0px 0px 0px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u31410_text {
  6761. border-width:0px;
  6762. white-space:nowrap;
  6763. text-transform:none;
  6764. }
  6765. #u31411_div {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:49px;
  6771. height:17px;
  6772. background:inherit;
  6773. background-color:rgba(255, 255, 255, 0);
  6774. border:none;
  6775. border-radius:0px;
  6776. -moz-box-shadow:none;
  6777. -webkit-box-shadow:none;
  6778. box-shadow:none;
  6779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6780. font-weight:400;
  6781. font-style:normal;
  6782. font-size:12px;
  6783. color:#AAAAAA;
  6784. }
  6785. #u31411 {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:147px;
  6789. top:270px;
  6790. width:49px;
  6791. height:17px;
  6792. display:flex;
  6793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6794. font-weight:400;
  6795. font-style:normal;
  6796. font-size:12px;
  6797. color:#AAAAAA;
  6798. }
  6799. #u31411 .text {
  6800. position:absolute;
  6801. align-self:flex-start;
  6802. padding:0px 0px 0px 0px;
  6803. box-sizing:border-box;
  6804. width:100%;
  6805. }
  6806. #u31411_text {
  6807. border-width:0px;
  6808. white-space:nowrap;
  6809. text-transform:none;
  6810. }
  6811. #u31412_img {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:0px;
  6815. top:0px;
  6816. width:201px;
  6817. height:2px;
  6818. }
  6819. #u31412 {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:120px;
  6823. top:440px;
  6824. width:200px;
  6825. height:1px;
  6826. display:flex;
  6827. }
  6828. #u31412 .text {
  6829. position:absolute;
  6830. align-self:center;
  6831. padding:2px 2px 2px 2px;
  6832. box-sizing:border-box;
  6833. width:100%;
  6834. }
  6835. #u31412_text {
  6836. border-width:0px;
  6837. word-wrap:break-word;
  6838. text-transform:none;
  6839. visibility:hidden;
  6840. }
  6841. #u31413_div {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:65px;
  6847. height:22px;
  6848. background:inherit;
  6849. background-color:rgba(255, 255, 255, 0);
  6850. border:none;
  6851. border-radius:0px;
  6852. -moz-box-shadow:none;
  6853. -webkit-box-shadow:none;
  6854. box-shadow:none;
  6855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. font-size:16px;
  6859. }
  6860. #u31413 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:147px;
  6864. top:583px;
  6865. width:65px;
  6866. height:22px;
  6867. display:flex;
  6868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6869. font-weight:400;
  6870. font-style:normal;
  6871. font-size:16px;
  6872. }
  6873. #u31413 .text {
  6874. position:absolute;
  6875. align-self:flex-start;
  6876. padding:0px 0px 0px 0px;
  6877. box-sizing:border-box;
  6878. width:100%;
  6879. }
  6880. #u31413_text {
  6881. border-width:0px;
  6882. white-space:nowrap;
  6883. text-transform:none;
  6884. }
  6885. #u31414_div {
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:0px;
  6889. top:0px;
  6890. width:65px;
  6891. height:22px;
  6892. background:inherit;
  6893. background-color:rgba(255, 255, 255, 0);
  6894. border:none;
  6895. border-radius:0px;
  6896. -moz-box-shadow:none;
  6897. -webkit-box-shadow:none;
  6898. box-shadow:none;
  6899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6900. font-weight:400;
  6901. font-style:normal;
  6902. font-size:16px;
  6903. }
  6904. #u31414 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:147px;
  6908. top:667px;
  6909. width:65px;
  6910. height:22px;
  6911. display:flex;
  6912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:16px;
  6916. }
  6917. #u31414 .text {
  6918. position:absolute;
  6919. align-self:flex-start;
  6920. padding:0px 0px 0px 0px;
  6921. box-sizing:border-box;
  6922. width:100%;
  6923. }
  6924. #u31414_text {
  6925. border-width:0px;
  6926. white-space:nowrap;
  6927. text-transform:none;
  6928. }
  6929. #u31415_div {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:49px;
  6935. height:17px;
  6936. background:inherit;
  6937. background-color:rgba(255, 255, 255, 0);
  6938. border:none;
  6939. border-radius:0px;
  6940. -moz-box-shadow:none;
  6941. -webkit-box-shadow:none;
  6942. box-shadow:none;
  6943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6944. font-weight:400;
  6945. font-style:normal;
  6946. font-size:12px;
  6947. color:#AAAAAA;
  6948. }
  6949. #u31415 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:147px;
  6953. top:462px;
  6954. width:49px;
  6955. height:17px;
  6956. display:flex;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:12px;
  6961. color:#AAAAAA;
  6962. }
  6963. #u31415 .text {
  6964. position:absolute;
  6965. align-self:flex-start;
  6966. padding:0px 0px 0px 0px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u31415_text {
  6971. border-width:0px;
  6972. white-space:nowrap;
  6973. text-transform:none;
  6974. }
  6975. #u31416_div {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:0px;
  6979. top:0px;
  6980. width:65px;
  6981. height:22px;
  6982. background:inherit;
  6983. background-color:rgba(255, 255, 255, 0);
  6984. border:none;
  6985. border-radius:0px;
  6986. -moz-box-shadow:none;
  6987. -webkit-box-shadow:none;
  6988. box-shadow:none;
  6989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6990. font-weight:400;
  6991. font-style:normal;
  6992. font-size:16px;
  6993. }
  6994. #u31416 {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:147px;
  6998. top:166px;
  6999. width:65px;
  7000. height:22px;
  7001. display:flex;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:16px;
  7006. }
  7007. #u31416 .text {
  7008. position:absolute;
  7009. align-self:flex-start;
  7010. padding:0px 0px 0px 0px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u31416_text {
  7015. border-width:0px;
  7016. white-space:nowrap;
  7017. text-transform:none;
  7018. }
  7019. #u31417_div {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:65px;
  7025. height:22px;
  7026. background:inherit;
  7027. background-color:rgba(255, 255, 255, 0);
  7028. border:none;
  7029. border-radius:0px;
  7030. -moz-box-shadow:none;
  7031. -webkit-box-shadow:none;
  7032. box-shadow:none;
  7033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7034. font-weight:400;
  7035. font-style:normal;
  7036. font-size:16px;
  7037. }
  7038. #u31417 {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:147px;
  7042. top:304px;
  7043. width:65px;
  7044. height:22px;
  7045. display:flex;
  7046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. font-size:16px;
  7050. }
  7051. #u31417 .text {
  7052. position:absolute;
  7053. align-self:flex-start;
  7054. padding:0px 0px 0px 0px;
  7055. box-sizing:border-box;
  7056. width:100%;
  7057. }
  7058. #u31417_text {
  7059. border-width:0px;
  7060. white-space:nowrap;
  7061. text-transform:none;
  7062. }
  7063. #u31418_div {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:0px;
  7067. top:0px;
  7068. width:49px;
  7069. height:17px;
  7070. background:inherit;
  7071. background-color:rgba(255, 255, 255, 0);
  7072. border:none;
  7073. border-radius:0px;
  7074. -moz-box-shadow:none;
  7075. -webkit-box-shadow:none;
  7076. box-shadow:none;
  7077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. font-size:12px;
  7081. color:#AAAAAA;
  7082. }
  7083. #u31418 {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:147px;
  7087. top:130px;
  7088. width:49px;
  7089. height:17px;
  7090. display:flex;
  7091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7092. font-weight:400;
  7093. font-style:normal;
  7094. font-size:12px;
  7095. color:#AAAAAA;
  7096. }
  7097. #u31418 .text {
  7098. position:absolute;
  7099. align-self:flex-start;
  7100. padding:0px 0px 0px 0px;
  7101. box-sizing:border-box;
  7102. width:100%;
  7103. }
  7104. #u31418_text {
  7105. border-width:0px;
  7106. white-space:nowrap;
  7107. text-transform:none;
  7108. }
  7109. #u31419_img {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:0px;
  7113. top:0px;
  7114. width:201px;
  7115. height:2px;
  7116. }
  7117. #u31419 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:120px;
  7121. top:249px;
  7122. width:200px;
  7123. height:1px;
  7124. display:flex;
  7125. }
  7126. #u31419 .text {
  7127. position:absolute;
  7128. align-self:center;
  7129. padding:2px 2px 2px 2px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u31419_text {
  7134. border-width:0px;
  7135. word-wrap:break-word;
  7136. text-transform:none;
  7137. visibility:hidden;
  7138. }
  7139. #u31420_div {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:65px;
  7145. height:22px;
  7146. background:inherit;
  7147. background-color:rgba(255, 255, 255, 0);
  7148. border:none;
  7149. border-radius:0px;
  7150. -moz-box-shadow:none;
  7151. -webkit-box-shadow:none;
  7152. box-shadow:none;
  7153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7154. font-weight:400;
  7155. font-style:normal;
  7156. font-size:16px;
  7157. }
  7158. #u31420 {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:147px;
  7162. top:206px;
  7163. width:65px;
  7164. height:22px;
  7165. display:flex;
  7166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. font-size:16px;
  7170. }
  7171. #u31420 .text {
  7172. position:absolute;
  7173. align-self:flex-start;
  7174. padding:0px 0px 0px 0px;
  7175. box-sizing:border-box;
  7176. width:100%;
  7177. }
  7178. #u31420_text {
  7179. border-width:0px;
  7180. white-space:nowrap;
  7181. text-transform:none;
  7182. }
  7183. #u31421_div {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:0px;
  7187. top:0px;
  7188. width:65px;
  7189. height:22px;
  7190. background:inherit;
  7191. background-color:rgba(255, 255, 255, 0);
  7192. border:none;
  7193. border-radius:0px;
  7194. -moz-box-shadow:none;
  7195. -webkit-box-shadow:none;
  7196. box-shadow:none;
  7197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7198. font-weight:400;
  7199. font-style:normal;
  7200. font-size:16px;
  7201. }
  7202. #u31421 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:147px;
  7206. top:541px;
  7207. width:65px;
  7208. height:22px;
  7209. display:flex;
  7210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7211. font-weight:400;
  7212. font-style:normal;
  7213. font-size:16px;
  7214. }
  7215. #u31421 .text {
  7216. position:absolute;
  7217. align-self:flex-start;
  7218. padding:0px 0px 0px 0px;
  7219. box-sizing:border-box;
  7220. width:100%;
  7221. }
  7222. #u31421_text {
  7223. border-width:0px;
  7224. white-space:nowrap;
  7225. text-transform:none;
  7226. }
  7227. #u31422_div {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:239px;
  7233. height:20px;
  7234. background:inherit;
  7235. background-color:rgba(255, 255, 255, 0);
  7236. border:none;
  7237. border-left:0px;
  7238. border-top:0px;
  7239. border-right:0px;
  7240. border-radius:0px;
  7241. border-bottom-right-radius:0px;
  7242. border-bottom-left-radius:0px;
  7243. -moz-box-shadow:none;
  7244. -webkit-box-shadow:none;
  7245. box-shadow:none;
  7246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7247. font-weight:400;
  7248. font-style:normal;
  7249. font-size:14px;
  7250. color:#7F7F7F;
  7251. }
  7252. #u31422 {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:352px;
  7256. top:100px;
  7257. width:239px;
  7258. height:20px;
  7259. display:flex;
  7260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7261. font-weight:400;
  7262. font-style:normal;
  7263. font-size:14px;
  7264. color:#7F7F7F;
  7265. }
  7266. #u31422 .text {
  7267. position:absolute;
  7268. align-self:center;
  7269. padding:0px 0px 0px 0px;
  7270. box-sizing:border-box;
  7271. width:100%;
  7272. }
  7273. #u31422_text {
  7274. border-width:0px;
  7275. white-space:nowrap;
  7276. text-transform:none;
  7277. }
  7278. #u31423 {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:0px;
  7282. top:0px;
  7283. width:0px;
  7284. height:0px;
  7285. }
  7286. #u31424_div {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:160px;
  7292. height:30px;
  7293. background:inherit;
  7294. background-color:rgba(255, 255, 255, 1);
  7295. box-sizing:border-box;
  7296. border-width:1px;
  7297. border-style:solid;
  7298. border-color:rgba(215, 215, 215, 1);
  7299. border-radius:4px;
  7300. -moz-box-shadow:none;
  7301. -webkit-box-shadow:none;
  7302. box-shadow:none;
  7303. font-size:14px;
  7304. }
  7305. #u31424 {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:1193px;
  7309. top:423px;
  7310. width:160px;
  7311. height:30px;
  7312. display:flex;
  7313. font-size:14px;
  7314. }
  7315. #u31424 .text {
  7316. position:absolute;
  7317. align-self:center;
  7318. padding:2px 2px 2px 2px;
  7319. box-sizing:border-box;
  7320. width:100%;
  7321. }
  7322. #u31424_text {
  7323. border-width:0px;
  7324. word-wrap:break-word;
  7325. text-transform:none;
  7326. visibility:hidden;
  7327. }
  7328. #u31425_input {
  7329. position:absolute;
  7330. left:0px;
  7331. top:0px;
  7332. width:153px;
  7333. height:23px;
  7334. padding:2px 2px 2px 2px;
  7335. font-family:'ArialMT', 'Arial', sans-serif;
  7336. font-weight:400;
  7337. font-style:normal;
  7338. font-size:14px;
  7339. letter-spacing:normal;
  7340. color:#AAAAAA;
  7341. vertical-align:none;
  7342. text-align:left;
  7343. text-transform:none;
  7344. background-color:transparent;
  7345. border-color:transparent;
  7346. }
  7347. #u31425_input.disabled {
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:153px;
  7352. height:23px;
  7353. padding:2px 2px 2px 2px;
  7354. font-family:'ArialMT', 'Arial', sans-serif;
  7355. font-weight:400;
  7356. font-style:normal;
  7357. font-size:14px;
  7358. letter-spacing:normal;
  7359. color:#AAAAAA;
  7360. vertical-align:none;
  7361. text-align:left;
  7362. text-transform:none;
  7363. background-color:transparent;
  7364. border-color:transparent;
  7365. }
  7366. #u31425_div {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:153px;
  7372. height:23px;
  7373. background:inherit;
  7374. background-color:rgba(255, 255, 255, 1);
  7375. border:none;
  7376. border-radius:0px;
  7377. -moz-box-shadow:none;
  7378. -webkit-box-shadow:none;
  7379. box-shadow:none;
  7380. font-size:14px;
  7381. color:#AAAAAA;
  7382. }
  7383. #u31425 {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:1198px;
  7387. top:425px;
  7388. width:153px;
  7389. height:23px;
  7390. display:flex;
  7391. font-size:14px;
  7392. color:#AAAAAA;
  7393. }
  7394. #u31425 .text {
  7395. position:absolute;
  7396. align-self:flex-start;
  7397. padding:2px 2px 2px 2px;
  7398. box-sizing:border-box;
  7399. width:100%;
  7400. }
  7401. #u31425_div.disabled {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:153px;
  7407. height:23px;
  7408. background:inherit;
  7409. background-color:rgba(240, 240, 240, 1);
  7410. border:none;
  7411. border-radius:0px;
  7412. -moz-box-shadow:none;
  7413. -webkit-box-shadow:none;
  7414. box-shadow:none;
  7415. font-size:14px;
  7416. color:#AAAAAA;
  7417. }
  7418. #u31425.disabled {
  7419. }
  7420. .u31425_input_option {
  7421. font-size:14px;
  7422. }
  7423. #u31426_div {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:147px;
  7429. height:20px;
  7430. background:inherit;
  7431. background-color:rgba(255, 255, 255, 0);
  7432. border:none;
  7433. border-left:0px;
  7434. border-top:0px;
  7435. border-right:0px;
  7436. border-radius:0px;
  7437. border-bottom-right-radius:0px;
  7438. border-bottom-left-radius:0px;
  7439. -moz-box-shadow:none;
  7440. -webkit-box-shadow:none;
  7441. box-shadow:none;
  7442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:14px;
  7446. color:#D9001B;
  7447. }
  7448. #u31426 {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:687px;
  7452. top:423px;
  7453. width:147px;
  7454. height:20px;
  7455. display:flex;
  7456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7457. font-weight:400;
  7458. font-style:normal;
  7459. font-size:14px;
  7460. color:#D9001B;
  7461. }
  7462. #u31426 .text {
  7463. position:absolute;
  7464. align-self:center;
  7465. padding:0px 0px 0px 0px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u31426_text {
  7470. border-width:0px;
  7471. white-space:nowrap;
  7472. text-transform:none;
  7473. }
  7474. #u31427_div {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:0px;
  7479. width:452px;
  7480. height:60px;
  7481. background:inherit;
  7482. background-color:rgba(255, 255, 255, 0);
  7483. border:none;
  7484. border-left:0px;
  7485. border-top:0px;
  7486. border-right:0px;
  7487. border-radius:0px;
  7488. border-bottom-right-radius:0px;
  7489. border-bottom-left-radius:0px;
  7490. -moz-box-shadow:none;
  7491. -webkit-box-shadow:none;
  7492. box-shadow:none;
  7493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7494. font-weight:400;
  7495. font-style:normal;
  7496. font-size:14px;
  7497. color:#D9001B;
  7498. }
  7499. #u31427 {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:689px;
  7503. top:687px;
  7504. width:452px;
  7505. height:60px;
  7506. display:flex;
  7507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7508. font-weight:400;
  7509. font-style:normal;
  7510. font-size:14px;
  7511. color:#D9001B;
  7512. }
  7513. #u31427 .text {
  7514. position:absolute;
  7515. align-self:center;
  7516. padding:0px 0px 0px 0px;
  7517. box-sizing:border-box;
  7518. width:100%;
  7519. }
  7520. #u31427_text {
  7521. border-width:0px;
  7522. white-space:nowrap;
  7523. text-transform:none;
  7524. }