styles.css 109 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:433px;
  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. #u45224 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u45225 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u45225 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u45225_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u45225_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u45226_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u45226 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u45226 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u45226_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u45227 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u45228_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u45228 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u45228 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u45228_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u45229 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u45230 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u45230 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u45230_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u45230_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u45231 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u45231 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u45231_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u45231_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u45232 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u45233 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u45233 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u45233_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u45233_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u45234 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u45234 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u45234_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u45234_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u45235 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u45235 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u45235_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u45235_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u45236 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u45236 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u45236_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u45236_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u45237 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u45237 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u45237_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u45237_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u45238_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u45238 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u45238 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u45238_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u45239 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u45240 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u45240 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u45240_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u45240_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u45241_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u45241 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u45241 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u45241_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u45242 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u45243 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u45243 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u45243_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u45243_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u45244_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u45244 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u45244 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u45244_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u45245_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u45245 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u45245 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u45245_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u45246 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u45247 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u45247 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u45247_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u45247_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u45248_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u45248 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u45248 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u45248_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u45249 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u45250 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u45250 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u45250_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u45250_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u45251_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u45251 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u45251 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u45251_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u45252_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:964px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:0px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u45252 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:106px;
  823. width:375px;
  824. height:964px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u45252 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u45252_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u45253 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:24px;
  847. width:375px;
  848. height:44px;
  849. display:flex;
  850. transition:none;
  851. }
  852. #u45253 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:2px 2px 2px 2px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u45253_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:375px;
  865. height:44px;
  866. }
  867. #u45253_text {
  868. border-width:0px;
  869. word-wrap:break-word;
  870. text-transform:none;
  871. visibility:hidden;
  872. }
  873. #u45254 {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:0px;
  879. height:0px;
  880. }
  881. #u45255_div {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:88px;
  887. height:32px;
  888. background:inherit;
  889. background-color:rgba(255, 255, 255, 1);
  890. box-sizing:border-box;
  891. border-width:1px;
  892. border-style:solid;
  893. border-color:rgba(242, 242, 242, 1);
  894. border-radius:33px;
  895. filter:drop-shadow(none);
  896. transition:none;
  897. }
  898. #u45255 {
  899. border-width:0px;
  900. position:absolute;
  901. left:309px;
  902. top:71px;
  903. width:88px;
  904. height:32px;
  905. display:flex;
  906. transition:none;
  907. transform-origin:50% 50%;
  908. }
  909. #u45255 .text {
  910. position:absolute;
  911. align-self:center;
  912. padding:2px 2px 2px 2px;
  913. box-sizing:border-box;
  914. width:100%;
  915. }
  916. #u45255_text {
  917. border-width:0px;
  918. word-wrap:break-word;
  919. text-transform:none;
  920. visibility:hidden;
  921. }
  922. #u45256 {
  923. border-width:0px;
  924. position:absolute;
  925. left:0px;
  926. top:0px;
  927. width:0px;
  928. height:0px;
  929. }
  930. #u45257 {
  931. border-width:0px;
  932. position:absolute;
  933. left:372px;
  934. top:78px;
  935. width:18px;
  936. height:18px;
  937. display:flex;
  938. transition:none;
  939. }
  940. #u45257 .text {
  941. position:absolute;
  942. align-self:center;
  943. padding:2px 2px 2px 2px;
  944. box-sizing:border-box;
  945. width:100%;
  946. }
  947. #u45257_img {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:18px;
  953. height:18px;
  954. }
  955. #u45257_text {
  956. border-width:0px;
  957. word-wrap:break-word;
  958. text-transform:none;
  959. visibility:hidden;
  960. }
  961. #u45258 {
  962. border-width:0px;
  963. position:absolute;
  964. left:378px;
  965. top:84px;
  966. width:6px;
  967. height:6px;
  968. display:flex;
  969. transition:none;
  970. }
  971. #u45258 .text {
  972. position:absolute;
  973. align-self:center;
  974. padding:2px 2px 2px 2px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u45258_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:6px;
  984. height:6px;
  985. }
  986. #u45258_text {
  987. border-width:0px;
  988. word-wrap:break-word;
  989. text-transform:none;
  990. visibility:hidden;
  991. }
  992. #u45259 {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:0px;
  998. height:0px;
  999. }
  1000. #u45260 {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:323px;
  1004. top:85px;
  1005. width:5px;
  1006. height:5px;
  1007. display:flex;
  1008. transition:none;
  1009. }
  1010. #u45260 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u45260_img {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:5px;
  1023. height:5px;
  1024. }
  1025. #u45260_text {
  1026. border-width:0px;
  1027. word-wrap:break-word;
  1028. text-transform:none;
  1029. visibility:hidden;
  1030. }
  1031. #u45261 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:339px;
  1035. top:85px;
  1036. width:5px;
  1037. height:5px;
  1038. display:flex;
  1039. transition:none;
  1040. }
  1041. #u45261 .text {
  1042. position:absolute;
  1043. align-self:center;
  1044. padding:2px 2px 2px 2px;
  1045. box-sizing:border-box;
  1046. width:100%;
  1047. }
  1048. #u45261_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u45261_text {
  1057. border-width:0px;
  1058. word-wrap:break-word;
  1059. text-transform:none;
  1060. visibility:hidden;
  1061. }
  1062. #u45262 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:330px;
  1066. top:84px;
  1067. width:7px;
  1068. height:7px;
  1069. display:flex;
  1070. transition:none;
  1071. }
  1072. #u45262 .text {
  1073. position:absolute;
  1074. align-self:center;
  1075. padding:2px 2px 2px 2px;
  1076. box-sizing:border-box;
  1077. width:100%;
  1078. }
  1079. #u45262_img {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:0px;
  1083. top:0px;
  1084. width:7px;
  1085. height:7px;
  1086. }
  1087. #u45262_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u45263 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:347px;
  1097. top:87px;
  1098. width:18px;
  1099. height:1px;
  1100. display:flex;
  1101. -webkit-transform:rotate(90deg);
  1102. -moz-transform:rotate(90deg);
  1103. -ms-transform:rotate(90deg);
  1104. transform:rotate(90deg);
  1105. transition:none;
  1106. }
  1107. #u45263 .text {
  1108. position:absolute;
  1109. align-self:center;
  1110. padding:2px 2px 2px 2px;
  1111. box-sizing:border-box;
  1112. width:100%;
  1113. }
  1114. #u45263_img {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:0px;
  1118. top:0px;
  1119. width:19px;
  1120. height:2px;
  1121. }
  1122. #u45263_text {
  1123. border-width:0px;
  1124. word-wrap:break-word;
  1125. text-transform:none;
  1126. visibility:hidden;
  1127. }
  1128. #u45264_div {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:65px;
  1134. height:22px;
  1135. background:inherit;
  1136. background-color:rgba(255, 255, 255, 0);
  1137. border-radius:0px;
  1138. filter:drop-shadow(none);
  1139. transition:none;
  1140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1141. font-weight:400;
  1142. font-style:normal;
  1143. font-size:16px;
  1144. color:#000000;
  1145. }
  1146. #u45264 {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:174px;
  1150. top:78px;
  1151. width:65px;
  1152. height:22px;
  1153. display:flex;
  1154. transition:none;
  1155. transform-origin:50% 50%;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. font-size:16px;
  1160. color:#000000;
  1161. }
  1162. #u45264 .text {
  1163. position:absolute;
  1164. align-self:flex-start;
  1165. padding:0px 0px 0px 0px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u45264_text {
  1170. border-width:0px;
  1171. white-space:nowrap;
  1172. text-transform:none;
  1173. }
  1174. #u45265_div {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:12px;
  1180. height:12px;
  1181. background:inherit;
  1182. background-color:rgba(255, 255, 255, 0);
  1183. box-sizing:border-box;
  1184. border-width:2px;
  1185. border-style:solid;
  1186. border-color:rgba(51, 51, 51, 1);
  1187. border-right:0px;
  1188. border-bottom:0px;
  1189. border-radius:0px;
  1190. border-top-right-radius:0px;
  1191. border-bottom-left-radius:0px;
  1192. filter:drop-shadow(none);
  1193. transition:none;
  1194. }
  1195. #u45265 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:46px;
  1199. top:81px;
  1200. width:12px;
  1201. height:12px;
  1202. display:flex;
  1203. -webkit-transform:rotate(315deg);
  1204. -moz-transform:rotate(315deg);
  1205. -ms-transform:rotate(315deg);
  1206. transform:rotate(315deg);
  1207. transition:none;
  1208. transform-origin:50% 50%;
  1209. }
  1210. #u45265 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u45265_text {
  1218. border-width:0px;
  1219. word-wrap:break-word;
  1220. text-transform:none;
  1221. visibility:hidden;
  1222. }
  1223. #u45266 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:73px;
  1227. top:76px;
  1228. width:23px;
  1229. height:23px;
  1230. display:flex;
  1231. transition:none;
  1232. }
  1233. #u45266 .text {
  1234. position:absolute;
  1235. align-self:center;
  1236. padding:2px 2px 2px 2px;
  1237. box-sizing:border-box;
  1238. width:100%;
  1239. }
  1240. #u45266_img {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:23px;
  1246. height:23px;
  1247. }
  1248. #u45266_text {
  1249. border-width:0px;
  1250. word-wrap:break-word;
  1251. text-transform:none;
  1252. visibility:hidden;
  1253. }
  1254. #u45267 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:0px;
  1260. height:0px;
  1261. }
  1262. #u45268 {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:0px;
  1266. top:0px;
  1267. width:0px;
  1268. height:0px;
  1269. }
  1270. #u45269_div {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:0px;
  1274. top:0px;
  1275. width:375px;
  1276. height:50px;
  1277. background:inherit;
  1278. background-color:rgba(255, 255, 255, 1);
  1279. box-sizing:border-box;
  1280. border-width:1px;
  1281. border-style:solid;
  1282. border-color:rgba(242, 242, 242, 1);
  1283. border-radius:26px;
  1284. border-top-left-radius:0px;
  1285. border-top-right-radius:0px;
  1286. filter:drop-shadow(none);
  1287. transition:none;
  1288. }
  1289. #u45269 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:29px;
  1293. top:1070px;
  1294. width:375px;
  1295. height:50px;
  1296. display:flex;
  1297. transition:none;
  1298. transform-origin:50% 50%;
  1299. }
  1300. #u45269 .text {
  1301. position:absolute;
  1302. align-self:center;
  1303. padding:2px 2px 2px 2px;
  1304. box-sizing:border-box;
  1305. width:100%;
  1306. }
  1307. #u45269_text {
  1308. border-width:0px;
  1309. word-wrap:break-word;
  1310. text-transform:none;
  1311. visibility:hidden;
  1312. }
  1313. #u45270 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:0px;
  1319. height:0px;
  1320. }
  1321. #u45271_div {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:25px;
  1327. height:17px;
  1328. background:inherit;
  1329. background-color:rgba(255, 255, 255, 0);
  1330. border-radius:0px;
  1331. filter:drop-shadow(none);
  1332. transition:none;
  1333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1334. font-weight:400;
  1335. font-style:normal;
  1336. font-size:12px;
  1337. }
  1338. #u45271 {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:319px;
  1342. top:1099px;
  1343. width:25px;
  1344. height:17px;
  1345. display:flex;
  1346. transition:none;
  1347. transform-origin:50% 50%;
  1348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1349. font-weight:400;
  1350. font-style:normal;
  1351. font-size:12px;
  1352. }
  1353. #u45271 .text {
  1354. position:absolute;
  1355. align-self:flex-start;
  1356. padding:0px 0px 0px 0px;
  1357. box-sizing:border-box;
  1358. width:100%;
  1359. }
  1360. #u45271_text {
  1361. border-width:0px;
  1362. white-space:nowrap;
  1363. text-transform:none;
  1364. }
  1365. #u45272 {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:319px;
  1369. top:1074px;
  1370. width:24px;
  1371. height:24px;
  1372. display:flex;
  1373. transition:none;
  1374. font-size:8px;
  1375. color:#FFFFFF;
  1376. }
  1377. #u45272 .text {
  1378. position:absolute;
  1379. align-self:center;
  1380. padding:2px 2px 2px 2px;
  1381. box-sizing:border-box;
  1382. width:100%;
  1383. }
  1384. #u45272_img {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:24px;
  1390. height:24px;
  1391. }
  1392. #u45272_text {
  1393. border-width:0px;
  1394. word-wrap:break-word;
  1395. text-transform:none;
  1396. }
  1397. #u45273 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:0px;
  1403. height:0px;
  1404. }
  1405. #u45274 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:90px;
  1409. top:1074px;
  1410. width:24px;
  1411. height:24px;
  1412. display:flex;
  1413. transition:none;
  1414. font-size:8px;
  1415. }
  1416. #u45274 .text {
  1417. position:absolute;
  1418. align-self:center;
  1419. padding:2px 2px 2px 2px;
  1420. box-sizing:border-box;
  1421. width:100%;
  1422. }
  1423. #u45274_img {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:24px;
  1429. height:24px;
  1430. }
  1431. #u45274_text {
  1432. border-width:0px;
  1433. word-wrap:break-word;
  1434. text-transform:none;
  1435. }
  1436. #u45275_div {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:0px;
  1440. top:0px;
  1441. width:25px;
  1442. height:17px;
  1443. background:inherit;
  1444. background-color:rgba(255, 255, 255, 0);
  1445. border-radius:0px;
  1446. filter:drop-shadow(none);
  1447. transition:none;
  1448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1449. font-weight:400;
  1450. font-style:normal;
  1451. font-size:12px;
  1452. }
  1453. #u45275 {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:90px;
  1457. top:1099px;
  1458. width:25px;
  1459. height:17px;
  1460. display:flex;
  1461. transition:none;
  1462. transform-origin:50% 50%;
  1463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1464. font-weight:400;
  1465. font-style:normal;
  1466. font-size:12px;
  1467. }
  1468. #u45275 .text {
  1469. position:absolute;
  1470. align-self:flex-start;
  1471. padding:0px 0px 0px 0px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u45275_text {
  1476. border-width:0px;
  1477. white-space:nowrap;
  1478. text-transform:none;
  1479. }
  1480. #u45276 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:0px;
  1484. top:0px;
  1485. width:0px;
  1486. height:0px;
  1487. }
  1488. #u45277_div {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:375px;
  1494. height:50px;
  1495. background:inherit;
  1496. background-color:rgba(255, 255, 255, 1);
  1497. border-radius:0px;
  1498. filter:drop-shadow(5px 5px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  1499. transition:none;
  1500. }
  1501. #u45277 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:29px;
  1505. top:557px;
  1506. width:375px;
  1507. height:50px;
  1508. display:flex;
  1509. transition:none;
  1510. transform-origin:50% 50%;
  1511. }
  1512. #u45277 .text {
  1513. position:absolute;
  1514. align-self:center;
  1515. padding:2px 2px 2px 2px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u45277_text {
  1520. border-width:0px;
  1521. word-wrap:break-word;
  1522. text-transform:none;
  1523. visibility:hidden;
  1524. }
  1525. #u45278_div {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:73px;
  1531. height:17px;
  1532. background:inherit;
  1533. background-color:rgba(255, 255, 255, 0);
  1534. border-radius:0px;
  1535. filter:drop-shadow(none);
  1536. transition:none;
  1537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1538. font-weight:400;
  1539. font-style:normal;
  1540. font-size:12px;
  1541. color:#000000;
  1542. }
  1543. #u45278 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:44px;
  1547. top:572px;
  1548. width:73px;
  1549. height:17px;
  1550. display:flex;
  1551. transition:none;
  1552. transform-origin:50% 50%;
  1553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1554. font-weight:400;
  1555. font-style:normal;
  1556. font-size:12px;
  1557. color:#000000;
  1558. }
  1559. #u45278 .text {
  1560. position:absolute;
  1561. align-self:flex-start;
  1562. padding:0px 0px 0px 0px;
  1563. box-sizing:border-box;
  1564. width:100%;
  1565. }
  1566. #u45278_text {
  1567. border-width:0px;
  1568. white-space:nowrap;
  1569. text-transform:none;
  1570. }
  1571. #u45279_div {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:0px;
  1575. top:0px;
  1576. width:25px;
  1577. height:17px;
  1578. background:inherit;
  1579. background-color:rgba(24, 144, 255, 1);
  1580. border-radius:0px;
  1581. filter:drop-shadow(none);
  1582. transition:none;
  1583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1584. font-weight:400;
  1585. font-style:normal;
  1586. font-size:12px;
  1587. color:#FFFFFF;
  1588. }
  1589. #u45279 {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:212px;
  1593. top:573px;
  1594. width:25px;
  1595. height:17px;
  1596. display:flex;
  1597. transition:none;
  1598. transform-origin:50% 50%;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:12px;
  1603. color:#FFFFFF;
  1604. }
  1605. #u45279 .text {
  1606. position:absolute;
  1607. align-self:flex-start;
  1608. padding:0px 0px 0px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u45279_text {
  1613. border-width:0px;
  1614. white-space:nowrap;
  1615. text-transform:none;
  1616. }
  1617. #u45280_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:25px;
  1623. height:17px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 0);
  1626. border-radius:0px;
  1627. filter:drop-shadow(none);
  1628. transition:none;
  1629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1630. font-weight:400;
  1631. font-style:normal;
  1632. font-size:12px;
  1633. color:#000000;
  1634. }
  1635. #u45280 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:246px;
  1639. top:573px;
  1640. width:25px;
  1641. height:17px;
  1642. display:flex;
  1643. transition:none;
  1644. transform-origin:50% 50%;
  1645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1646. font-weight:400;
  1647. font-style:normal;
  1648. font-size:12px;
  1649. color:#000000;
  1650. }
  1651. #u45280 .text {
  1652. position:absolute;
  1653. align-self:flex-start;
  1654. padding:0px 0px 0px 0px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u45280_text {
  1659. border-width:0px;
  1660. white-space:nowrap;
  1661. text-transform:none;
  1662. }
  1663. #u45281_div {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:25px;
  1669. height:17px;
  1670. background:inherit;
  1671. background-color:rgba(255, 255, 255, 0);
  1672. border-radius:0px;
  1673. filter:drop-shadow(none);
  1674. transition:none;
  1675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1676. font-weight:400;
  1677. font-style:normal;
  1678. font-size:12px;
  1679. color:#000000;
  1680. }
  1681. #u45281 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:281px;
  1685. top:573px;
  1686. width:25px;
  1687. height:17px;
  1688. display:flex;
  1689. transition:none;
  1690. transform-origin:50% 50%;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:12px;
  1695. color:#000000;
  1696. }
  1697. #u45281 .text {
  1698. position:absolute;
  1699. align-self:flex-start;
  1700. padding:0px 0px 0px 0px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u45281_text {
  1705. border-width:0px;
  1706. white-space:nowrap;
  1707. text-transform:none;
  1708. }
  1709. #u45282_div {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:25px;
  1715. height:17px;
  1716. background:inherit;
  1717. background-color:rgba(255, 255, 255, 0);
  1718. border-radius:0px;
  1719. filter:drop-shadow(none);
  1720. transition:none;
  1721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:12px;
  1725. color:#000000;
  1726. }
  1727. #u45282 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:315px;
  1731. top:573px;
  1732. width:25px;
  1733. height:17px;
  1734. display:flex;
  1735. transition:none;
  1736. transform-origin:50% 50%;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. font-size:12px;
  1741. color:#000000;
  1742. }
  1743. #u45282 .text {
  1744. position:absolute;
  1745. align-self:flex-start;
  1746. padding:0px 0px 0px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u45282_text {
  1751. border-width:0px;
  1752. white-space:nowrap;
  1753. text-transform:none;
  1754. }
  1755. #u45283 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:0px;
  1761. height:0px;
  1762. }
  1763. #u45284_div {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:34px;
  1769. height:14px;
  1770. background:inherit;
  1771. background-color:rgba(255, 255, 255, 0);
  1772. border-radius:0px;
  1773. filter:drop-shadow(none);
  1774. transition:none;
  1775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:10px;
  1779. color:#000000;
  1780. }
  1781. #u45284 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:359px;
  1785. top:574px;
  1786. width:34px;
  1787. height:14px;
  1788. display:flex;
  1789. transition:none;
  1790. transform-origin:50% 50%;
  1791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:10px;
  1795. color:#000000;
  1796. }
  1797. #u45284 .text {
  1798. position:absolute;
  1799. align-self:flex-start;
  1800. padding:0px 0px 0px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u45284_text {
  1805. border-width:0px;
  1806. white-space:nowrap;
  1807. text-transform:none;
  1808. }
  1809. #u45285 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:349px;
  1813. top:578px;
  1814. width:8px;
  1815. height:8px;
  1816. display:flex;
  1817. transition:none;
  1818. }
  1819. #u45285 .text {
  1820. position:absolute;
  1821. align-self:center;
  1822. padding:2px 2px 2px 2px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u45285_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:8px;
  1832. height:8px;
  1833. }
  1834. #u45285_text {
  1835. border-width:0px;
  1836. word-wrap:break-word;
  1837. text-transform:none;
  1838. visibility:hidden;
  1839. }
  1840. #u45286 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:0px;
  1844. top:0px;
  1845. width:0px;
  1846. height:0px;
  1847. }
  1848. #u45287_div {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:375px;
  1854. height:150px;
  1855. background:inherit;
  1856. background-color:rgba(255, 255, 255, 1);
  1857. border-radius:4px;
  1858. filter:drop-shadow(none);
  1859. transition:none;
  1860. }
  1861. #u45287 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:29px;
  1865. top:608px;
  1866. width:375px;
  1867. height:150px;
  1868. display:flex;
  1869. transition:none;
  1870. transform-origin:50% 50%;
  1871. }
  1872. #u45287 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 2px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u45287_text {
  1880. border-width:0px;
  1881. word-wrap:break-word;
  1882. text-transform:none;
  1883. visibility:hidden;
  1884. }
  1885. #u45288_div {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:97px;
  1891. height:22px;
  1892. background:inherit;
  1893. background-color:rgba(255, 255, 255, 0);
  1894. border-radius:0px;
  1895. filter:drop-shadow(none);
  1896. transition:none;
  1897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1898. font-weight:400;
  1899. font-style:normal;
  1900. font-size:16px;
  1901. color:#000000;
  1902. }
  1903. #u45288 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:53px;
  1907. top:623px;
  1908. width:97px;
  1909. height:22px;
  1910. display:flex;
  1911. transition:none;
  1912. transform-origin:50% 50%;
  1913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1914. font-weight:400;
  1915. font-style:normal;
  1916. font-size:16px;
  1917. color:#000000;
  1918. }
  1919. #u45288 .text {
  1920. position:absolute;
  1921. align-self:flex-start;
  1922. padding:0px 0px 0px 0px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u45288_text {
  1927. border-width:0px;
  1928. white-space:nowrap;
  1929. text-transform:none;
  1930. }
  1931. #u45289 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:0px;
  1937. height:0px;
  1938. }
  1939. #u45290_div {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:22px;
  1945. height:14px;
  1946. background:inherit;
  1947. background-color:rgba(255, 255, 255, 0);
  1948. border-radius:0px;
  1949. filter:drop-shadow(none);
  1950. transition:none;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:10px;
  1955. text-align:center;
  1956. }
  1957. #u45290 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:50px;
  1961. top:728px;
  1962. width:22px;
  1963. height:14px;
  1964. display:flex;
  1965. transition:none;
  1966. transform-origin:50% 50%;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:10px;
  1971. text-align:center;
  1972. }
  1973. #u45290 .text {
  1974. position:absolute;
  1975. align-self:flex-start;
  1976. padding:0px 0px 0px 0px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u45290_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. }
  1985. #u45291_div {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:22px;
  1991. height:14px;
  1992. background:inherit;
  1993. background-color:rgba(255, 255, 255, 0);
  1994. border-radius:0px;
  1995. filter:drop-shadow(none);
  1996. transition:none;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:10px;
  2001. text-align:center;
  2002. }
  2003. #u45291 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:74px;
  2007. top:728px;
  2008. width:22px;
  2009. height:14px;
  2010. display:flex;
  2011. transition:none;
  2012. transform-origin:50% 50%;
  2013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2014. font-weight:400;
  2015. font-style:normal;
  2016. font-size:10px;
  2017. text-align:center;
  2018. }
  2019. #u45291 .text {
  2020. position:absolute;
  2021. align-self:flex-start;
  2022. padding:0px 0px 0px 0px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u45291_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. }
  2031. #u45292_div {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:22px;
  2037. height:14px;
  2038. background:inherit;
  2039. background-color:rgba(255, 255, 255, 0);
  2040. border-radius:0px;
  2041. filter:drop-shadow(none);
  2042. transition:none;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:10px;
  2047. text-align:center;
  2048. }
  2049. #u45292 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:96px;
  2053. top:728px;
  2054. width:22px;
  2055. height:14px;
  2056. display:flex;
  2057. transition:none;
  2058. transform-origin:50% 50%;
  2059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:10px;
  2063. text-align:center;
  2064. }
  2065. #u45292 .text {
  2066. position:absolute;
  2067. align-self:flex-start;
  2068. padding:0px 0px 0px 0px;
  2069. box-sizing:border-box;
  2070. width:100%;
  2071. }
  2072. #u45292_text {
  2073. border-width:0px;
  2074. word-wrap:break-word;
  2075. text-transform:none;
  2076. }
  2077. #u45293_div {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:22px;
  2083. height:14px;
  2084. background:inherit;
  2085. background-color:rgba(255, 255, 255, 0);
  2086. border-radius:0px;
  2087. filter:drop-shadow(none);
  2088. transition:none;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:10px;
  2093. text-align:center;
  2094. }
  2095. #u45293 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:119px;
  2099. top:728px;
  2100. width:22px;
  2101. height:14px;
  2102. display:flex;
  2103. transition:none;
  2104. transform-origin:50% 50%;
  2105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2106. font-weight:400;
  2107. font-style:normal;
  2108. font-size:10px;
  2109. text-align:center;
  2110. }
  2111. #u45293 .text {
  2112. position:absolute;
  2113. align-self:flex-start;
  2114. padding:0px 0px 0px 0px;
  2115. box-sizing:border-box;
  2116. width:100%;
  2117. }
  2118. #u45293_text {
  2119. border-width:0px;
  2120. word-wrap:break-word;
  2121. text-transform:none;
  2122. }
  2123. #u45294_div {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:22px;
  2129. height:14px;
  2130. background:inherit;
  2131. background-color:rgba(255, 255, 255, 0);
  2132. border-radius:0px;
  2133. filter:drop-shadow(none);
  2134. transition:none;
  2135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2136. font-weight:400;
  2137. font-style:normal;
  2138. font-size:10px;
  2139. text-align:center;
  2140. }
  2141. #u45294 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:141px;
  2145. top:728px;
  2146. width:22px;
  2147. height:14px;
  2148. display:flex;
  2149. transition:none;
  2150. transform-origin:50% 50%;
  2151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2152. font-weight:400;
  2153. font-style:normal;
  2154. font-size:10px;
  2155. text-align:center;
  2156. }
  2157. #u45294 .text {
  2158. position:absolute;
  2159. align-self:flex-start;
  2160. padding:0px 0px 0px 0px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u45294_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. }
  2169. #u45295_div {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:22px;
  2175. height:14px;
  2176. background:inherit;
  2177. background-color:rgba(255, 255, 255, 0);
  2178. border-radius:0px;
  2179. filter:drop-shadow(none);
  2180. transition:none;
  2181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. font-size:10px;
  2185. text-align:center;
  2186. }
  2187. #u45295 {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:163px;
  2191. top:728px;
  2192. width:22px;
  2193. height:14px;
  2194. display:flex;
  2195. transition:none;
  2196. transform-origin:50% 50%;
  2197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:10px;
  2201. text-align:center;
  2202. }
  2203. #u45295 .text {
  2204. position:absolute;
  2205. align-self:flex-start;
  2206. padding:0px 0px 0px 0px;
  2207. box-sizing:border-box;
  2208. width:100%;
  2209. }
  2210. #u45295_text {
  2211. border-width:0px;
  2212. word-wrap:break-word;
  2213. text-transform:none;
  2214. }
  2215. #u45296_div {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:0px;
  2219. top:0px;
  2220. width:22px;
  2221. height:14px;
  2222. background:inherit;
  2223. background-color:rgba(255, 255, 255, 0);
  2224. border-radius:0px;
  2225. filter:drop-shadow(none);
  2226. transition:none;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:10px;
  2231. text-align:center;
  2232. }
  2233. #u45296 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:186px;
  2237. top:728px;
  2238. width:22px;
  2239. height:14px;
  2240. display:flex;
  2241. transition:none;
  2242. transform-origin:50% 50%;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:10px;
  2247. text-align:center;
  2248. }
  2249. #u45296 .text {
  2250. position:absolute;
  2251. align-self:flex-start;
  2252. padding:0px 0px 0px 0px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u45296_text {
  2257. border-width:0px;
  2258. word-wrap:break-word;
  2259. text-transform:none;
  2260. }
  2261. #u45297_div {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:22px;
  2267. height:14px;
  2268. background:inherit;
  2269. background-color:rgba(255, 255, 255, 0);
  2270. border-radius:0px;
  2271. filter:drop-shadow(none);
  2272. transition:none;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:10px;
  2277. text-align:center;
  2278. }
  2279. #u45297 {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:208px;
  2283. top:728px;
  2284. width:22px;
  2285. height:14px;
  2286. display:flex;
  2287. transition:none;
  2288. transform-origin:50% 50%;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:10px;
  2293. text-align:center;
  2294. }
  2295. #u45297 .text {
  2296. position:absolute;
  2297. align-self:flex-start;
  2298. padding:0px 0px 0px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u45297_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. }
  2307. #u45298_div {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:22px;
  2313. height:14px;
  2314. background:inherit;
  2315. background-color:rgba(255, 255, 255, 0);
  2316. border-radius:0px;
  2317. filter:drop-shadow(none);
  2318. transition:none;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. font-size:10px;
  2323. text-align:center;
  2324. }
  2325. #u45298 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:231px;
  2329. top:728px;
  2330. width:22px;
  2331. height:14px;
  2332. display:flex;
  2333. transition:none;
  2334. transform-origin:50% 50%;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:10px;
  2339. text-align:center;
  2340. }
  2341. #u45298 .text {
  2342. position:absolute;
  2343. align-self:flex-start;
  2344. padding:0px 0px 0px 0px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u45298_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. }
  2353. #u45299_div {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:22px;
  2359. height:14px;
  2360. background:inherit;
  2361. background-color:rgba(255, 255, 255, 0);
  2362. border-radius:0px;
  2363. filter:drop-shadow(none);
  2364. transition:none;
  2365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2366. font-weight:400;
  2367. font-style:normal;
  2368. font-size:10px;
  2369. text-align:center;
  2370. }
  2371. #u45299 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:253px;
  2375. top:728px;
  2376. width:22px;
  2377. height:14px;
  2378. display:flex;
  2379. transition:none;
  2380. transform-origin:50% 50%;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:10px;
  2385. text-align:center;
  2386. }
  2387. #u45299 .text {
  2388. position:absolute;
  2389. align-self:flex-start;
  2390. padding:0px 0px 0px 0px;
  2391. box-sizing:border-box;
  2392. width:100%;
  2393. }
  2394. #u45299_text {
  2395. border-width:0px;
  2396. word-wrap:break-word;
  2397. text-transform:none;
  2398. }
  2399. #u45300_div {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:22px;
  2405. height:14px;
  2406. background:inherit;
  2407. background-color:rgba(255, 255, 255, 0);
  2408. border-radius:0px;
  2409. filter:drop-shadow(none);
  2410. transition:none;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. font-size:10px;
  2415. text-align:center;
  2416. }
  2417. #u45300 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:276px;
  2421. top:728px;
  2422. width:22px;
  2423. height:14px;
  2424. display:flex;
  2425. transition:none;
  2426. transform-origin:50% 50%;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:10px;
  2431. text-align:center;
  2432. }
  2433. #u45300 .text {
  2434. position:absolute;
  2435. align-self:flex-start;
  2436. padding:0px 0px 0px 0px;
  2437. box-sizing:border-box;
  2438. width:100%;
  2439. }
  2440. #u45300_text {
  2441. border-width:0px;
  2442. word-wrap:break-word;
  2443. text-transform:none;
  2444. }
  2445. #u45301_div {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:22px;
  2451. height:14px;
  2452. background:inherit;
  2453. background-color:rgba(255, 255, 255, 0);
  2454. border-radius:0px;
  2455. filter:drop-shadow(none);
  2456. transition:none;
  2457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2458. font-weight:400;
  2459. font-style:normal;
  2460. font-size:10px;
  2461. text-align:center;
  2462. }
  2463. #u45301 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:298px;
  2467. top:728px;
  2468. width:22px;
  2469. height:14px;
  2470. display:flex;
  2471. transition:none;
  2472. transform-origin:50% 50%;
  2473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2474. font-weight:400;
  2475. font-style:normal;
  2476. font-size:10px;
  2477. text-align:center;
  2478. }
  2479. #u45301 .text {
  2480. position:absolute;
  2481. align-self:flex-start;
  2482. padding:0px 0px 0px 0px;
  2483. box-sizing:border-box;
  2484. width:100%;
  2485. }
  2486. #u45301_text {
  2487. border-width:0px;
  2488. word-wrap:break-word;
  2489. text-transform:none;
  2490. }
  2491. #u45302_div {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:22px;
  2497. height:14px;
  2498. background:inherit;
  2499. background-color:rgba(255, 255, 255, 0);
  2500. border-radius:0px;
  2501. filter:drop-shadow(none);
  2502. transition:none;
  2503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2504. font-weight:400;
  2505. font-style:normal;
  2506. font-size:10px;
  2507. text-align:center;
  2508. }
  2509. #u45302 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:320px;
  2513. top:728px;
  2514. width:22px;
  2515. height:14px;
  2516. display:flex;
  2517. transition:none;
  2518. transform-origin:50% 50%;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:10px;
  2523. text-align:center;
  2524. }
  2525. #u45302 .text {
  2526. position:absolute;
  2527. align-self:flex-start;
  2528. padding:0px 0px 0px 0px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u45302_text {
  2533. border-width:0px;
  2534. word-wrap:break-word;
  2535. text-transform:none;
  2536. }
  2537. #u45303_div {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:22px;
  2543. height:14px;
  2544. background:inherit;
  2545. background-color:rgba(255, 255, 255, 0);
  2546. border-radius:0px;
  2547. filter:drop-shadow(none);
  2548. transition:none;
  2549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:10px;
  2553. text-align:center;
  2554. }
  2555. #u45303 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:343px;
  2559. top:728px;
  2560. width:22px;
  2561. height:14px;
  2562. display:flex;
  2563. transition:none;
  2564. transform-origin:50% 50%;
  2565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:10px;
  2569. text-align:center;
  2570. }
  2571. #u45303 .text {
  2572. position:absolute;
  2573. align-self:flex-start;
  2574. padding:0px 0px 0px 0px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u45303_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. }
  2583. #u45304_div {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:22px;
  2589. height:14px;
  2590. background:inherit;
  2591. background-color:rgba(255, 255, 255, 0);
  2592. border-radius:0px;
  2593. filter:drop-shadow(none);
  2594. transition:none;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:10px;
  2599. text-align:center;
  2600. }
  2601. #u45304 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:365px;
  2605. top:728px;
  2606. width:22px;
  2607. height:14px;
  2608. display:flex;
  2609. transition:none;
  2610. transform-origin:50% 50%;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:10px;
  2615. text-align:center;
  2616. }
  2617. #u45304 .text {
  2618. position:absolute;
  2619. align-self:flex-start;
  2620. padding:0px 0px 0px 0px;
  2621. box-sizing:border-box;
  2622. width:100%;
  2623. }
  2624. #u45304_text {
  2625. border-width:0px;
  2626. word-wrap:break-word;
  2627. text-transform:none;
  2628. }
  2629. #u45305 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:0px;
  2635. height:0px;
  2636. }
  2637. #u45306 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:49px;
  2641. top:669px;
  2642. width:341px;
  2643. height:41px;
  2644. display:flex;
  2645. transition:none;
  2646. }
  2647. #u45306 .text {
  2648. position:absolute;
  2649. align-self:center;
  2650. padding:2px 2px 2px 2px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u45306_img {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:342px;
  2660. height:42px;
  2661. }
  2662. #u45306_text {
  2663. border-width:0px;
  2664. word-wrap:break-word;
  2665. text-transform:none;
  2666. visibility:hidden;
  2667. }
  2668. #u45307 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:0px;
  2672. top:0px;
  2673. width:0px;
  2674. height:0px;
  2675. }
  2676. #u45308_div {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:0px;
  2681. width:375px;
  2682. height:150px;
  2683. background:inherit;
  2684. background-color:rgba(255, 255, 255, 1);
  2685. border-radius:4px;
  2686. filter:drop-shadow(none);
  2687. transition:none;
  2688. }
  2689. #u45308 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:29px;
  2693. top:759px;
  2694. width:375px;
  2695. height:150px;
  2696. display:flex;
  2697. transition:none;
  2698. transform-origin:50% 50%;
  2699. }
  2700. #u45308 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 2px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u45308_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. visibility:hidden;
  2712. }
  2713. #u45309_div {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:97px;
  2719. height:22px;
  2720. background:inherit;
  2721. background-color:rgba(255, 255, 255, 0);
  2722. border-radius:0px;
  2723. filter:drop-shadow(none);
  2724. transition:none;
  2725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2726. font-weight:400;
  2727. font-style:normal;
  2728. font-size:16px;
  2729. color:#000000;
  2730. }
  2731. #u45309 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:53px;
  2735. top:774px;
  2736. width:97px;
  2737. height:22px;
  2738. display:flex;
  2739. transition:none;
  2740. transform-origin:50% 50%;
  2741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:16px;
  2745. color:#000000;
  2746. }
  2747. #u45309 .text {
  2748. position:absolute;
  2749. align-self:flex-start;
  2750. padding:0px 0px 0px 0px;
  2751. box-sizing:border-box;
  2752. width:100%;
  2753. }
  2754. #u45309_text {
  2755. border-width:0px;
  2756. white-space:nowrap;
  2757. text-transform:none;
  2758. }
  2759. #u45310 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:0px;
  2765. height:0px;
  2766. }
  2767. #u45311_div {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:22px;
  2773. height:14px;
  2774. background:inherit;
  2775. background-color:rgba(255, 255, 255, 0);
  2776. border-radius:0px;
  2777. filter:drop-shadow(none);
  2778. transition:none;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:10px;
  2783. text-align:center;
  2784. }
  2785. #u45311 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:50px;
  2789. top:879px;
  2790. width:22px;
  2791. height:14px;
  2792. display:flex;
  2793. transition:none;
  2794. transform-origin:50% 50%;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:10px;
  2799. text-align:center;
  2800. }
  2801. #u45311 .text {
  2802. position:absolute;
  2803. align-self:flex-start;
  2804. padding:0px 0px 0px 0px;
  2805. box-sizing:border-box;
  2806. width:100%;
  2807. }
  2808. #u45311_text {
  2809. border-width:0px;
  2810. word-wrap:break-word;
  2811. text-transform:none;
  2812. }
  2813. #u45312_div {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:22px;
  2819. height:14px;
  2820. background:inherit;
  2821. background-color:rgba(255, 255, 255, 0);
  2822. border-radius:0px;
  2823. filter:drop-shadow(none);
  2824. transition:none;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:10px;
  2829. text-align:center;
  2830. }
  2831. #u45312 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:74px;
  2835. top:879px;
  2836. width:22px;
  2837. height:14px;
  2838. display:flex;
  2839. transition:none;
  2840. transform-origin:50% 50%;
  2841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:10px;
  2845. text-align:center;
  2846. }
  2847. #u45312 .text {
  2848. position:absolute;
  2849. align-self:flex-start;
  2850. padding:0px 0px 0px 0px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u45312_text {
  2855. border-width:0px;
  2856. word-wrap:break-word;
  2857. text-transform:none;
  2858. }
  2859. #u45313_div {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:22px;
  2865. height:14px;
  2866. background:inherit;
  2867. background-color:rgba(255, 255, 255, 0);
  2868. border-radius:0px;
  2869. filter:drop-shadow(none);
  2870. transition:none;
  2871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2872. font-weight:400;
  2873. font-style:normal;
  2874. font-size:10px;
  2875. text-align:center;
  2876. }
  2877. #u45313 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:96px;
  2881. top:879px;
  2882. width:22px;
  2883. height:14px;
  2884. display:flex;
  2885. transition:none;
  2886. transform-origin:50% 50%;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:10px;
  2891. text-align:center;
  2892. }
  2893. #u45313 .text {
  2894. position:absolute;
  2895. align-self:flex-start;
  2896. padding:0px 0px 0px 0px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u45313_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. }
  2905. #u45314_div {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:22px;
  2911. height:14px;
  2912. background:inherit;
  2913. background-color:rgba(255, 255, 255, 0);
  2914. border-radius:0px;
  2915. filter:drop-shadow(none);
  2916. transition:none;
  2917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:10px;
  2921. text-align:center;
  2922. }
  2923. #u45314 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:119px;
  2927. top:879px;
  2928. width:22px;
  2929. height:14px;
  2930. display:flex;
  2931. transition:none;
  2932. transform-origin:50% 50%;
  2933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2934. font-weight:400;
  2935. font-style:normal;
  2936. font-size:10px;
  2937. text-align:center;
  2938. }
  2939. #u45314 .text {
  2940. position:absolute;
  2941. align-self:flex-start;
  2942. padding:0px 0px 0px 0px;
  2943. box-sizing:border-box;
  2944. width:100%;
  2945. }
  2946. #u45314_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. }
  2951. #u45315_div {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:22px;
  2957. height:14px;
  2958. background:inherit;
  2959. background-color:rgba(255, 255, 255, 0);
  2960. border-radius:0px;
  2961. filter:drop-shadow(none);
  2962. transition:none;
  2963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2964. font-weight:400;
  2965. font-style:normal;
  2966. font-size:10px;
  2967. text-align:center;
  2968. }
  2969. #u45315 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:141px;
  2973. top:879px;
  2974. width:22px;
  2975. height:14px;
  2976. display:flex;
  2977. transition:none;
  2978. transform-origin:50% 50%;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:10px;
  2983. text-align:center;
  2984. }
  2985. #u45315 .text {
  2986. position:absolute;
  2987. align-self:flex-start;
  2988. padding:0px 0px 0px 0px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u45315_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. }
  2997. #u45316_div {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:22px;
  3003. height:14px;
  3004. background:inherit;
  3005. background-color:rgba(255, 255, 255, 0);
  3006. border-radius:0px;
  3007. filter:drop-shadow(none);
  3008. transition:none;
  3009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:10px;
  3013. text-align:center;
  3014. }
  3015. #u45316 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:163px;
  3019. top:879px;
  3020. width:22px;
  3021. height:14px;
  3022. display:flex;
  3023. transition:none;
  3024. transform-origin:50% 50%;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:10px;
  3029. text-align:center;
  3030. }
  3031. #u45316 .text {
  3032. position:absolute;
  3033. align-self:flex-start;
  3034. padding:0px 0px 0px 0px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u45316_text {
  3039. border-width:0px;
  3040. word-wrap:break-word;
  3041. text-transform:none;
  3042. }
  3043. #u45317_div {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:22px;
  3049. height:14px;
  3050. background:inherit;
  3051. background-color:rgba(255, 255, 255, 0);
  3052. border-radius:0px;
  3053. filter:drop-shadow(none);
  3054. transition:none;
  3055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:10px;
  3059. text-align:center;
  3060. }
  3061. #u45317 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:186px;
  3065. top:879px;
  3066. width:22px;
  3067. height:14px;
  3068. display:flex;
  3069. transition:none;
  3070. transform-origin:50% 50%;
  3071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:10px;
  3075. text-align:center;
  3076. }
  3077. #u45317 .text {
  3078. position:absolute;
  3079. align-self:flex-start;
  3080. padding:0px 0px 0px 0px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u45317_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. }
  3089. #u45318_div {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:22px;
  3095. height:14px;
  3096. background:inherit;
  3097. background-color:rgba(255, 255, 255, 0);
  3098. border-radius:0px;
  3099. filter:drop-shadow(none);
  3100. transition:none;
  3101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:10px;
  3105. text-align:center;
  3106. }
  3107. #u45318 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:208px;
  3111. top:879px;
  3112. width:22px;
  3113. height:14px;
  3114. display:flex;
  3115. transition:none;
  3116. transform-origin:50% 50%;
  3117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:10px;
  3121. text-align:center;
  3122. }
  3123. #u45318 .text {
  3124. position:absolute;
  3125. align-self:flex-start;
  3126. padding:0px 0px 0px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u45318_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. }
  3135. #u45319_div {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:22px;
  3141. height:14px;
  3142. background:inherit;
  3143. background-color:rgba(255, 255, 255, 0);
  3144. border-radius:0px;
  3145. filter:drop-shadow(none);
  3146. transition:none;
  3147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3148. font-weight:400;
  3149. font-style:normal;
  3150. font-size:10px;
  3151. text-align:center;
  3152. }
  3153. #u45319 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:231px;
  3157. top:879px;
  3158. width:22px;
  3159. height:14px;
  3160. display:flex;
  3161. transition:none;
  3162. transform-origin:50% 50%;
  3163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. font-size:10px;
  3167. text-align:center;
  3168. }
  3169. #u45319 .text {
  3170. position:absolute;
  3171. align-self:flex-start;
  3172. padding:0px 0px 0px 0px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u45319_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. }
  3181. #u45320_div {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:22px;
  3187. height:14px;
  3188. background:inherit;
  3189. background-color:rgba(255, 255, 255, 0);
  3190. border-radius:0px;
  3191. filter:drop-shadow(none);
  3192. transition:none;
  3193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3194. font-weight:400;
  3195. font-style:normal;
  3196. font-size:10px;
  3197. text-align:center;
  3198. }
  3199. #u45320 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:253px;
  3203. top:879px;
  3204. width:22px;
  3205. height:14px;
  3206. display:flex;
  3207. transition:none;
  3208. transform-origin:50% 50%;
  3209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:10px;
  3213. text-align:center;
  3214. }
  3215. #u45320 .text {
  3216. position:absolute;
  3217. align-self:flex-start;
  3218. padding:0px 0px 0px 0px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u45320_text {
  3223. border-width:0px;
  3224. word-wrap:break-word;
  3225. text-transform:none;
  3226. }
  3227. #u45321_div {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:22px;
  3233. height:14px;
  3234. background:inherit;
  3235. background-color:rgba(255, 255, 255, 0);
  3236. border-radius:0px;
  3237. filter:drop-shadow(none);
  3238. transition:none;
  3239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. font-size:10px;
  3243. text-align:center;
  3244. }
  3245. #u45321 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:276px;
  3249. top:879px;
  3250. width:22px;
  3251. height:14px;
  3252. display:flex;
  3253. transition:none;
  3254. transform-origin:50% 50%;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:10px;
  3259. text-align:center;
  3260. }
  3261. #u45321 .text {
  3262. position:absolute;
  3263. align-self:flex-start;
  3264. padding:0px 0px 0px 0px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u45321_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. }
  3273. #u45322_div {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:22px;
  3279. height:14px;
  3280. background:inherit;
  3281. background-color:rgba(255, 255, 255, 0);
  3282. border-radius:0px;
  3283. filter:drop-shadow(none);
  3284. transition:none;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:10px;
  3289. text-align:center;
  3290. }
  3291. #u45322 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:298px;
  3295. top:879px;
  3296. width:22px;
  3297. height:14px;
  3298. display:flex;
  3299. transition:none;
  3300. transform-origin:50% 50%;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:10px;
  3305. text-align:center;
  3306. }
  3307. #u45322 .text {
  3308. position:absolute;
  3309. align-self:flex-start;
  3310. padding:0px 0px 0px 0px;
  3311. box-sizing:border-box;
  3312. width:100%;
  3313. }
  3314. #u45322_text {
  3315. border-width:0px;
  3316. word-wrap:break-word;
  3317. text-transform:none;
  3318. }
  3319. #u45323_div {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:22px;
  3325. height:14px;
  3326. background:inherit;
  3327. background-color:rgba(255, 255, 255, 0);
  3328. border-radius:0px;
  3329. filter:drop-shadow(none);
  3330. transition:none;
  3331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:10px;
  3335. text-align:center;
  3336. }
  3337. #u45323 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:320px;
  3341. top:879px;
  3342. width:22px;
  3343. height:14px;
  3344. display:flex;
  3345. transition:none;
  3346. transform-origin:50% 50%;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:10px;
  3351. text-align:center;
  3352. }
  3353. #u45323 .text {
  3354. position:absolute;
  3355. align-self:flex-start;
  3356. padding:0px 0px 0px 0px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u45323_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. }
  3365. #u45324_div {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:22px;
  3371. height:14px;
  3372. background:inherit;
  3373. background-color:rgba(255, 255, 255, 0);
  3374. border-radius:0px;
  3375. filter:drop-shadow(none);
  3376. transition:none;
  3377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:10px;
  3381. text-align:center;
  3382. }
  3383. #u45324 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:343px;
  3387. top:879px;
  3388. width:22px;
  3389. height:14px;
  3390. display:flex;
  3391. transition:none;
  3392. transform-origin:50% 50%;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:10px;
  3397. text-align:center;
  3398. }
  3399. #u45324 .text {
  3400. position:absolute;
  3401. align-self:flex-start;
  3402. padding:0px 0px 0px 0px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u45324_text {
  3407. border-width:0px;
  3408. word-wrap:break-word;
  3409. text-transform:none;
  3410. }
  3411. #u45325_div {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:22px;
  3417. height:14px;
  3418. background:inherit;
  3419. background-color:rgba(255, 255, 255, 0);
  3420. border-radius:0px;
  3421. filter:drop-shadow(none);
  3422. transition:none;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:10px;
  3427. text-align:center;
  3428. }
  3429. #u45325 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:365px;
  3433. top:879px;
  3434. width:22px;
  3435. height:14px;
  3436. display:flex;
  3437. transition:none;
  3438. transform-origin:50% 50%;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:10px;
  3443. text-align:center;
  3444. }
  3445. #u45325 .text {
  3446. position:absolute;
  3447. align-self:flex-start;
  3448. padding:0px 0px 0px 0px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u45325_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. }
  3457. #u45326 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:0px;
  3463. height:0px;
  3464. }
  3465. #u45327 {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:0px;
  3471. height:0px;
  3472. }
  3473. #u45328 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:46px;
  3477. top:809px;
  3478. width:341px;
  3479. height:50px;
  3480. display:flex;
  3481. transition:none;
  3482. }
  3483. #u45328 .text {
  3484. position:absolute;
  3485. align-self:center;
  3486. padding:2px 2px 2px 2px;
  3487. box-sizing:border-box;
  3488. width:100%;
  3489. }
  3490. #u45328_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:342px;
  3496. height:51px;
  3497. }
  3498. #u45328_text {
  3499. border-width:0px;
  3500. word-wrap:break-word;
  3501. text-transform:none;
  3502. visibility:hidden;
  3503. }
  3504. #u45329 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:0px;
  3510. height:0px;
  3511. }
  3512. #u45330_div {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:375px;
  3518. height:150px;
  3519. background:inherit;
  3520. background-color:rgba(255, 255, 255, 1);
  3521. border-radius:4px;
  3522. filter:drop-shadow(none);
  3523. transition:none;
  3524. }
  3525. #u45330 {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:29px;
  3529. top:910px;
  3530. width:375px;
  3531. height:150px;
  3532. display:flex;
  3533. transition:none;
  3534. transform-origin:50% 50%;
  3535. }
  3536. #u45330 .text {
  3537. position:absolute;
  3538. align-self:center;
  3539. padding:2px 2px 2px 2px;
  3540. box-sizing:border-box;
  3541. width:100%;
  3542. }
  3543. #u45330_text {
  3544. border-width:0px;
  3545. word-wrap:break-word;
  3546. text-transform:none;
  3547. visibility:hidden;
  3548. }
  3549. #u45331_div {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:97px;
  3555. height:22px;
  3556. background:inherit;
  3557. background-color:rgba(255, 255, 255, 0);
  3558. border-radius:0px;
  3559. filter:drop-shadow(none);
  3560. transition:none;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:16px;
  3565. color:#000000;
  3566. }
  3567. #u45331 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:53px;
  3571. top:925px;
  3572. width:97px;
  3573. height:22px;
  3574. display:flex;
  3575. transition:none;
  3576. transform-origin:50% 50%;
  3577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3578. font-weight:400;
  3579. font-style:normal;
  3580. font-size:16px;
  3581. color:#000000;
  3582. }
  3583. #u45331 .text {
  3584. position:absolute;
  3585. align-self:flex-start;
  3586. padding:0px 0px 0px 0px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u45331_text {
  3591. border-width:0px;
  3592. white-space:nowrap;
  3593. text-transform:none;
  3594. }
  3595. #u45332 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:0px;
  3601. height:0px;
  3602. }
  3603. #u45333_div {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:0px;
  3607. top:0px;
  3608. width:22px;
  3609. height:14px;
  3610. background:inherit;
  3611. background-color:rgba(255, 255, 255, 0);
  3612. border-radius:0px;
  3613. filter:drop-shadow(none);
  3614. transition:none;
  3615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3616. font-weight:400;
  3617. font-style:normal;
  3618. font-size:10px;
  3619. text-align:center;
  3620. }
  3621. #u45333 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:50px;
  3625. top:1030px;
  3626. width:22px;
  3627. height:14px;
  3628. display:flex;
  3629. transition:none;
  3630. transform-origin:50% 50%;
  3631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3632. font-weight:400;
  3633. font-style:normal;
  3634. font-size:10px;
  3635. text-align:center;
  3636. }
  3637. #u45333 .text {
  3638. position:absolute;
  3639. align-self:flex-start;
  3640. padding:0px 0px 0px 0px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u45333_text {
  3645. border-width:0px;
  3646. word-wrap:break-word;
  3647. text-transform:none;
  3648. }
  3649. #u45334_div {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:22px;
  3655. height:14px;
  3656. background:inherit;
  3657. background-color:rgba(255, 255, 255, 0);
  3658. border-radius:0px;
  3659. filter:drop-shadow(none);
  3660. transition:none;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:10px;
  3665. text-align:center;
  3666. }
  3667. #u45334 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:74px;
  3671. top:1030px;
  3672. width:22px;
  3673. height:14px;
  3674. display:flex;
  3675. transition:none;
  3676. transform-origin:50% 50%;
  3677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3678. font-weight:400;
  3679. font-style:normal;
  3680. font-size:10px;
  3681. text-align:center;
  3682. }
  3683. #u45334 .text {
  3684. position:absolute;
  3685. align-self:flex-start;
  3686. padding:0px 0px 0px 0px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u45334_text {
  3691. border-width:0px;
  3692. word-wrap:break-word;
  3693. text-transform:none;
  3694. }
  3695. #u45335_div {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:22px;
  3701. height:14px;
  3702. background:inherit;
  3703. background-color:rgba(255, 255, 255, 0);
  3704. border-radius:0px;
  3705. filter:drop-shadow(none);
  3706. transition:none;
  3707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:10px;
  3711. text-align:center;
  3712. }
  3713. #u45335 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:96px;
  3717. top:1030px;
  3718. width:22px;
  3719. height:14px;
  3720. display:flex;
  3721. transition:none;
  3722. transform-origin:50% 50%;
  3723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3724. font-weight:400;
  3725. font-style:normal;
  3726. font-size:10px;
  3727. text-align:center;
  3728. }
  3729. #u45335 .text {
  3730. position:absolute;
  3731. align-self:flex-start;
  3732. padding:0px 0px 0px 0px;
  3733. box-sizing:border-box;
  3734. width:100%;
  3735. }
  3736. #u45335_text {
  3737. border-width:0px;
  3738. word-wrap:break-word;
  3739. text-transform:none;
  3740. }
  3741. #u45336_div {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:22px;
  3747. height:14px;
  3748. background:inherit;
  3749. background-color:rgba(255, 255, 255, 0);
  3750. border-radius:0px;
  3751. filter:drop-shadow(none);
  3752. transition:none;
  3753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:10px;
  3757. text-align:center;
  3758. }
  3759. #u45336 {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:119px;
  3763. top:1030px;
  3764. width:22px;
  3765. height:14px;
  3766. display:flex;
  3767. transition:none;
  3768. transform-origin:50% 50%;
  3769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:10px;
  3773. text-align:center;
  3774. }
  3775. #u45336 .text {
  3776. position:absolute;
  3777. align-self:flex-start;
  3778. padding:0px 0px 0px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u45336_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. }
  3787. #u45337_div {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:22px;
  3793. height:14px;
  3794. background:inherit;
  3795. background-color:rgba(255, 255, 255, 0);
  3796. border-radius:0px;
  3797. filter:drop-shadow(none);
  3798. transition:none;
  3799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:10px;
  3803. text-align:center;
  3804. }
  3805. #u45337 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:141px;
  3809. top:1030px;
  3810. width:22px;
  3811. height:14px;
  3812. display:flex;
  3813. transition:none;
  3814. transform-origin:50% 50%;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:10px;
  3819. text-align:center;
  3820. }
  3821. #u45337 .text {
  3822. position:absolute;
  3823. align-self:flex-start;
  3824. padding:0px 0px 0px 0px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u45337_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. }
  3833. #u45338_div {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:22px;
  3839. height:14px;
  3840. background:inherit;
  3841. background-color:rgba(255, 255, 255, 0);
  3842. border-radius:0px;
  3843. filter:drop-shadow(none);
  3844. transition:none;
  3845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:10px;
  3849. text-align:center;
  3850. }
  3851. #u45338 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:163px;
  3855. top:1030px;
  3856. width:22px;
  3857. height:14px;
  3858. display:flex;
  3859. transition:none;
  3860. transform-origin:50% 50%;
  3861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:10px;
  3865. text-align:center;
  3866. }
  3867. #u45338 .text {
  3868. position:absolute;
  3869. align-self:flex-start;
  3870. padding:0px 0px 0px 0px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u45338_text {
  3875. border-width:0px;
  3876. word-wrap:break-word;
  3877. text-transform:none;
  3878. }
  3879. #u45339_div {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:22px;
  3885. height:14px;
  3886. background:inherit;
  3887. background-color:rgba(255, 255, 255, 0);
  3888. border-radius:0px;
  3889. filter:drop-shadow(none);
  3890. transition:none;
  3891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:10px;
  3895. text-align:center;
  3896. }
  3897. #u45339 {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:186px;
  3901. top:1030px;
  3902. width:22px;
  3903. height:14px;
  3904. display:flex;
  3905. transition:none;
  3906. transform-origin:50% 50%;
  3907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3908. font-weight:400;
  3909. font-style:normal;
  3910. font-size:10px;
  3911. text-align:center;
  3912. }
  3913. #u45339 .text {
  3914. position:absolute;
  3915. align-self:flex-start;
  3916. padding:0px 0px 0px 0px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u45339_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. }
  3925. #u45340_div {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:22px;
  3931. height:14px;
  3932. background:inherit;
  3933. background-color:rgba(255, 255, 255, 0);
  3934. border-radius:0px;
  3935. filter:drop-shadow(none);
  3936. transition:none;
  3937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:10px;
  3941. text-align:center;
  3942. }
  3943. #u45340 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:208px;
  3947. top:1030px;
  3948. width:22px;
  3949. height:14px;
  3950. display:flex;
  3951. transition:none;
  3952. transform-origin:50% 50%;
  3953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3954. font-weight:400;
  3955. font-style:normal;
  3956. font-size:10px;
  3957. text-align:center;
  3958. }
  3959. #u45340 .text {
  3960. position:absolute;
  3961. align-self:flex-start;
  3962. padding:0px 0px 0px 0px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u45340_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. }
  3971. #u45341_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:22px;
  3977. height:14px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 0);
  3980. border-radius:0px;
  3981. filter:drop-shadow(none);
  3982. transition:none;
  3983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3984. font-weight:400;
  3985. font-style:normal;
  3986. font-size:10px;
  3987. text-align:center;
  3988. }
  3989. #u45341 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:231px;
  3993. top:1030px;
  3994. width:22px;
  3995. height:14px;
  3996. display:flex;
  3997. transition:none;
  3998. transform-origin:50% 50%;
  3999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. font-size:10px;
  4003. text-align:center;
  4004. }
  4005. #u45341 .text {
  4006. position:absolute;
  4007. align-self:flex-start;
  4008. padding:0px 0px 0px 0px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u45341_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. }
  4017. #u45342_div {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:22px;
  4023. height:14px;
  4024. background:inherit;
  4025. background-color:rgba(255, 255, 255, 0);
  4026. border-radius:0px;
  4027. filter:drop-shadow(none);
  4028. transition:none;
  4029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:10px;
  4033. text-align:center;
  4034. }
  4035. #u45342 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:253px;
  4039. top:1030px;
  4040. width:22px;
  4041. height:14px;
  4042. display:flex;
  4043. transition:none;
  4044. transform-origin:50% 50%;
  4045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4046. font-weight:400;
  4047. font-style:normal;
  4048. font-size:10px;
  4049. text-align:center;
  4050. }
  4051. #u45342 .text {
  4052. position:absolute;
  4053. align-self:flex-start;
  4054. padding:0px 0px 0px 0px;
  4055. box-sizing:border-box;
  4056. width:100%;
  4057. }
  4058. #u45342_text {
  4059. border-width:0px;
  4060. word-wrap:break-word;
  4061. text-transform:none;
  4062. }
  4063. #u45343_div {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:22px;
  4069. height:14px;
  4070. background:inherit;
  4071. background-color:rgba(255, 255, 255, 0);
  4072. border-radius:0px;
  4073. filter:drop-shadow(none);
  4074. transition:none;
  4075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:10px;
  4079. text-align:center;
  4080. }
  4081. #u45343 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:276px;
  4085. top:1030px;
  4086. width:22px;
  4087. height:14px;
  4088. display:flex;
  4089. transition:none;
  4090. transform-origin:50% 50%;
  4091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:10px;
  4095. text-align:center;
  4096. }
  4097. #u45343 .text {
  4098. position:absolute;
  4099. align-self:flex-start;
  4100. padding:0px 0px 0px 0px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u45343_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. }
  4109. #u45344_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:22px;
  4115. height:14px;
  4116. background:inherit;
  4117. background-color:rgba(255, 255, 255, 0);
  4118. border-radius:0px;
  4119. filter:drop-shadow(none);
  4120. transition:none;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:10px;
  4125. text-align:center;
  4126. }
  4127. #u45344 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:298px;
  4131. top:1030px;
  4132. width:22px;
  4133. height:14px;
  4134. display:flex;
  4135. transition:none;
  4136. transform-origin:50% 50%;
  4137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4138. font-weight:400;
  4139. font-style:normal;
  4140. font-size:10px;
  4141. text-align:center;
  4142. }
  4143. #u45344 .text {
  4144. position:absolute;
  4145. align-self:flex-start;
  4146. padding:0px 0px 0px 0px;
  4147. box-sizing:border-box;
  4148. width:100%;
  4149. }
  4150. #u45344_text {
  4151. border-width:0px;
  4152. word-wrap:break-word;
  4153. text-transform:none;
  4154. }
  4155. #u45345_div {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:0px;
  4159. top:0px;
  4160. width:22px;
  4161. height:14px;
  4162. background:inherit;
  4163. background-color:rgba(255, 255, 255, 0);
  4164. border-radius:0px;
  4165. filter:drop-shadow(none);
  4166. transition:none;
  4167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4168. font-weight:400;
  4169. font-style:normal;
  4170. font-size:10px;
  4171. text-align:center;
  4172. }
  4173. #u45345 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:320px;
  4177. top:1030px;
  4178. width:22px;
  4179. height:14px;
  4180. display:flex;
  4181. transition:none;
  4182. transform-origin:50% 50%;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:10px;
  4187. text-align:center;
  4188. }
  4189. #u45345 .text {
  4190. position:absolute;
  4191. align-self:flex-start;
  4192. padding:0px 0px 0px 0px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u45345_text {
  4197. border-width:0px;
  4198. word-wrap:break-word;
  4199. text-transform:none;
  4200. }
  4201. #u45346_div {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:22px;
  4207. height:14px;
  4208. background:inherit;
  4209. background-color:rgba(255, 255, 255, 0);
  4210. border-radius:0px;
  4211. filter:drop-shadow(none);
  4212. transition:none;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:10px;
  4217. text-align:center;
  4218. }
  4219. #u45346 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:343px;
  4223. top:1030px;
  4224. width:22px;
  4225. height:14px;
  4226. display:flex;
  4227. transition:none;
  4228. transform-origin:50% 50%;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:10px;
  4233. text-align:center;
  4234. }
  4235. #u45346 .text {
  4236. position:absolute;
  4237. align-self:flex-start;
  4238. padding:0px 0px 0px 0px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u45346_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. }
  4247. #u45347_div {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:22px;
  4253. height:14px;
  4254. background:inherit;
  4255. background-color:rgba(255, 255, 255, 0);
  4256. border-radius:0px;
  4257. filter:drop-shadow(none);
  4258. transition:none;
  4259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4260. font-weight:400;
  4261. font-style:normal;
  4262. font-size:10px;
  4263. text-align:center;
  4264. }
  4265. #u45347 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:365px;
  4269. top:1030px;
  4270. width:22px;
  4271. height:14px;
  4272. display:flex;
  4273. transition:none;
  4274. transform-origin:50% 50%;
  4275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:10px;
  4279. text-align:center;
  4280. }
  4281. #u45347 .text {
  4282. position:absolute;
  4283. align-self:flex-start;
  4284. padding:0px 0px 0px 0px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u45347_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. }
  4293. #u45348 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:0px;
  4299. height:0px;
  4300. }
  4301. #u45349 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:0px;
  4307. height:0px;
  4308. }
  4309. #u45350 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:46px;
  4313. top:971px;
  4314. width:341px;
  4315. height:49px;
  4316. display:flex;
  4317. transition:none;
  4318. }
  4319. #u45350 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 2px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u45350_img {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:342px;
  4332. height:50px;
  4333. }
  4334. #u45350_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u45351 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:0px;
  4346. height:0px;
  4347. }
  4348. #u45352_div {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:375px;
  4354. height:50px;
  4355. background:inherit;
  4356. background-color:rgba(255, 255, 255, 1);
  4357. border-radius:0px;
  4358. filter:drop-shadow(none);
  4359. transition:none;
  4360. }
  4361. #u45352 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:29px;
  4365. top:106px;
  4366. width:375px;
  4367. height:50px;
  4368. display:flex;
  4369. transition:none;
  4370. transform-origin:50% 50%;
  4371. }
  4372. #u45352 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 2px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u45352_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. visibility:hidden;
  4384. }
  4385. #u45353 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:0px;
  4391. height:0px;
  4392. }
  4393. #u45354_div {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:355px;
  4399. height:30px;
  4400. background:inherit;
  4401. background-color:rgba(242, 242, 242, 1);
  4402. border-radius:20px;
  4403. filter:drop-shadow(none);
  4404. transition:none;
  4405. }
  4406. #u45354 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:42px;
  4410. top:116px;
  4411. width:355px;
  4412. height:30px;
  4413. display:flex;
  4414. transition:none;
  4415. transform-origin:50% 50%;
  4416. }
  4417. #u45354 .text {
  4418. position:absolute;
  4419. align-self:center;
  4420. padding:2px 2px 2px 2px;
  4421. box-sizing:border-box;
  4422. width:100%;
  4423. }
  4424. #u45354_text {
  4425. border-width:0px;
  4426. word-wrap:break-word;
  4427. text-transform:none;
  4428. visibility:hidden;
  4429. }
  4430. #u45355_input {
  4431. position:absolute;
  4432. left:0px;
  4433. top:0px;
  4434. width:322px;
  4435. height:22px;
  4436. padding:2px 2px 2px 2px;
  4437. font-family:'ArialMT', 'Arial', sans-serif;
  4438. font-weight:400;
  4439. font-style:normal;
  4440. font-size:12px;
  4441. letter-spacing:normal;
  4442. color:#7F7F7F;
  4443. vertical-align:none;
  4444. text-align:left;
  4445. text-transform:none;
  4446. background-color:transparent;
  4447. border-color:transparent;
  4448. }
  4449. #u45355_input.disabled {
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:322px;
  4454. height:22px;
  4455. padding:2px 2px 2px 2px;
  4456. font-family:'ArialMT', 'Arial', sans-serif;
  4457. font-weight:400;
  4458. font-style:normal;
  4459. font-size:12px;
  4460. letter-spacing:normal;
  4461. color:#7F7F7F;
  4462. vertical-align:none;
  4463. text-align:left;
  4464. text-transform:none;
  4465. background-color:transparent;
  4466. border-color:transparent;
  4467. }
  4468. #u45355_div {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:322px;
  4474. height:22px;
  4475. background:inherit;
  4476. background-color:rgba(255, 255, 255, 0);
  4477. border-radius:0px;
  4478. filter:drop-shadow(none);
  4479. transition:none;
  4480. font-size:12px;
  4481. color:#7F7F7F;
  4482. }
  4483. #u45355 {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:61px;
  4487. top:120px;
  4488. width:322px;
  4489. height:22px;
  4490. display:flex;
  4491. transition:none;
  4492. transform-origin:50% 50%;
  4493. font-size:12px;
  4494. color:#7F7F7F;
  4495. }
  4496. #u45355 .text {
  4497. position:absolute;
  4498. align-self:flex-start;
  4499. padding:2px 2px 2px 2px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u45355_div.disabled {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:322px;
  4509. height:22px;
  4510. background:inherit;
  4511. background-color:rgba(240, 240, 240, 1);
  4512. border-radius:0px;
  4513. filter:drop-shadow(none);
  4514. transition:none;
  4515. font-size:12px;
  4516. color:#7F7F7F;
  4517. }
  4518. #u45355.disabled {
  4519. }
  4520. .u45355_input_option {
  4521. font-size:12px;
  4522. }
  4523. #u45356 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:0px;
  4529. height:0px;
  4530. }
  4531. #u45357_div {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:375px;
  4537. height:160px;
  4538. background:inherit;
  4539. background-color:rgba(41, 143, 255, 1);
  4540. border-radius:0px;
  4541. filter:drop-shadow(none);
  4542. transition:none;
  4543. }
  4544. #u45357 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:29px;
  4548. top:156px;
  4549. width:375px;
  4550. height:160px;
  4551. display:flex;
  4552. transition:none;
  4553. transform-origin:50% 50%;
  4554. }
  4555. #u45357 .text {
  4556. position:absolute;
  4557. align-self:center;
  4558. padding:2px 2px 2px 2px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u45357_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. visibility:hidden;
  4567. }
  4568. #u45358 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:54px;
  4572. top:201px;
  4573. width:98px;
  4574. height:98px;
  4575. display:flex;
  4576. transition:none;
  4577. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4578. font-weight:700;
  4579. font-style:normal;
  4580. font-size:28px;
  4581. color:#FFFFFF;
  4582. }
  4583. #u45358 .text {
  4584. position:absolute;
  4585. align-self:center;
  4586. padding:2px 2px 2px 2px;
  4587. box-sizing:border-box;
  4588. width:100%;
  4589. }
  4590. #u45358_img {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:98px;
  4596. height:98px;
  4597. }
  4598. #u45358_text {
  4599. border-width:0px;
  4600. word-wrap:break-word;
  4601. text-transform:none;
  4602. }
  4603. #u45359_div {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:89px;
  4609. height:80px;
  4610. background:inherit;
  4611. background-color:rgba(255, 255, 255, 0);
  4612. border-radius:0px;
  4613. filter:drop-shadow(none);
  4614. transition:none;
  4615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4616. font-weight:400;
  4617. font-style:normal;
  4618. font-size:12px;
  4619. color:#FFFFFF;
  4620. line-height:20px;
  4621. }
  4622. #u45359 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:187px;
  4626. top:210px;
  4627. width:89px;
  4628. height:80px;
  4629. display:flex;
  4630. transition:none;
  4631. transform-origin:50% 50%;
  4632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. font-size:12px;
  4636. color:#FFFFFF;
  4637. line-height:20px;
  4638. }
  4639. #u45359 .text {
  4640. position:absolute;
  4641. align-self:flex-start;
  4642. padding:0px 0px 0px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u45359_text {
  4647. border-width:0px;
  4648. white-space:nowrap;
  4649. text-transform:none;
  4650. }
  4651. #u45360_div {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:27px;
  4657. height:80px;
  4658. background:inherit;
  4659. background-color:rgba(255, 255, 255, 0);
  4660. border-radius:0px;
  4661. filter:drop-shadow(none);
  4662. transition:none;
  4663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:12px;
  4667. color:#FFFFFF;
  4668. line-height:20px;
  4669. }
  4670. #u45360 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:296px;
  4674. top:210px;
  4675. width:27px;
  4676. height:80px;
  4677. display:flex;
  4678. transition:none;
  4679. transform-origin:50% 50%;
  4680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:12px;
  4684. color:#FFFFFF;
  4685. line-height:20px;
  4686. }
  4687. #u45360 .text {
  4688. position:absolute;
  4689. align-self:flex-start;
  4690. padding:0px 0px 0px 0px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u45360_text {
  4695. border-width:0px;
  4696. white-space:nowrap;
  4697. text-transform:none;
  4698. }
  4699. #u45361_div {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:25px;
  4705. height:17px;
  4706. background:inherit;
  4707. background-color:rgba(255, 255, 255, 0);
  4708. border-radius:0px;
  4709. filter:drop-shadow(none);
  4710. transition:none;
  4711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4712. font-weight:400;
  4713. font-style:normal;
  4714. font-size:12px;
  4715. color:#FFFFFF;
  4716. }
  4717. #u45361 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:39px;
  4721. top:166px;
  4722. width:25px;
  4723. height:17px;
  4724. display:flex;
  4725. transition:none;
  4726. transform-origin:50% 50%;
  4727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:12px;
  4731. color:#FFFFFF;
  4732. }
  4733. #u45361 .text {
  4734. position:absolute;
  4735. align-self:flex-start;
  4736. padding:0px 0px 0px 0px;
  4737. box-sizing:border-box;
  4738. width:100%;
  4739. }
  4740. #u45361_text {
  4741. border-width:0px;
  4742. white-space:nowrap;
  4743. text-transform:none;
  4744. }
  4745. #u45362_div {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:49px;
  4751. height:17px;
  4752. background:inherit;
  4753. background-color:rgba(255, 255, 255, 0);
  4754. border-radius:0px;
  4755. filter:drop-shadow(none);
  4756. transition:none;
  4757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. font-size:12px;
  4761. color:rgba(255, 255, 255, 0.8);
  4762. }
  4763. #u45362 {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:84px;
  4767. top:166px;
  4768. width:49px;
  4769. height:17px;
  4770. display:flex;
  4771. transition:none;
  4772. transform-origin:50% 50%;
  4773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. font-size:12px;
  4777. color:rgba(255, 255, 255, 0.8);
  4778. }
  4779. #u45362 .text {
  4780. position:absolute;
  4781. align-self:flex-start;
  4782. padding:0px 0px 0px 0px;
  4783. box-sizing:border-box;
  4784. width:100%;
  4785. }
  4786. #u45362_text {
  4787. border-width:0px;
  4788. white-space:nowrap;
  4789. text-transform:none;
  4790. }
  4791. #u45363_div {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:49px;
  4797. height:17px;
  4798. background:inherit;
  4799. background-color:rgba(255, 255, 255, 0);
  4800. border-radius:0px;
  4801. filter:drop-shadow(none);
  4802. transition:none;
  4803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:12px;
  4807. color:rgba(255, 255, 255, 0.8);
  4808. }
  4809. #u45363 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:153px;
  4813. top:167px;
  4814. width:49px;
  4815. height:17px;
  4816. display:flex;
  4817. transition:none;
  4818. transform-origin:50% 50%;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:12px;
  4823. color:rgba(255, 255, 255, 0.8);
  4824. }
  4825. #u45363 .text {
  4826. position:absolute;
  4827. align-self:flex-start;
  4828. padding:0px 0px 0px 0px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u45363_text {
  4833. border-width:0px;
  4834. white-space:nowrap;
  4835. text-transform:none;
  4836. }
  4837. #u45364_div {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:49px;
  4843. height:17px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 0);
  4846. border-radius:0px;
  4847. filter:drop-shadow(none);
  4848. transition:none;
  4849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:12px;
  4853. color:rgba(255, 255, 255, 0.8);
  4854. }
  4855. #u45364 {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:222px;
  4859. top:167px;
  4860. width:49px;
  4861. height:17px;
  4862. display:flex;
  4863. transition:none;
  4864. transform-origin:50% 50%;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:12px;
  4869. color:rgba(255, 255, 255, 0.8);
  4870. }
  4871. #u45364 .text {
  4872. position:absolute;
  4873. align-self:flex-start;
  4874. padding:0px 0px 0px 0px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u45364_text {
  4879. border-width:0px;
  4880. white-space:nowrap;
  4881. text-transform:none;
  4882. }
  4883. #u45365 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:0px;
  4889. height:0px;
  4890. }
  4891. #u45366_div {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:376px;
  4897. height:115px;
  4898. background:inherit;
  4899. background-color:rgba(255, 255, 255, 1);
  4900. border-radius:4px;
  4901. filter:drop-shadow(none);
  4902. transition:none;
  4903. }
  4904. #u45366 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:29px;
  4908. top:316px;
  4909. width:376px;
  4910. height:115px;
  4911. display:flex;
  4912. transition:none;
  4913. transform-origin:50% 50%;
  4914. }
  4915. #u45366 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:2px 2px 2px 2px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u45366_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. visibility:hidden;
  4927. }
  4928. #u45367 {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:0px;
  4934. height:0px;
  4935. }
  4936. #u45368_div {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:40px;
  4942. height:33px;
  4943. background:inherit;
  4944. background-color:rgba(255, 255, 255, 0);
  4945. border-left:0px;
  4946. border-top:0px;
  4947. border-right:0px;
  4948. border-radius:0px;
  4949. border-bottom-right-radius:0px;
  4950. border-bottom-left-radius:0px;
  4951. filter:drop-shadow(none);
  4952. transition:none;
  4953. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4954. font-weight:500;
  4955. font-style:normal;
  4956. }
  4957. #u45368 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:65px;
  4961. top:357px;
  4962. width:40px;
  4963. height:33px;
  4964. display:flex;
  4965. transition:none;
  4966. transform-origin:50% 50%;
  4967. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4968. font-weight:500;
  4969. font-style:normal;
  4970. }
  4971. #u45368 .text {
  4972. position:absolute;
  4973. align-self:flex-start;
  4974. padding:0px 0px 0px 0px;
  4975. box-sizing:border-box;
  4976. width:100%;
  4977. }
  4978. #u45368_text {
  4979. border-width:0px;
  4980. white-space:nowrap;
  4981. text-transform:none;
  4982. }
  4983. #u45369_div {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:49px;
  4989. height:17px;
  4990. background:inherit;
  4991. background-color:rgba(255, 255, 255, 0);
  4992. border-left:0px;
  4993. border-top:0px;
  4994. border-right:0px;
  4995. border-radius:0px;
  4996. border-bottom-right-radius:0px;
  4997. border-bottom-left-radius:0px;
  4998. filter:drop-shadow(none);
  4999. transition:none;
  5000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5001. font-weight:400;
  5002. font-style:normal;
  5003. font-size:12px;
  5004. }
  5005. #u45369 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:60px;
  5009. top:394px;
  5010. width:49px;
  5011. height:17px;
  5012. display:flex;
  5013. transition:none;
  5014. transform-origin:50% 50%;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:12px;
  5019. }
  5020. #u45369 .text {
  5021. position:absolute;
  5022. align-self:flex-start;
  5023. padding:0px 0px 0px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u45369_text {
  5028. border-width:0px;
  5029. white-space:nowrap;
  5030. text-transform:none;
  5031. }
  5032. #u45370_div {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:49px;
  5038. height:17px;
  5039. background:inherit;
  5040. background-color:rgba(255, 255, 255, 0);
  5041. border-left:0px;
  5042. border-top:0px;
  5043. border-right:0px;
  5044. border-radius:0px;
  5045. border-bottom-right-radius:0px;
  5046. border-bottom-left-radius:0px;
  5047. filter:drop-shadow(none);
  5048. transition:none;
  5049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:12px;
  5053. }
  5054. #u45370 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:39px;
  5058. top:326px;
  5059. width:49px;
  5060. height:17px;
  5061. display:flex;
  5062. transition:none;
  5063. transform-origin:50% 50%;
  5064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:12px;
  5068. }
  5069. #u45370 .text {
  5070. position:absolute;
  5071. align-self:flex-start;
  5072. padding:0px 0px 0px 0px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u45370_text {
  5077. border-width:0px;
  5078. white-space:nowrap;
  5079. text-transform:none;
  5080. }
  5081. #u45371 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:0px;
  5087. height:0px;
  5088. }
  5089. #u45372_div {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:23px;
  5095. height:25px;
  5096. background:inherit;
  5097. background-color:rgba(255, 255, 255, 0);
  5098. border-left:0px;
  5099. border-top:0px;
  5100. border-right:0px;
  5101. border-radius:0px;
  5102. border-bottom-right-radius:0px;
  5103. border-bottom-left-radius:0px;
  5104. filter:drop-shadow(none);
  5105. transition:none;
  5106. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5107. font-weight:500;
  5108. font-style:normal;
  5109. font-size:18px;
  5110. }
  5111. #u45372 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:183px;
  5115. top:363px;
  5116. width:23px;
  5117. height:25px;
  5118. display:flex;
  5119. transition:none;
  5120. transform-origin:50% 50%;
  5121. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5122. font-weight:500;
  5123. font-style:normal;
  5124. font-size:18px;
  5125. }
  5126. #u45372 .text {
  5127. position:absolute;
  5128. align-self:flex-start;
  5129. padding:0px 0px 0px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u45372_text {
  5134. border-width:0px;
  5135. white-space:nowrap;
  5136. text-transform:none;
  5137. }
  5138. #u45373_div {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:49px;
  5144. height:17px;
  5145. background:inherit;
  5146. background-color:rgba(255, 255, 255, 0);
  5147. border-left:0px;
  5148. border-top:0px;
  5149. border-right:0px;
  5150. border-radius:0px;
  5151. border-bottom-right-radius:0px;
  5152. border-bottom-left-radius:0px;
  5153. filter:drop-shadow(none);
  5154. transition:none;
  5155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:12px;
  5159. }
  5160. #u45373 {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:170px;
  5164. top:388px;
  5165. width:49px;
  5166. height:17px;
  5167. display:flex;
  5168. transition:none;
  5169. transform-origin:50% 50%;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:12px;
  5174. }
  5175. #u45373 .text {
  5176. position:absolute;
  5177. align-self:flex-start;
  5178. padding:0px 0px 0px 0px;
  5179. box-sizing:border-box;
  5180. width:100%;
  5181. }
  5182. #u45373_text {
  5183. border-width:0px;
  5184. white-space:nowrap;
  5185. text-transform:none;
  5186. }
  5187. #u45374 {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:0px;
  5193. height:0px;
  5194. }
  5195. #u45375_div {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:23px;
  5201. height:25px;
  5202. background:inherit;
  5203. background-color:rgba(255, 255, 255, 0);
  5204. border-left:0px;
  5205. border-top:0px;
  5206. border-right:0px;
  5207. border-radius:0px;
  5208. border-bottom-right-radius:0px;
  5209. border-bottom-left-radius:0px;
  5210. filter:drop-shadow(none);
  5211. transition:none;
  5212. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5213. font-weight:500;
  5214. font-style:normal;
  5215. font-size:18px;
  5216. }
  5217. #u45375 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:262px;
  5221. top:363px;
  5222. width:23px;
  5223. height:25px;
  5224. display:flex;
  5225. transition:none;
  5226. transform-origin:50% 50%;
  5227. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5228. font-weight:500;
  5229. font-style:normal;
  5230. font-size:18px;
  5231. }
  5232. #u45375 .text {
  5233. position:absolute;
  5234. align-self:flex-start;
  5235. padding:0px 0px 0px 0px;
  5236. box-sizing:border-box;
  5237. width:100%;
  5238. }
  5239. #u45375_text {
  5240. border-width:0px;
  5241. white-space:nowrap;
  5242. text-transform:none;
  5243. }
  5244. #u45376_div {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:49px;
  5250. height:17px;
  5251. background:inherit;
  5252. background-color:rgba(255, 255, 255, 0);
  5253. border-left:0px;
  5254. border-top:0px;
  5255. border-right:0px;
  5256. border-radius:0px;
  5257. border-bottom-right-radius:0px;
  5258. border-bottom-left-radius:0px;
  5259. filter:drop-shadow(none);
  5260. transition:none;
  5261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5262. font-weight:400;
  5263. font-style:normal;
  5264. font-size:12px;
  5265. }
  5266. #u45376 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:249px;
  5270. top:388px;
  5271. width:49px;
  5272. height:17px;
  5273. display:flex;
  5274. transition:none;
  5275. transform-origin:50% 50%;
  5276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:12px;
  5280. }
  5281. #u45376 .text {
  5282. position:absolute;
  5283. align-self:flex-start;
  5284. padding:0px 0px 0px 0px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u45376_text {
  5289. border-width:0px;
  5290. white-space:nowrap;
  5291. text-transform:none;
  5292. }
  5293. #u45377 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:0px;
  5299. height:0px;
  5300. }
  5301. #u45378_div {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:23px;
  5307. height:25px;
  5308. background:inherit;
  5309. background-color:rgba(255, 255, 255, 0);
  5310. border-left:0px;
  5311. border-top:0px;
  5312. border-right:0px;
  5313. border-radius:0px;
  5314. border-bottom-right-radius:0px;
  5315. border-bottom-left-radius:0px;
  5316. filter:drop-shadow(none);
  5317. transition:none;
  5318. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5319. font-weight:500;
  5320. font-style:normal;
  5321. font-size:18px;
  5322. }
  5323. #u45378 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:341px;
  5327. top:363px;
  5328. width:23px;
  5329. height:25px;
  5330. display:flex;
  5331. transition:none;
  5332. transform-origin:50% 50%;
  5333. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5334. font-weight:500;
  5335. font-style:normal;
  5336. font-size:18px;
  5337. }
  5338. #u45378 .text {
  5339. position:absolute;
  5340. align-self:flex-start;
  5341. padding:0px 0px 0px 0px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u45378_text {
  5346. border-width:0px;
  5347. white-space:nowrap;
  5348. text-transform:none;
  5349. }
  5350. #u45379_div {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:49px;
  5356. height:17px;
  5357. background:inherit;
  5358. background-color:rgba(255, 255, 255, 0);
  5359. border-left:0px;
  5360. border-top:0px;
  5361. border-right:0px;
  5362. border-radius:0px;
  5363. border-bottom-right-radius:0px;
  5364. border-bottom-left-radius:0px;
  5365. filter:drop-shadow(none);
  5366. transition:none;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:12px;
  5371. }
  5372. #u45379 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:328px;
  5376. top:388px;
  5377. width:49px;
  5378. height:17px;
  5379. display:flex;
  5380. transition:none;
  5381. transform-origin:50% 50%;
  5382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:12px;
  5386. }
  5387. #u45379 .text {
  5388. position:absolute;
  5389. align-self:flex-start;
  5390. padding:0px 0px 0px 0px;
  5391. box-sizing:border-box;
  5392. width:100%;
  5393. }
  5394. #u45379_text {
  5395. border-width:0px;
  5396. white-space:nowrap;
  5397. text-transform:none;
  5398. }
  5399. #u45380 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:139px;
  5403. top:372px;
  5404. width:1px;
  5405. height:24px;
  5406. display:flex;
  5407. transition:none;
  5408. }
  5409. #u45380 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 2px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u45380_img {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:2px;
  5422. height:25px;
  5423. }
  5424. #u45380_text {
  5425. border-width:0px;
  5426. word-wrap:break-word;
  5427. text-transform:none;
  5428. visibility:hidden;
  5429. }
  5430. #u45381 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:0px;
  5436. height:0px;
  5437. }
  5438. #u45382_div {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:376px;
  5444. height:115px;
  5445. background:inherit;
  5446. background-color:rgba(255, 255, 255, 1);
  5447. border-radius:4px;
  5448. filter:drop-shadow(none);
  5449. transition:none;
  5450. }
  5451. #u45382 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:29px;
  5455. top:432px;
  5456. width:376px;
  5457. height:115px;
  5458. display:flex;
  5459. transition:none;
  5460. transform-origin:50% 50%;
  5461. }
  5462. #u45382 .text {
  5463. position:absolute;
  5464. align-self:center;
  5465. padding:2px 2px 2px 2px;
  5466. box-sizing:border-box;
  5467. width:100%;
  5468. }
  5469. #u45382_text {
  5470. border-width:0px;
  5471. word-wrap:break-word;
  5472. text-transform:none;
  5473. visibility:hidden;
  5474. }
  5475. #u45383 {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:0px;
  5479. top:0px;
  5480. width:0px;
  5481. height:0px;
  5482. }
  5483. #u45384_div {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:71px;
  5489. height:33px;
  5490. background:inherit;
  5491. background-color:rgba(255, 255, 255, 0);
  5492. border-left:0px;
  5493. border-top:0px;
  5494. border-right:0px;
  5495. border-radius:0px;
  5496. border-bottom-right-radius:0px;
  5497. border-bottom-left-radius:0px;
  5498. filter:drop-shadow(none);
  5499. transition:none;
  5500. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5501. font-style:normal;
  5502. }
  5503. #u45384 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:46px;
  5507. top:473px;
  5508. width:71px;
  5509. height:33px;
  5510. display:flex;
  5511. transition:none;
  5512. transform-origin:50% 50%;
  5513. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5514. font-style:normal;
  5515. }
  5516. #u45384 .text {
  5517. position:absolute;
  5518. align-self:flex-start;
  5519. padding:0px 0px 0px 0px;
  5520. box-sizing:border-box;
  5521. width:100%;
  5522. }
  5523. #u45384_text {
  5524. border-width:0px;
  5525. white-space:nowrap;
  5526. text-transform:none;
  5527. }
  5528. #u45385_div {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:61px;
  5534. height:17px;
  5535. background:inherit;
  5536. background-color:rgba(255, 255, 255, 0);
  5537. border-left:0px;
  5538. border-top:0px;
  5539. border-right:0px;
  5540. border-radius:0px;
  5541. border-bottom-right-radius:0px;
  5542. border-bottom-left-radius:0px;
  5543. filter:drop-shadow(none);
  5544. transition:none;
  5545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:12px;
  5549. }
  5550. #u45385 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:52px;
  5554. top:510px;
  5555. width:61px;
  5556. height:17px;
  5557. display:flex;
  5558. transition:none;
  5559. transform-origin:50% 50%;
  5560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5561. font-weight:400;
  5562. font-style:normal;
  5563. font-size:12px;
  5564. }
  5565. #u45385 .text {
  5566. position:absolute;
  5567. align-self:flex-start;
  5568. padding:0px 0px 0px 0px;
  5569. box-sizing:border-box;
  5570. width:100%;
  5571. }
  5572. #u45385_text {
  5573. border-width:0px;
  5574. white-space:nowrap;
  5575. text-transform:none;
  5576. }
  5577. #u45386_div {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:61px;
  5583. height:17px;
  5584. background:inherit;
  5585. background-color:rgba(255, 255, 255, 0);
  5586. border-left:0px;
  5587. border-top:0px;
  5588. border-right:0px;
  5589. border-radius:0px;
  5590. border-bottom-right-radius:0px;
  5591. border-bottom-left-radius:0px;
  5592. filter:drop-shadow(none);
  5593. transition:none;
  5594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:12px;
  5598. }
  5599. #u45386 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:39px;
  5603. top:442px;
  5604. width:61px;
  5605. height:17px;
  5606. display:flex;
  5607. transition:none;
  5608. transform-origin:50% 50%;
  5609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5610. font-weight:400;
  5611. font-style:normal;
  5612. font-size:12px;
  5613. }
  5614. #u45386 .text {
  5615. position:absolute;
  5616. align-self:flex-start;
  5617. padding:0px 0px 0px 0px;
  5618. box-sizing:border-box;
  5619. width:100%;
  5620. }
  5621. #u45386_text {
  5622. border-width:0px;
  5623. white-space:nowrap;
  5624. text-transform:none;
  5625. }
  5626. #u45387 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:0px;
  5632. height:0px;
  5633. }
  5634. #u45388_div {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:57px;
  5640. height:25px;
  5641. background:inherit;
  5642. background-color:rgba(255, 255, 255, 0);
  5643. border-left:0px;
  5644. border-top:0px;
  5645. border-right:0px;
  5646. border-radius:0px;
  5647. border-bottom-right-radius:0px;
  5648. border-bottom-left-radius:0px;
  5649. filter:drop-shadow(none);
  5650. transition:none;
  5651. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5652. font-style:normal;
  5653. }
  5654. #u45388 {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:165px;
  5658. top:479px;
  5659. width:57px;
  5660. height:25px;
  5661. display:flex;
  5662. transition:none;
  5663. transform-origin:50% 50%;
  5664. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5665. font-style:normal;
  5666. }
  5667. #u45388 .text {
  5668. position:absolute;
  5669. align-self:flex-start;
  5670. padding:0px 0px 0px 0px;
  5671. box-sizing:border-box;
  5672. width:100%;
  5673. }
  5674. #u45388_text {
  5675. border-width:0px;
  5676. white-space:nowrap;
  5677. text-transform:none;
  5678. }
  5679. #u45389_div {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:49px;
  5685. height:17px;
  5686. background:inherit;
  5687. background-color:rgba(255, 255, 255, 0);
  5688. border-left:0px;
  5689. border-top:0px;
  5690. border-right:0px;
  5691. border-radius:0px;
  5692. border-bottom-right-radius:0px;
  5693. border-bottom-left-radius:0px;
  5694. filter:drop-shadow(none);
  5695. transition:none;
  5696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5697. font-weight:400;
  5698. font-style:normal;
  5699. font-size:12px;
  5700. }
  5701. #u45389 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:169px;
  5705. top:504px;
  5706. width:49px;
  5707. height:17px;
  5708. display:flex;
  5709. transition:none;
  5710. transform-origin:50% 50%;
  5711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5712. font-weight:400;
  5713. font-style:normal;
  5714. font-size:12px;
  5715. }
  5716. #u45389 .text {
  5717. position:absolute;
  5718. align-self:flex-start;
  5719. padding:0px 0px 0px 0px;
  5720. box-sizing:border-box;
  5721. width:100%;
  5722. }
  5723. #u45389_text {
  5724. border-width:0px;
  5725. white-space:nowrap;
  5726. text-transform:none;
  5727. }
  5728. #u45390 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:0px;
  5734. height:0px;
  5735. }
  5736. #u45391_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:57px;
  5742. height:25px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 0);
  5745. border-left:0px;
  5746. border-top:0px;
  5747. border-right:0px;
  5748. border-radius:0px;
  5749. border-bottom-right-radius:0px;
  5750. border-bottom-left-radius:0px;
  5751. filter:drop-shadow(none);
  5752. transition:none;
  5753. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5754. font-style:normal;
  5755. }
  5756. #u45391 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:245px;
  5760. top:479px;
  5761. width:57px;
  5762. height:25px;
  5763. display:flex;
  5764. transition:none;
  5765. transform-origin:50% 50%;
  5766. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5767. font-style:normal;
  5768. }
  5769. #u45391 .text {
  5770. position:absolute;
  5771. align-self:flex-start;
  5772. padding:0px 0px 0px 0px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u45391_text {
  5777. border-width:0px;
  5778. white-space:nowrap;
  5779. text-transform:none;
  5780. }
  5781. #u45392_div {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:49px;
  5787. height:17px;
  5788. background:inherit;
  5789. background-color:rgba(255, 255, 255, 0);
  5790. border-left:0px;
  5791. border-top:0px;
  5792. border-right:0px;
  5793. border-radius:0px;
  5794. border-bottom-right-radius:0px;
  5795. border-bottom-left-radius:0px;
  5796. filter:drop-shadow(none);
  5797. transition:none;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:12px;
  5802. }
  5803. #u45392 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:249px;
  5807. top:504px;
  5808. width:49px;
  5809. height:17px;
  5810. display:flex;
  5811. transition:none;
  5812. transform-origin:50% 50%;
  5813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5814. font-weight:400;
  5815. font-style:normal;
  5816. font-size:12px;
  5817. }
  5818. #u45392 .text {
  5819. position:absolute;
  5820. align-self:flex-start;
  5821. padding:0px 0px 0px 0px;
  5822. box-sizing:border-box;
  5823. width:100%;
  5824. }
  5825. #u45392_text {
  5826. border-width:0px;
  5827. white-space:nowrap;
  5828. text-transform:none;
  5829. }
  5830. #u45393 {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:0px;
  5836. height:0px;
  5837. }
  5838. #u45394_div {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:61px;
  5844. height:25px;
  5845. background:inherit;
  5846. background-color:rgba(255, 255, 255, 0);
  5847. border-left:0px;
  5848. border-top:0px;
  5849. border-right:0px;
  5850. border-radius:0px;
  5851. border-bottom-right-radius:0px;
  5852. border-bottom-left-radius:0px;
  5853. filter:drop-shadow(none);
  5854. transition:none;
  5855. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5856. font-style:normal;
  5857. }
  5858. #u45394 {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:325px;
  5862. top:479px;
  5863. width:61px;
  5864. height:25px;
  5865. display:flex;
  5866. transition:none;
  5867. transform-origin:50% 50%;
  5868. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5869. font-style:normal;
  5870. }
  5871. #u45394 .text {
  5872. position:absolute;
  5873. align-self:flex-start;
  5874. padding:0px 0px 0px 0px;
  5875. box-sizing:border-box;
  5876. width:100%;
  5877. }
  5878. #u45394_text {
  5879. border-width:0px;
  5880. white-space:nowrap;
  5881. text-transform:none;
  5882. }
  5883. #u45395_div {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:49px;
  5889. height:17px;
  5890. background:inherit;
  5891. background-color:rgba(255, 255, 255, 0);
  5892. border-left:0px;
  5893. border-top:0px;
  5894. border-right:0px;
  5895. border-radius:0px;
  5896. border-bottom-right-radius:0px;
  5897. border-bottom-left-radius:0px;
  5898. filter:drop-shadow(none);
  5899. transition:none;
  5900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:12px;
  5904. }
  5905. #u45395 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:331px;
  5909. top:504px;
  5910. width:49px;
  5911. height:17px;
  5912. display:flex;
  5913. transition:none;
  5914. transform-origin:50% 50%;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:12px;
  5919. }
  5920. #u45395 .text {
  5921. position:absolute;
  5922. align-self:flex-start;
  5923. padding:0px 0px 0px 0px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u45395_text {
  5928. border-width:0px;
  5929. white-space:nowrap;
  5930. text-transform:none;
  5931. }
  5932. #u45396 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:140px;
  5936. top:488px;
  5937. width:1px;
  5938. height:24px;
  5939. display:flex;
  5940. transition:none;
  5941. }
  5942. #u45396 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:2px 2px 2px 2px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u45396_img {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:2px;
  5955. height:25px;
  5956. }
  5957. #u45396_text {
  5958. border-width:0px;
  5959. word-wrap:break-word;
  5960. text-transform:none;
  5961. visibility:hidden;
  5962. }