styles.css 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1346px;
  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. #u40276_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u40276 {
  28. border-width:0px;
  29. position:absolute;
  30. left:453px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u40276 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u40276_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u40277_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. #u40277 {
  73. border-width:0px;
  74. position:absolute;
  75. left:482px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u40277 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u40277_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u40278 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u40279_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. #u40279 {
  121. border-width:0px;
  122. position:absolute;
  123. left:762px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u40279 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u40279_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u40280 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u40281_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u40281 {
  159. border-width:0px;
  160. position:absolute;
  161. left:825px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u40281 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u40281_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u40282_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u40282 {
  189. border-width:0px;
  190. position:absolute;
  191. left:831px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u40282 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u40282_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u40283 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u40284_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u40284 {
  227. border-width:0px;
  228. position:absolute;
  229. left:776px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u40284 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u40284_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u40285_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u40285 {
  257. border-width:0px;
  258. position:absolute;
  259. left:792px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u40285 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u40285_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u40286_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u40286 {
  287. border-width:0px;
  288. position:absolute;
  289. left:783px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u40286 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u40286_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u40287_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u40287 {
  317. border-width:0px;
  318. position:absolute;
  319. left:800px;
  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. #u40287 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u40287_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u40288_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u40288 {
  351. border-width:0px;
  352. position:absolute;
  353. left:482px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u40288 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u40288_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u40289_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. #u40289 {
  393. border-width:0px;
  394. position:absolute;
  395. left:482px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u40289 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u40289_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u40290 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u40291_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u40291 {
  431. border-width:0px;
  432. position:absolute;
  433. left:522px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u40291 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u40291_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u40292_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. #u40292 {
  472. border-width:0px;
  473. position:absolute;
  474. left:522px;
  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. #u40292 .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. #u40292_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u40293 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u40294_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u40294 {
  513. border-width:0px;
  514. position:absolute;
  515. left:792px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u40294 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u40294_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u40295_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. #u40295 {
  554. border-width:0px;
  555. position:absolute;
  556. left:792px;
  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. #u40295 .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. #u40295_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u40296_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. #u40296 {
  594. border-width:0px;
  595. position:absolute;
  596. left:482px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u40296 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u40296_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u40297 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u40298_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u40298 {
  632. border-width:0px;
  633. position:absolute;
  634. left:704px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u40298 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u40298_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u40299_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. #u40299 {
  673. border-width:0px;
  674. position:absolute;
  675. left:698px;
  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. #u40299 .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. #u40299_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u40300 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u40301_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u40301 {
  714. border-width:0px;
  715. position:absolute;
  716. left:610px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u40301 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u40301_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u40302_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. #u40302 {
  755. border-width:0px;
  756. position:absolute;
  757. left:604px;
  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. #u40302 .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. #u40302_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u40303_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  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. #u40303 {
  798. border-width:0px;
  799. position:absolute;
  800. left:482px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u40303 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u40303_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u40304_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:735px;
  826. background:inherit;
  827. background-color:rgba(242, 242, 242, 1);
  828. border:none;
  829. border-top:0px;
  830. border-radius:22px;
  831. border-top-left-radius:0px;
  832. border-top-right-radius:0px;
  833. -moz-box-shadow:none;
  834. -webkit-box-shadow:none;
  835. box-shadow:none;
  836. }
  837. #u40304 {
  838. border-width:0px;
  839. position:absolute;
  840. left:482px;
  841. top:105px;
  842. width:375px;
  843. height:735px;
  844. display:flex;
  845. }
  846. #u40304 .text {
  847. position:absolute;
  848. align-self:center;
  849. padding:2px 2px 2px 2px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u40304_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. visibility:hidden;
  858. }
  859. #u40306_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:433px;
  865. height:865px;
  866. }
  867. #u40306 {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:433px;
  873. height:865px;
  874. display:flex;
  875. }
  876. #u40306 .text {
  877. position:absolute;
  878. align-self:center;
  879. padding:2px 2px 2px 2px;
  880. box-sizing:border-box;
  881. width:100%;
  882. }
  883. #u40306_text {
  884. border-width:0px;
  885. word-wrap:break-word;
  886. text-transform:none;
  887. visibility:hidden;
  888. }
  889. #u40307_div {
  890. border-width:0px;
  891. position:absolute;
  892. left:0px;
  893. top:0px;
  894. width:375px;
  895. height:40px;
  896. background:inherit;
  897. background-color:rgba(255, 255, 255, 1);
  898. box-sizing:border-box;
  899. border-width:1px;
  900. border-style:solid;
  901. border-color:rgba(215, 215, 215, 1);
  902. border-left:0px;
  903. border-top:0px;
  904. border-right:0px;
  905. border-radius:0px;
  906. border-bottom-right-radius:0px;
  907. border-bottom-left-radius:0px;
  908. -moz-box-shadow:none;
  909. -webkit-box-shadow:none;
  910. box-shadow:none;
  911. }
  912. #u40307 {
  913. border-width:0px;
  914. position:absolute;
  915. left:29px;
  916. top:67px;
  917. width:375px;
  918. height:40px;
  919. display:flex;
  920. }
  921. #u40307 .text {
  922. position:absolute;
  923. align-self:center;
  924. padding:2px 2px 2px 2px;
  925. box-sizing:border-box;
  926. width:100%;
  927. }
  928. #u40307_text {
  929. border-width:0px;
  930. word-wrap:break-word;
  931. text-transform:none;
  932. visibility:hidden;
  933. }
  934. #u40308 {
  935. border-width:0px;
  936. position:absolute;
  937. left:0px;
  938. top:0px;
  939. width:0px;
  940. height:0px;
  941. }
  942. #u40309_div {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:88px;
  948. height:32px;
  949. background:inherit;
  950. background-color:rgba(255, 255, 255, 1);
  951. box-sizing:border-box;
  952. border-width:1px;
  953. border-style:solid;
  954. border-color:rgba(242, 242, 242, 1);
  955. border-radius:33px;
  956. -moz-box-shadow:none;
  957. -webkit-box-shadow:none;
  958. box-shadow:none;
  959. }
  960. #u40309 {
  961. border-width:0px;
  962. position:absolute;
  963. left:309px;
  964. top:71px;
  965. width:88px;
  966. height:32px;
  967. display:flex;
  968. }
  969. #u40309 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:2px 2px 2px 2px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u40309_text {
  977. border-width:0px;
  978. word-wrap:break-word;
  979. text-transform:none;
  980. visibility:hidden;
  981. }
  982. #u40310 {
  983. border-width:0px;
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:0px;
  988. height:0px;
  989. }
  990. #u40311_img {
  991. border-width:0px;
  992. position:absolute;
  993. left:0px;
  994. top:0px;
  995. width:18px;
  996. height:18px;
  997. }
  998. #u40311 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:372px;
  1002. top:78px;
  1003. width:18px;
  1004. height:18px;
  1005. display:flex;
  1006. }
  1007. #u40311 .text {
  1008. position:absolute;
  1009. align-self:center;
  1010. padding:2px 2px 2px 2px;
  1011. box-sizing:border-box;
  1012. width:100%;
  1013. }
  1014. #u40311_text {
  1015. border-width:0px;
  1016. word-wrap:break-word;
  1017. text-transform:none;
  1018. visibility:hidden;
  1019. }
  1020. #u40312_img {
  1021. border-width:0px;
  1022. position:absolute;
  1023. left:0px;
  1024. top:0px;
  1025. width:6px;
  1026. height:6px;
  1027. }
  1028. #u40312 {
  1029. border-width:0px;
  1030. position:absolute;
  1031. left:378px;
  1032. top:84px;
  1033. width:6px;
  1034. height:6px;
  1035. display:flex;
  1036. }
  1037. #u40312 .text {
  1038. position:absolute;
  1039. align-self:center;
  1040. padding:2px 2px 2px 2px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u40312_text {
  1045. border-width:0px;
  1046. word-wrap:break-word;
  1047. text-transform:none;
  1048. visibility:hidden;
  1049. }
  1050. #u40313 {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:0px;
  1056. height:0px;
  1057. }
  1058. #u40314_img {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:0px;
  1062. top:0px;
  1063. width:5px;
  1064. height:5px;
  1065. }
  1066. #u40314 {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:323px;
  1070. top:85px;
  1071. width:5px;
  1072. height:5px;
  1073. display:flex;
  1074. }
  1075. #u40314 .text {
  1076. position:absolute;
  1077. align-self:center;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u40314_text {
  1083. border-width:0px;
  1084. word-wrap:break-word;
  1085. text-transform:none;
  1086. visibility:hidden;
  1087. }
  1088. #u40315_img {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:5px;
  1094. height:5px;
  1095. }
  1096. #u40315 {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:339px;
  1100. top:85px;
  1101. width:5px;
  1102. height:5px;
  1103. display:flex;
  1104. }
  1105. #u40315 .text {
  1106. position:absolute;
  1107. align-self:center;
  1108. padding:2px 2px 2px 2px;
  1109. box-sizing:border-box;
  1110. width:100%;
  1111. }
  1112. #u40315_text {
  1113. border-width:0px;
  1114. word-wrap:break-word;
  1115. text-transform:none;
  1116. visibility:hidden;
  1117. }
  1118. #u40316_img {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:0px;
  1122. top:0px;
  1123. width:7px;
  1124. height:7px;
  1125. }
  1126. #u40316 {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:330px;
  1130. top:84px;
  1131. width:7px;
  1132. height:7px;
  1133. display:flex;
  1134. }
  1135. #u40316 .text {
  1136. position:absolute;
  1137. align-self:center;
  1138. padding:2px 2px 2px 2px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u40316_text {
  1143. border-width:0px;
  1144. word-wrap:break-word;
  1145. text-transform:none;
  1146. visibility:hidden;
  1147. }
  1148. #u40317_img {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:0px;
  1152. top:0px;
  1153. width:19px;
  1154. height:2px;
  1155. }
  1156. #u40317 {
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:347px;
  1160. top:87px;
  1161. width:18px;
  1162. height:1px;
  1163. display:flex;
  1164. -webkit-transform:rotate(90deg);
  1165. -moz-transform:rotate(90deg);
  1166. -ms-transform:rotate(90deg);
  1167. transform:rotate(90deg);
  1168. }
  1169. #u40317 .text {
  1170. position:absolute;
  1171. align-self:center;
  1172. padding:2px 2px 2px 2px;
  1173. box-sizing:border-box;
  1174. width:100%;
  1175. }
  1176. #u40317_text {
  1177. border-width:0px;
  1178. word-wrap:break-word;
  1179. text-transform:none;
  1180. visibility:hidden;
  1181. }
  1182. #u40318_img {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:0px;
  1186. top:0px;
  1187. width:375px;
  1188. height:44px;
  1189. }
  1190. #u40318 {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:29px;
  1194. top:24px;
  1195. width:375px;
  1196. height:44px;
  1197. display:flex;
  1198. }
  1199. #u40318 .text {
  1200. position:absolute;
  1201. align-self:center;
  1202. padding:2px 2px 2px 2px;
  1203. box-sizing:border-box;
  1204. width:100%;
  1205. }
  1206. #u40318_text {
  1207. border-width:0px;
  1208. word-wrap:break-word;
  1209. text-transform:none;
  1210. visibility:hidden;
  1211. }
  1212. #u40319_div {
  1213. border-width:0px;
  1214. position:absolute;
  1215. left:0px;
  1216. top:0px;
  1217. width:375px;
  1218. height:50px;
  1219. background:inherit;
  1220. background-color:rgba(255, 255, 255, 1);
  1221. box-sizing:border-box;
  1222. border-width:1px;
  1223. border-style:solid;
  1224. border-color:rgba(242, 242, 242, 1);
  1225. border-radius:26px;
  1226. border-top-left-radius:0px;
  1227. border-top-right-radius:0px;
  1228. -moz-box-shadow:none;
  1229. -webkit-box-shadow:none;
  1230. box-shadow:none;
  1231. }
  1232. #u40319 {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:29px;
  1236. top:788px;
  1237. width:375px;
  1238. height:50px;
  1239. display:flex;
  1240. }
  1241. #u40319 .text {
  1242. position:absolute;
  1243. align-self:center;
  1244. padding:2px 2px 2px 2px;
  1245. box-sizing:border-box;
  1246. width:100%;
  1247. }
  1248. #u40319_text {
  1249. border-width:0px;
  1250. word-wrap:break-word;
  1251. text-transform:none;
  1252. visibility:hidden;
  1253. }
  1254. #u40320 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:0px;
  1260. height:0px;
  1261. }
  1262. #u40321_img {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:0px;
  1266. top:0px;
  1267. width:24px;
  1268. height:24px;
  1269. }
  1270. #u40321 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:69px;
  1274. top:792px;
  1275. width:24px;
  1276. height:24px;
  1277. display:flex;
  1278. font-size:8px;
  1279. }
  1280. #u40321 .text {
  1281. position:absolute;
  1282. align-self:center;
  1283. padding:2px 2px 2px 2px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u40321_text {
  1288. border-width:0px;
  1289. word-wrap:break-word;
  1290. text-transform:none;
  1291. }
  1292. #u40322_div {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:25px;
  1298. height:17px;
  1299. background:inherit;
  1300. background-color:rgba(255, 255, 255, 0);
  1301. border:none;
  1302. border-radius:0px;
  1303. -moz-box-shadow:none;
  1304. -webkit-box-shadow:none;
  1305. box-shadow:none;
  1306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1307. font-weight:400;
  1308. font-style:normal;
  1309. font-size:12px;
  1310. }
  1311. #u40322 {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:69px;
  1315. top:817px;
  1316. width:25px;
  1317. height:17px;
  1318. display:flex;
  1319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1320. font-weight:400;
  1321. font-style:normal;
  1322. font-size:12px;
  1323. }
  1324. #u40322 .text {
  1325. position:absolute;
  1326. align-self:flex-start;
  1327. padding:0px 0px 0px 0px;
  1328. box-sizing:border-box;
  1329. width:100%;
  1330. }
  1331. #u40322_text {
  1332. border-width:0px;
  1333. white-space:nowrap;
  1334. text-transform:none;
  1335. }
  1336. #u40323 {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:0px;
  1342. height:0px;
  1343. }
  1344. #u40324_img {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:0px;
  1348. top:0px;
  1349. width:24px;
  1350. height:24px;
  1351. }
  1352. #u40324 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:339px;
  1356. top:794px;
  1357. width:24px;
  1358. height:24px;
  1359. display:flex;
  1360. font-size:8px;
  1361. }
  1362. #u40324 .text {
  1363. position:absolute;
  1364. align-self:center;
  1365. padding:2px 2px 2px 2px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u40324_text {
  1370. border-width:0px;
  1371. word-wrap:break-word;
  1372. text-transform:none;
  1373. }
  1374. #u40325_div {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:25px;
  1380. height:17px;
  1381. background:inherit;
  1382. background-color:rgba(255, 255, 255, 0);
  1383. border:none;
  1384. border-radius:0px;
  1385. -moz-box-shadow:none;
  1386. -webkit-box-shadow:none;
  1387. box-shadow:none;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. }
  1393. #u40325 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:339px;
  1397. top:819px;
  1398. width:25px;
  1399. height:17px;
  1400. display:flex;
  1401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1402. font-weight:400;
  1403. font-style:normal;
  1404. font-size:12px;
  1405. }
  1406. #u40325 .text {
  1407. position:absolute;
  1408. align-self:flex-start;
  1409. padding:0px 0px 0px 0px;
  1410. box-sizing:border-box;
  1411. width:100%;
  1412. }
  1413. #u40325_text {
  1414. border-width:0px;
  1415. white-space:nowrap;
  1416. text-transform:none;
  1417. }
  1418. #u40326_div {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:0px;
  1422. top:0px;
  1423. width:375px;
  1424. height:681px;
  1425. background:inherit;
  1426. background-color:rgba(242, 242, 242, 0.462745098039216);
  1427. border:none;
  1428. border-radius:0px;
  1429. -moz-box-shadow:none;
  1430. -webkit-box-shadow:none;
  1431. box-shadow:none;
  1432. }
  1433. #u40326 {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:29px;
  1437. top:107px;
  1438. width:375px;
  1439. height:681px;
  1440. display:flex;
  1441. }
  1442. #u40326 .text {
  1443. position:absolute;
  1444. align-self:center;
  1445. padding:2px 2px 2px 2px;
  1446. box-sizing:border-box;
  1447. width:100%;
  1448. }
  1449. #u40326_text {
  1450. border-width:0px;
  1451. word-wrap:break-word;
  1452. text-transform:none;
  1453. visibility:hidden;
  1454. }
  1455. #u40327 {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:0px;
  1461. height:0px;
  1462. }
  1463. #u40328_img {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:0px;
  1467. top:0px;
  1468. width:24px;
  1469. height:24px;
  1470. }
  1471. #u40328 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:251px;
  1475. top:792px;
  1476. width:24px;
  1477. height:24px;
  1478. display:flex;
  1479. font-size:8px;
  1480. }
  1481. #u40328 .text {
  1482. position:absolute;
  1483. align-self:center;
  1484. padding:2px 2px 2px 2px;
  1485. box-sizing:border-box;
  1486. width:100%;
  1487. }
  1488. #u40328_text {
  1489. border-width:0px;
  1490. word-wrap:break-word;
  1491. text-transform:none;
  1492. }
  1493. #u40329_div {
  1494. border-width:0px;
  1495. position:absolute;
  1496. left:0px;
  1497. top:0px;
  1498. width:37px;
  1499. height:17px;
  1500. background:inherit;
  1501. background-color:rgba(255, 255, 255, 0);
  1502. border:none;
  1503. border-radius:0px;
  1504. -moz-box-shadow:none;
  1505. -webkit-box-shadow:none;
  1506. box-shadow:none;
  1507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:12px;
  1511. }
  1512. #u40329 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:245px;
  1516. top:817px;
  1517. width:37px;
  1518. height:17px;
  1519. display:flex;
  1520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1521. font-weight:400;
  1522. font-style:normal;
  1523. font-size:12px;
  1524. }
  1525. #u40329 .text {
  1526. position:absolute;
  1527. align-self:flex-start;
  1528. padding:0px 0px 0px 0px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u40329_text {
  1533. border-width:0px;
  1534. white-space:nowrap;
  1535. text-transform:none;
  1536. }
  1537. #u40330 {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:0px;
  1543. height:0px;
  1544. }
  1545. #u40331_img {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:24px;
  1551. height:24px;
  1552. }
  1553. #u40331 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:157px;
  1557. top:792px;
  1558. width:24px;
  1559. height:24px;
  1560. display:flex;
  1561. font-size:8px;
  1562. }
  1563. #u40331 .text {
  1564. position:absolute;
  1565. align-self:center;
  1566. padding:2px 2px 2px 2px;
  1567. box-sizing:border-box;
  1568. width:100%;
  1569. }
  1570. #u40331_text {
  1571. border-width:0px;
  1572. word-wrap:break-word;
  1573. text-transform:none;
  1574. }
  1575. #u40332_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:37px;
  1581. height:17px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:12px;
  1593. }
  1594. #u40332 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:151px;
  1598. top:817px;
  1599. width:37px;
  1600. height:17px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:12px;
  1606. }
  1607. #u40332 .text {
  1608. position:absolute;
  1609. align-self:flex-start;
  1610. padding:0px 0px 0px 0px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u40332_text {
  1615. border-width:0px;
  1616. white-space:nowrap;
  1617. text-transform:none;
  1618. }
  1619. #u40333_div {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:375px;
  1625. height:772px;
  1626. background:inherit;
  1627. background-color:rgba(24, 144, 255, 1);
  1628. border:none;
  1629. border-top:0px;
  1630. border-radius:28px;
  1631. border-top-left-radius:0px;
  1632. border-top-right-radius:0px;
  1633. -moz-box-shadow:none;
  1634. -webkit-box-shadow:none;
  1635. box-shadow:none;
  1636. }
  1637. #u40333 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:29px;
  1641. top:68px;
  1642. width:375px;
  1643. height:772px;
  1644. display:flex;
  1645. }
  1646. #u40333 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u40333_text {
  1654. border-width:0px;
  1655. word-wrap:break-word;
  1656. text-transform:none;
  1657. visibility:hidden;
  1658. }
  1659. #u40334_div {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:0px;
  1663. top:0px;
  1664. width:12px;
  1665. height:12px;
  1666. background:inherit;
  1667. background-color:rgba(255, 255, 255, 0);
  1668. box-sizing:border-box;
  1669. border-width:2px;
  1670. border-style:solid;
  1671. border-color:rgba(255, 255, 255, 1);
  1672. border-right:0px;
  1673. border-bottom:0px;
  1674. border-radius:0px;
  1675. border-top-right-radius:0px;
  1676. border-bottom-left-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. }
  1681. #u40334 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:39px;
  1685. top:81px;
  1686. width:12px;
  1687. height:12px;
  1688. display:flex;
  1689. -webkit-transform:rotate(315deg);
  1690. -moz-transform:rotate(315deg);
  1691. -ms-transform:rotate(315deg);
  1692. transform:rotate(315deg);
  1693. }
  1694. #u40334 .text {
  1695. position:absolute;
  1696. align-self:center;
  1697. padding:2px 2px 2px 2px;
  1698. box-sizing:border-box;
  1699. width:100%;
  1700. }
  1701. #u40334_text {
  1702. border-width:0px;
  1703. word-wrap:break-word;
  1704. text-transform:none;
  1705. visibility:hidden;
  1706. }
  1707. #u40335 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:0px;
  1713. height:0px;
  1714. }
  1715. #u40336_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:375px;
  1721. height:60px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 1);
  1724. border:none;
  1725. border-top:0px;
  1726. border-radius:28px;
  1727. border-top-left-radius:0px;
  1728. border-top-right-radius:0px;
  1729. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1730. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1731. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1733. font-weight:400;
  1734. font-style:normal;
  1735. font-size:14px;
  1736. color:#FFFFFF;
  1737. }
  1738. #u40336 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:29px;
  1742. top:780px;
  1743. width:375px;
  1744. height:60px;
  1745. display:flex;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:14px;
  1750. color:#FFFFFF;
  1751. }
  1752. #u40336 .text {
  1753. position:absolute;
  1754. align-self:center;
  1755. padding:2px 2px 2px 2px;
  1756. box-sizing:border-box;
  1757. width:100%;
  1758. }
  1759. #u40336_text {
  1760. border-width:0px;
  1761. word-wrap:break-word;
  1762. text-transform:none;
  1763. visibility:hidden;
  1764. }
  1765. #u40337_div {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:324px;
  1771. height:40px;
  1772. background:inherit;
  1773. background-color:rgba(0, 137, 254, 1);
  1774. border:none;
  1775. border-radius:63px;
  1776. -moz-box-shadow:none;
  1777. -webkit-box-shadow:none;
  1778. box-shadow:none;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:14px;
  1783. color:#FFFFFF;
  1784. }
  1785. #u40337 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:57px;
  1789. top:789px;
  1790. width:324px;
  1791. height:40px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:14px;
  1797. color:#FFFFFF;
  1798. }
  1799. #u40337 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 2px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u40337_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u40338 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:0px;
  1817. height:0px;
  1818. }
  1819. #u40339_div {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:88px;
  1825. height:32px;
  1826. background:inherit;
  1827. background-color:rgba(255, 255, 255, 1);
  1828. box-sizing:border-box;
  1829. border-width:1px;
  1830. border-style:solid;
  1831. border-color:rgba(242, 242, 242, 1);
  1832. border-radius:33px;
  1833. -moz-box-shadow:none;
  1834. -webkit-box-shadow:none;
  1835. box-shadow:none;
  1836. }
  1837. #u40339 {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:309px;
  1841. top:71px;
  1842. width:88px;
  1843. height:32px;
  1844. display:flex;
  1845. }
  1846. #u40339 .text {
  1847. position:absolute;
  1848. align-self:center;
  1849. padding:2px 2px 2px 2px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u40339_text {
  1854. border-width:0px;
  1855. word-wrap:break-word;
  1856. text-transform:none;
  1857. visibility:hidden;
  1858. }
  1859. #u40340 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:0px;
  1865. height:0px;
  1866. }
  1867. #u40341_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:18px;
  1873. height:18px;
  1874. }
  1875. #u40341 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:372px;
  1879. top:78px;
  1880. width:18px;
  1881. height:18px;
  1882. display:flex;
  1883. }
  1884. #u40341 .text {
  1885. position:absolute;
  1886. align-self:center;
  1887. padding:2px 2px 2px 2px;
  1888. box-sizing:border-box;
  1889. width:100%;
  1890. }
  1891. #u40341_text {
  1892. border-width:0px;
  1893. word-wrap:break-word;
  1894. text-transform:none;
  1895. visibility:hidden;
  1896. }
  1897. #u40342_img {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:6px;
  1903. height:6px;
  1904. }
  1905. #u40342 {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:378px;
  1909. top:84px;
  1910. width:6px;
  1911. height:6px;
  1912. display:flex;
  1913. }
  1914. #u40342 .text {
  1915. position:absolute;
  1916. align-self:center;
  1917. padding:2px 2px 2px 2px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u40342_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. visibility:hidden;
  1926. }
  1927. #u40343 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:0px;
  1933. height:0px;
  1934. }
  1935. #u40344_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:5px;
  1941. height:5px;
  1942. }
  1943. #u40344 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:323px;
  1947. top:85px;
  1948. width:5px;
  1949. height:5px;
  1950. display:flex;
  1951. }
  1952. #u40344 .text {
  1953. position:absolute;
  1954. align-self:center;
  1955. padding:2px 2px 2px 2px;
  1956. box-sizing:border-box;
  1957. width:100%;
  1958. }
  1959. #u40344_text {
  1960. border-width:0px;
  1961. word-wrap:break-word;
  1962. text-transform:none;
  1963. visibility:hidden;
  1964. }
  1965. #u40345_img {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:5px;
  1971. height:5px;
  1972. }
  1973. #u40345 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:339px;
  1977. top:85px;
  1978. width:5px;
  1979. height:5px;
  1980. display:flex;
  1981. }
  1982. #u40345 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 2px 2px 2px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u40345_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. visibility:hidden;
  1994. }
  1995. #u40346_img {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:7px;
  2001. height:7px;
  2002. }
  2003. #u40346 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:330px;
  2007. top:84px;
  2008. width:7px;
  2009. height:7px;
  2010. display:flex;
  2011. }
  2012. #u40346 .text {
  2013. position:absolute;
  2014. align-self:center;
  2015. padding:2px 2px 2px 2px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u40346_text {
  2020. border-width:0px;
  2021. word-wrap:break-word;
  2022. text-transform:none;
  2023. visibility:hidden;
  2024. }
  2025. #u40347_img {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:19px;
  2031. height:2px;
  2032. }
  2033. #u40347 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:347px;
  2037. top:87px;
  2038. width:18px;
  2039. height:1px;
  2040. display:flex;
  2041. -webkit-transform:rotate(90deg);
  2042. -moz-transform:rotate(90deg);
  2043. -ms-transform:rotate(90deg);
  2044. transform:rotate(90deg);
  2045. }
  2046. #u40347 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u40347_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. visibility:hidden;
  2058. }
  2059. #u40348_div {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:113px;
  2065. height:40px;
  2066. background:inherit;
  2067. background-color:rgba(255, 255, 255, 0);
  2068. border:none;
  2069. border-left:0px;
  2070. border-top:0px;
  2071. border-right:0px;
  2072. border-radius:0px;
  2073. border-bottom-right-radius:0px;
  2074. border-bottom-left-radius:0px;
  2075. -moz-box-shadow:none;
  2076. -webkit-box-shadow:none;
  2077. box-shadow:none;
  2078. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2079. font-weight:500;
  2080. font-style:normal;
  2081. font-size:28px;
  2082. color:#FFFFFF;
  2083. text-align:right;
  2084. }
  2085. #u40348 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:167px;
  2089. top:114px;
  2090. width:113px;
  2091. height:40px;
  2092. display:flex;
  2093. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2094. font-weight:500;
  2095. font-style:normal;
  2096. font-size:28px;
  2097. color:#FFFFFF;
  2098. text-align:right;
  2099. }
  2100. #u40348 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:0px 0px 0px 0px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u40348_text {
  2108. border-width:0px;
  2109. white-space:nowrap;
  2110. text-transform:none;
  2111. }
  2112. #u40349_div {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:360px;
  2118. height:620px;
  2119. background:inherit;
  2120. background-color:rgba(255, 255, 255, 1);
  2121. border:none;
  2122. border-bottom:0px;
  2123. border-radius:18px;
  2124. border-bottom-right-radius:0px;
  2125. border-bottom-left-radius:0px;
  2126. -moz-box-shadow:none;
  2127. -webkit-box-shadow:none;
  2128. box-shadow:none;
  2129. }
  2130. #u40349 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:37px;
  2134. top:164px;
  2135. width:360px;
  2136. height:620px;
  2137. display:flex;
  2138. }
  2139. #u40349 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 2px 2px 2px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u40349_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. visibility:hidden;
  2151. }
  2152. #u40350_div {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:73px;
  2158. height:25px;
  2159. background:inherit;
  2160. background-color:rgba(255, 255, 255, 0);
  2161. border:none;
  2162. border-left:0px;
  2163. border-top:0px;
  2164. border-right:0px;
  2165. border-radius:0px;
  2166. border-bottom-right-radius:0px;
  2167. border-bottom-left-radius:0px;
  2168. -moz-box-shadow:none;
  2169. -webkit-box-shadow:none;
  2170. box-shadow:none;
  2171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2172. font-weight:500;
  2173. font-style:normal;
  2174. font-size:18px;
  2175. color:#5C93FF;
  2176. text-align:center;
  2177. }
  2178. #u40350 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:180px;
  2182. top:193px;
  2183. width:73px;
  2184. height:25px;
  2185. display:flex;
  2186. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2187. font-weight:500;
  2188. font-style:normal;
  2189. font-size:18px;
  2190. color:#5C93FF;
  2191. text-align:center;
  2192. }
  2193. #u40350 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:0px 0px 0px 0px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u40350_text {
  2201. border-width:0px;
  2202. white-space:nowrap;
  2203. text-transform:none;
  2204. }
  2205. #u40351_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:30px;
  2211. height:30px;
  2212. }
  2213. #u40351 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:57px;
  2217. top:223px;
  2218. width:30px;
  2219. height:30px;
  2220. display:flex;
  2221. color:#FFFFFF;
  2222. }
  2223. #u40351 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:2px 2px 2px 2px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u40351_text {
  2231. border-width:0px;
  2232. word-wrap:break-word;
  2233. text-transform:none;
  2234. }
  2235. #u40352_div {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:37px;
  2241. height:25px;
  2242. background:inherit;
  2243. background-color:rgba(255, 255, 255, 0);
  2244. border:none;
  2245. border-left:0px;
  2246. border-top:0px;
  2247. border-right:0px;
  2248. border-radius:0px;
  2249. border-bottom-right-radius:0px;
  2250. border-bottom-left-radius:0px;
  2251. -moz-box-shadow:none;
  2252. -webkit-box-shadow:none;
  2253. box-shadow:none;
  2254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2255. font-weight:500;
  2256. font-style:normal;
  2257. font-size:18px;
  2258. color:#5C93FF;
  2259. }
  2260. #u40352 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:95px;
  2264. top:223px;
  2265. width:37px;
  2266. height:25px;
  2267. display:flex;
  2268. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2269. font-weight:500;
  2270. font-style:normal;
  2271. font-size:18px;
  2272. color:#5C93FF;
  2273. }
  2274. #u40352 .text {
  2275. position:absolute;
  2276. align-self:center;
  2277. padding:0px 0px 0px 0px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u40352_text {
  2282. border-width:0px;
  2283. white-space:nowrap;
  2284. text-transform:none;
  2285. }
  2286. #u40353_div {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:264px;
  2292. height:90px;
  2293. background:inherit;
  2294. background-color:rgba(255, 255, 255, 0);
  2295. border:none;
  2296. border-left:0px;
  2297. border-top:0px;
  2298. border-right:0px;
  2299. border-radius:0px;
  2300. border-bottom-right-radius:0px;
  2301. border-bottom-left-radius:0px;
  2302. -moz-box-shadow:none;
  2303. -webkit-box-shadow:none;
  2304. box-shadow:none;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:12px;
  2309. line-height:30px;
  2310. }
  2311. #u40353 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:95px;
  2315. top:256px;
  2316. width:264px;
  2317. height:90px;
  2318. display:flex;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. font-size:12px;
  2323. line-height:30px;
  2324. }
  2325. #u40353 .text {
  2326. position:absolute;
  2327. align-self:flex-start;
  2328. padding:0px 0px 0px 0px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u40353_text {
  2333. border-width:0px;
  2334. white-space:nowrap;
  2335. text-transform:none;
  2336. }
  2337. #u40354_img {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:0px;
  2341. top:0px;
  2342. width:30px;
  2343. height:30px;
  2344. }
  2345. #u40354 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:57px;
  2349. top:366px;
  2350. width:30px;
  2351. height:30px;
  2352. display:flex;
  2353. color:#FFFFFF;
  2354. }
  2355. #u40354 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 2px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u40354_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. }
  2367. #u40355_div {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:37px;
  2373. height:25px;
  2374. background:inherit;
  2375. background-color:rgba(255, 255, 255, 0);
  2376. border:none;
  2377. border-left:0px;
  2378. border-top:0px;
  2379. border-right:0px;
  2380. border-radius:0px;
  2381. border-bottom-right-radius:0px;
  2382. border-bottom-left-radius:0px;
  2383. -moz-box-shadow:none;
  2384. -webkit-box-shadow:none;
  2385. box-shadow:none;
  2386. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2387. font-weight:500;
  2388. font-style:normal;
  2389. font-size:18px;
  2390. color:#5C93FF;
  2391. }
  2392. #u40355 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:95px;
  2396. top:366px;
  2397. width:37px;
  2398. height:25px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2401. font-weight:500;
  2402. font-style:normal;
  2403. font-size:18px;
  2404. color:#5C93FF;
  2405. }
  2406. #u40355 .text {
  2407. position:absolute;
  2408. align-self:center;
  2409. padding:0px 0px 0px 0px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u40355_text {
  2414. border-width:0px;
  2415. white-space:nowrap;
  2416. text-transform:none;
  2417. }
  2418. #u40356_div {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:109px;
  2424. height:30px;
  2425. background:inherit;
  2426. background-color:rgba(255, 255, 255, 0);
  2427. border:none;
  2428. border-left:0px;
  2429. border-top:0px;
  2430. border-right:0px;
  2431. border-radius:0px;
  2432. border-bottom-right-radius:0px;
  2433. border-bottom-left-radius:0px;
  2434. -moz-box-shadow:none;
  2435. -webkit-box-shadow:none;
  2436. box-shadow:none;
  2437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2438. font-weight:400;
  2439. font-style:normal;
  2440. font-size:12px;
  2441. line-height:30px;
  2442. }
  2443. #u40356 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:95px;
  2447. top:399px;
  2448. width:109px;
  2449. height:30px;
  2450. display:flex;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:12px;
  2455. line-height:30px;
  2456. }
  2457. #u40356 .text {
  2458. position:absolute;
  2459. align-self:flex-start;
  2460. padding:0px 0px 0px 0px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u40356_text {
  2465. border-width:0px;
  2466. white-space:nowrap;
  2467. text-transform:none;
  2468. }
  2469. #u40357_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:30px;
  2475. height:30px;
  2476. }
  2477. #u40357 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:57px;
  2481. top:449px;
  2482. width:30px;
  2483. height:30px;
  2484. display:flex;
  2485. color:#FFFFFF;
  2486. }
  2487. #u40357 .text {
  2488. position:absolute;
  2489. align-self:center;
  2490. padding:2px 2px 2px 2px;
  2491. box-sizing:border-box;
  2492. width:100%;
  2493. }
  2494. #u40357_text {
  2495. border-width:0px;
  2496. word-wrap:break-word;
  2497. text-transform:none;
  2498. }
  2499. #u40358_div {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:37px;
  2505. height:25px;
  2506. background:inherit;
  2507. background-color:rgba(255, 255, 255, 0);
  2508. border:none;
  2509. border-left:0px;
  2510. border-top:0px;
  2511. border-right:0px;
  2512. border-radius:0px;
  2513. border-bottom-right-radius:0px;
  2514. border-bottom-left-radius:0px;
  2515. -moz-box-shadow:none;
  2516. -webkit-box-shadow:none;
  2517. box-shadow:none;
  2518. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2519. font-weight:500;
  2520. font-style:normal;
  2521. font-size:18px;
  2522. color:#5C93FF;
  2523. }
  2524. #u40358 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:95px;
  2528. top:449px;
  2529. width:37px;
  2530. height:25px;
  2531. display:flex;
  2532. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2533. font-weight:500;
  2534. font-style:normal;
  2535. font-size:18px;
  2536. color:#5C93FF;
  2537. }
  2538. #u40358 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:0px 0px 0px 0px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u40358_text {
  2546. border-width:0px;
  2547. white-space:nowrap;
  2548. text-transform:none;
  2549. }
  2550. #u40359_div {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:286px;
  2556. height:150px;
  2557. background:inherit;
  2558. background-color:rgba(255, 255, 255, 0);
  2559. border:none;
  2560. border-left:0px;
  2561. border-top:0px;
  2562. border-right:0px;
  2563. border-radius:0px;
  2564. border-bottom-right-radius:0px;
  2565. border-bottom-left-radius:0px;
  2566. -moz-box-shadow:none;
  2567. -webkit-box-shadow:none;
  2568. box-shadow:none;
  2569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2570. font-weight:400;
  2571. font-style:normal;
  2572. font-size:12px;
  2573. line-height:30px;
  2574. }
  2575. #u40359 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:95px;
  2579. top:482px;
  2580. width:286px;
  2581. height:150px;
  2582. display:flex;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:12px;
  2587. line-height:30px;
  2588. }
  2589. #u40359 .text {
  2590. position:absolute;
  2591. align-self:flex-start;
  2592. padding:0px 0px 0px 0px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u40359_text {
  2597. border-width:0px;
  2598. word-wrap:break-word;
  2599. text-transform:none;
  2600. }
  2601. #u40360_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:11px;
  2607. height:18px;
  2608. }
  2609. #u40360 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:495px;
  2613. top:79px;
  2614. width:11px;
  2615. height:18px;
  2616. display:flex;
  2617. }
  2618. #u40360 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 2px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u40360_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. visibility:hidden;
  2630. }
  2631. #u40361_div {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:109px;
  2637. height:30px;
  2638. background:inherit;
  2639. background-color:rgba(255, 255, 255, 0);
  2640. border:none;
  2641. border-left:0px;
  2642. border-top:0px;
  2643. border-right:0px;
  2644. border-radius:0px;
  2645. border-bottom-right-radius:0px;
  2646. border-bottom-left-radius:0px;
  2647. -moz-box-shadow:none;
  2648. -webkit-box-shadow:none;
  2649. box-shadow:none;
  2650. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2651. font-weight:500;
  2652. font-style:normal;
  2653. font-size:18px;
  2654. line-height:30px;
  2655. }
  2656. #u40361 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:524px;
  2660. top:73px;
  2661. width:109px;
  2662. height:30px;
  2663. display:flex;
  2664. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2665. font-weight:500;
  2666. font-style:normal;
  2667. font-size:18px;
  2668. line-height:30px;
  2669. }
  2670. #u40361 .text {
  2671. position:absolute;
  2672. align-self:flex-start;
  2673. padding:0px 0px 0px 0px;
  2674. box-sizing:border-box;
  2675. width:100%;
  2676. }
  2677. #u40361_text {
  2678. border-width:0px;
  2679. white-space:nowrap;
  2680. text-transform:none;
  2681. }
  2682. #u40362 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:0px;
  2688. height:0px;
  2689. }
  2690. #u40363_div {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:375px;
  2696. height:50px;
  2697. background:inherit;
  2698. background-color:rgba(255, 255, 255, 1);
  2699. border:none;
  2700. border-left:0px;
  2701. border-right:0px;
  2702. border-radius:0px;
  2703. border-top-left-radius:0px;
  2704. border-top-right-radius:0px;
  2705. border-bottom-right-radius:0px;
  2706. border-bottom-left-radius:0px;
  2707. -moz-box-shadow:none;
  2708. -webkit-box-shadow:none;
  2709. box-shadow:none;
  2710. }
  2711. #u40363 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:482px;
  2715. top:216px;
  2716. width:375px;
  2717. height:50px;
  2718. display:flex;
  2719. }
  2720. #u40363 .text {
  2721. position:absolute;
  2722. align-self:center;
  2723. padding:2px 2px 2px 2px;
  2724. box-sizing:border-box;
  2725. width:100%;
  2726. }
  2727. #u40363_text {
  2728. border-width:0px;
  2729. word-wrap:break-word;
  2730. text-transform:none;
  2731. visibility:hidden;
  2732. }
  2733. #u40364_div {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:50px;
  2739. height:30px;
  2740. background:inherit;
  2741. background-color:rgba(255, 255, 255, 0);
  2742. border:none;
  2743. border-left:0px;
  2744. border-top:0px;
  2745. border-right:0px;
  2746. border-radius:0px;
  2747. border-bottom-right-radius:0px;
  2748. border-bottom-left-radius:0px;
  2749. -moz-box-shadow:none;
  2750. -webkit-box-shadow:none;
  2751. box-shadow:none;
  2752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2753. font-weight:400;
  2754. font-style:normal;
  2755. font-size:14px;
  2756. line-height:30px;
  2757. }
  2758. #u40364 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:506px;
  2762. top:226px;
  2763. width:50px;
  2764. height:30px;
  2765. display:flex;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:14px;
  2770. line-height:30px;
  2771. }
  2772. #u40364 .text {
  2773. position:absolute;
  2774. align-self:flex-start;
  2775. padding:0px 0px 0px 0px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u40364_text {
  2780. border-width:0px;
  2781. white-space:nowrap;
  2782. text-transform:none;
  2783. }
  2784. #u40365_input {
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:243px;
  2789. height:33px;
  2790. padding:2px 2px 2px 2px;
  2791. font-family:'Microsoft YaHei', sans-serif;
  2792. font-weight:400;
  2793. font-style:normal;
  2794. font-size:13px;
  2795. letter-spacing:normal;
  2796. color:#000000;
  2797. vertical-align:none;
  2798. text-align:left;
  2799. text-transform:none;
  2800. background-color:transparent;
  2801. border-color:transparent;
  2802. }
  2803. #u40365_input.disabled {
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:243px;
  2808. height:33px;
  2809. padding:2px 2px 2px 2px;
  2810. font-family:'Microsoft YaHei', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:13px;
  2814. letter-spacing:normal;
  2815. color:#000000;
  2816. vertical-align:none;
  2817. text-align:left;
  2818. text-transform:none;
  2819. background-color:transparent;
  2820. border-color:transparent;
  2821. }
  2822. #u40365_div {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:243px;
  2828. height:33px;
  2829. background:inherit;
  2830. background-color:rgba(255, 255, 255, 1);
  2831. border:none;
  2832. border-radius:0px;
  2833. -moz-box-shadow:none;
  2834. -webkit-box-shadow:none;
  2835. box-shadow:none;
  2836. font-family:'Microsoft YaHei', sans-serif;
  2837. font-weight:400;
  2838. font-style:normal;
  2839. }
  2840. #u40365 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:581px;
  2844. top:225px;
  2845. width:243px;
  2846. height:33px;
  2847. display:flex;
  2848. font-family:'Microsoft YaHei', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. }
  2852. #u40365 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 2px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u40365_div.disabled {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:243px;
  2865. height:33px;
  2866. background:inherit;
  2867. background-color:rgba(240, 240, 240, 1);
  2868. border:none;
  2869. border-radius:0px;
  2870. -moz-box-shadow:none;
  2871. -webkit-box-shadow:none;
  2872. box-shadow:none;
  2873. font-family:'Microsoft YaHei', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. }
  2877. #u40365.disabled {
  2878. }
  2879. #u40366 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:0px;
  2885. height:0px;
  2886. }
  2887. #u40367_div {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:375px;
  2893. height:50px;
  2894. background:inherit;
  2895. background-color:rgba(255, 255, 255, 1);
  2896. border:none;
  2897. border-left:0px;
  2898. border-right:0px;
  2899. border-radius:0px;
  2900. border-top-left-radius:0px;
  2901. border-top-right-radius:0px;
  2902. border-bottom-right-radius:0px;
  2903. border-bottom-left-radius:0px;
  2904. -moz-box-shadow:none;
  2905. -webkit-box-shadow:none;
  2906. box-shadow:none;
  2907. }
  2908. #u40367 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:482px;
  2912. top:265px;
  2913. width:375px;
  2914. height:50px;
  2915. display:flex;
  2916. }
  2917. #u40367 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u40367_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u40368_div {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:64px;
  2936. height:30px;
  2937. background:inherit;
  2938. background-color:rgba(255, 255, 255, 0);
  2939. border:none;
  2940. border-left:0px;
  2941. border-top:0px;
  2942. border-right:0px;
  2943. border-radius:0px;
  2944. border-bottom-right-radius:0px;
  2945. border-bottom-left-radius:0px;
  2946. -moz-box-shadow:none;
  2947. -webkit-box-shadow:none;
  2948. box-shadow:none;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:14px;
  2953. line-height:30px;
  2954. }
  2955. #u40368 {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:506px;
  2959. top:275px;
  2960. width:64px;
  2961. height:30px;
  2962. display:flex;
  2963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2964. font-weight:400;
  2965. font-style:normal;
  2966. font-size:14px;
  2967. line-height:30px;
  2968. }
  2969. #u40368 .text {
  2970. position:absolute;
  2971. align-self:flex-start;
  2972. padding:0px 0px 0px 0px;
  2973. box-sizing:border-box;
  2974. width:100%;
  2975. }
  2976. #u40368_text {
  2977. border-width:0px;
  2978. white-space:nowrap;
  2979. text-transform:none;
  2980. }
  2981. #u40369_input {
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:278px;
  2986. height:33px;
  2987. padding:2px 2px 2px 2px;
  2988. font-family:'Microsoft YaHei', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:13px;
  2992. letter-spacing:normal;
  2993. color:#000000;
  2994. vertical-align:none;
  2995. text-align:left;
  2996. text-transform:none;
  2997. background-color:transparent;
  2998. border-color:transparent;
  2999. }
  3000. #u40369_input.disabled {
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:278px;
  3005. height:33px;
  3006. padding:2px 2px 2px 2px;
  3007. font-family:'Microsoft YaHei', sans-serif;
  3008. font-weight:400;
  3009. font-style:normal;
  3010. font-size:13px;
  3011. letter-spacing:normal;
  3012. color:#000000;
  3013. vertical-align:none;
  3014. text-align:left;
  3015. text-transform:none;
  3016. background-color:transparent;
  3017. border-color:transparent;
  3018. }
  3019. #u40369_div {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:278px;
  3025. height:33px;
  3026. background:inherit;
  3027. background-color:rgba(255, 255, 255, 1);
  3028. border:none;
  3029. border-radius:0px;
  3030. -moz-box-shadow:none;
  3031. -webkit-box-shadow:none;
  3032. box-shadow:none;
  3033. font-family:'Microsoft YaHei', sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. }
  3037. #u40369 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:577px;
  3041. top:274px;
  3042. width:278px;
  3043. height:33px;
  3044. display:flex;
  3045. font-family:'Microsoft YaHei', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. }
  3049. #u40369 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 2px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u40369_div.disabled {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:278px;
  3062. height:33px;
  3063. background:inherit;
  3064. background-color:rgba(240, 240, 240, 1);
  3065. border:none;
  3066. border-radius:0px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. font-family:'Microsoft YaHei', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. }
  3074. #u40369.disabled {
  3075. }
  3076. #u40370 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:0px;
  3082. height:0px;
  3083. }
  3084. #u40371_div {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:375px;
  3090. height:276px;
  3091. background:inherit;
  3092. background-color:rgba(255, 255, 255, 1);
  3093. border:none;
  3094. border-top:0px;
  3095. border-bottom:0px;
  3096. border-radius:0px;
  3097. border-top-left-radius:0px;
  3098. border-top-right-radius:0px;
  3099. border-bottom-right-radius:0px;
  3100. border-bottom-left-radius:0px;
  3101. -moz-box-shadow:none;
  3102. -webkit-box-shadow:none;
  3103. box-shadow:none;
  3104. }
  3105. #u40371 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:482px;
  3109. top:370px;
  3110. width:375px;
  3111. height:276px;
  3112. display:flex;
  3113. }
  3114. #u40371 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 2px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u40371_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u40372_div {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:73px;
  3133. height:30px;
  3134. background:inherit;
  3135. background-color:rgba(255, 255, 255, 0);
  3136. border:none;
  3137. border-left:0px;
  3138. border-top:0px;
  3139. border-right:0px;
  3140. border-radius:0px;
  3141. border-bottom-right-radius:0px;
  3142. border-bottom-left-radius:0px;
  3143. -moz-box-shadow:none;
  3144. -webkit-box-shadow:none;
  3145. box-shadow:none;
  3146. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3147. font-weight:500;
  3148. font-style:normal;
  3149. font-size:18px;
  3150. line-height:30px;
  3151. }
  3152. #u40372 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:501px;
  3156. top:385px;
  3157. width:73px;
  3158. height:30px;
  3159. display:flex;
  3160. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3161. font-weight:500;
  3162. font-style:normal;
  3163. font-size:18px;
  3164. line-height:30px;
  3165. }
  3166. #u40372 .text {
  3167. position:absolute;
  3168. align-self:flex-start;
  3169. padding:0px 0px 0px 0px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u40372_text {
  3174. border-width:0px;
  3175. white-space:nowrap;
  3176. text-transform:none;
  3177. }
  3178. #u40373_div {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:37px;
  3184. height:40px;
  3185. background:inherit;
  3186. background-color:rgba(255, 255, 255, 0);
  3187. border:none;
  3188. border-left:0px;
  3189. border-top:0px;
  3190. border-right:0px;
  3191. border-radius:0px;
  3192. border-bottom-right-radius:0px;
  3193. border-bottom-left-radius:0px;
  3194. -moz-box-shadow:none;
  3195. -webkit-box-shadow:none;
  3196. box-shadow:none;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:14px;
  3201. color:#1890FF;
  3202. line-height:30px;
  3203. }
  3204. #u40373 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:806px;
  3208. top:380px;
  3209. width:37px;
  3210. height:40px;
  3211. display:flex;
  3212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3213. font-weight:400;
  3214. font-style:normal;
  3215. font-size:14px;
  3216. color:#1890FF;
  3217. line-height:30px;
  3218. }
  3219. #u40373 .text {
  3220. position:absolute;
  3221. align-self:center;
  3222. padding:0px 0px 0px 0px;
  3223. box-sizing:border-box;
  3224. width:100%;
  3225. }
  3226. #u40373_text {
  3227. border-width:0px;
  3228. white-space:nowrap;
  3229. text-transform:none;
  3230. }
  3231. #u40374 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:0px;
  3237. height:0px;
  3238. }
  3239. #u40375_div {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:342px;
  3245. height:100px;
  3246. background:inherit;
  3247. background-color:rgba(242, 242, 242, 1);
  3248. border:none;
  3249. border-radius:10px;
  3250. -moz-box-shadow:none;
  3251. -webkit-box-shadow:none;
  3252. box-shadow:none;
  3253. }
  3254. #u40375 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:501px;
  3258. top:425px;
  3259. width:342px;
  3260. height:100px;
  3261. display:flex;
  3262. }
  3263. #u40375 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 2px 2px 2px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u40375_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u40376_div {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:64px;
  3282. height:30px;
  3283. background:inherit;
  3284. background-color:rgba(255, 255, 255, 0);
  3285. border:none;
  3286. border-left:0px;
  3287. border-top:0px;
  3288. border-right:0px;
  3289. border-radius:0px;
  3290. border-bottom-right-radius:0px;
  3291. border-bottom-left-radius:0px;
  3292. -moz-box-shadow:none;
  3293. -webkit-box-shadow:none;
  3294. box-shadow:none;
  3295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3296. font-weight:400;
  3297. font-style:normal;
  3298. font-size:14px;
  3299. line-height:30px;
  3300. }
  3301. #u40376 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:521px;
  3305. top:436px;
  3306. width:64px;
  3307. height:30px;
  3308. display:flex;
  3309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:14px;
  3313. line-height:30px;
  3314. }
  3315. #u40376 .text {
  3316. position:absolute;
  3317. align-self:flex-start;
  3318. padding:0px 0px 0px 0px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u40376_text {
  3323. border-width:0px;
  3324. white-space:nowrap;
  3325. text-transform:none;
  3326. }
  3327. #u40377_input {
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:234px;
  3332. height:33px;
  3333. padding:2px 2px 2px 2px;
  3334. font-family:'Microsoft YaHei', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:13px;
  3338. letter-spacing:normal;
  3339. color:#000000;
  3340. vertical-align:none;
  3341. text-align:left;
  3342. text-transform:none;
  3343. background-color:transparent;
  3344. border-color:transparent;
  3345. }
  3346. #u40377_input.disabled {
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:234px;
  3351. height:33px;
  3352. padding:2px 2px 2px 2px;
  3353. font-family:'Microsoft YaHei', sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. font-size:13px;
  3357. letter-spacing:normal;
  3358. color:#000000;
  3359. vertical-align:none;
  3360. text-align:left;
  3361. text-transform:none;
  3362. background-color:transparent;
  3363. border-color:transparent;
  3364. }
  3365. #u40377_div {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:234px;
  3371. height:33px;
  3372. background:inherit;
  3373. background-color:rgba(255, 255, 255, 0);
  3374. border:none;
  3375. border-radius:0px;
  3376. -moz-box-shadow:none;
  3377. -webkit-box-shadow:none;
  3378. box-shadow:none;
  3379. font-family:'Microsoft YaHei', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. }
  3383. #u40377 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:596px;
  3387. top:435px;
  3388. width:234px;
  3389. height:33px;
  3390. display:flex;
  3391. font-family:'Microsoft YaHei', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. }
  3395. #u40377 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 2px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u40377_div.disabled {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:234px;
  3408. height:33px;
  3409. background:inherit;
  3410. background-color:rgba(240, 240, 240, 1);
  3411. border:none;
  3412. border-radius:0px;
  3413. -moz-box-shadow:none;
  3414. -webkit-box-shadow:none;
  3415. box-shadow:none;
  3416. font-family:'Microsoft YaHei', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. }
  3420. #u40377.disabled {
  3421. }
  3422. #u40378_div {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:64px;
  3428. height:30px;
  3429. background:inherit;
  3430. background-color:rgba(255, 255, 255, 0);
  3431. border:none;
  3432. border-left:0px;
  3433. border-top:0px;
  3434. border-right:0px;
  3435. border-radius:0px;
  3436. border-bottom-right-radius:0px;
  3437. border-bottom-left-radius:0px;
  3438. -moz-box-shadow:none;
  3439. -webkit-box-shadow:none;
  3440. box-shadow:none;
  3441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3442. font-weight:400;
  3443. font-style:normal;
  3444. font-size:14px;
  3445. line-height:30px;
  3446. }
  3447. #u40378 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:521px;
  3451. top:479px;
  3452. width:64px;
  3453. height:30px;
  3454. display:flex;
  3455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3456. font-weight:400;
  3457. font-style:normal;
  3458. font-size:14px;
  3459. line-height:30px;
  3460. }
  3461. #u40378 .text {
  3462. position:absolute;
  3463. align-self:flex-start;
  3464. padding:0px 0px 0px 0px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u40378_text {
  3469. border-width:0px;
  3470. white-space:nowrap;
  3471. text-transform:none;
  3472. }
  3473. #u40379_input {
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:238px;
  3478. height:33px;
  3479. padding:2px 2px 2px 2px;
  3480. font-family:'Microsoft YaHei', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:13px;
  3484. letter-spacing:normal;
  3485. color:#000000;
  3486. vertical-align:none;
  3487. text-align:left;
  3488. text-transform:none;
  3489. background-color:transparent;
  3490. border-color:transparent;
  3491. }
  3492. #u40379_input.disabled {
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:238px;
  3497. height:33px;
  3498. padding:2px 2px 2px 2px;
  3499. font-family:'Microsoft YaHei', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:13px;
  3503. letter-spacing:normal;
  3504. color:#000000;
  3505. vertical-align:none;
  3506. text-align:left;
  3507. text-transform:none;
  3508. background-color:transparent;
  3509. border-color:transparent;
  3510. }
  3511. #u40379_div {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:238px;
  3517. height:33px;
  3518. background:inherit;
  3519. background-color:rgba(255, 255, 255, 0);
  3520. border:none;
  3521. border-radius:0px;
  3522. -moz-box-shadow:none;
  3523. -webkit-box-shadow:none;
  3524. box-shadow:none;
  3525. font-family:'Microsoft YaHei', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. }
  3529. #u40379 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:592px;
  3533. top:478px;
  3534. width:238px;
  3535. height:33px;
  3536. display:flex;
  3537. font-family:'Microsoft YaHei', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. }
  3541. #u40379 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 2px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u40379_div.disabled {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:238px;
  3554. height:33px;
  3555. background:inherit;
  3556. background-color:rgba(240, 240, 240, 1);
  3557. border:none;
  3558. border-radius:0px;
  3559. -moz-box-shadow:none;
  3560. -webkit-box-shadow:none;
  3561. box-shadow:none;
  3562. font-family:'Microsoft YaHei', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. }
  3566. #u40379.disabled {
  3567. }
  3568. #u40380_img {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:16px;
  3574. height:16px;
  3575. }
  3576. #u40380 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:827px;
  3580. top:425px;
  3581. width:16px;
  3582. height:16px;
  3583. display:flex;
  3584. }
  3585. #u40380 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 2px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u40380_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u40381 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:0px;
  3604. height:0px;
  3605. }
  3606. #u40382_div {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:342px;
  3612. height:100px;
  3613. background:inherit;
  3614. background-color:rgba(242, 242, 242, 1);
  3615. border:none;
  3616. border-radius:10px;
  3617. -moz-box-shadow:none;
  3618. -webkit-box-shadow:none;
  3619. box-shadow:none;
  3620. }
  3621. #u40382 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:501px;
  3625. top:526px;
  3626. width:342px;
  3627. height:100px;
  3628. display:flex;
  3629. }
  3630. #u40382 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 2px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u40382_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u40383_div {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:64px;
  3649. height:30px;
  3650. background:inherit;
  3651. background-color:rgba(255, 255, 255, 0);
  3652. border:none;
  3653. border-left:0px;
  3654. border-top:0px;
  3655. border-right:0px;
  3656. border-radius:0px;
  3657. border-bottom-right-radius:0px;
  3658. border-bottom-left-radius:0px;
  3659. -moz-box-shadow:none;
  3660. -webkit-box-shadow:none;
  3661. box-shadow:none;
  3662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3663. font-weight:400;
  3664. font-style:normal;
  3665. font-size:14px;
  3666. line-height:30px;
  3667. }
  3668. #u40383 {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:521px;
  3672. top:537px;
  3673. width:64px;
  3674. height:30px;
  3675. display:flex;
  3676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3677. font-weight:400;
  3678. font-style:normal;
  3679. font-size:14px;
  3680. line-height:30px;
  3681. }
  3682. #u40383 .text {
  3683. position:absolute;
  3684. align-self:flex-start;
  3685. padding:0px 0px 0px 0px;
  3686. box-sizing:border-box;
  3687. width:100%;
  3688. }
  3689. #u40383_text {
  3690. border-width:0px;
  3691. white-space:nowrap;
  3692. text-transform:none;
  3693. }
  3694. #u40384_input {
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:234px;
  3699. height:33px;
  3700. padding:2px 2px 2px 2px;
  3701. font-family:'Microsoft YaHei', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:13px;
  3705. letter-spacing:normal;
  3706. color:#000000;
  3707. vertical-align:none;
  3708. text-align:left;
  3709. text-transform:none;
  3710. background-color:transparent;
  3711. border-color:transparent;
  3712. }
  3713. #u40384_input.disabled {
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:234px;
  3718. height:33px;
  3719. padding:2px 2px 2px 2px;
  3720. font-family:'Microsoft YaHei', sans-serif;
  3721. font-weight:400;
  3722. font-style:normal;
  3723. font-size:13px;
  3724. letter-spacing:normal;
  3725. color:#000000;
  3726. vertical-align:none;
  3727. text-align:left;
  3728. text-transform:none;
  3729. background-color:transparent;
  3730. border-color:transparent;
  3731. }
  3732. #u40384_div {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:234px;
  3738. height:33px;
  3739. background:inherit;
  3740. background-color:rgba(255, 255, 255, 0);
  3741. border:none;
  3742. border-radius:0px;
  3743. -moz-box-shadow:none;
  3744. -webkit-box-shadow:none;
  3745. box-shadow:none;
  3746. font-family:'Microsoft YaHei', sans-serif;
  3747. font-weight:400;
  3748. font-style:normal;
  3749. }
  3750. #u40384 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:596px;
  3754. top:536px;
  3755. width:234px;
  3756. height:33px;
  3757. display:flex;
  3758. font-family:'Microsoft YaHei', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. }
  3762. #u40384 .text {
  3763. position:absolute;
  3764. align-self:center;
  3765. padding:2px 2px 2px 2px;
  3766. box-sizing:border-box;
  3767. width:100%;
  3768. }
  3769. #u40384_div.disabled {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:234px;
  3775. height:33px;
  3776. background:inherit;
  3777. background-color:rgba(240, 240, 240, 1);
  3778. border:none;
  3779. border-radius:0px;
  3780. -moz-box-shadow:none;
  3781. -webkit-box-shadow:none;
  3782. box-shadow:none;
  3783. font-family:'Microsoft YaHei', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. }
  3787. #u40384.disabled {
  3788. }
  3789. #u40385_div {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:64px;
  3795. height:30px;
  3796. background:inherit;
  3797. background-color:rgba(255, 255, 255, 0);
  3798. border:none;
  3799. border-left:0px;
  3800. border-top:0px;
  3801. border-right:0px;
  3802. border-radius:0px;
  3803. border-bottom-right-radius:0px;
  3804. border-bottom-left-radius:0px;
  3805. -moz-box-shadow:none;
  3806. -webkit-box-shadow:none;
  3807. box-shadow:none;
  3808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3809. font-weight:400;
  3810. font-style:normal;
  3811. font-size:14px;
  3812. line-height:30px;
  3813. }
  3814. #u40385 {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:521px;
  3818. top:580px;
  3819. width:64px;
  3820. height:30px;
  3821. display:flex;
  3822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3823. font-weight:400;
  3824. font-style:normal;
  3825. font-size:14px;
  3826. line-height:30px;
  3827. }
  3828. #u40385 .text {
  3829. position:absolute;
  3830. align-self:flex-start;
  3831. padding:0px 0px 0px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u40385_text {
  3836. border-width:0px;
  3837. white-space:nowrap;
  3838. text-transform:none;
  3839. }
  3840. #u40386_input {
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:238px;
  3845. height:33px;
  3846. padding:2px 2px 2px 2px;
  3847. font-family:'Microsoft YaHei', sans-serif;
  3848. font-weight:400;
  3849. font-style:normal;
  3850. font-size:13px;
  3851. letter-spacing:normal;
  3852. color:#000000;
  3853. vertical-align:none;
  3854. text-align:left;
  3855. text-transform:none;
  3856. background-color:transparent;
  3857. border-color:transparent;
  3858. }
  3859. #u40386_input.disabled {
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:238px;
  3864. height:33px;
  3865. padding:2px 2px 2px 2px;
  3866. font-family:'Microsoft YaHei', sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:13px;
  3870. letter-spacing:normal;
  3871. color:#000000;
  3872. vertical-align:none;
  3873. text-align:left;
  3874. text-transform:none;
  3875. background-color:transparent;
  3876. border-color:transparent;
  3877. }
  3878. #u40386_div {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:238px;
  3884. height:33px;
  3885. background:inherit;
  3886. background-color:rgba(255, 255, 255, 0);
  3887. border:none;
  3888. border-radius:0px;
  3889. -moz-box-shadow:none;
  3890. -webkit-box-shadow:none;
  3891. box-shadow:none;
  3892. font-family:'Microsoft YaHei', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. }
  3896. #u40386 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:592px;
  3900. top:579px;
  3901. width:238px;
  3902. height:33px;
  3903. display:flex;
  3904. font-family:'Microsoft YaHei', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. }
  3908. #u40386 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 2px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u40386_div.disabled {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:0px;
  3919. top:0px;
  3920. width:238px;
  3921. height:33px;
  3922. background:inherit;
  3923. background-color:rgba(240, 240, 240, 1);
  3924. border:none;
  3925. border-radius:0px;
  3926. -moz-box-shadow:none;
  3927. -webkit-box-shadow:none;
  3928. box-shadow:none;
  3929. font-family:'Microsoft YaHei', sans-serif;
  3930. font-weight:400;
  3931. font-style:normal;
  3932. }
  3933. #u40386.disabled {
  3934. }
  3935. #u40387_img {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:0px;
  3939. top:0px;
  3940. width:16px;
  3941. height:16px;
  3942. }
  3943. #u40387 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:827px;
  3947. top:526px;
  3948. width:16px;
  3949. height:16px;
  3950. display:flex;
  3951. }
  3952. #u40387 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 2px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u40387_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. visibility:hidden;
  3964. }
  3965. #u40388 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:0px;
  3971. height:0px;
  3972. }
  3973. #u40389_div {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:375px;
  3979. height:135px;
  3980. background:inherit;
  3981. background-color:rgba(255, 255, 255, 1);
  3982. border:none;
  3983. border-left:0px;
  3984. border-right:0px;
  3985. border-radius:0px;
  3986. border-top-left-radius:0px;
  3987. border-top-right-radius:0px;
  3988. border-bottom-right-radius:0px;
  3989. border-bottom-left-radius:0px;
  3990. -moz-box-shadow:none;
  3991. -webkit-box-shadow:none;
  3992. box-shadow:none;
  3993. }
  3994. #u40389 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:482px;
  3998. top:656px;
  3999. width:375px;
  4000. height:135px;
  4001. display:flex;
  4002. }
  4003. #u40389 .text {
  4004. position:absolute;
  4005. align-self:center;
  4006. padding:2px 2px 2px 2px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u40389_text {
  4011. border-width:0px;
  4012. word-wrap:break-word;
  4013. text-transform:none;
  4014. visibility:hidden;
  4015. }
  4016. #u40390_div {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:57px;
  4022. height:30px;
  4023. background:inherit;
  4024. background-color:rgba(255, 255, 255, 0);
  4025. border:none;
  4026. border-left:0px;
  4027. border-top:0px;
  4028. border-right:0px;
  4029. border-radius:0px;
  4030. border-bottom-right-radius:0px;
  4031. border-bottom-left-radius:0px;
  4032. -moz-box-shadow:none;
  4033. -webkit-box-shadow:none;
  4034. box-shadow:none;
  4035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4036. font-weight:400;
  4037. font-style:normal;
  4038. font-size:14px;
  4039. line-height:30px;
  4040. }
  4041. #u40390 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:506px;
  4045. top:666px;
  4046. width:57px;
  4047. height:30px;
  4048. display:flex;
  4049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4050. font-weight:400;
  4051. font-style:normal;
  4052. font-size:14px;
  4053. line-height:30px;
  4054. }
  4055. #u40390 .text {
  4056. position:absolute;
  4057. align-self:flex-start;
  4058. padding:0px 0px 0px 0px;
  4059. box-sizing:border-box;
  4060. width:100%;
  4061. }
  4062. #u40390_text {
  4063. border-width:0px;
  4064. white-space:nowrap;
  4065. text-transform:none;
  4066. }
  4067. #u40391_div {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:289px;
  4073. height:30px;
  4074. background:inherit;
  4075. background-color:rgba(255, 255, 255, 0);
  4076. border:none;
  4077. border-left:0px;
  4078. border-top:0px;
  4079. border-right:0px;
  4080. border-radius:0px;
  4081. border-bottom-right-radius:0px;
  4082. border-bottom-left-radius:0px;
  4083. -moz-box-shadow:none;
  4084. -webkit-box-shadow:none;
  4085. box-shadow:none;
  4086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4087. font-weight:400;
  4088. font-style:normal;
  4089. font-size:12px;
  4090. color:#AAAAAA;
  4091. line-height:30px;
  4092. }
  4093. #u40391 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:562px;
  4097. top:666px;
  4098. width:289px;
  4099. height:30px;
  4100. display:flex;
  4101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:12px;
  4105. color:#AAAAAA;
  4106. line-height:30px;
  4107. }
  4108. #u40391 .text {
  4109. position:absolute;
  4110. align-self:flex-start;
  4111. padding:0px 0px 0px 0px;
  4112. box-sizing:border-box;
  4113. width:100%;
  4114. }
  4115. #u40391_text {
  4116. border-width:0px;
  4117. white-space:nowrap;
  4118. text-transform:none;
  4119. }
  4120. #u40392_div {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:0px;
  4124. top:0px;
  4125. width:60px;
  4126. height:60px;
  4127. background:inherit;
  4128. background-color:rgba(255, 255, 255, 1);
  4129. box-sizing:border-box;
  4130. border-width:1px;
  4131. border-style:solid;
  4132. border-color:rgba(121, 121, 121, 1);
  4133. border-radius:0px;
  4134. -moz-box-shadow:none;
  4135. -webkit-box-shadow:none;
  4136. box-shadow:none;
  4137. font-size:28px;
  4138. }
  4139. #u40392 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:507px;
  4143. top:702px;
  4144. width:60px;
  4145. height:60px;
  4146. display:flex;
  4147. font-size:28px;
  4148. }
  4149. #u40392 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 2px 2px 2px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u40392_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. }
  4161. #u40393 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:0px;
  4167. height:0px;
  4168. }
  4169. #u40394_div {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:375px;
  4175. height:60px;
  4176. background:inherit;
  4177. background-color:rgba(255, 255, 255, 1);
  4178. border:none;
  4179. border-top:0px;
  4180. border-radius:28px;
  4181. border-top-left-radius:0px;
  4182. border-top-right-radius:0px;
  4183. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4184. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4185. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:14px;
  4190. color:#FFFFFF;
  4191. }
  4192. #u40394 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:482px;
  4196. top:780px;
  4197. width:375px;
  4198. height:60px;
  4199. display:flex;
  4200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4201. font-weight:400;
  4202. font-style:normal;
  4203. font-size:14px;
  4204. color:#FFFFFF;
  4205. }
  4206. #u40394 .text {
  4207. position:absolute;
  4208. align-self:center;
  4209. padding:2px 2px 2px 2px;
  4210. box-sizing:border-box;
  4211. width:100%;
  4212. }
  4213. #u40394_text {
  4214. border-width:0px;
  4215. word-wrap:break-word;
  4216. text-transform:none;
  4217. visibility:hidden;
  4218. }
  4219. #u40395_div {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:324px;
  4225. height:40px;
  4226. background:inherit;
  4227. background-color:rgba(0, 137, 254, 1);
  4228. border:none;
  4229. border-radius:63px;
  4230. -moz-box-shadow:none;
  4231. -webkit-box-shadow:none;
  4232. box-shadow:none;
  4233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4234. font-weight:400;
  4235. font-style:normal;
  4236. font-size:14px;
  4237. color:#FFFFFF;
  4238. }
  4239. #u40395 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:510px;
  4243. top:789px;
  4244. width:324px;
  4245. height:40px;
  4246. display:flex;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:14px;
  4251. color:#FFFFFF;
  4252. }
  4253. #u40395 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:2px 2px 2px 2px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u40395_text {
  4261. border-width:0px;
  4262. word-wrap:break-word;
  4263. text-transform:none;
  4264. }
  4265. #u40396 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:0px;
  4271. height:0px;
  4272. }
  4273. #u40397_div {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:375px;
  4279. height:50px;
  4280. background:inherit;
  4281. background-color:rgba(255, 255, 255, 1);
  4282. border:none;
  4283. border-left:0px;
  4284. border-right:0px;
  4285. border-radius:0px;
  4286. border-top-left-radius:0px;
  4287. border-top-right-radius:0px;
  4288. border-bottom-right-radius:0px;
  4289. border-bottom-left-radius:0px;
  4290. -moz-box-shadow:none;
  4291. -webkit-box-shadow:none;
  4292. box-shadow:none;
  4293. }
  4294. #u40397 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:482px;
  4298. top:315px;
  4299. width:375px;
  4300. height:50px;
  4301. display:flex;
  4302. }
  4303. #u40397 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 2px 2px 2px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u40397_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. visibility:hidden;
  4315. }
  4316. #u40398_div {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:64px;
  4322. height:30px;
  4323. background:inherit;
  4324. background-color:rgba(255, 255, 255, 0);
  4325. border:none;
  4326. border-left:0px;
  4327. border-top:0px;
  4328. border-right:0px;
  4329. border-radius:0px;
  4330. border-bottom-right-radius:0px;
  4331. border-bottom-left-radius:0px;
  4332. -moz-box-shadow:none;
  4333. -webkit-box-shadow:none;
  4334. box-shadow:none;
  4335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4336. font-weight:400;
  4337. font-style:normal;
  4338. font-size:14px;
  4339. line-height:30px;
  4340. }
  4341. #u40398 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:506px;
  4345. top:325px;
  4346. width:64px;
  4347. height:30px;
  4348. display:flex;
  4349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4350. font-weight:400;
  4351. font-style:normal;
  4352. font-size:14px;
  4353. line-height:30px;
  4354. }
  4355. #u40398 .text {
  4356. position:absolute;
  4357. align-self:flex-start;
  4358. padding:0px 0px 0px 0px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u40398_text {
  4363. border-width:0px;
  4364. white-space:nowrap;
  4365. text-transform:none;
  4366. }
  4367. #u40399_div {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:131px;
  4373. height:30px;
  4374. background:inherit;
  4375. background-color:rgba(255, 255, 255, 0);
  4376. border:none;
  4377. border-left:0px;
  4378. border-top:0px;
  4379. border-right:0px;
  4380. border-radius:0px;
  4381. border-bottom-right-radius:0px;
  4382. border-bottom-left-radius:0px;
  4383. -moz-box-shadow:none;
  4384. -webkit-box-shadow:none;
  4385. box-shadow:none;
  4386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4387. font-weight:400;
  4388. font-style:normal;
  4389. font-size:14px;
  4390. color:#AAAAAA;
  4391. line-height:30px;
  4392. }
  4393. #u40399 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:581px;
  4397. top:325px;
  4398. width:131px;
  4399. height:30px;
  4400. display:flex;
  4401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:14px;
  4405. color:#AAAAAA;
  4406. line-height:30px;
  4407. }
  4408. #u40399 .text {
  4409. position:absolute;
  4410. align-self:flex-start;
  4411. padding:0px 0px 0px 0px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u40399_text {
  4416. border-width:0px;
  4417. white-space:nowrap;
  4418. text-transform:none;
  4419. }
  4420. #u40400_img {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:8px;
  4426. height:13px;
  4427. }
  4428. #u40400 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:835px;
  4432. top:334px;
  4433. width:8px;
  4434. height:13px;
  4435. display:flex;
  4436. -webkit-transform:rotate(180deg);
  4437. -moz-transform:rotate(180deg);
  4438. -ms-transform:rotate(180deg);
  4439. transform:rotate(180deg);
  4440. }
  4441. #u40400 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 2px 2px 2px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u40400_text {
  4449. border-width:0px;
  4450. word-wrap:break-word;
  4451. text-transform:none;
  4452. visibility:hidden;
  4453. }
  4454. #u40401 {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:0px;
  4460. height:0px;
  4461. }
  4462. #u40402_div {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:375px;
  4468. height:60px;
  4469. background:inherit;
  4470. background-color:rgba(24, 144, 255, 1);
  4471. border:none;
  4472. border-radius:0px;
  4473. -moz-box-shadow:none;
  4474. -webkit-box-shadow:none;
  4475. box-shadow:none;
  4476. }
  4477. #u40402 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:482px;
  4481. top:105px;
  4482. width:375px;
  4483. height:60px;
  4484. display:flex;
  4485. }
  4486. #u40402 .text {
  4487. position:absolute;
  4488. align-self:center;
  4489. padding:2px 2px 2px 2px;
  4490. box-sizing:border-box;
  4491. width:100%;
  4492. }
  4493. #u40402_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. visibility:hidden;
  4498. }
  4499. #u40403_div {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:109px;
  4505. height:25px;
  4506. background:inherit;
  4507. background-color:rgba(255, 255, 255, 0);
  4508. border:none;
  4509. border-radius:0px;
  4510. -moz-box-shadow:none;
  4511. -webkit-box-shadow:none;
  4512. box-shadow:none;
  4513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:18px;
  4517. color:#FFFFFF;
  4518. }
  4519. #u40403 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:502px;
  4523. top:123px;
  4524. width:109px;
  4525. height:25px;
  4526. display:flex;
  4527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4528. font-weight:400;
  4529. font-style:normal;
  4530. font-size:18px;
  4531. color:#FFFFFF;
  4532. }
  4533. #u40403 .text {
  4534. position:absolute;
  4535. align-self:flex-start;
  4536. padding:0px 0px 0px 0px;
  4537. box-sizing:border-box;
  4538. width:100%;
  4539. }
  4540. #u40403_text {
  4541. border-width:0px;
  4542. white-space:nowrap;
  4543. text-transform:none;
  4544. }
  4545. #u40404_img {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:11px;
  4551. height:8px;
  4552. }
  4553. #u40404 {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:831px;
  4557. top:131px;
  4558. width:11px;
  4559. height:8px;
  4560. display:flex;
  4561. }
  4562. #u40404 .text {
  4563. position:absolute;
  4564. align-self:center;
  4565. padding:2px 2px 2px 2px;
  4566. box-sizing:border-box;
  4567. width:100%;
  4568. }
  4569. #u40404_text {
  4570. border-width:0px;
  4571. word-wrap:break-word;
  4572. text-transform:none;
  4573. visibility:hidden;
  4574. }
  4575. #u40405 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:0px;
  4581. height:0px;
  4582. }
  4583. #u40406_div {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:375px;
  4589. height:50px;
  4590. background:inherit;
  4591. background-color:rgba(255, 255, 255, 1);
  4592. border:none;
  4593. border-left:0px;
  4594. border-right:0px;
  4595. border-radius:0px;
  4596. border-top-left-radius:0px;
  4597. border-top-right-radius:0px;
  4598. border-bottom-right-radius:0px;
  4599. border-bottom-left-radius:0px;
  4600. -moz-box-shadow:none;
  4601. -webkit-box-shadow:none;
  4602. box-shadow:none;
  4603. }
  4604. #u40406 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:482px;
  4608. top:166px;
  4609. width:375px;
  4610. height:50px;
  4611. display:flex;
  4612. }
  4613. #u40406 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 2px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u40406_text {
  4621. border-width:0px;
  4622. word-wrap:break-word;
  4623. text-transform:none;
  4624. visibility:hidden;
  4625. }
  4626. #u40407_div {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:64px;
  4632. height:30px;
  4633. background:inherit;
  4634. background-color:rgba(255, 255, 255, 0);
  4635. border:none;
  4636. border-left:0px;
  4637. border-top:0px;
  4638. border-right:0px;
  4639. border-radius:0px;
  4640. border-bottom-right-radius:0px;
  4641. border-bottom-left-radius:0px;
  4642. -moz-box-shadow:none;
  4643. -webkit-box-shadow:none;
  4644. box-shadow:none;
  4645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:14px;
  4649. line-height:30px;
  4650. }
  4651. #u40407 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:506px;
  4655. top:176px;
  4656. width:64px;
  4657. height:30px;
  4658. display:flex;
  4659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. font-size:14px;
  4663. line-height:30px;
  4664. }
  4665. #u40407 .text {
  4666. position:absolute;
  4667. align-self:flex-start;
  4668. padding:0px 0px 0px 0px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u40407_text {
  4673. border-width:0px;
  4674. white-space:nowrap;
  4675. text-transform:none;
  4676. }
  4677. #u40408_div {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:43px;
  4683. height:30px;
  4684. background:inherit;
  4685. background-color:rgba(255, 255, 255, 0);
  4686. border:none;
  4687. border-left:0px;
  4688. border-top:0px;
  4689. border-right:0px;
  4690. border-radius:0px;
  4691. border-bottom-right-radius:0px;
  4692. border-bottom-left-radius:0px;
  4693. -moz-box-shadow:none;
  4694. -webkit-box-shadow:none;
  4695. box-shadow:none;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:14px;
  4700. color:#AAAAAA;
  4701. line-height:30px;
  4702. }
  4703. #u40408 {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:581px;
  4707. top:176px;
  4708. width:43px;
  4709. height:30px;
  4710. display:flex;
  4711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4712. font-weight:400;
  4713. font-style:normal;
  4714. font-size:14px;
  4715. color:#AAAAAA;
  4716. line-height:30px;
  4717. }
  4718. #u40408 .text {
  4719. position:absolute;
  4720. align-self:flex-start;
  4721. padding:0px 0px 0px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u40408_text {
  4726. border-width:0px;
  4727. white-space:nowrap;
  4728. text-transform:none;
  4729. }
  4730. #u40409_img {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:8px;
  4736. height:13px;
  4737. }
  4738. #u40409 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:835px;
  4742. top:185px;
  4743. width:8px;
  4744. height:13px;
  4745. display:flex;
  4746. -webkit-transform:rotate(180deg);
  4747. -moz-transform:rotate(180deg);
  4748. -ms-transform:rotate(180deg);
  4749. transform:rotate(180deg);
  4750. }
  4751. #u40409 .text {
  4752. position:absolute;
  4753. align-self:center;
  4754. padding:2px 2px 2px 2px;
  4755. box-sizing:border-box;
  4756. width:100%;
  4757. }
  4758. #u40409_text {
  4759. border-width:0px;
  4760. word-wrap:break-word;
  4761. text-transform:none;
  4762. visibility:hidden;
  4763. }
  4764. #u40410_div {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:399px;
  4770. height:30px;
  4771. background:inherit;
  4772. background-color:rgba(255, 255, 255, 0);
  4773. border:none;
  4774. border-left:0px;
  4775. border-top:0px;
  4776. border-right:0px;
  4777. border-radius:0px;
  4778. border-bottom-right-radius:0px;
  4779. border-bottom-left-radius:0px;
  4780. -moz-box-shadow:none;
  4781. -webkit-box-shadow:none;
  4782. box-shadow:none;
  4783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4784. font-weight:400;
  4785. font-style:normal;
  4786. font-size:14px;
  4787. color:#D9001B;
  4788. line-height:30px;
  4789. }
  4790. #u40410 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:487px;
  4794. top:198px;
  4795. width:399px;
  4796. height:30px;
  4797. display:flex;
  4798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. font-size:14px;
  4802. color:#D9001B;
  4803. line-height:30px;
  4804. }
  4805. #u40410 .text {
  4806. position:absolute;
  4807. align-self:flex-start;
  4808. padding:0px 0px 0px 0px;
  4809. box-sizing:border-box;
  4810. width:100%;
  4811. }
  4812. #u40410_text {
  4813. border-width:0px;
  4814. white-space:nowrap;
  4815. text-transform:none;
  4816. }
  4817. #u40411 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:0px;
  4823. height:0px;
  4824. }
  4825. #u40413_img {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:433px;
  4831. height:865px;
  4832. }
  4833. #u40413 {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:913px;
  4837. top:0px;
  4838. width:433px;
  4839. height:865px;
  4840. display:flex;
  4841. }
  4842. #u40413 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:2px 2px 2px 2px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u40413_text {
  4850. border-width:0px;
  4851. word-wrap:break-word;
  4852. text-transform:none;
  4853. visibility:hidden;
  4854. }
  4855. #u40414_div {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:375px;
  4861. height:40px;
  4862. background:inherit;
  4863. background-color:rgba(255, 255, 255, 1);
  4864. box-sizing:border-box;
  4865. border-width:1px;
  4866. border-style:solid;
  4867. border-color:rgba(215, 215, 215, 1);
  4868. border-left:0px;
  4869. border-top:0px;
  4870. border-right:0px;
  4871. border-radius:0px;
  4872. border-bottom-right-radius:0px;
  4873. border-bottom-left-radius:0px;
  4874. -moz-box-shadow:none;
  4875. -webkit-box-shadow:none;
  4876. box-shadow:none;
  4877. }
  4878. #u40414 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:942px;
  4882. top:67px;
  4883. width:375px;
  4884. height:40px;
  4885. display:flex;
  4886. }
  4887. #u40414 .text {
  4888. position:absolute;
  4889. align-self:center;
  4890. padding:2px 2px 2px 2px;
  4891. box-sizing:border-box;
  4892. width:100%;
  4893. }
  4894. #u40414_text {
  4895. border-width:0px;
  4896. word-wrap:break-word;
  4897. text-transform:none;
  4898. visibility:hidden;
  4899. }
  4900. #u40415 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:0px;
  4906. height:0px;
  4907. }
  4908. #u40416_div {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:0px;
  4913. width:88px;
  4914. height:32px;
  4915. background:inherit;
  4916. background-color:rgba(255, 255, 255, 1);
  4917. box-sizing:border-box;
  4918. border-width:1px;
  4919. border-style:solid;
  4920. border-color:rgba(242, 242, 242, 1);
  4921. border-radius:33px;
  4922. -moz-box-shadow:none;
  4923. -webkit-box-shadow:none;
  4924. box-shadow:none;
  4925. }
  4926. #u40416 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:1222px;
  4930. top:71px;
  4931. width:88px;
  4932. height:32px;
  4933. display:flex;
  4934. }
  4935. #u40416 .text {
  4936. position:absolute;
  4937. align-self:center;
  4938. padding:2px 2px 2px 2px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u40416_text {
  4943. border-width:0px;
  4944. word-wrap:break-word;
  4945. text-transform:none;
  4946. visibility:hidden;
  4947. }
  4948. #u40417 {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:0px;
  4954. height:0px;
  4955. }
  4956. #u40418_img {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:18px;
  4962. height:18px;
  4963. }
  4964. #u40418 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:1285px;
  4968. top:78px;
  4969. width:18px;
  4970. height:18px;
  4971. display:flex;
  4972. }
  4973. #u40418 .text {
  4974. position:absolute;
  4975. align-self:center;
  4976. padding:2px 2px 2px 2px;
  4977. box-sizing:border-box;
  4978. width:100%;
  4979. }
  4980. #u40418_text {
  4981. border-width:0px;
  4982. word-wrap:break-word;
  4983. text-transform:none;
  4984. visibility:hidden;
  4985. }
  4986. #u40419_img {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:6px;
  4992. height:6px;
  4993. }
  4994. #u40419 {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:1291px;
  4998. top:84px;
  4999. width:6px;
  5000. height:6px;
  5001. display:flex;
  5002. }
  5003. #u40419 .text {
  5004. position:absolute;
  5005. align-self:center;
  5006. padding:2px 2px 2px 2px;
  5007. box-sizing:border-box;
  5008. width:100%;
  5009. }
  5010. #u40419_text {
  5011. border-width:0px;
  5012. word-wrap:break-word;
  5013. text-transform:none;
  5014. visibility:hidden;
  5015. }
  5016. #u40420 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:0px;
  5022. height:0px;
  5023. }
  5024. #u40421_img {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:5px;
  5030. height:5px;
  5031. }
  5032. #u40421 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:1236px;
  5036. top:85px;
  5037. width:5px;
  5038. height:5px;
  5039. display:flex;
  5040. }
  5041. #u40421 .text {
  5042. position:absolute;
  5043. align-self:center;
  5044. padding:2px 2px 2px 2px;
  5045. box-sizing:border-box;
  5046. width:100%;
  5047. }
  5048. #u40421_text {
  5049. border-width:0px;
  5050. word-wrap:break-word;
  5051. text-transform:none;
  5052. visibility:hidden;
  5053. }
  5054. #u40422_img {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:5px;
  5060. height:5px;
  5061. }
  5062. #u40422 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:1252px;
  5066. top:85px;
  5067. width:5px;
  5068. height:5px;
  5069. display:flex;
  5070. }
  5071. #u40422 .text {
  5072. position:absolute;
  5073. align-self:center;
  5074. padding:2px 2px 2px 2px;
  5075. box-sizing:border-box;
  5076. width:100%;
  5077. }
  5078. #u40422_text {
  5079. border-width:0px;
  5080. word-wrap:break-word;
  5081. text-transform:none;
  5082. visibility:hidden;
  5083. }
  5084. #u40423_img {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:7px;
  5090. height:7px;
  5091. }
  5092. #u40423 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:1243px;
  5096. top:84px;
  5097. width:7px;
  5098. height:7px;
  5099. display:flex;
  5100. }
  5101. #u40423 .text {
  5102. position:absolute;
  5103. align-self:center;
  5104. padding:2px 2px 2px 2px;
  5105. box-sizing:border-box;
  5106. width:100%;
  5107. }
  5108. #u40423_text {
  5109. border-width:0px;
  5110. word-wrap:break-word;
  5111. text-transform:none;
  5112. visibility:hidden;
  5113. }
  5114. #u40424_img {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:19px;
  5120. height:2px;
  5121. }
  5122. #u40424 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:1260px;
  5126. top:87px;
  5127. width:18px;
  5128. height:1px;
  5129. display:flex;
  5130. -webkit-transform:rotate(90deg);
  5131. -moz-transform:rotate(90deg);
  5132. -ms-transform:rotate(90deg);
  5133. transform:rotate(90deg);
  5134. }
  5135. #u40424 .text {
  5136. position:absolute;
  5137. align-self:center;
  5138. padding:2px 2px 2px 2px;
  5139. box-sizing:border-box;
  5140. width:100%;
  5141. }
  5142. #u40424_text {
  5143. border-width:0px;
  5144. word-wrap:break-word;
  5145. text-transform:none;
  5146. visibility:hidden;
  5147. }
  5148. #u40425_img {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:375px;
  5154. height:44px;
  5155. }
  5156. #u40425 {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:942px;
  5160. top:24px;
  5161. width:375px;
  5162. height:44px;
  5163. display:flex;
  5164. }
  5165. #u40425 .text {
  5166. position:absolute;
  5167. align-self:center;
  5168. padding:2px 2px 2px 2px;
  5169. box-sizing:border-box;
  5170. width:100%;
  5171. }
  5172. #u40425_text {
  5173. border-width:0px;
  5174. word-wrap:break-word;
  5175. text-transform:none;
  5176. visibility:hidden;
  5177. }
  5178. #u40426_div {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:375px;
  5184. height:50px;
  5185. background:inherit;
  5186. background-color:rgba(255, 255, 255, 1);
  5187. box-sizing:border-box;
  5188. border-width:1px;
  5189. border-style:solid;
  5190. border-color:rgba(242, 242, 242, 1);
  5191. border-radius:26px;
  5192. border-top-left-radius:0px;
  5193. border-top-right-radius:0px;
  5194. -moz-box-shadow:none;
  5195. -webkit-box-shadow:none;
  5196. box-shadow:none;
  5197. }
  5198. #u40426 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:942px;
  5202. top:788px;
  5203. width:375px;
  5204. height:50px;
  5205. display:flex;
  5206. }
  5207. #u40426 .text {
  5208. position:absolute;
  5209. align-self:center;
  5210. padding:2px 2px 2px 2px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u40426_text {
  5215. border-width:0px;
  5216. word-wrap:break-word;
  5217. text-transform:none;
  5218. visibility:hidden;
  5219. }
  5220. #u40427 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:0px;
  5226. height:0px;
  5227. }
  5228. #u40428_img {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:24px;
  5234. height:24px;
  5235. }
  5236. #u40428 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:982px;
  5240. top:792px;
  5241. width:24px;
  5242. height:24px;
  5243. display:flex;
  5244. font-size:8px;
  5245. }
  5246. #u40428 .text {
  5247. position:absolute;
  5248. align-self:center;
  5249. padding:2px 2px 2px 2px;
  5250. box-sizing:border-box;
  5251. width:100%;
  5252. }
  5253. #u40428_text {
  5254. border-width:0px;
  5255. word-wrap:break-word;
  5256. text-transform:none;
  5257. }
  5258. #u40429_div {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:25px;
  5264. height:17px;
  5265. background:inherit;
  5266. background-color:rgba(255, 255, 255, 0);
  5267. border:none;
  5268. border-radius:0px;
  5269. -moz-box-shadow:none;
  5270. -webkit-box-shadow:none;
  5271. box-shadow:none;
  5272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:12px;
  5276. }
  5277. #u40429 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:982px;
  5281. top:817px;
  5282. width:25px;
  5283. height:17px;
  5284. display:flex;
  5285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:12px;
  5289. }
  5290. #u40429 .text {
  5291. position:absolute;
  5292. align-self:flex-start;
  5293. padding:0px 0px 0px 0px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u40429_text {
  5298. border-width:0px;
  5299. white-space:nowrap;
  5300. text-transform:none;
  5301. }
  5302. #u40430 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:0px;
  5308. height:0px;
  5309. }
  5310. #u40431_img {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:24px;
  5316. height:24px;
  5317. }
  5318. #u40431 {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:1252px;
  5322. top:794px;
  5323. width:24px;
  5324. height:24px;
  5325. display:flex;
  5326. font-size:8px;
  5327. }
  5328. #u40431 .text {
  5329. position:absolute;
  5330. align-self:center;
  5331. padding:2px 2px 2px 2px;
  5332. box-sizing:border-box;
  5333. width:100%;
  5334. }
  5335. #u40431_text {
  5336. border-width:0px;
  5337. word-wrap:break-word;
  5338. text-transform:none;
  5339. }
  5340. #u40432_div {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:25px;
  5346. height:17px;
  5347. background:inherit;
  5348. background-color:rgba(255, 255, 255, 0);
  5349. border:none;
  5350. border-radius:0px;
  5351. -moz-box-shadow:none;
  5352. -webkit-box-shadow:none;
  5353. box-shadow:none;
  5354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:12px;
  5358. }
  5359. #u40432 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:1252px;
  5363. top:819px;
  5364. width:25px;
  5365. height:17px;
  5366. display:flex;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:12px;
  5371. }
  5372. #u40432 .text {
  5373. position:absolute;
  5374. align-self:flex-start;
  5375. padding:0px 0px 0px 0px;
  5376. box-sizing:border-box;
  5377. width:100%;
  5378. }
  5379. #u40432_text {
  5380. border-width:0px;
  5381. white-space:nowrap;
  5382. text-transform:none;
  5383. }
  5384. #u40433_div {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:375px;
  5390. height:681px;
  5391. background:inherit;
  5392. background-color:rgba(242, 242, 242, 0.462745098039216);
  5393. border:none;
  5394. border-radius:0px;
  5395. -moz-box-shadow:none;
  5396. -webkit-box-shadow:none;
  5397. box-shadow:none;
  5398. }
  5399. #u40433 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:942px;
  5403. top:107px;
  5404. width:375px;
  5405. height:681px;
  5406. display:flex;
  5407. }
  5408. #u40433 .text {
  5409. position:absolute;
  5410. align-self:center;
  5411. padding:2px 2px 2px 2px;
  5412. box-sizing:border-box;
  5413. width:100%;
  5414. }
  5415. #u40433_text {
  5416. border-width:0px;
  5417. word-wrap:break-word;
  5418. text-transform:none;
  5419. visibility:hidden;
  5420. }
  5421. #u40434 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:0px;
  5427. height:0px;
  5428. }
  5429. #u40435_img {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:24px;
  5435. height:24px;
  5436. }
  5437. #u40435 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:1164px;
  5441. top:792px;
  5442. width:24px;
  5443. height:24px;
  5444. display:flex;
  5445. font-size:8px;
  5446. }
  5447. #u40435 .text {
  5448. position:absolute;
  5449. align-self:center;
  5450. padding:2px 2px 2px 2px;
  5451. box-sizing:border-box;
  5452. width:100%;
  5453. }
  5454. #u40435_text {
  5455. border-width:0px;
  5456. word-wrap:break-word;
  5457. text-transform:none;
  5458. }
  5459. #u40436_div {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:37px;
  5465. height:17px;
  5466. background:inherit;
  5467. background-color:rgba(255, 255, 255, 0);
  5468. border:none;
  5469. border-radius:0px;
  5470. -moz-box-shadow:none;
  5471. -webkit-box-shadow:none;
  5472. box-shadow:none;
  5473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5474. font-weight:400;
  5475. font-style:normal;
  5476. font-size:12px;
  5477. }
  5478. #u40436 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:1158px;
  5482. top:817px;
  5483. width:37px;
  5484. height:17px;
  5485. display:flex;
  5486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:12px;
  5490. }
  5491. #u40436 .text {
  5492. position:absolute;
  5493. align-self:flex-start;
  5494. padding:0px 0px 0px 0px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u40436_text {
  5499. border-width:0px;
  5500. white-space:nowrap;
  5501. text-transform:none;
  5502. }
  5503. #u40437 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:0px;
  5509. height:0px;
  5510. }
  5511. #u40438_img {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:24px;
  5517. height:24px;
  5518. }
  5519. #u40438 {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:1070px;
  5523. top:792px;
  5524. width:24px;
  5525. height:24px;
  5526. display:flex;
  5527. font-size:8px;
  5528. }
  5529. #u40438 .text {
  5530. position:absolute;
  5531. align-self:center;
  5532. padding:2px 2px 2px 2px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u40438_text {
  5537. border-width:0px;
  5538. word-wrap:break-word;
  5539. text-transform:none;
  5540. }
  5541. #u40439_div {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:37px;
  5547. height:17px;
  5548. background:inherit;
  5549. background-color:rgba(255, 255, 255, 0);
  5550. border:none;
  5551. border-radius:0px;
  5552. -moz-box-shadow:none;
  5553. -webkit-box-shadow:none;
  5554. box-shadow:none;
  5555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:12px;
  5559. }
  5560. #u40439 {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:1064px;
  5564. top:817px;
  5565. width:37px;
  5566. height:17px;
  5567. display:flex;
  5568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:12px;
  5572. }
  5573. #u40439 .text {
  5574. position:absolute;
  5575. align-self:flex-start;
  5576. padding:0px 0px 0px 0px;
  5577. box-sizing:border-box;
  5578. width:100%;
  5579. }
  5580. #u40439_text {
  5581. border-width:0px;
  5582. white-space:nowrap;
  5583. text-transform:none;
  5584. }
  5585. #u40440_div {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:0px;
  5589. top:0px;
  5590. width:375px;
  5591. height:775px;
  5592. background:inherit;
  5593. background-color:rgba(255, 255, 255, 1);
  5594. border:none;
  5595. border-top:0px;
  5596. border-radius:28px;
  5597. border-top-left-radius:0px;
  5598. border-top-right-radius:0px;
  5599. -moz-box-shadow:none;
  5600. -webkit-box-shadow:none;
  5601. box-shadow:none;
  5602. }
  5603. #u40440 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:942px;
  5607. top:65px;
  5608. width:375px;
  5609. height:775px;
  5610. display:flex;
  5611. }
  5612. #u40440 .text {
  5613. position:absolute;
  5614. align-self:center;
  5615. padding:2px 2px 2px 2px;
  5616. box-sizing:border-box;
  5617. width:100%;
  5618. }
  5619. #u40440_text {
  5620. border-width:0px;
  5621. word-wrap:break-word;
  5622. text-transform:none;
  5623. visibility:hidden;
  5624. }
  5625. #u40441_div {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:97px;
  5631. height:30px;
  5632. background:inherit;
  5633. background-color:rgba(255, 255, 255, 0);
  5634. border:none;
  5635. border-left:0px;
  5636. border-top:0px;
  5637. border-right:0px;
  5638. border-radius:0px;
  5639. border-bottom-right-radius:0px;
  5640. border-bottom-left-radius:0px;
  5641. -moz-box-shadow:none;
  5642. -webkit-box-shadow:none;
  5643. box-shadow:none;
  5644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5645. font-weight:400;
  5646. font-style:normal;
  5647. line-height:30px;
  5648. }
  5649. #u40441 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:1081px;
  5653. top:226px;
  5654. width:97px;
  5655. height:30px;
  5656. display:flex;
  5657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5658. font-weight:400;
  5659. font-style:normal;
  5660. line-height:30px;
  5661. }
  5662. #u40441 .text {
  5663. position:absolute;
  5664. align-self:center;
  5665. padding:0px 0px 0px 0px;
  5666. box-sizing:border-box;
  5667. width:100%;
  5668. }
  5669. #u40441_text {
  5670. border-width:0px;
  5671. white-space:nowrap;
  5672. text-transform:none;
  5673. }
  5674. #u40442_div {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:126px;
  5680. height:40px;
  5681. background:inherit;
  5682. background-color:rgba(255, 255, 255, 1);
  5683. box-sizing:border-box;
  5684. border-width:1px;
  5685. border-style:solid;
  5686. border-color:rgba(121, 121, 121, 1);
  5687. border-radius:63px;
  5688. -moz-box-shadow:none;
  5689. -webkit-box-shadow:none;
  5690. box-shadow:none;
  5691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. font-size:14px;
  5695. }
  5696. #u40442 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:1140px;
  5700. top:354px;
  5701. width:126px;
  5702. height:40px;
  5703. display:flex;
  5704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5705. font-weight:400;
  5706. font-style:normal;
  5707. font-size:14px;
  5708. }
  5709. #u40442 .text {
  5710. position:absolute;
  5711. align-self:center;
  5712. padding:2px 2px 2px 2px;
  5713. box-sizing:border-box;
  5714. width:100%;
  5715. }
  5716. #u40442_text {
  5717. border-width:0px;
  5718. word-wrap:break-word;
  5719. text-transform:none;
  5720. }
  5721. #u40443_img {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:83px;
  5727. height:83px;
  5728. }
  5729. #u40443 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:1088px;
  5733. top:127px;
  5734. width:83px;
  5735. height:83px;
  5736. display:flex;
  5737. }
  5738. #u40443 .text {
  5739. position:absolute;
  5740. align-self:center;
  5741. padding:2px 2px 2px 2px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u40443_text {
  5746. border-width:0px;
  5747. word-wrap:break-word;
  5748. text-transform:none;
  5749. visibility:hidden;
  5750. }
  5751. #u40444_div {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:126px;
  5757. height:40px;
  5758. background:inherit;
  5759. background-color:rgba(255, 255, 255, 1);
  5760. box-sizing:border-box;
  5761. border-width:1px;
  5762. border-style:solid;
  5763. border-color:rgba(121, 121, 121, 1);
  5764. border-radius:63px;
  5765. -moz-box-shadow:none;
  5766. -webkit-box-shadow:none;
  5767. box-shadow:none;
  5768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:14px;
  5772. }
  5773. #u40444 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:994px;
  5777. top:354px;
  5778. width:126px;
  5779. height:40px;
  5780. display:flex;
  5781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. font-size:14px;
  5785. }
  5786. #u40444 .text {
  5787. position:absolute;
  5788. align-self:center;
  5789. padding:2px 2px 2px 2px;
  5790. box-sizing:border-box;
  5791. width:100%;
  5792. }
  5793. #u40444_text {
  5794. border-width:0px;
  5795. word-wrap:break-word;
  5796. text-transform:none;
  5797. }
  5798. #u40445_div {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:30px;
  5804. height:30px;
  5805. background:inherit;
  5806. background-color:rgba(255, 255, 255, 0);
  5807. border:none;
  5808. border-left:0px;
  5809. border-top:0px;
  5810. border-right:0px;
  5811. border-radius:0px;
  5812. border-bottom-right-radius:0px;
  5813. border-bottom-left-radius:0px;
  5814. -moz-box-shadow:none;
  5815. -webkit-box-shadow:none;
  5816. box-shadow:none;
  5817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:18px;
  5821. text-align:center;
  5822. line-height:30px;
  5823. }
  5824. #u40445 {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:952px;
  5828. top:75px;
  5829. width:30px;
  5830. height:30px;
  5831. display:flex;
  5832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5833. font-weight:400;
  5834. font-style:normal;
  5835. font-size:18px;
  5836. text-align:center;
  5837. line-height:30px;
  5838. }
  5839. #u40445 .text {
  5840. position:absolute;
  5841. align-self:center;
  5842. padding:0px 0px 0px 0px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u40445_text {
  5847. border-width:0px;
  5848. word-wrap:break-word;
  5849. text-transform:none;
  5850. }
  5851. #u40446 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:0px;
  5857. height:0px;
  5858. }
  5859. #u40447_img {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:0px;
  5863. top:0px;
  5864. width:350px;
  5865. height:40px;
  5866. }
  5867. #u40447 {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:954px;
  5871. top:402px;
  5872. width:350px;
  5873. height:40px;
  5874. display:flex;
  5875. }
  5876. #u40447 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:2px 2px 2px 2px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u40447_text {
  5884. border-width:0px;
  5885. word-wrap:break-word;
  5886. text-transform:none;
  5887. visibility:hidden;
  5888. }
  5889. #u40448 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:0px;
  5895. height:0px;
  5896. }
  5897. #u40449_div {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:221px;
  5903. height:30px;
  5904. background:inherit;
  5905. background-color:rgba(255, 255, 255, 0);
  5906. border:none;
  5907. border-left:0px;
  5908. border-top:0px;
  5909. border-right:0px;
  5910. border-radius:0px;
  5911. border-bottom-right-radius:0px;
  5912. border-bottom-left-radius:0px;
  5913. -moz-box-shadow:none;
  5914. -webkit-box-shadow:none;
  5915. box-shadow:none;
  5916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5917. font-style:normal;
  5918. color:#FFFFFF;
  5919. text-align:center;
  5920. line-height:30px;
  5921. }
  5922. #u40449 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:1034px;
  5926. top:407px;
  5927. width:221px;
  5928. height:30px;
  5929. display:flex;
  5930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5931. font-style:normal;
  5932. color:#FFFFFF;
  5933. text-align:center;
  5934. line-height:30px;
  5935. }
  5936. #u40449 .text {
  5937. position:absolute;
  5938. align-self:center;
  5939. padding:0px 0px 0px 0px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u40449_text {
  5944. border-width:0px;
  5945. white-space:nowrap;
  5946. text-transform:none;
  5947. }
  5948. #u40450_img {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:26px;
  5954. height:26px;
  5955. }
  5956. #u40450 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:1004px;
  5960. top:409px;
  5961. width:26px;
  5962. height:26px;
  5963. display:flex;
  5964. }
  5965. #u40450 .text {
  5966. position:absolute;
  5967. align-self:center;
  5968. padding:2px 2px 2px 2px;
  5969. box-sizing:border-box;
  5970. width:100%;
  5971. }
  5972. #u40450_text {
  5973. border-width:0px;
  5974. word-wrap:break-word;
  5975. text-transform:none;
  5976. }
  5977. #u40451_div {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:197px;
  5983. height:30px;
  5984. background:inherit;
  5985. background-color:rgba(255, 255, 255, 0);
  5986. border:none;
  5987. border-left:0px;
  5988. border-top:0px;
  5989. border-right:0px;
  5990. border-radius:0px;
  5991. border-bottom-right-radius:0px;
  5992. border-bottom-left-radius:0px;
  5993. -moz-box-shadow:none;
  5994. -webkit-box-shadow:none;
  5995. box-shadow:none;
  5996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. font-size:14px;
  6000. line-height:30px;
  6001. }
  6002. #u40451 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:1037px;
  6006. top:284px;
  6007. width:197px;
  6008. height:30px;
  6009. display:flex;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:14px;
  6014. line-height:30px;
  6015. }
  6016. #u40451 .text {
  6017. position:absolute;
  6018. align-self:center;
  6019. padding:0px 0px 0px 0px;
  6020. box-sizing:border-box;
  6021. width:100%;
  6022. }
  6023. #u40451_text {
  6024. border-width:0px;
  6025. white-space:nowrap;
  6026. text-transform:none;
  6027. }
  6028. #u40452_div {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:0px;
  6032. top:0px;
  6033. width:363px;
  6034. height:60px;
  6035. background:inherit;
  6036. background-color:rgba(255, 255, 255, 0);
  6037. border:none;
  6038. border-left:0px;
  6039. border-top:0px;
  6040. border-right:0px;
  6041. border-radius:0px;
  6042. border-bottom-right-radius:0px;
  6043. border-bottom-left-radius:0px;
  6044. -moz-box-shadow:none;
  6045. -webkit-box-shadow:none;
  6046. box-shadow:none;
  6047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6048. font-weight:400;
  6049. font-style:normal;
  6050. font-size:14px;
  6051. color:#D9001B;
  6052. line-height:30px;
  6053. }
  6054. #u40452 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:954px;
  6058. top:471px;
  6059. width:363px;
  6060. height:60px;
  6061. display:flex;
  6062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6063. font-weight:400;
  6064. font-style:normal;
  6065. font-size:14px;
  6066. color:#D9001B;
  6067. line-height:30px;
  6068. }
  6069. #u40452 .text {
  6070. position:absolute;
  6071. align-self:flex-start;
  6072. padding:0px 0px 0px 0px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u40452_text {
  6077. border-width:0px;
  6078. word-wrap:break-word;
  6079. text-transform:none;
  6080. }
  6081. #u40453 {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:0px;
  6087. height:0px;
  6088. }
  6089. #u40454_div {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:342px;
  6095. height:149px;
  6096. background:inherit;
  6097. background-color:rgba(255, 255, 255, 1);
  6098. border:none;
  6099. border-radius:10px;
  6100. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6101. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6102. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6103. }
  6104. #u40454 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:886px;
  6108. top:596px;
  6109. width:342px;
  6110. height:149px;
  6111. display:flex;
  6112. }
  6113. #u40454 .text {
  6114. position:absolute;
  6115. align-self:center;
  6116. padding:2px 2px 2px 2px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u40454_text {
  6121. border-width:0px;
  6122. word-wrap:break-word;
  6123. text-transform:none;
  6124. visibility:hidden;
  6125. }
  6126. #u40455_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:127px;
  6132. height:30px;
  6133. background:inherit;
  6134. background-color:rgba(255, 255, 255, 0);
  6135. border:none;
  6136. border-left:0px;
  6137. border-top:0px;
  6138. border-right:0px;
  6139. border-radius:0px;
  6140. border-bottom-right-radius:0px;
  6141. border-bottom-left-radius:0px;
  6142. -moz-box-shadow:none;
  6143. -webkit-box-shadow:none;
  6144. box-shadow:none;
  6145. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6146. font-weight:500;
  6147. font-style:normal;
  6148. font-size:18px;
  6149. text-align:center;
  6150. line-height:30px;
  6151. }
  6152. #u40455 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:994px;
  6156. top:620px;
  6157. width:127px;
  6158. height:30px;
  6159. display:flex;
  6160. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6161. font-weight:500;
  6162. font-style:normal;
  6163. font-size:18px;
  6164. text-align:center;
  6165. line-height:30px;
  6166. }
  6167. #u40455 .text {
  6168. position:absolute;
  6169. align-self:flex-start;
  6170. padding:0px 0px 0px 0px;
  6171. box-sizing:border-box;
  6172. width:100%;
  6173. }
  6174. #u40455_text {
  6175. border-width:0px;
  6176. white-space:nowrap;
  6177. text-transform:none;
  6178. }
  6179. #u40456_img {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:343px;
  6185. height:2px;
  6186. }
  6187. #u40456 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:886px;
  6191. top:684px;
  6192. width:342px;
  6193. height:1px;
  6194. display:flex;
  6195. }
  6196. #u40456 .text {
  6197. position:absolute;
  6198. align-self:center;
  6199. padding:2px 2px 2px 2px;
  6200. box-sizing:border-box;
  6201. width:100%;
  6202. }
  6203. #u40456_text {
  6204. border-width:0px;
  6205. word-wrap:break-word;
  6206. text-transform:none;
  6207. visibility:hidden;
  6208. }
  6209. #u40457_div {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:37px;
  6215. height:30px;
  6216. background:inherit;
  6217. background-color:rgba(255, 255, 255, 0);
  6218. border:none;
  6219. border-left:0px;
  6220. border-top:0px;
  6221. border-right:0px;
  6222. border-radius:0px;
  6223. border-bottom-right-radius:0px;
  6224. border-bottom-left-radius:0px;
  6225. -moz-box-shadow:none;
  6226. -webkit-box-shadow:none;
  6227. box-shadow:none;
  6228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:18px;
  6232. color:#0089FE;
  6233. text-align:right;
  6234. line-height:30px;
  6235. }
  6236. #u40457 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:1127px;
  6240. top:703px;
  6241. width:37px;
  6242. height:30px;
  6243. display:flex;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:18px;
  6248. color:#0089FE;
  6249. text-align:right;
  6250. line-height:30px;
  6251. }
  6252. #u40457 .text {
  6253. position:absolute;
  6254. align-self:flex-start;
  6255. padding:0px 0px 0px 0px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u40457_text {
  6260. border-width:0px;
  6261. white-space:nowrap;
  6262. text-transform:none;
  6263. }
  6264. #u40458_div {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:0px;
  6268. top:0px;
  6269. width:37px;
  6270. height:30px;
  6271. background:inherit;
  6272. background-color:rgba(255, 255, 255, 0);
  6273. border:none;
  6274. border-left:0px;
  6275. border-top:0px;
  6276. border-right:0px;
  6277. border-radius:0px;
  6278. border-bottom-right-radius:0px;
  6279. border-bottom-left-radius:0px;
  6280. -moz-box-shadow:none;
  6281. -webkit-box-shadow:none;
  6282. box-shadow:none;
  6283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6284. font-weight:400;
  6285. font-style:normal;
  6286. font-size:18px;
  6287. color:#0089FE;
  6288. text-align:right;
  6289. line-height:30px;
  6290. }
  6291. #u40458 {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:960px;
  6295. top:703px;
  6296. width:37px;
  6297. height:30px;
  6298. display:flex;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:18px;
  6303. color:#0089FE;
  6304. text-align:right;
  6305. line-height:30px;
  6306. }
  6307. #u40458 .text {
  6308. position:absolute;
  6309. align-self:flex-start;
  6310. padding:0px 0px 0px 0px;
  6311. box-sizing:border-box;
  6312. width:100%;
  6313. }
  6314. #u40458_text {
  6315. border-width:0px;
  6316. white-space:nowrap;
  6317. text-transform:none;
  6318. }
  6319. #u40459_img {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:2px;
  6325. height:61px;
  6326. }
  6327. #u40459 {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:1057px;
  6331. top:685px;
  6332. width:1px;
  6333. height:60px;
  6334. display:flex;
  6335. }
  6336. #u40459 .text {
  6337. position:absolute;
  6338. align-self:center;
  6339. padding:2px 2px 2px 2px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u40459_text {
  6344. border-width:0px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. visibility:hidden;
  6348. }