styles.css 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2409px;
  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. #u14985_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. #u14985 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u14985 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u14985_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u14986_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. #u14986 {
  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. #u14986 .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. #u14986_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u14987_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. #u14987 {
  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. #u14987 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u14987_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u14988 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u14989_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u14989 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u14989 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u14989_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u14990_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. #u14990 {
  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. #u14990 .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. #u14990_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u14991_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. #u14991 {
  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. #u14991 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u14991_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u14992 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u14993_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. #u14993 {
  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. #u14993 .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. #u14993_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u14994_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u14994 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u14994 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u14994_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u14995 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u14996_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. #u14996 {
  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. #u14996 .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. #u14996_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u14997_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u14997 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u14997 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u14997_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u14998 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u14999_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. #u14999 {
  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. #u14999 .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. #u14999_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u15000_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u15000 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u15000 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u15000_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u15001 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u15002_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. #u15002 {
  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. #u15002 .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. #u15002_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u15003_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u15003 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u15003 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u15003_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u15004 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u15005_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. #u15005 {
  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. #u15005 .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. #u15005_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u15006_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u15006 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u15006 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u15006_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u15007 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u15008_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. #u15008 {
  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. #u15008 .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. #u15008_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u15009_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u15009 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u15009 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u15009_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u15010 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u15011_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. #u15011 {
  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. #u15011 .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. #u15011_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u15012_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u15012 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u15012 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u15012_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u15013 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u15014_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. #u15014 {
  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. #u15014 .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. #u15014_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u15015_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u15015 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u15015 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u15015_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u15016 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u15017_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. #u15017 {
  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. #u15017 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u15017_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u15018_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u15018 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u15018 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u15018_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u15019 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u15020_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. #u15020 {
  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. #u15020 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u15020_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u15021_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u15021 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u15021 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u15021_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u15022 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u15023_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. #u15023 {
  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. #u15023 .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. #u15023_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u15024_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u15024 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u15024 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u15024_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u15025 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u15026_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. #u15026_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. #u15026_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. #u15026 {
  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. #u15026 .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. #u15026_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. #u15026.disabled {
  1276. }
  1277. .u15026_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u15027_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u15027 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u15027 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u15027_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u15028_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. #u15028 {
  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. #u15028 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u15028_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u15029_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u15029 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u15029 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u15029_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u15030 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u15031_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. #u15031 {
  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. #u15031 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u15031_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u15032_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u15032 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u15032 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u15032_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u15033_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u15033 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u15033 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u15033_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u15034_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u15034 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u15034 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u15034_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u15035_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u15035 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u15035 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u15035_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u15036 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u15037_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. #u15037 {
  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. #u15037 .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. #u15037_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u15038_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u15038 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u15038 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u15038_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u15039_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1265px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1654. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1655. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1656. color:#1890FF;
  1657. }
  1658. #u15039 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:329px;
  1662. top:50px;
  1663. width:1265px;
  1664. height:1180px;
  1665. display:flex;
  1666. color:#1890FF;
  1667. }
  1668. #u15039 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u15039_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u15040_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:91px;
  1687. height:50px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 0);
  1690. border:none;
  1691. border-left:0px;
  1692. border-top:0px;
  1693. border-right:0px;
  1694. border-radius:0px;
  1695. border-bottom-right-radius:0px;
  1696. border-bottom-left-radius:0px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1701. font-weight:400;
  1702. font-style:normal;
  1703. font-size:18px;
  1704. line-height:40px;
  1705. }
  1706. #u15040 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:349px;
  1710. top:50px;
  1711. width:91px;
  1712. height:50px;
  1713. display:flex;
  1714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:18px;
  1718. line-height:40px;
  1719. }
  1720. #u15040 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:0px 0px 0px 0px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u15040_text {
  1728. border-width:0px;
  1729. white-space:nowrap;
  1730. text-transform:none;
  1731. }
  1732. #u15041_div {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:59px;
  1738. height:30px;
  1739. background:inherit;
  1740. background-color:rgba(24, 144, 255, 1);
  1741. box-sizing:border-box;
  1742. border-width:1px;
  1743. border-style:solid;
  1744. border-color:rgba(0, 153, 255, 1);
  1745. border-radius:4px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:14px;
  1753. color:#FFFFFF;
  1754. }
  1755. #u15041 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:360px;
  1759. top:195px;
  1760. width:59px;
  1761. height:30px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:14px;
  1767. color:#FFFFFF;
  1768. }
  1769. #u15041 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:5px 15px 5px 15px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u15041_text {
  1777. border-width:0px;
  1778. white-space:nowrap;
  1779. text-transform:none;
  1780. }
  1781. #u15042 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:0px;
  1787. height:0px;
  1788. }
  1789. #u15043_div {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:59px;
  1795. height:30px;
  1796. background:inherit;
  1797. background-color:rgba(24, 144, 255, 1);
  1798. box-sizing:border-box;
  1799. border-width:1px;
  1800. border-style:solid;
  1801. border-color:rgba(0, 153, 255, 1);
  1802. border-radius:4px;
  1803. -moz-box-shadow:none;
  1804. -webkit-box-shadow:none;
  1805. box-shadow:none;
  1806. font-family:'Microsoft YaHei', sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:14px;
  1810. color:#FFFFFF;
  1811. }
  1812. #u15043 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:1113px;
  1816. top:144px;
  1817. width:59px;
  1818. height:30px;
  1819. display:flex;
  1820. font-family:'Microsoft YaHei', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:14px;
  1824. color:#FFFFFF;
  1825. }
  1826. #u15043 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:5px 15px 5px 15px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u15043_text {
  1834. border-width:0px;
  1835. white-space:nowrap;
  1836. text-transform:none;
  1837. }
  1838. #u15044_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:55px;
  1844. height:30px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 1);
  1847. box-sizing:border-box;
  1848. border-width:1px;
  1849. border-style:solid;
  1850. border-color:rgba(170, 170, 170, 1);
  1851. border-radius:4px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. color:#555555;
  1860. }
  1861. #u15044 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:1182px;
  1865. top:144px;
  1866. width:55px;
  1867. height:30px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. color:#555555;
  1874. }
  1875. #u15044 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:5px 15px 5px 15px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u15044_text {
  1883. border-width:0px;
  1884. white-space:nowrap;
  1885. text-transform:none;
  1886. }
  1887. #u15045_div {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:59px;
  1893. height:30px;
  1894. background:inherit;
  1895. background-color:rgba(255, 255, 255, 1);
  1896. box-sizing:border-box;
  1897. border-width:1px;
  1898. border-style:solid;
  1899. border-color:rgba(170, 170, 170, 1);
  1900. border-radius:4px;
  1901. -moz-box-shadow:none;
  1902. -webkit-box-shadow:none;
  1903. box-shadow:none;
  1904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1905. font-weight:400;
  1906. font-style:normal;
  1907. font-size:14px;
  1908. color:#555555;
  1909. }
  1910. #u15045 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:429px;
  1914. top:195px;
  1915. width:59px;
  1916. height:30px;
  1917. display:flex;
  1918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:14px;
  1922. color:#555555;
  1923. }
  1924. #u15045 .text {
  1925. position:absolute;
  1926. align-self:center;
  1927. padding:5px 15px 5px 15px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u15045_text {
  1932. border-width:0px;
  1933. white-space:nowrap;
  1934. text-transform:none;
  1935. }
  1936. #u15046 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:0px;
  1942. height:0px;
  1943. }
  1944. #u15047_div {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:140px;
  1950. height:30px;
  1951. background:inherit;
  1952. background-color:rgba(255, 255, 255, 1);
  1953. box-sizing:border-box;
  1954. border-width:1px;
  1955. border-style:solid;
  1956. border-color:rgba(215, 215, 215, 1);
  1957. border-radius:4px;
  1958. -moz-box-shadow:none;
  1959. -webkit-box-shadow:none;
  1960. box-shadow:none;
  1961. font-size:11px;
  1962. }
  1963. #u15047 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:513px;
  1967. top:145px;
  1968. width:140px;
  1969. height:30px;
  1970. display:flex;
  1971. font-size:11px;
  1972. }
  1973. #u15047 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u15047_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. visibility:hidden;
  1985. }
  1986. #u15048_input {
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:126px;
  1991. height:23px;
  1992. padding:2px 2px 2px 2px;
  1993. font-family:'ArialMT', 'Arial', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:11px;
  1997. letter-spacing:normal;
  1998. color:#AAAAAA;
  1999. vertical-align:none;
  2000. text-align:left;
  2001. text-transform:none;
  2002. background-color:transparent;
  2003. border-color:transparent;
  2004. }
  2005. #u15048_input.disabled {
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:126px;
  2010. height:23px;
  2011. padding:2px 2px 2px 2px;
  2012. font-family:'ArialMT', 'Arial', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:11px;
  2016. letter-spacing:normal;
  2017. color:#AAAAAA;
  2018. vertical-align:none;
  2019. text-align:left;
  2020. text-transform:none;
  2021. background-color:transparent;
  2022. border-color:transparent;
  2023. }
  2024. #u15048_div {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:0px;
  2028. top:0px;
  2029. width:126px;
  2030. height:23px;
  2031. background:inherit;
  2032. background-color:rgba(255, 255, 255, 1);
  2033. border:none;
  2034. border-radius:0px;
  2035. -moz-box-shadow:none;
  2036. -webkit-box-shadow:none;
  2037. box-shadow:none;
  2038. font-size:11px;
  2039. color:#AAAAAA;
  2040. }
  2041. #u15048 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:520px;
  2045. top:147px;
  2046. width:126px;
  2047. height:23px;
  2048. display:flex;
  2049. font-size:11px;
  2050. color:#AAAAAA;
  2051. }
  2052. #u15048 .text {
  2053. position:absolute;
  2054. align-self:flex-start;
  2055. padding:2px 2px 2px 2px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u15048_div.disabled {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:126px;
  2065. height:23px;
  2066. background:inherit;
  2067. background-color:rgba(240, 240, 240, 1);
  2068. border:none;
  2069. border-radius:0px;
  2070. -moz-box-shadow:none;
  2071. -webkit-box-shadow:none;
  2072. box-shadow:none;
  2073. font-size:11px;
  2074. color:#AAAAAA;
  2075. }
  2076. #u15048.disabled {
  2077. }
  2078. .u15048_input_option {
  2079. font-size:11px;
  2080. }
  2081. #u15049 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:0px;
  2087. height:0px;
  2088. }
  2089. #u15050_div {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:0px;
  2093. top:0px;
  2094. width:140px;
  2095. height:30px;
  2096. background:inherit;
  2097. background-color:rgba(255, 255, 255, 1);
  2098. box-sizing:border-box;
  2099. border-width:1px;
  2100. border-style:solid;
  2101. border-color:rgba(201, 201, 201, 1);
  2102. border-radius:4px;
  2103. -moz-box-shadow:none;
  2104. -webkit-box-shadow:none;
  2105. box-shadow:none;
  2106. font-family:'Microsoft YaHei', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:14px;
  2110. color:#CCCCCC;
  2111. text-align:left;
  2112. }
  2113. #u15050 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:813px;
  2117. top:143px;
  2118. width:140px;
  2119. height:30px;
  2120. display:flex;
  2121. font-family:'Microsoft YaHei', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:14px;
  2125. color:#CCCCCC;
  2126. text-align:left;
  2127. }
  2128. #u15050 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 8px 2px 8px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u15050_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u15051_input {
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:127px;
  2146. height:25px;
  2147. padding:2px 2px 2px 2px;
  2148. font-family:'Microsoft YaHei', sans-serif;
  2149. font-weight:400;
  2150. font-style:normal;
  2151. font-size:10px;
  2152. letter-spacing:normal;
  2153. color:#000000;
  2154. vertical-align:none;
  2155. text-align:left;
  2156. text-transform:none;
  2157. background-color:transparent;
  2158. border-color:transparent;
  2159. }
  2160. #u15051_input.disabled {
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:127px;
  2165. height:25px;
  2166. padding:2px 2px 2px 2px;
  2167. font-family:'Microsoft YaHei', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:10px;
  2171. letter-spacing:normal;
  2172. color:#000000;
  2173. vertical-align:none;
  2174. text-align:left;
  2175. text-transform:none;
  2176. background-color:transparent;
  2177. border-color:transparent;
  2178. }
  2179. #u15051_div {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:0px;
  2183. top:0px;
  2184. width:127px;
  2185. height:25px;
  2186. background:inherit;
  2187. background-color:rgba(255, 255, 255, 1);
  2188. border:none;
  2189. border-radius:0px;
  2190. -moz-box-shadow:none;
  2191. -webkit-box-shadow:none;
  2192. box-shadow:none;
  2193. font-family:'Microsoft YaHei', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:10px;
  2197. }
  2198. #u15051 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:821px;
  2202. top:144px;
  2203. width:127px;
  2204. height:25px;
  2205. display:flex;
  2206. font-family:'Microsoft YaHei', sans-serif;
  2207. font-weight:400;
  2208. font-style:normal;
  2209. font-size:10px;
  2210. }
  2211. #u15051 .text {
  2212. position:absolute;
  2213. align-self:center;
  2214. padding:2px 2px 2px 2px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u15051_div.disabled {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:127px;
  2224. height:25px;
  2225. background:inherit;
  2226. background-color:rgba(240, 240, 240, 1);
  2227. border:none;
  2228. border-radius:0px;
  2229. -moz-box-shadow:none;
  2230. -webkit-box-shadow:none;
  2231. box-shadow:none;
  2232. font-family:'Microsoft YaHei', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:10px;
  2236. }
  2237. #u15051.disabled {
  2238. }
  2239. #u15052 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:0px;
  2245. height:0px;
  2246. }
  2247. #u15053_div {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:140px;
  2253. height:30px;
  2254. background:inherit;
  2255. background-color:rgba(255, 255, 255, 1);
  2256. box-sizing:border-box;
  2257. border-width:1px;
  2258. border-style:solid;
  2259. border-color:rgba(201, 201, 201, 1);
  2260. border-radius:4px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. font-family:'Microsoft YaHei', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:14px;
  2268. color:#CCCCCC;
  2269. text-align:left;
  2270. }
  2271. #u15053 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:963px;
  2275. top:143px;
  2276. width:140px;
  2277. height:30px;
  2278. display:flex;
  2279. font-family:'Microsoft YaHei', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:14px;
  2283. color:#CCCCCC;
  2284. text-align:left;
  2285. }
  2286. #u15053 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 8px 2px 8px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u15053_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. visibility:hidden;
  2298. }
  2299. #u15054_input {
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:127px;
  2304. height:25px;
  2305. padding:2px 2px 2px 2px;
  2306. font-family:'Microsoft YaHei', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:10px;
  2310. letter-spacing:normal;
  2311. color:#000000;
  2312. vertical-align:none;
  2313. text-align:left;
  2314. text-transform:none;
  2315. background-color:transparent;
  2316. border-color:transparent;
  2317. }
  2318. #u15054_input.disabled {
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:127px;
  2323. height:25px;
  2324. padding:2px 2px 2px 2px;
  2325. font-family:'Microsoft YaHei', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:10px;
  2329. letter-spacing:normal;
  2330. color:#000000;
  2331. vertical-align:none;
  2332. text-align:left;
  2333. text-transform:none;
  2334. background-color:transparent;
  2335. border-color:transparent;
  2336. }
  2337. #u15054_div {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:0px;
  2341. top:0px;
  2342. width:127px;
  2343. height:25px;
  2344. background:inherit;
  2345. background-color:rgba(255, 255, 255, 1);
  2346. border:none;
  2347. border-radius:0px;
  2348. -moz-box-shadow:none;
  2349. -webkit-box-shadow:none;
  2350. box-shadow:none;
  2351. font-family:'Microsoft YaHei', sans-serif;
  2352. font-weight:400;
  2353. font-style:normal;
  2354. font-size:10px;
  2355. }
  2356. #u15054 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:971px;
  2360. top:144px;
  2361. width:127px;
  2362. height:25px;
  2363. display:flex;
  2364. font-family:'Microsoft YaHei', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:10px;
  2368. }
  2369. #u15054 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 2px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u15054_div.disabled {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:127px;
  2382. height:25px;
  2383. background:inherit;
  2384. background-color:rgba(240, 240, 240, 1);
  2385. border:none;
  2386. border-radius:0px;
  2387. -moz-box-shadow:none;
  2388. -webkit-box-shadow:none;
  2389. box-shadow:none;
  2390. font-family:'Microsoft YaHei', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:10px;
  2394. }
  2395. #u15054.disabled {
  2396. }
  2397. #u15055 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:0px;
  2403. height:0px;
  2404. }
  2405. #u15056_div {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:140px;
  2411. height:30px;
  2412. background:inherit;
  2413. background-color:rgba(255, 255, 255, 1);
  2414. box-sizing:border-box;
  2415. border-width:1px;
  2416. border-style:solid;
  2417. border-color:rgba(215, 215, 215, 1);
  2418. border-radius:4px;
  2419. -moz-box-shadow:none;
  2420. -webkit-box-shadow:none;
  2421. box-shadow:none;
  2422. font-size:11px;
  2423. }
  2424. #u15056 {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:356px;
  2428. top:145px;
  2429. width:140px;
  2430. height:30px;
  2431. display:flex;
  2432. font-size:11px;
  2433. }
  2434. #u15056 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 2px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u15056_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u15057_input {
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:126px;
  2452. height:23px;
  2453. padding:2px 2px 2px 2px;
  2454. font-family:'ArialMT', 'Arial', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:11px;
  2458. letter-spacing:normal;
  2459. color:#AAAAAA;
  2460. vertical-align:none;
  2461. text-align:left;
  2462. text-transform:none;
  2463. background-color:transparent;
  2464. border-color:transparent;
  2465. }
  2466. #u15057_input.disabled {
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:126px;
  2471. height:23px;
  2472. padding:2px 2px 2px 2px;
  2473. font-family:'ArialMT', 'Arial', sans-serif;
  2474. font-weight:400;
  2475. font-style:normal;
  2476. font-size:11px;
  2477. letter-spacing:normal;
  2478. color:#AAAAAA;
  2479. vertical-align:none;
  2480. text-align:left;
  2481. text-transform:none;
  2482. background-color:transparent;
  2483. border-color:transparent;
  2484. }
  2485. #u15057_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:126px;
  2491. height:23px;
  2492. background:inherit;
  2493. background-color:rgba(255, 255, 255, 1);
  2494. border:none;
  2495. border-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. font-size:11px;
  2500. color:#AAAAAA;
  2501. }
  2502. #u15057 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:363px;
  2506. top:147px;
  2507. width:126px;
  2508. height:23px;
  2509. display:flex;
  2510. font-size:11px;
  2511. color:#AAAAAA;
  2512. }
  2513. #u15057 .text {
  2514. position:absolute;
  2515. align-self:flex-start;
  2516. padding:2px 2px 2px 2px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u15057_div.disabled {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:126px;
  2526. height:23px;
  2527. background:inherit;
  2528. background-color:rgba(240, 240, 240, 1);
  2529. border:none;
  2530. border-radius:0px;
  2531. -moz-box-shadow:none;
  2532. -webkit-box-shadow:none;
  2533. box-shadow:none;
  2534. font-size:11px;
  2535. color:#AAAAAA;
  2536. }
  2537. #u15057.disabled {
  2538. }
  2539. .u15057_input_option {
  2540. font-size:11px;
  2541. }
  2542. #u15058 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:356px;
  2546. top:235px;
  2547. width:1211px;
  2548. height:328px;
  2549. }
  2550. #u15059_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:148px;
  2556. height:44px;
  2557. }
  2558. #u15059 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:148px;
  2564. height:44px;
  2565. display:flex;
  2566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:12px;
  2570. color:#FFFFFF;
  2571. }
  2572. #u15059 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 0px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u15059_text {
  2580. border-width:0px;
  2581. word-wrap:break-word;
  2582. text-transform:none;
  2583. }
  2584. #u15060_img {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:148px;
  2590. height:44px;
  2591. }
  2592. #u15060 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:148px;
  2596. top:0px;
  2597. width:148px;
  2598. height:44px;
  2599. display:flex;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:12px;
  2604. color:#FFFFFF;
  2605. }
  2606. #u15060 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 2px 2px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u15060_text {
  2614. border-width:0px;
  2615. word-wrap:break-word;
  2616. text-transform:none;
  2617. }
  2618. #u15061_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:143px;
  2624. height:44px;
  2625. }
  2626. #u15061 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:296px;
  2630. top:0px;
  2631. width:143px;
  2632. height:44px;
  2633. display:flex;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:12px;
  2638. color:#FFFFFF;
  2639. }
  2640. #u15061 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u15061_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. }
  2652. #u15062_img {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:130px;
  2658. height:44px;
  2659. }
  2660. #u15062 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:439px;
  2664. top:0px;
  2665. width:130px;
  2666. height:44px;
  2667. display:flex;
  2668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:12px;
  2672. color:#FFFFFF;
  2673. }
  2674. #u15062 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 2px 2px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u15062_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. }
  2686. #u15063_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:141px;
  2692. height:44px;
  2693. }
  2694. #u15063 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:569px;
  2698. top:0px;
  2699. width:141px;
  2700. height:44px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:12px;
  2706. color:#FFFFFF;
  2707. }
  2708. #u15063 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u15063_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. }
  2720. #u15064_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:130px;
  2726. height:44px;
  2727. }
  2728. #u15064 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:710px;
  2732. top:0px;
  2733. width:130px;
  2734. height:44px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:12px;
  2740. color:#FFFFFF;
  2741. }
  2742. #u15064 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u15064_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. }
  2754. #u15065_img {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:130px;
  2760. height:44px;
  2761. }
  2762. #u15065 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:840px;
  2766. top:0px;
  2767. width:130px;
  2768. height:44px;
  2769. display:flex;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:12px;
  2774. color:#FFFFFF;
  2775. }
  2776. #u15065 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 0px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u15065_text {
  2784. border-width:0px;
  2785. word-wrap:break-word;
  2786. text-transform:none;
  2787. }
  2788. #u15066_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:130px;
  2794. height:44px;
  2795. }
  2796. #u15066 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:970px;
  2800. top:0px;
  2801. width:130px;
  2802. height:44px;
  2803. display:flex;
  2804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2805. font-weight:400;
  2806. font-style:normal;
  2807. font-size:12px;
  2808. color:#FFFFFF;
  2809. }
  2810. #u15066 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 0px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u15066_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. }
  2822. #u15067_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:111px;
  2828. height:44px;
  2829. }
  2830. #u15067 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:1100px;
  2834. top:0px;
  2835. width:111px;
  2836. height:44px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:12px;
  2842. color:#FFFFFF;
  2843. }
  2844. #u15067 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 0px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u15067_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. }
  2856. #u15068_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:148px;
  2862. height:38px;
  2863. }
  2864. #u15068 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:44px;
  2869. width:148px;
  2870. height:38px;
  2871. display:flex;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:12px;
  2876. color:#333333;
  2877. }
  2878. #u15068 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 2px 2px 0px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u15068_text {
  2886. border-width:0px;
  2887. word-wrap:break-word;
  2888. text-transform:none;
  2889. visibility:hidden;
  2890. }
  2891. #u15069_img {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:148px;
  2897. height:38px;
  2898. }
  2899. #u15069 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:148px;
  2903. top:44px;
  2904. width:148px;
  2905. height:38px;
  2906. display:flex;
  2907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:12px;
  2911. color:#333333;
  2912. }
  2913. #u15069 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u15069_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. visibility:hidden;
  2925. }
  2926. #u15070_img {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:143px;
  2932. height:38px;
  2933. }
  2934. #u15070 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:296px;
  2938. top:44px;
  2939. width:143px;
  2940. height:38px;
  2941. display:flex;
  2942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2943. font-weight:400;
  2944. font-style:normal;
  2945. font-size:12px;
  2946. color:#333333;
  2947. }
  2948. #u15070 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 2px 2px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u15070_text {
  2956. border-width:0px;
  2957. word-wrap:break-word;
  2958. text-transform:none;
  2959. visibility:hidden;
  2960. }
  2961. #u15071_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:130px;
  2967. height:38px;
  2968. }
  2969. #u15071 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:439px;
  2973. top:44px;
  2974. width:130px;
  2975. height:38px;
  2976. display:flex;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. color:#333333;
  2982. }
  2983. #u15071 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 2px 2px 0px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u15071_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. visibility:hidden;
  2995. }
  2996. #u15072_img {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:141px;
  3002. height:38px;
  3003. }
  3004. #u15072 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:569px;
  3008. top:44px;
  3009. width:141px;
  3010. height:38px;
  3011. display:flex;
  3012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3013. font-weight:400;
  3014. font-style:normal;
  3015. font-size:12px;
  3016. color:#333333;
  3017. }
  3018. #u15072 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 0px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u15072_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u15073_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:130px;
  3037. height:38px;
  3038. }
  3039. #u15073 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:710px;
  3043. top:44px;
  3044. width:130px;
  3045. height:38px;
  3046. display:flex;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:12px;
  3051. color:#333333;
  3052. }
  3053. #u15073 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 0px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u15073_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. visibility:hidden;
  3065. }
  3066. #u15074_img {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:130px;
  3072. height:38px;
  3073. }
  3074. #u15074 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:840px;
  3078. top:44px;
  3079. width:130px;
  3080. height:38px;
  3081. display:flex;
  3082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:12px;
  3086. color:#333333;
  3087. }
  3088. #u15074 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:2px 2px 2px 0px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u15074_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. visibility:hidden;
  3100. }
  3101. #u15075_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:130px;
  3107. height:38px;
  3108. }
  3109. #u15075 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:970px;
  3113. top:44px;
  3114. width:130px;
  3115. height:38px;
  3116. display:flex;
  3117. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:12px;
  3121. color:#333333;
  3122. }
  3123. #u15075 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u15075_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u15076_img {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:111px;
  3142. height:38px;
  3143. }
  3144. #u15076 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:1100px;
  3148. top:44px;
  3149. width:111px;
  3150. height:38px;
  3151. display:flex;
  3152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:12px;
  3156. color:#0089FE;
  3157. }
  3158. #u15076 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 0px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u15076_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. }
  3170. #u15077_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:148px;
  3176. height:38px;
  3177. }
  3178. #u15077 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:82px;
  3183. width:148px;
  3184. height:38px;
  3185. display:flex;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:12px;
  3190. color:#333333;
  3191. }
  3192. #u15077 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 0px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u15077_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u15078_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:148px;
  3211. height:38px;
  3212. }
  3213. #u15078 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:148px;
  3217. top:82px;
  3218. width:148px;
  3219. height:38px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:12px;
  3225. color:#333333;
  3226. }
  3227. #u15078 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u15078_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. visibility:hidden;
  3239. }
  3240. #u15079_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:143px;
  3246. height:38px;
  3247. }
  3248. #u15079 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:296px;
  3252. top:82px;
  3253. width:143px;
  3254. height:38px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. color:#333333;
  3261. }
  3262. #u15079 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 0px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u15079_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u15080_img {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:130px;
  3281. height:38px;
  3282. }
  3283. #u15080 {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:439px;
  3287. top:82px;
  3288. width:130px;
  3289. height:38px;
  3290. display:flex;
  3291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3292. font-weight:400;
  3293. font-style:normal;
  3294. font-size:12px;
  3295. color:#333333;
  3296. }
  3297. #u15080 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 2px 2px 0px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u15080_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. visibility:hidden;
  3309. }
  3310. #u15081_img {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:141px;
  3316. height:38px;
  3317. }
  3318. #u15081 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:569px;
  3322. top:82px;
  3323. width:141px;
  3324. height:38px;
  3325. display:flex;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:12px;
  3330. color:#333333;
  3331. }
  3332. #u15081 .text {
  3333. position:absolute;
  3334. align-self:center;
  3335. padding:2px 2px 2px 0px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u15081_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u15082_img {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:130px;
  3351. height:38px;
  3352. }
  3353. #u15082 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:710px;
  3357. top:82px;
  3358. width:130px;
  3359. height:38px;
  3360. display:flex;
  3361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:12px;
  3365. color:#333333;
  3366. }
  3367. #u15082 .text {
  3368. position:absolute;
  3369. align-self:center;
  3370. padding:2px 2px 2px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u15082_text {
  3375. border-width:0px;
  3376. word-wrap:break-word;
  3377. text-transform:none;
  3378. visibility:hidden;
  3379. }
  3380. #u15083_img {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:130px;
  3386. height:38px;
  3387. }
  3388. #u15083 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:840px;
  3392. top:82px;
  3393. width:130px;
  3394. height:38px;
  3395. display:flex;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:12px;
  3400. color:#333333;
  3401. }
  3402. #u15083 .text {
  3403. position:absolute;
  3404. align-self:center;
  3405. padding:2px 2px 2px 0px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u15083_text {
  3410. border-width:0px;
  3411. word-wrap:break-word;
  3412. text-transform:none;
  3413. visibility:hidden;
  3414. }
  3415. #u15084_img {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:130px;
  3421. height:38px;
  3422. }
  3423. #u15084 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:970px;
  3427. top:82px;
  3428. width:130px;
  3429. height:38px;
  3430. display:flex;
  3431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:12px;
  3435. color:#333333;
  3436. }
  3437. #u15084 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u15084_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. visibility:hidden;
  3449. }
  3450. #u15085_img {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:111px;
  3456. height:38px;
  3457. }
  3458. #u15085 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:1100px;
  3462. top:82px;
  3463. width:111px;
  3464. height:38px;
  3465. display:flex;
  3466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:12px;
  3470. color:#0089FE;
  3471. }
  3472. #u15085 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 0px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u15085_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. }
  3484. #u15086_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:148px;
  3490. height:38px;
  3491. }
  3492. #u15086 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:120px;
  3497. width:148px;
  3498. height:38px;
  3499. display:flex;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. color:#333333;
  3505. }
  3506. #u15086 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u15086_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u15087_img {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:148px;
  3525. height:38px;
  3526. }
  3527. #u15087 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:148px;
  3531. top:120px;
  3532. width:148px;
  3533. height:38px;
  3534. display:flex;
  3535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:12px;
  3539. color:#333333;
  3540. }
  3541. #u15087 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u15087_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u15088_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:143px;
  3560. height:38px;
  3561. }
  3562. #u15088 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:296px;
  3566. top:120px;
  3567. width:143px;
  3568. height:38px;
  3569. display:flex;
  3570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:12px;
  3574. color:#333333;
  3575. }
  3576. #u15088 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 0px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u15088_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u15089_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:130px;
  3595. height:38px;
  3596. }
  3597. #u15089 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:439px;
  3601. top:120px;
  3602. width:130px;
  3603. height:38px;
  3604. display:flex;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:12px;
  3609. color:#333333;
  3610. }
  3611. #u15089 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u15089_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u15090_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:141px;
  3630. height:38px;
  3631. }
  3632. #u15090 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:569px;
  3636. top:120px;
  3637. width:141px;
  3638. height:38px;
  3639. display:flex;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:12px;
  3644. color:#333333;
  3645. }
  3646. #u15090 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:2px 2px 2px 0px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u15090_text {
  3654. border-width:0px;
  3655. word-wrap:break-word;
  3656. text-transform:none;
  3657. visibility:hidden;
  3658. }
  3659. #u15091_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:130px;
  3665. height:38px;
  3666. }
  3667. #u15091 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:710px;
  3671. top:120px;
  3672. width:130px;
  3673. height:38px;
  3674. display:flex;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:12px;
  3679. color:#333333;
  3680. }
  3681. #u15091 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 0px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u15091_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u15092_img {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:130px;
  3700. height:38px;
  3701. }
  3702. #u15092 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:840px;
  3706. top:120px;
  3707. width:130px;
  3708. height:38px;
  3709. display:flex;
  3710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:12px;
  3714. color:#333333;
  3715. }
  3716. #u15092 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 0px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u15092_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u15093_img {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:130px;
  3735. height:38px;
  3736. }
  3737. #u15093 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:970px;
  3741. top:120px;
  3742. width:130px;
  3743. height:38px;
  3744. display:flex;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:12px;
  3749. color:#333333;
  3750. }
  3751. #u15093 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 0px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u15093_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. visibility:hidden;
  3763. }
  3764. #u15094_img {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:111px;
  3770. height:38px;
  3771. }
  3772. #u15094 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:1100px;
  3776. top:120px;
  3777. width:111px;
  3778. height:38px;
  3779. display:flex;
  3780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:12px;
  3784. color:#0089FE;
  3785. }
  3786. #u15094 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 0px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u15094_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u15095_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:148px;
  3805. height:38px;
  3806. }
  3807. #u15095 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:158px;
  3812. width:148px;
  3813. height:38px;
  3814. display:flex;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:12px;
  3819. color:#333333;
  3820. }
  3821. #u15095 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:2px 2px 2px 0px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u15095_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. visibility:hidden;
  3833. }
  3834. #u15096_img {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:148px;
  3840. height:38px;
  3841. }
  3842. #u15096 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:148px;
  3846. top:158px;
  3847. width:148px;
  3848. height:38px;
  3849. display:flex;
  3850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:12px;
  3854. color:#333333;
  3855. }
  3856. #u15096 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 2px 2px 0px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u15096_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u15097_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:143px;
  3875. height:38px;
  3876. }
  3877. #u15097 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:296px;
  3881. top:158px;
  3882. width:143px;
  3883. height:38px;
  3884. display:flex;
  3885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3886. font-weight:400;
  3887. font-style:normal;
  3888. font-size:12px;
  3889. color:#333333;
  3890. }
  3891. #u15097 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 0px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u15097_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u15098_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:130px;
  3910. height:38px;
  3911. }
  3912. #u15098 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:439px;
  3916. top:158px;
  3917. width:130px;
  3918. height:38px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:12px;
  3924. color:#333333;
  3925. }
  3926. #u15098 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u15098_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u15099_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:141px;
  3945. height:38px;
  3946. }
  3947. #u15099 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:569px;
  3951. top:158px;
  3952. width:141px;
  3953. height:38px;
  3954. display:flex;
  3955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. color:#333333;
  3960. }
  3961. #u15099 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:2px 2px 2px 0px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u15099_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. visibility:hidden;
  3973. }
  3974. #u15100_img {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:130px;
  3980. height:38px;
  3981. }
  3982. #u15100 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:710px;
  3986. top:158px;
  3987. width:130px;
  3988. height:38px;
  3989. display:flex;
  3990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:12px;
  3994. color:#333333;
  3995. }
  3996. #u15100 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:2px 2px 2px 0px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u15100_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. visibility:hidden;
  4008. }
  4009. #u15101_img {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:130px;
  4015. height:38px;
  4016. }
  4017. #u15101 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:840px;
  4021. top:158px;
  4022. width:130px;
  4023. height:38px;
  4024. display:flex;
  4025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:12px;
  4029. color:#333333;
  4030. }
  4031. #u15101 .text {
  4032. position:absolute;
  4033. align-self:center;
  4034. padding:2px 2px 2px 0px;
  4035. box-sizing:border-box;
  4036. width:100%;
  4037. }
  4038. #u15101_text {
  4039. border-width:0px;
  4040. word-wrap:break-word;
  4041. text-transform:none;
  4042. visibility:hidden;
  4043. }
  4044. #u15102_img {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:130px;
  4050. height:38px;
  4051. }
  4052. #u15102 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:970px;
  4056. top:158px;
  4057. width:130px;
  4058. height:38px;
  4059. display:flex;
  4060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4061. font-weight:400;
  4062. font-style:normal;
  4063. font-size:12px;
  4064. color:#333333;
  4065. }
  4066. #u15102 .text {
  4067. position:absolute;
  4068. align-self:center;
  4069. padding:2px 2px 2px 0px;
  4070. box-sizing:border-box;
  4071. width:100%;
  4072. }
  4073. #u15102_text {
  4074. border-width:0px;
  4075. word-wrap:break-word;
  4076. text-transform:none;
  4077. visibility:hidden;
  4078. }
  4079. #u15103_img {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:111px;
  4085. height:38px;
  4086. }
  4087. #u15103 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:1100px;
  4091. top:158px;
  4092. width:111px;
  4093. height:38px;
  4094. display:flex;
  4095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4096. font-weight:400;
  4097. font-style:normal;
  4098. font-size:12px;
  4099. color:#AAAAAA;
  4100. }
  4101. #u15103 .text {
  4102. position:absolute;
  4103. align-self:center;
  4104. padding:2px 2px 2px 0px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u15103_text {
  4109. border-width:0px;
  4110. word-wrap:break-word;
  4111. text-transform:none;
  4112. visibility:hidden;
  4113. }
  4114. #u15104_img {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:148px;
  4120. height:35px;
  4121. }
  4122. #u15104 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:196px;
  4127. width:148px;
  4128. height:35px;
  4129. display:flex;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:12px;
  4134. color:#333333;
  4135. }
  4136. #u15104 .text {
  4137. position:absolute;
  4138. align-self:center;
  4139. padding:2px 2px 2px 0px;
  4140. box-sizing:border-box;
  4141. width:100%;
  4142. }
  4143. #u15104_text {
  4144. border-width:0px;
  4145. word-wrap:break-word;
  4146. text-transform:none;
  4147. visibility:hidden;
  4148. }
  4149. #u15105_img {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:148px;
  4155. height:35px;
  4156. }
  4157. #u15105 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:148px;
  4161. top:196px;
  4162. width:148px;
  4163. height:35px;
  4164. display:flex;
  4165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:12px;
  4169. color:#333333;
  4170. }
  4171. #u15105 .text {
  4172. position:absolute;
  4173. align-self:center;
  4174. padding:2px 2px 2px 0px;
  4175. box-sizing:border-box;
  4176. width:100%;
  4177. }
  4178. #u15105_text {
  4179. border-width:0px;
  4180. word-wrap:break-word;
  4181. text-transform:none;
  4182. visibility:hidden;
  4183. }
  4184. #u15106_img {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:143px;
  4190. height:35px;
  4191. }
  4192. #u15106 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:296px;
  4196. top:196px;
  4197. width:143px;
  4198. height:35px;
  4199. display:flex;
  4200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4201. font-weight:400;
  4202. font-style:normal;
  4203. font-size:12px;
  4204. color:#333333;
  4205. }
  4206. #u15106 .text {
  4207. position:absolute;
  4208. align-self:center;
  4209. padding:2px 2px 2px 0px;
  4210. box-sizing:border-box;
  4211. width:100%;
  4212. }
  4213. #u15106_text {
  4214. border-width:0px;
  4215. word-wrap:break-word;
  4216. text-transform:none;
  4217. visibility:hidden;
  4218. }
  4219. #u15107_img {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:130px;
  4225. height:35px;
  4226. }
  4227. #u15107 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:439px;
  4231. top:196px;
  4232. width:130px;
  4233. height:35px;
  4234. display:flex;
  4235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4236. font-weight:400;
  4237. font-style:normal;
  4238. font-size:12px;
  4239. color:#333333;
  4240. }
  4241. #u15107 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 0px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u15107_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. visibility:hidden;
  4253. }
  4254. #u15108_img {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:141px;
  4260. height:35px;
  4261. }
  4262. #u15108 {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:569px;
  4266. top:196px;
  4267. width:141px;
  4268. height:35px;
  4269. display:flex;
  4270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4271. font-weight:400;
  4272. font-style:normal;
  4273. font-size:12px;
  4274. color:#333333;
  4275. }
  4276. #u15108 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 0px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u15108_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. visibility:hidden;
  4288. }
  4289. #u15109_img {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:130px;
  4295. height:35px;
  4296. }
  4297. #u15109 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:710px;
  4301. top:196px;
  4302. width:130px;
  4303. height:35px;
  4304. display:flex;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:12px;
  4309. color:#333333;
  4310. }
  4311. #u15109 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 0px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u15109_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. visibility:hidden;
  4323. }
  4324. #u15110_img {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:130px;
  4330. height:35px;
  4331. }
  4332. #u15110 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:840px;
  4336. top:196px;
  4337. width:130px;
  4338. height:35px;
  4339. display:flex;
  4340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:12px;
  4344. color:#333333;
  4345. }
  4346. #u15110 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 0px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u15110_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u15111_img {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:130px;
  4365. height:35px;
  4366. }
  4367. #u15111 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:970px;
  4371. top:196px;
  4372. width:130px;
  4373. height:35px;
  4374. display:flex;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:12px;
  4379. color:#333333;
  4380. }
  4381. #u15111 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:2px 2px 2px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u15111_text {
  4389. border-width:0px;
  4390. word-wrap:break-word;
  4391. text-transform:none;
  4392. visibility:hidden;
  4393. }
  4394. #u15112_img {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:111px;
  4400. height:35px;
  4401. }
  4402. #u15112 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:1100px;
  4406. top:196px;
  4407. width:111px;
  4408. height:35px;
  4409. display:flex;
  4410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4411. font-weight:400;
  4412. font-style:normal;
  4413. font-size:12px;
  4414. color:#AAAAAA;
  4415. }
  4416. #u15112 .text {
  4417. position:absolute;
  4418. align-self:center;
  4419. padding:2px 2px 2px 0px;
  4420. box-sizing:border-box;
  4421. width:100%;
  4422. }
  4423. #u15112_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. visibility:hidden;
  4428. }
  4429. #u15113_img {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:0px;
  4433. top:0px;
  4434. width:148px;
  4435. height:35px;
  4436. }
  4437. #u15113 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:231px;
  4442. width:148px;
  4443. height:35px;
  4444. display:flex;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:12px;
  4449. color:#333333;
  4450. }
  4451. #u15113 .text {
  4452. position:absolute;
  4453. align-self:center;
  4454. padding:2px 2px 2px 0px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u15113_text {
  4459. border-width:0px;
  4460. word-wrap:break-word;
  4461. text-transform:none;
  4462. visibility:hidden;
  4463. }
  4464. #u15114_img {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:148px;
  4470. height:35px;
  4471. }
  4472. #u15114 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:148px;
  4476. top:231px;
  4477. width:148px;
  4478. height:35px;
  4479. display:flex;
  4480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4481. font-weight:400;
  4482. font-style:normal;
  4483. font-size:12px;
  4484. color:#333333;
  4485. }
  4486. #u15114 .text {
  4487. position:absolute;
  4488. align-self:center;
  4489. padding:2px 2px 2px 0px;
  4490. box-sizing:border-box;
  4491. width:100%;
  4492. }
  4493. #u15114_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. visibility:hidden;
  4498. }
  4499. #u15115_img {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:143px;
  4505. height:35px;
  4506. }
  4507. #u15115 {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:296px;
  4511. top:231px;
  4512. width:143px;
  4513. height:35px;
  4514. display:flex;
  4515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4516. font-weight:400;
  4517. font-style:normal;
  4518. font-size:12px;
  4519. color:#333333;
  4520. }
  4521. #u15115 .text {
  4522. position:absolute;
  4523. align-self:center;
  4524. padding:2px 2px 2px 0px;
  4525. box-sizing:border-box;
  4526. width:100%;
  4527. }
  4528. #u15115_text {
  4529. border-width:0px;
  4530. word-wrap:break-word;
  4531. text-transform:none;
  4532. visibility:hidden;
  4533. }
  4534. #u15116_img {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:130px;
  4540. height:35px;
  4541. }
  4542. #u15116 {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:439px;
  4546. top:231px;
  4547. width:130px;
  4548. height:35px;
  4549. display:flex;
  4550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4551. font-weight:400;
  4552. font-style:normal;
  4553. font-size:12px;
  4554. color:#333333;
  4555. }
  4556. #u15116 .text {
  4557. position:absolute;
  4558. align-self:center;
  4559. padding:2px 2px 2px 0px;
  4560. box-sizing:border-box;
  4561. width:100%;
  4562. }
  4563. #u15116_text {
  4564. border-width:0px;
  4565. word-wrap:break-word;
  4566. text-transform:none;
  4567. visibility:hidden;
  4568. }
  4569. #u15117_img {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:141px;
  4575. height:35px;
  4576. }
  4577. #u15117 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:569px;
  4581. top:231px;
  4582. width:141px;
  4583. height:35px;
  4584. display:flex;
  4585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4586. font-weight:400;
  4587. font-style:normal;
  4588. font-size:12px;
  4589. color:#333333;
  4590. }
  4591. #u15117 .text {
  4592. position:absolute;
  4593. align-self:center;
  4594. padding:2px 2px 2px 0px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u15117_text {
  4599. border-width:0px;
  4600. word-wrap:break-word;
  4601. text-transform:none;
  4602. visibility:hidden;
  4603. }
  4604. #u15118_img {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:130px;
  4610. height:35px;
  4611. }
  4612. #u15118 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:710px;
  4616. top:231px;
  4617. width:130px;
  4618. height:35px;
  4619. display:flex;
  4620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4621. font-weight:400;
  4622. font-style:normal;
  4623. font-size:12px;
  4624. color:#333333;
  4625. }
  4626. #u15118 .text {
  4627. position:absolute;
  4628. align-self:center;
  4629. padding:2px 2px 2px 0px;
  4630. box-sizing:border-box;
  4631. width:100%;
  4632. }
  4633. #u15118_text {
  4634. border-width:0px;
  4635. word-wrap:break-word;
  4636. text-transform:none;
  4637. visibility:hidden;
  4638. }
  4639. #u15119_img {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:130px;
  4645. height:35px;
  4646. }
  4647. #u15119 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:840px;
  4651. top:231px;
  4652. width:130px;
  4653. height:35px;
  4654. display:flex;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:12px;
  4659. color:#333333;
  4660. }
  4661. #u15119 .text {
  4662. position:absolute;
  4663. align-self:center;
  4664. padding:2px 2px 2px 0px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u15119_text {
  4669. border-width:0px;
  4670. word-wrap:break-word;
  4671. text-transform:none;
  4672. visibility:hidden;
  4673. }
  4674. #u15120_img {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:0px;
  4678. top:0px;
  4679. width:130px;
  4680. height:35px;
  4681. }
  4682. #u15120 {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:970px;
  4686. top:231px;
  4687. width:130px;
  4688. height:35px;
  4689. display:flex;
  4690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. font-size:12px;
  4694. color:#333333;
  4695. }
  4696. #u15120 .text {
  4697. position:absolute;
  4698. align-self:center;
  4699. padding:2px 2px 2px 0px;
  4700. box-sizing:border-box;
  4701. width:100%;
  4702. }
  4703. #u15120_text {
  4704. border-width:0px;
  4705. word-wrap:break-word;
  4706. text-transform:none;
  4707. visibility:hidden;
  4708. }
  4709. #u15121_img {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:111px;
  4715. height:35px;
  4716. }
  4717. #u15121 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:1100px;
  4721. top:231px;
  4722. width:111px;
  4723. height:35px;
  4724. display:flex;
  4725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:12px;
  4729. color:#333333;
  4730. }
  4731. #u15121 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:2px 2px 2px 0px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u15121_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. visibility:hidden;
  4743. }
  4744. #u15122_img {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:0px;
  4749. width:148px;
  4750. height:32px;
  4751. }
  4752. #u15122 {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:266px;
  4757. width:148px;
  4758. height:32px;
  4759. display:flex;
  4760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4761. font-weight:400;
  4762. font-style:normal;
  4763. font-size:12px;
  4764. color:#333333;
  4765. }
  4766. #u15122 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:2px 2px 2px 0px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u15122_text {
  4774. border-width:0px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. visibility:hidden;
  4778. }
  4779. #u15123_img {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:148px;
  4785. height:32px;
  4786. }
  4787. #u15123 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:148px;
  4791. top:266px;
  4792. width:148px;
  4793. height:32px;
  4794. display:flex;
  4795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4796. font-weight:400;
  4797. font-style:normal;
  4798. font-size:12px;
  4799. color:#333333;
  4800. }
  4801. #u15123 .text {
  4802. position:absolute;
  4803. align-self:center;
  4804. padding:2px 2px 2px 0px;
  4805. box-sizing:border-box;
  4806. width:100%;
  4807. }
  4808. #u15123_text {
  4809. border-width:0px;
  4810. word-wrap:break-word;
  4811. text-transform:none;
  4812. visibility:hidden;
  4813. }
  4814. #u15124_img {
  4815. border-width:0px;
  4816. position:absolute;
  4817. left:0px;
  4818. top:0px;
  4819. width:143px;
  4820. height:32px;
  4821. }
  4822. #u15124 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:296px;
  4826. top:266px;
  4827. width:143px;
  4828. height:32px;
  4829. display:flex;
  4830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:12px;
  4834. color:#333333;
  4835. }
  4836. #u15124 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:2px 2px 2px 0px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u15124_text {
  4844. border-width:0px;
  4845. word-wrap:break-word;
  4846. text-transform:none;
  4847. visibility:hidden;
  4848. }
  4849. #u15125_img {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:130px;
  4855. height:32px;
  4856. }
  4857. #u15125 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:439px;
  4861. top:266px;
  4862. width:130px;
  4863. height:32px;
  4864. display:flex;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:12px;
  4869. color:#333333;
  4870. }
  4871. #u15125 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 0px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u15125_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u15126_img {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:141px;
  4890. height:32px;
  4891. }
  4892. #u15126 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:569px;
  4896. top:266px;
  4897. width:141px;
  4898. height:32px;
  4899. display:flex;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:12px;
  4904. color:#333333;
  4905. }
  4906. #u15126 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:2px 2px 2px 0px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u15126_text {
  4914. border-width:0px;
  4915. word-wrap:break-word;
  4916. text-transform:none;
  4917. visibility:hidden;
  4918. }
  4919. #u15127_img {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:130px;
  4925. height:32px;
  4926. }
  4927. #u15127 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:710px;
  4931. top:266px;
  4932. width:130px;
  4933. height:32px;
  4934. display:flex;
  4935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4936. font-weight:400;
  4937. font-style:normal;
  4938. font-size:12px;
  4939. color:#333333;
  4940. }
  4941. #u15127 .text {
  4942. position:absolute;
  4943. align-self:center;
  4944. padding:2px 2px 2px 0px;
  4945. box-sizing:border-box;
  4946. width:100%;
  4947. }
  4948. #u15127_text {
  4949. border-width:0px;
  4950. word-wrap:break-word;
  4951. text-transform:none;
  4952. visibility:hidden;
  4953. }
  4954. #u15128_img {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:130px;
  4960. height:32px;
  4961. }
  4962. #u15128 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:840px;
  4966. top:266px;
  4967. width:130px;
  4968. height:32px;
  4969. display:flex;
  4970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. font-size:12px;
  4974. color:#333333;
  4975. }
  4976. #u15128 .text {
  4977. position:absolute;
  4978. align-self:center;
  4979. padding:2px 2px 2px 0px;
  4980. box-sizing:border-box;
  4981. width:100%;
  4982. }
  4983. #u15128_text {
  4984. border-width:0px;
  4985. word-wrap:break-word;
  4986. text-transform:none;
  4987. visibility:hidden;
  4988. }
  4989. #u15129_img {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:130px;
  4995. height:32px;
  4996. }
  4997. #u15129 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:970px;
  5001. top:266px;
  5002. width:130px;
  5003. height:32px;
  5004. display:flex;
  5005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:12px;
  5009. color:#333333;
  5010. }
  5011. #u15129 .text {
  5012. position:absolute;
  5013. align-self:center;
  5014. padding:2px 2px 2px 0px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u15129_text {
  5019. border-width:0px;
  5020. word-wrap:break-word;
  5021. text-transform:none;
  5022. visibility:hidden;
  5023. }
  5024. #u15130_img {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:111px;
  5030. height:32px;
  5031. }
  5032. #u15130 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:1100px;
  5036. top:266px;
  5037. width:111px;
  5038. height:32px;
  5039. display:flex;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:12px;
  5044. color:#333333;
  5045. }
  5046. #u15130 .text {
  5047. position:absolute;
  5048. align-self:center;
  5049. padding:2px 2px 2px 0px;
  5050. box-sizing:border-box;
  5051. width:100%;
  5052. }
  5053. #u15130_text {
  5054. border-width:0px;
  5055. word-wrap:break-word;
  5056. text-transform:none;
  5057. visibility:hidden;
  5058. }
  5059. #u15131_img {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:148px;
  5065. height:30px;
  5066. }
  5067. #u15131 {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:298px;
  5072. width:148px;
  5073. height:30px;
  5074. display:flex;
  5075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:12px;
  5079. color:#333333;
  5080. }
  5081. #u15131 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:2px 2px 2px 0px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u15131_text {
  5089. border-width:0px;
  5090. word-wrap:break-word;
  5091. text-transform:none;
  5092. visibility:hidden;
  5093. }
  5094. #u15132_img {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:148px;
  5100. height:30px;
  5101. }
  5102. #u15132 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:148px;
  5106. top:298px;
  5107. width:148px;
  5108. height:30px;
  5109. display:flex;
  5110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5111. font-weight:400;
  5112. font-style:normal;
  5113. font-size:12px;
  5114. color:#333333;
  5115. }
  5116. #u15132 .text {
  5117. position:absolute;
  5118. align-self:center;
  5119. padding:2px 2px 2px 0px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u15132_text {
  5124. border-width:0px;
  5125. word-wrap:break-word;
  5126. text-transform:none;
  5127. visibility:hidden;
  5128. }
  5129. #u15133_img {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:143px;
  5135. height:30px;
  5136. }
  5137. #u15133 {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:296px;
  5141. top:298px;
  5142. width:143px;
  5143. height:30px;
  5144. display:flex;
  5145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5146. font-weight:400;
  5147. font-style:normal;
  5148. font-size:12px;
  5149. color:#333333;
  5150. }
  5151. #u15133 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 0px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u15133_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. visibility:hidden;
  5163. }
  5164. #u15134_img {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:130px;
  5170. height:30px;
  5171. }
  5172. #u15134 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:439px;
  5176. top:298px;
  5177. width:130px;
  5178. height:30px;
  5179. display:flex;
  5180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:12px;
  5184. color:#333333;
  5185. }
  5186. #u15134 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:2px 2px 2px 0px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u15134_text {
  5194. border-width:0px;
  5195. word-wrap:break-word;
  5196. text-transform:none;
  5197. visibility:hidden;
  5198. }
  5199. #u15135_img {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:141px;
  5205. height:30px;
  5206. }
  5207. #u15135 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:569px;
  5211. top:298px;
  5212. width:141px;
  5213. height:30px;
  5214. display:flex;
  5215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5216. font-weight:400;
  5217. font-style:normal;
  5218. font-size:12px;
  5219. color:#333333;
  5220. }
  5221. #u15135 .text {
  5222. position:absolute;
  5223. align-self:center;
  5224. padding:2px 2px 2px 0px;
  5225. box-sizing:border-box;
  5226. width:100%;
  5227. }
  5228. #u15135_text {
  5229. border-width:0px;
  5230. word-wrap:break-word;
  5231. text-transform:none;
  5232. visibility:hidden;
  5233. }
  5234. #u15136_img {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:0px;
  5238. top:0px;
  5239. width:130px;
  5240. height:30px;
  5241. }
  5242. #u15136 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:710px;
  5246. top:298px;
  5247. width:130px;
  5248. height:30px;
  5249. display:flex;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:12px;
  5254. color:#333333;
  5255. }
  5256. #u15136 .text {
  5257. position:absolute;
  5258. align-self:center;
  5259. padding:2px 2px 2px 0px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u15136_text {
  5264. border-width:0px;
  5265. word-wrap:break-word;
  5266. text-transform:none;
  5267. visibility:hidden;
  5268. }
  5269. #u15137_img {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:0px;
  5273. top:0px;
  5274. width:130px;
  5275. height:30px;
  5276. }
  5277. #u15137 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:840px;
  5281. top:298px;
  5282. width:130px;
  5283. height:30px;
  5284. display:flex;
  5285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:12px;
  5289. color:#333333;
  5290. }
  5291. #u15137 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 0px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u15137_text {
  5299. border-width:0px;
  5300. word-wrap:break-word;
  5301. text-transform:none;
  5302. visibility:hidden;
  5303. }
  5304. #u15138_img {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:0px;
  5308. top:0px;
  5309. width:130px;
  5310. height:30px;
  5311. }
  5312. #u15138 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:970px;
  5316. top:298px;
  5317. width:130px;
  5318. height:30px;
  5319. display:flex;
  5320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:12px;
  5324. color:#333333;
  5325. }
  5326. #u15138 .text {
  5327. position:absolute;
  5328. align-self:center;
  5329. padding:2px 2px 2px 0px;
  5330. box-sizing:border-box;
  5331. width:100%;
  5332. }
  5333. #u15138_text {
  5334. border-width:0px;
  5335. word-wrap:break-word;
  5336. text-transform:none;
  5337. visibility:hidden;
  5338. }
  5339. #u15139_img {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:111px;
  5345. height:30px;
  5346. }
  5347. #u15139 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:1100px;
  5351. top:298px;
  5352. width:111px;
  5353. height:30px;
  5354. display:flex;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. font-size:12px;
  5359. color:#333333;
  5360. }
  5361. #u15139 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 0px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u15139_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u15141 {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:0px;
  5380. height:0px;
  5381. }
  5382. #u15142_div {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:200px;
  5388. height:1180px;
  5389. background:inherit;
  5390. background-color:rgba(255, 255, 255, 1);
  5391. border:none;
  5392. border-radius:0px;
  5393. -moz-box-shadow:none;
  5394. -webkit-box-shadow:none;
  5395. box-shadow:none;
  5396. }
  5397. #u15142 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:120px;
  5401. top:50px;
  5402. width:200px;
  5403. height:1180px;
  5404. display:flex;
  5405. }
  5406. #u15142 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:2px 2px 2px 2px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u15142_text {
  5414. border-width:0px;
  5415. word-wrap:break-word;
  5416. text-transform:none;
  5417. visibility:hidden;
  5418. }
  5419. #u15143_div {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:200px;
  5425. height:60px;
  5426. background:inherit;
  5427. background-color:rgba(224, 231, 247, 1);
  5428. border:none;
  5429. border-radius:0px;
  5430. -moz-box-shadow:none;
  5431. -webkit-box-shadow:none;
  5432. box-shadow:none;
  5433. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5434. font-weight:500;
  5435. font-style:normal;
  5436. font-size:18px;
  5437. }
  5438. #u15143 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:120px;
  5442. top:50px;
  5443. width:200px;
  5444. height:60px;
  5445. display:flex;
  5446. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5447. font-weight:500;
  5448. font-style:normal;
  5449. font-size:18px;
  5450. }
  5451. #u15143 .text {
  5452. position:absolute;
  5453. align-self:center;
  5454. padding:0px 0px 0px 20px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u15143_text {
  5459. border-width:0px;
  5460. word-wrap:break-word;
  5461. text-transform:none;
  5462. }
  5463. #u15144_div {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:65px;
  5469. height:22px;
  5470. background:inherit;
  5471. background-color:rgba(255, 255, 255, 0);
  5472. border:none;
  5473. border-radius:0px;
  5474. -moz-box-shadow:none;
  5475. -webkit-box-shadow:none;
  5476. box-shadow:none;
  5477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:16px;
  5481. }
  5482. #u15144 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:147px;
  5486. top:242px;
  5487. width:65px;
  5488. height:22px;
  5489. display:flex;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:16px;
  5494. }
  5495. #u15144 .text {
  5496. position:absolute;
  5497. align-self:flex-start;
  5498. padding:0px 0px 0px 0px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u15144_text {
  5503. border-width:0px;
  5504. white-space:nowrap;
  5505. text-transform:none;
  5506. }
  5507. #u15145_div {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:49px;
  5513. height:17px;
  5514. background:inherit;
  5515. background-color:rgba(255, 255, 255, 0);
  5516. border:none;
  5517. border-radius:0px;
  5518. -moz-box-shadow:none;
  5519. -webkit-box-shadow:none;
  5520. box-shadow:none;
  5521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:12px;
  5525. color:#AAAAAA;
  5526. }
  5527. #u15145 {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:147px;
  5531. top:122px;
  5532. width:49px;
  5533. height:17px;
  5534. display:flex;
  5535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5536. font-weight:400;
  5537. font-style:normal;
  5538. font-size:12px;
  5539. color:#AAAAAA;
  5540. }
  5541. #u15145 .text {
  5542. position:absolute;
  5543. align-self:flex-start;
  5544. padding:0px 0px 0px 0px;
  5545. box-sizing:border-box;
  5546. width:100%;
  5547. }
  5548. #u15145_text {
  5549. border-width:0px;
  5550. white-space:nowrap;
  5551. text-transform:none;
  5552. }
  5553. #u15146_div {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:65px;
  5559. height:22px;
  5560. background:inherit;
  5561. background-color:rgba(255, 255, 255, 0);
  5562. border:none;
  5563. border-radius:0px;
  5564. -moz-box-shadow:none;
  5565. -webkit-box-shadow:none;
  5566. box-shadow:none;
  5567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:16px;
  5571. }
  5572. #u15146 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:147px;
  5576. top:200px;
  5577. width:65px;
  5578. height:22px;
  5579. display:flex;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:16px;
  5584. }
  5585. #u15146 .text {
  5586. position:absolute;
  5587. align-self:flex-start;
  5588. padding:0px 0px 0px 0px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u15146_text {
  5593. border-width:0px;
  5594. white-space:nowrap;
  5595. text-transform:none;
  5596. }
  5597. #u15147_div {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:81px;
  5603. height:22px;
  5604. background:inherit;
  5605. background-color:rgba(255, 255, 255, 0);
  5606. border:none;
  5607. border-radius:0px;
  5608. -moz-box-shadow:none;
  5609. -webkit-box-shadow:none;
  5610. box-shadow:none;
  5611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. font-size:16px;
  5615. }
  5616. #u15147 {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:147px;
  5620. top:484px;
  5621. width:81px;
  5622. height:22px;
  5623. display:flex;
  5624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5625. font-weight:400;
  5626. font-style:normal;
  5627. font-size:16px;
  5628. }
  5629. #u15147 .text {
  5630. position:absolute;
  5631. align-self:flex-start;
  5632. padding:0px 0px 0px 0px;
  5633. box-sizing:border-box;
  5634. width:100%;
  5635. }
  5636. #u15147_text {
  5637. border-width:0px;
  5638. white-space:nowrap;
  5639. text-transform:none;
  5640. }
  5641. #u15148_img {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:201px;
  5647. height:2px;
  5648. }
  5649. #u15148 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:120px;
  5653. top:427px;
  5654. width:200px;
  5655. height:1px;
  5656. display:flex;
  5657. }
  5658. #u15148 .text {
  5659. position:absolute;
  5660. align-self:center;
  5661. padding:2px 2px 2px 2px;
  5662. box-sizing:border-box;
  5663. width:100%;
  5664. }
  5665. #u15148_text {
  5666. border-width:0px;
  5667. word-wrap:break-word;
  5668. text-transform:none;
  5669. visibility:hidden;
  5670. }
  5671. #u15149_div {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:65px;
  5677. height:22px;
  5678. background:inherit;
  5679. background-color:rgba(255, 255, 255, 0);
  5680. border:none;
  5681. border-radius:0px;
  5682. -moz-box-shadow:none;
  5683. -webkit-box-shadow:none;
  5684. box-shadow:none;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:16px;
  5689. }
  5690. #u15149 {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:147px;
  5694. top:526px;
  5695. width:65px;
  5696. height:22px;
  5697. display:flex;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:16px;
  5702. }
  5703. #u15149 .text {
  5704. position:absolute;
  5705. align-self:flex-start;
  5706. padding:0px 0px 0px 0px;
  5707. box-sizing:border-box;
  5708. width:100%;
  5709. }
  5710. #u15149_text {
  5711. border-width:0px;
  5712. white-space:nowrap;
  5713. text-transform:none;
  5714. }
  5715. #u15150_div {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:49px;
  5721. height:17px;
  5722. background:inherit;
  5723. background-color:rgba(255, 255, 255, 0);
  5724. border:none;
  5725. border-radius:0px;
  5726. -moz-box-shadow:none;
  5727. -webkit-box-shadow:none;
  5728. box-shadow:none;
  5729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:12px;
  5733. color:#AAAAAA;
  5734. }
  5735. #u15150 {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:147px;
  5739. top:447px;
  5740. width:49px;
  5741. height:17px;
  5742. display:flex;
  5743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5744. font-weight:400;
  5745. font-style:normal;
  5746. font-size:12px;
  5747. color:#AAAAAA;
  5748. }
  5749. #u15150 .text {
  5750. position:absolute;
  5751. align-self:flex-start;
  5752. padding:0px 0px 0px 0px;
  5753. box-sizing:border-box;
  5754. width:100%;
  5755. }
  5756. #u15150_text {
  5757. border-width:0px;
  5758. white-space:nowrap;
  5759. text-transform:none;
  5760. }
  5761. #u15151_div {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:81px;
  5767. height:22px;
  5768. background:inherit;
  5769. background-color:rgba(255, 255, 255, 0);
  5770. border:none;
  5771. border-radius:0px;
  5772. -moz-box-shadow:none;
  5773. -webkit-box-shadow:none;
  5774. box-shadow:none;
  5775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5776. font-weight:400;
  5777. font-style:normal;
  5778. font-size:16px;
  5779. }
  5780. #u15151 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:147px;
  5784. top:652px;
  5785. width:81px;
  5786. height:22px;
  5787. display:flex;
  5788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:16px;
  5792. }
  5793. #u15151 .text {
  5794. position:absolute;
  5795. align-self:flex-start;
  5796. padding:0px 0px 0px 0px;
  5797. box-sizing:border-box;
  5798. width:100%;
  5799. }
  5800. #u15151_text {
  5801. border-width:0px;
  5802. white-space:nowrap;
  5803. text-transform:none;
  5804. }
  5805. #u15152_div {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:0px;
  5809. top:0px;
  5810. width:65px;
  5811. height:22px;
  5812. background:inherit;
  5813. background-color:rgba(255, 255, 255, 0);
  5814. border:none;
  5815. border-radius:0px;
  5816. -moz-box-shadow:none;
  5817. -webkit-box-shadow:none;
  5818. box-shadow:none;
  5819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. font-size:16px;
  5823. }
  5824. #u15152 {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:147px;
  5828. top:568px;
  5829. width:65px;
  5830. height:22px;
  5831. display:flex;
  5832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5833. font-weight:400;
  5834. font-style:normal;
  5835. font-size:16px;
  5836. }
  5837. #u15152 .text {
  5838. position:absolute;
  5839. align-self:flex-start;
  5840. padding:0px 0px 0px 0px;
  5841. box-sizing:border-box;
  5842. width:100%;
  5843. }
  5844. #u15152_text {
  5845. border-width:0px;
  5846. white-space:nowrap;
  5847. text-transform:none;
  5848. }
  5849. #u15153_div {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:65px;
  5855. height:22px;
  5856. background:inherit;
  5857. background-color:rgba(255, 255, 255, 0);
  5858. border:none;
  5859. border-radius:0px;
  5860. -moz-box-shadow:none;
  5861. -webkit-box-shadow:none;
  5862. box-shadow:none;
  5863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5864. font-weight:400;
  5865. font-style:normal;
  5866. font-size:16px;
  5867. }
  5868. #u15153 {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:147px;
  5872. top:610px;
  5873. width:65px;
  5874. height:22px;
  5875. display:flex;
  5876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:16px;
  5880. }
  5881. #u15153 .text {
  5882. position:absolute;
  5883. align-self:flex-start;
  5884. padding:0px 0px 0px 0px;
  5885. box-sizing:border-box;
  5886. width:100%;
  5887. }
  5888. #u15153_text {
  5889. border-width:0px;
  5890. white-space:nowrap;
  5891. text-transform:none;
  5892. }
  5893. #u15154_div {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:0px;
  5897. top:0px;
  5898. width:65px;
  5899. height:22px;
  5900. background:inherit;
  5901. background-color:rgba(255, 255, 255, 0);
  5902. border:none;
  5903. border-radius:0px;
  5904. -moz-box-shadow:none;
  5905. -webkit-box-shadow:none;
  5906. box-shadow:none;
  5907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:16px;
  5911. }
  5912. #u15154 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:147px;
  5916. top:341px;
  5917. width:65px;
  5918. height:22px;
  5919. display:flex;
  5920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5921. font-weight:400;
  5922. font-style:normal;
  5923. font-size:16px;
  5924. }
  5925. #u15154 .text {
  5926. position:absolute;
  5927. align-self:flex-start;
  5928. padding:0px 0px 0px 0px;
  5929. box-sizing:border-box;
  5930. width:100%;
  5931. }
  5932. #u15154_text {
  5933. border-width:0px;
  5934. white-space:nowrap;
  5935. text-transform:none;
  5936. }
  5937. #u15155_img {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:0px;
  5941. top:0px;
  5942. width:201px;
  5943. height:2px;
  5944. }
  5945. #u15155 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:120px;
  5949. top:284px;
  5950. width:200px;
  5951. height:1px;
  5952. display:flex;
  5953. }
  5954. #u15155 .text {
  5955. position:absolute;
  5956. align-self:center;
  5957. padding:2px 2px 2px 2px;
  5958. box-sizing:border-box;
  5959. width:100%;
  5960. }
  5961. #u15155_text {
  5962. border-width:0px;
  5963. word-wrap:break-word;
  5964. text-transform:none;
  5965. visibility:hidden;
  5966. }
  5967. #u15156_div {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:49px;
  5973. height:17px;
  5974. background:inherit;
  5975. background-color:rgba(255, 255, 255, 0);
  5976. border:none;
  5977. border-radius:0px;
  5978. -moz-box-shadow:none;
  5979. -webkit-box-shadow:none;
  5980. box-shadow:none;
  5981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5982. font-weight:400;
  5983. font-style:normal;
  5984. font-size:12px;
  5985. color:#AAAAAA;
  5986. }
  5987. #u15156 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:147px;
  5991. top:304px;
  5992. width:49px;
  5993. height:17px;
  5994. display:flex;
  5995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:12px;
  5999. color:#AAAAAA;
  6000. }
  6001. #u15156 .text {
  6002. position:absolute;
  6003. align-self:flex-start;
  6004. padding:0px 0px 0px 0px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u15156_text {
  6009. border-width:0px;
  6010. white-space:nowrap;
  6011. text-transform:none;
  6012. }
  6013. #u15157_div {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:65px;
  6019. height:22px;
  6020. background:inherit;
  6021. background-color:rgba(255, 255, 255, 0);
  6022. border:none;
  6023. border-radius:0px;
  6024. -moz-box-shadow:none;
  6025. -webkit-box-shadow:none;
  6026. box-shadow:none;
  6027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6028. font-weight:400;
  6029. font-style:normal;
  6030. font-size:16px;
  6031. }
  6032. #u15157 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:147px;
  6036. top:383px;
  6037. width:65px;
  6038. height:22px;
  6039. display:flex;
  6040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6041. font-weight:400;
  6042. font-style:normal;
  6043. font-size:16px;
  6044. }
  6045. #u15157 .text {
  6046. position:absolute;
  6047. align-self:flex-start;
  6048. padding:0px 0px 0px 0px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u15157_text {
  6053. border-width:0px;
  6054. white-space:nowrap;
  6055. text-transform:none;
  6056. }
  6057. #u15158_div {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:65px;
  6063. height:22px;
  6064. background:inherit;
  6065. background-color:rgba(255, 255, 255, 0);
  6066. border:none;
  6067. border-radius:0px;
  6068. -moz-box-shadow:none;
  6069. -webkit-box-shadow:none;
  6070. box-shadow:none;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:16px;
  6075. }
  6076. #u15158 {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:147px;
  6080. top:159px;
  6081. width:65px;
  6082. height:22px;
  6083. display:flex;
  6084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:16px;
  6088. }
  6089. #u15158 .text {
  6090. position:absolute;
  6091. align-self:flex-start;
  6092. padding:0px 0px 0px 0px;
  6093. box-sizing:border-box;
  6094. width:100%;
  6095. }
  6096. #u15158_text {
  6097. border-width:0px;
  6098. white-space:nowrap;
  6099. text-transform:none;
  6100. }
  6101. #u15159_div {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:267px;
  6107. height:20px;
  6108. background:inherit;
  6109. background-color:rgba(255, 255, 255, 0);
  6110. border:none;
  6111. border-left:0px;
  6112. border-top:0px;
  6113. border-right:0px;
  6114. border-radius:0px;
  6115. border-bottom-right-radius:0px;
  6116. border-bottom-left-radius:0px;
  6117. -moz-box-shadow:none;
  6118. -webkit-box-shadow:none;
  6119. box-shadow:none;
  6120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6121. font-weight:400;
  6122. font-style:normal;
  6123. font-size:14px;
  6124. color:#7F7F7F;
  6125. }
  6126. #u15159 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:352px;
  6130. top:100px;
  6131. width:267px;
  6132. height:20px;
  6133. display:flex;
  6134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6135. font-weight:400;
  6136. font-style:normal;
  6137. font-size:14px;
  6138. color:#7F7F7F;
  6139. }
  6140. #u15159 .text {
  6141. position:absolute;
  6142. align-self:center;
  6143. padding:0px 0px 0px 0px;
  6144. box-sizing:border-box;
  6145. width:100%;
  6146. }
  6147. #u15159_text {
  6148. border-width:0px;
  6149. white-space:nowrap;
  6150. text-transform:none;
  6151. }
  6152. #u15160 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:0px;
  6158. height:0px;
  6159. }
  6160. #u15161 {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:0px;
  6166. height:0px;
  6167. }
  6168. #u15162_div {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:380px;
  6174. height:160px;
  6175. background:inherit;
  6176. background-color:rgba(255, 255, 255, 1);
  6177. box-sizing:border-box;
  6178. border-width:1px;
  6179. border-style:solid;
  6180. border-color:rgba(242, 242, 242, 1);
  6181. border-radius:4px;
  6182. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6183. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6184. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6185. font-family:'Microsoft YaHei', sans-serif;
  6186. font-weight:400;
  6187. font-style:normal;
  6188. }
  6189. #u15162 {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:1625px;
  6193. top:261px;
  6194. width:380px;
  6195. height:160px;
  6196. display:flex;
  6197. font-family:'Microsoft YaHei', sans-serif;
  6198. font-weight:400;
  6199. font-style:normal;
  6200. }
  6201. #u15162 .text {
  6202. position:absolute;
  6203. align-self:center;
  6204. padding:2px 2px 2px 2px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u15162_text {
  6209. border-width:0px;
  6210. word-wrap:break-word;
  6211. text-transform:none;
  6212. visibility:hidden;
  6213. }
  6214. #u15163_div {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:163px;
  6220. height:21px;
  6221. background:inherit;
  6222. background-color:rgba(255, 255, 255, 0);
  6223. border:none;
  6224. border-radius:0px;
  6225. -moz-box-shadow:none;
  6226. -webkit-box-shadow:none;
  6227. box-shadow:none;
  6228. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6229. font-weight:650;
  6230. font-style:normal;
  6231. font-size:18px;
  6232. color:#000000;
  6233. line-height:22px;
  6234. }
  6235. #u15163 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:1685px;
  6239. top:286px;
  6240. width:163px;
  6241. height:21px;
  6242. display:flex;
  6243. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6244. font-weight:650;
  6245. font-style:normal;
  6246. font-size:18px;
  6247. color:#000000;
  6248. line-height:22px;
  6249. }
  6250. #u15163 .text {
  6251. position:absolute;
  6252. align-self:flex-start;
  6253. padding:0px 0px 0px 0px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u15163_text {
  6258. border-width:0px;
  6259. white-space:nowrap;
  6260. text-transform:none;
  6261. }
  6262. #u15164_div {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:61px;
  6268. height:32px;
  6269. background:inherit;
  6270. background-color:rgba(24, 144, 255, 1);
  6271. border:none;
  6272. border-radius:4px;
  6273. -moz-box-shadow:none;
  6274. -webkit-box-shadow:none;
  6275. box-shadow:none;
  6276. font-family:'Microsoft YaHei', sans-serif;
  6277. font-weight:400;
  6278. font-style:normal;
  6279. font-size:14px;
  6280. color:#FFFFFF;
  6281. }
  6282. #u15164 {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:1924px;
  6286. top:373px;
  6287. width:61px;
  6288. height:32px;
  6289. display:flex;
  6290. font-family:'Microsoft YaHei', sans-serif;
  6291. font-weight:400;
  6292. font-style:normal;
  6293. font-size:14px;
  6294. color:#FFFFFF;
  6295. }
  6296. #u15164 .text {
  6297. position:absolute;
  6298. align-self:center;
  6299. padding:2px 16px 2px 16px;
  6300. box-sizing:border-box;
  6301. width:100%;
  6302. }
  6303. #u15164_text {
  6304. border-width:0px;
  6305. white-space:nowrap;
  6306. text-transform:none;
  6307. }
  6308. #u15165_div {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:0px;
  6312. top:0px;
  6313. width:66px;
  6314. height:32px;
  6315. background:inherit;
  6316. background-color:rgba(255, 255, 255, 1);
  6317. box-sizing:border-box;
  6318. border-width:1px;
  6319. border-style:solid;
  6320. border-color:rgba(217, 217, 217, 1);
  6321. border-radius:4px;
  6322. -moz-box-shadow:none;
  6323. -webkit-box-shadow:none;
  6324. box-shadow:none;
  6325. font-family:'Microsoft YaHei', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. font-size:14px;
  6329. color:rgba(0, 0, 0, 0.647058823529412);
  6330. line-height:21px;
  6331. }
  6332. #u15165 {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:1842px;
  6336. top:373px;
  6337. width:66px;
  6338. height:32px;
  6339. display:flex;
  6340. font-family:'Microsoft YaHei', sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:14px;
  6344. color:rgba(0, 0, 0, 0.647058823529412);
  6345. line-height:21px;
  6346. }
  6347. #u15165 .text {
  6348. position:absolute;
  6349. align-self:center;
  6350. padding:2px 16px 2px 16px;
  6351. box-sizing:border-box;
  6352. width:100%;
  6353. }
  6354. #u15165_text {
  6355. border-width:0px;
  6356. white-space:nowrap;
  6357. text-transform:none;
  6358. }
  6359. #u15166_img {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:20px;
  6365. height:20px;
  6366. }
  6367. #u15166 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:1654px;
  6371. top:290px;
  6372. width:20px;
  6373. height:20px;
  6374. display:flex;
  6375. }
  6376. #u15166 .text {
  6377. position:absolute;
  6378. align-self:center;
  6379. padding:2px 2px 2px 2px;
  6380. box-sizing:border-box;
  6381. width:100%;
  6382. }
  6383. #u15166_text {
  6384. border-width:0px;
  6385. word-wrap:break-word;
  6386. text-transform:none;
  6387. visibility:hidden;
  6388. }
  6389. #u15167_div {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:239px;
  6395. height:22px;
  6396. background:inherit;
  6397. background-color:rgba(255, 255, 255, 0);
  6398. border:none;
  6399. border-radius:0px;
  6400. -moz-box-shadow:none;
  6401. -webkit-box-shadow:none;
  6402. box-shadow:none;
  6403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:14px;
  6407. color:#7F7F7F;
  6408. line-height:22px;
  6409. }
  6410. #u15167 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:1685px;
  6414. top:320px;
  6415. width:239px;
  6416. height:22px;
  6417. display:flex;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:14px;
  6422. color:#7F7F7F;
  6423. line-height:22px;
  6424. }
  6425. #u15167 .text {
  6426. position:absolute;
  6427. align-self:flex-start;
  6428. padding:0px 0px 0px 0px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u15167_text {
  6433. border-width:0px;
  6434. white-space:nowrap;
  6435. text-transform:none;
  6436. }
  6437. #u15168 {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:0px;
  6443. height:0px;
  6444. }
  6445. #u15169_div {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:0px;
  6449. top:0px;
  6450. width:140px;
  6451. height:30px;
  6452. background:inherit;
  6453. background-color:rgba(255, 255, 255, 1);
  6454. box-sizing:border-box;
  6455. border-width:1px;
  6456. border-style:solid;
  6457. border-color:rgba(215, 215, 215, 1);
  6458. border-radius:4px;
  6459. -moz-box-shadow:none;
  6460. -webkit-box-shadow:none;
  6461. box-shadow:none;
  6462. font-size:11px;
  6463. }
  6464. #u15169 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:663px;
  6468. top:145px;
  6469. width:140px;
  6470. height:30px;
  6471. display:flex;
  6472. font-size:11px;
  6473. }
  6474. #u15169 .text {
  6475. position:absolute;
  6476. align-self:center;
  6477. padding:2px 2px 2px 2px;
  6478. box-sizing:border-box;
  6479. width:100%;
  6480. }
  6481. #u15169_text {
  6482. border-width:0px;
  6483. word-wrap:break-word;
  6484. text-transform:none;
  6485. visibility:hidden;
  6486. }
  6487. #u15170_input {
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:126px;
  6492. height:23px;
  6493. padding:2px 2px 2px 2px;
  6494. font-family:'ArialMT', 'Arial', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:11px;
  6498. letter-spacing:normal;
  6499. color:#AAAAAA;
  6500. vertical-align:none;
  6501. text-align:left;
  6502. text-transform:none;
  6503. background-color:transparent;
  6504. border-color:transparent;
  6505. }
  6506. #u15170_input.disabled {
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:126px;
  6511. height:23px;
  6512. padding:2px 2px 2px 2px;
  6513. font-family:'ArialMT', 'Arial', sans-serif;
  6514. font-weight:400;
  6515. font-style:normal;
  6516. font-size:11px;
  6517. letter-spacing:normal;
  6518. color:#AAAAAA;
  6519. vertical-align:none;
  6520. text-align:left;
  6521. text-transform:none;
  6522. background-color:transparent;
  6523. border-color:transparent;
  6524. }
  6525. #u15170_div {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:126px;
  6531. height:23px;
  6532. background:inherit;
  6533. background-color:rgba(255, 255, 255, 1);
  6534. border:none;
  6535. border-radius:0px;
  6536. -moz-box-shadow:none;
  6537. -webkit-box-shadow:none;
  6538. box-shadow:none;
  6539. font-size:11px;
  6540. color:#AAAAAA;
  6541. }
  6542. #u15170 {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:670px;
  6546. top:147px;
  6547. width:126px;
  6548. height:23px;
  6549. display:flex;
  6550. font-size:11px;
  6551. color:#AAAAAA;
  6552. }
  6553. #u15170 .text {
  6554. position:absolute;
  6555. align-self:flex-start;
  6556. padding:2px 2px 2px 2px;
  6557. box-sizing:border-box;
  6558. width:100%;
  6559. }
  6560. #u15170_div.disabled {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:126px;
  6566. height:23px;
  6567. background:inherit;
  6568. background-color:rgba(240, 240, 240, 1);
  6569. border:none;
  6570. border-radius:0px;
  6571. -moz-box-shadow:none;
  6572. -webkit-box-shadow:none;
  6573. box-shadow:none;
  6574. font-size:11px;
  6575. color:#AAAAAA;
  6576. }
  6577. #u15170.disabled {
  6578. }
  6579. .u15170_input_option {
  6580. font-size:11px;
  6581. }
  6582. #u15171_div {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:0px;
  6586. top:0px;
  6587. width:345px;
  6588. height:50px;
  6589. background:inherit;
  6590. background-color:rgba(255, 255, 255, 0);
  6591. border:none;
  6592. border-top:0px;
  6593. border-right:0px;
  6594. border-bottom:0px;
  6595. border-radius:0px;
  6596. border-top-left-radius:0px;
  6597. border-bottom-left-radius:0px;
  6598. -moz-box-shadow:none;
  6599. -webkit-box-shadow:none;
  6600. box-shadow:none;
  6601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6602. font-weight:400;
  6603. font-style:normal;
  6604. font-size:14px;
  6605. color:#D9001B;
  6606. }
  6607. #u15171 {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:1625px;
  6611. top:194px;
  6612. width:345px;
  6613. height:50px;
  6614. display:flex;
  6615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. font-size:14px;
  6619. color:#D9001B;
  6620. }
  6621. #u15171 .text {
  6622. position:absolute;
  6623. align-self:center;
  6624. padding:5px 0px 5px 0px;
  6625. box-sizing:border-box;
  6626. width:100%;
  6627. }
  6628. #u15171_text {
  6629. border-width:0px;
  6630. white-space:nowrap;
  6631. text-transform:none;
  6632. }
  6633. #u15172 {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:0px;
  6639. height:0px;
  6640. }
  6641. #u15173_div {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:0px;
  6645. top:0px;
  6646. width:380px;
  6647. height:164px;
  6648. background:inherit;
  6649. background-color:rgba(255, 255, 255, 1);
  6650. box-sizing:border-box;
  6651. border-width:1px;
  6652. border-style:solid;
  6653. border-color:rgba(204, 204, 204, 1);
  6654. border-radius:4px;
  6655. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6656. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6657. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6658. font-family:'Microsoft YaHei', sans-serif;
  6659. font-weight:400;
  6660. font-style:normal;
  6661. }
  6662. #u15173 {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:2029px;
  6666. top:261px;
  6667. width:380px;
  6668. height:164px;
  6669. display:flex;
  6670. font-family:'Microsoft YaHei', sans-serif;
  6671. font-weight:400;
  6672. font-style:normal;
  6673. }
  6674. #u15173 .text {
  6675. position:absolute;
  6676. align-self:center;
  6677. padding:2px 2px 2px 2px;
  6678. box-sizing:border-box;
  6679. width:100%;
  6680. }
  6681. #u15173_text {
  6682. border-width:0px;
  6683. word-wrap:break-word;
  6684. text-transform:none;
  6685. visibility:hidden;
  6686. }
  6687. #u15174_div {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:0px;
  6691. top:0px;
  6692. width:288px;
  6693. height:22px;
  6694. background:inherit;
  6695. background-color:rgba(255, 255, 255, 0);
  6696. border:none;
  6697. border-radius:0px;
  6698. -moz-box-shadow:none;
  6699. -webkit-box-shadow:none;
  6700. box-shadow:none;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:14px;
  6705. color:#666666;
  6706. line-height:22px;
  6707. }
  6708. #u15174 {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:2089px;
  6712. top:316px;
  6713. width:288px;
  6714. height:22px;
  6715. display:flex;
  6716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6717. font-weight:400;
  6718. font-style:normal;
  6719. font-size:14px;
  6720. color:#666666;
  6721. line-height:22px;
  6722. }
  6723. #u15174 .text {
  6724. position:absolute;
  6725. align-self:flex-start;
  6726. padding:0px 0px 0px 0px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u15174_text {
  6731. border-width:0px;
  6732. word-wrap:break-word;
  6733. text-transform:none;
  6734. }
  6735. #u15175_div {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:91px;
  6741. height:21px;
  6742. background:inherit;
  6743. background-color:rgba(255, 255, 255, 0);
  6744. border:none;
  6745. border-radius:0px;
  6746. -moz-box-shadow:none;
  6747. -webkit-box-shadow:none;
  6748. box-shadow:none;
  6749. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6750. font-weight:650;
  6751. font-style:normal;
  6752. font-size:18px;
  6753. color:#000000;
  6754. line-height:22px;
  6755. }
  6756. #u15175 {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:2089px;
  6760. top:286px;
  6761. width:91px;
  6762. height:21px;
  6763. display:flex;
  6764. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6765. font-weight:650;
  6766. font-style:normal;
  6767. font-size:18px;
  6768. color:#000000;
  6769. line-height:22px;
  6770. }
  6771. #u15175 .text {
  6772. position:absolute;
  6773. align-self:flex-start;
  6774. padding:0px 0px 0px 0px;
  6775. box-sizing:border-box;
  6776. width:100%;
  6777. }
  6778. #u15175_text {
  6779. border-width:0px;
  6780. white-space:nowrap;
  6781. text-transform:none;
  6782. }
  6783. #u15176_div {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:61px;
  6789. height:30px;
  6790. background:inherit;
  6791. background-color:rgba(24, 144, 255, 1);
  6792. border:none;
  6793. border-radius:4px;
  6794. -moz-box-shadow:none;
  6795. -webkit-box-shadow:none;
  6796. box-shadow:none;
  6797. font-family:'Microsoft YaHei', sans-serif;
  6798. font-weight:400;
  6799. font-style:normal;
  6800. font-size:14px;
  6801. color:#FFFFFF;
  6802. }
  6803. #u15176 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:2328px;
  6807. top:376px;
  6808. width:61px;
  6809. height:30px;
  6810. display:flex;
  6811. font-family:'Microsoft YaHei', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:14px;
  6815. color:#FFFFFF;
  6816. }
  6817. #u15176 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:2px 16px 2px 16px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u15176_text {
  6825. border-width:0px;
  6826. white-space:nowrap;
  6827. text-transform:none;
  6828. }
  6829. #u15177_div {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:66px;
  6835. height:30px;
  6836. background:inherit;
  6837. background-color:rgba(255, 255, 255, 1);
  6838. box-sizing:border-box;
  6839. border-width:1px;
  6840. border-style:solid;
  6841. border-color:rgba(217, 217, 217, 1);
  6842. border-radius:4px;
  6843. -moz-box-shadow:none;
  6844. -webkit-box-shadow:none;
  6845. box-shadow:none;
  6846. font-family:'Microsoft YaHei', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:14px;
  6850. color:rgba(0, 0, 0, 0.647058823529412);
  6851. line-height:21px;
  6852. }
  6853. #u15177 {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:2249px;
  6857. top:376px;
  6858. width:66px;
  6859. height:30px;
  6860. display:flex;
  6861. font-family:'Microsoft YaHei', sans-serif;
  6862. font-weight:400;
  6863. font-style:normal;
  6864. font-size:14px;
  6865. color:rgba(0, 0, 0, 0.647058823529412);
  6866. line-height:21px;
  6867. }
  6868. #u15177 .text {
  6869. position:absolute;
  6870. align-self:center;
  6871. padding:2px 16px 2px 16px;
  6872. box-sizing:border-box;
  6873. width:100%;
  6874. }
  6875. #u15177_text {
  6876. border-width:0px;
  6877. white-space:nowrap;
  6878. text-transform:none;
  6879. }
  6880. #u15178_img {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:20px;
  6886. height:20px;
  6887. }
  6888. #u15178 {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:2058px;
  6892. top:288px;
  6893. width:20px;
  6894. height:20px;
  6895. display:flex;
  6896. }
  6897. #u15178 .text {
  6898. position:absolute;
  6899. align-self:center;
  6900. padding:2px 2px 2px 2px;
  6901. box-sizing:border-box;
  6902. width:100%;
  6903. }
  6904. #u15178_text {
  6905. border-width:0px;
  6906. word-wrap:break-word;
  6907. text-transform:none;
  6908. visibility:hidden;
  6909. }