styles.css 136 KB

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