styles.css 133 KB

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