styles.css 105 KB

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