styles.css 100 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1801px;
  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. #u227528_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u227528 {
  28. border-width:0px;
  29. position:absolute;
  30. left:906px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u227528 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u227528_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u227530_img {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:433px;
  55. height:865px;
  56. }
  57. #u227530 {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:433px;
  63. height:865px;
  64. display:flex;
  65. }
  66. #u227530 .text {
  67. position:absolute;
  68. align-self:center;
  69. padding:2px 2px 2px 2px;
  70. box-sizing:border-box;
  71. width:100%;
  72. }
  73. #u227530_text {
  74. border-width:0px;
  75. word-wrap:break-word;
  76. text-transform:none;
  77. visibility:hidden;
  78. }
  79. #u227531_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. #u227531 {
  103. border-width:0px;
  104. position:absolute;
  105. left:29px;
  106. top:67px;
  107. width:375px;
  108. height:40px;
  109. display:flex;
  110. }
  111. #u227531 .text {
  112. position:absolute;
  113. align-self:center;
  114. padding:2px 2px 2px 2px;
  115. box-sizing:border-box;
  116. width:100%;
  117. }
  118. #u227531_text {
  119. border-width:0px;
  120. word-wrap:break-word;
  121. text-transform:none;
  122. visibility:hidden;
  123. }
  124. #u227532 {
  125. border-width:0px;
  126. position:absolute;
  127. left:0px;
  128. top:0px;
  129. width:0px;
  130. height:0px;
  131. }
  132. #u227533_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. #u227533 {
  151. border-width:0px;
  152. position:absolute;
  153. left:309px;
  154. top:71px;
  155. width:88px;
  156. height:32px;
  157. display:flex;
  158. }
  159. #u227533 .text {
  160. position:absolute;
  161. align-self:center;
  162. padding:2px 2px 2px 2px;
  163. box-sizing:border-box;
  164. width:100%;
  165. }
  166. #u227533_text {
  167. border-width:0px;
  168. word-wrap:break-word;
  169. text-transform:none;
  170. visibility:hidden;
  171. }
  172. #u227534 {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:0px;
  178. height:0px;
  179. }
  180. #u227535_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:18px;
  186. height:18px;
  187. }
  188. #u227535 {
  189. border-width:0px;
  190. position:absolute;
  191. left:372px;
  192. top:78px;
  193. width:18px;
  194. height:18px;
  195. display:flex;
  196. }
  197. #u227535 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u227535_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u227536_img {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:6px;
  216. height:6px;
  217. }
  218. #u227536 {
  219. border-width:0px;
  220. position:absolute;
  221. left:378px;
  222. top:84px;
  223. width:6px;
  224. height:6px;
  225. display:flex;
  226. }
  227. #u227536 .text {
  228. position:absolute;
  229. align-self:center;
  230. padding:2px 2px 2px 2px;
  231. box-sizing:border-box;
  232. width:100%;
  233. }
  234. #u227536_text {
  235. border-width:0px;
  236. word-wrap:break-word;
  237. text-transform:none;
  238. visibility:hidden;
  239. }
  240. #u227537 {
  241. border-width:0px;
  242. position:absolute;
  243. left:0px;
  244. top:0px;
  245. width:0px;
  246. height:0px;
  247. }
  248. #u227538_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u227538 {
  257. border-width:0px;
  258. position:absolute;
  259. left:323px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u227538 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u227538_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u227539_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:5px;
  284. height:5px;
  285. }
  286. #u227539 {
  287. border-width:0px;
  288. position:absolute;
  289. left:339px;
  290. top:85px;
  291. width:5px;
  292. height:5px;
  293. display:flex;
  294. }
  295. #u227539 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u227539_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u227540_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:7px;
  314. height:7px;
  315. }
  316. #u227540 {
  317. border-width:0px;
  318. position:absolute;
  319. left:330px;
  320. top:84px;
  321. width:7px;
  322. height:7px;
  323. display:flex;
  324. }
  325. #u227540 .text {
  326. position:absolute;
  327. align-self:center;
  328. padding:2px 2px 2px 2px;
  329. box-sizing:border-box;
  330. width:100%;
  331. }
  332. #u227540_text {
  333. border-width:0px;
  334. word-wrap:break-word;
  335. text-transform:none;
  336. visibility:hidden;
  337. }
  338. #u227541_img {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:19px;
  344. height:2px;
  345. }
  346. #u227541 {
  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. #u227541 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u227541_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u227542_img {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:44px;
  379. }
  380. #u227542 {
  381. border-width:0px;
  382. position:absolute;
  383. left:29px;
  384. top:24px;
  385. width:375px;
  386. height:44px;
  387. display:flex;
  388. }
  389. #u227542 .text {
  390. position:absolute;
  391. align-self:center;
  392. padding:2px 2px 2px 2px;
  393. box-sizing:border-box;
  394. width:100%;
  395. }
  396. #u227542_text {
  397. border-width:0px;
  398. word-wrap:break-word;
  399. text-transform:none;
  400. visibility:hidden;
  401. }
  402. #u227543_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. #u227543 {
  423. border-width:0px;
  424. position:absolute;
  425. left:29px;
  426. top:788px;
  427. width:375px;
  428. height:50px;
  429. display:flex;
  430. }
  431. #u227543 .text {
  432. position:absolute;
  433. align-self:center;
  434. padding:2px 2px 2px 2px;
  435. box-sizing:border-box;
  436. width:100%;
  437. }
  438. #u227543_text {
  439. border-width:0px;
  440. word-wrap:break-word;
  441. text-transform:none;
  442. visibility:hidden;
  443. }
  444. #u227544 {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:0px;
  450. height:0px;
  451. }
  452. #u227545_img {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:24px;
  458. height:24px;
  459. }
  460. #u227545 {
  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. #u227545 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:2px 2px 2px 2px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u227545_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u227546_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. #u227546 {
  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. #u227546 .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. #u227546_text {
  522. border-width:0px;
  523. white-space:nowrap;
  524. text-transform:none;
  525. }
  526. #u227547 {
  527. border-width:0px;
  528. position:absolute;
  529. left:0px;
  530. top:0px;
  531. width:0px;
  532. height:0px;
  533. }
  534. #u227548_img {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:24px;
  540. height:24px;
  541. }
  542. #u227548 {
  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. #u227548 .text {
  553. position:absolute;
  554. align-self:center;
  555. padding:2px 2px 2px 2px;
  556. box-sizing:border-box;
  557. width:100%;
  558. }
  559. #u227548_text {
  560. border-width:0px;
  561. word-wrap:break-word;
  562. text-transform:none;
  563. }
  564. #u227549_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. #u227549 {
  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. #u227549 .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. #u227549_text {
  604. border-width:0px;
  605. white-space:nowrap;
  606. text-transform:none;
  607. }
  608. #u227550_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. #u227550 {
  624. border-width:0px;
  625. position:absolute;
  626. left:29px;
  627. top:107px;
  628. width:375px;
  629. height:681px;
  630. display:flex;
  631. }
  632. #u227550 .text {
  633. position:absolute;
  634. align-self:center;
  635. padding:2px 2px 2px 2px;
  636. box-sizing:border-box;
  637. width:100%;
  638. }
  639. #u227550_text {
  640. border-width:0px;
  641. word-wrap:break-word;
  642. text-transform:none;
  643. visibility:hidden;
  644. }
  645. #u227551 {
  646. border-width:0px;
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:0px;
  651. height:0px;
  652. }
  653. #u227552_img {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:24px;
  659. height:24px;
  660. }
  661. #u227552 {
  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. #u227552 .text {
  672. position:absolute;
  673. align-self:center;
  674. padding:2px 2px 2px 2px;
  675. box-sizing:border-box;
  676. width:100%;
  677. }
  678. #u227552_text {
  679. border-width:0px;
  680. word-wrap:break-word;
  681. text-transform:none;
  682. }
  683. #u227553_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. #u227553 {
  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. #u227553 .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. #u227553_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u227554 {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:0px;
  733. height:0px;
  734. }
  735. #u227555_img {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:24px;
  741. height:24px;
  742. }
  743. #u227555 {
  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. #u227555 .text {
  754. position:absolute;
  755. align-self:center;
  756. padding:2px 2px 2px 2px;
  757. box-sizing:border-box;
  758. width:100%;
  759. }
  760. #u227555_text {
  761. border-width:0px;
  762. word-wrap:break-word;
  763. text-transform:none;
  764. }
  765. #u227556_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. #u227556 {
  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. #u227556 .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. #u227556_text {
  805. border-width:0px;
  806. white-space:nowrap;
  807. text-transform:none;
  808. }
  809. #u227557_div {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:375px;
  815. height:740px;
  816. background:inherit;
  817. background-color:rgba(242, 242, 242, 1);
  818. border:none;
  819. border-top:0px;
  820. border-radius:25px;
  821. border-top-left-radius:0px;
  822. border-top-right-radius:0px;
  823. -moz-box-shadow:none;
  824. -webkit-box-shadow:none;
  825. box-shadow:none;
  826. }
  827. #u227557 {
  828. border-width:0px;
  829. position:absolute;
  830. left:29px;
  831. top:105px;
  832. width:375px;
  833. height:740px;
  834. display:flex;
  835. }
  836. #u227557 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u227557_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u227558 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u227559_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:11px;
  863. height:18px;
  864. }
  865. #u227559 {
  866. border-width:0px;
  867. position:absolute;
  868. left:40px;
  869. top:79px;
  870. width:11px;
  871. height:18px;
  872. display:flex;
  873. }
  874. #u227559 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u227559_text {
  882. border-width:0px;
  883. word-wrap:break-word;
  884. text-transform:none;
  885. visibility:hidden;
  886. }
  887. #u227560_div {
  888. border-width:0px;
  889. position:absolute;
  890. left:0px;
  891. top:0px;
  892. width:375px;
  893. height:100px;
  894. background:inherit;
  895. background-color:rgba(183, 162, 138, 1);
  896. border:none;
  897. border-radius:0px;
  898. -moz-box-shadow:none;
  899. -webkit-box-shadow:none;
  900. box-shadow:none;
  901. }
  902. #u227560 {
  903. border-width:0px;
  904. position:absolute;
  905. left:29px;
  906. top:105px;
  907. width:375px;
  908. height:100px;
  909. display:flex;
  910. }
  911. #u227560 .text {
  912. position:absolute;
  913. align-self:center;
  914. padding:2px 2px 2px 2px;
  915. box-sizing:border-box;
  916. width:100%;
  917. }
  918. #u227560_text {
  919. border-width:0px;
  920. word-wrap:break-word;
  921. text-transform:none;
  922. visibility:hidden;
  923. }
  924. #u227561_div {
  925. border-width:0px;
  926. position:absolute;
  927. left:0px;
  928. top:0px;
  929. width:145px;
  930. height:30px;
  931. background:inherit;
  932. background-color:rgba(255, 255, 255, 0);
  933. border:none;
  934. border-left:0px;
  935. border-top:0px;
  936. border-right:0px;
  937. border-radius:0px;
  938. border-bottom-right-radius:0px;
  939. border-bottom-left-radius:0px;
  940. -moz-box-shadow:none;
  941. -webkit-box-shadow:none;
  942. box-shadow:none;
  943. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  944. font-weight:500;
  945. font-style:normal;
  946. color:#FFFFFF;
  947. line-height:30px;
  948. }
  949. #u227561 {
  950. border-width:0px;
  951. position:absolute;
  952. left:49px;
  953. top:120px;
  954. width:145px;
  955. height:30px;
  956. display:flex;
  957. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  958. font-weight:500;
  959. font-style:normal;
  960. color:#FFFFFF;
  961. line-height:30px;
  962. }
  963. #u227561 .text {
  964. position:absolute;
  965. align-self:flex-start;
  966. padding:0px 0px 0px 0px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u227561_text {
  971. border-width:0px;
  972. white-space:nowrap;
  973. text-transform:none;
  974. }
  975. #u227562 {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:0px;
  981. height:0px;
  982. }
  983. #u227563_div {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:15px;
  989. height:15px;
  990. background:inherit;
  991. background-color:rgba(255, 255, 255, 1);
  992. border:none;
  993. border-radius:19px;
  994. -moz-box-shadow:none;
  995. -webkit-box-shadow:none;
  996. box-shadow:none;
  997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:12px;
  1001. color:#B7A28A;
  1002. text-align:center;
  1003. line-height:30px;
  1004. }
  1005. #u227563 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:376px;
  1009. top:128px;
  1010. width:15px;
  1011. height:15px;
  1012. display:flex;
  1013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1014. font-weight:400;
  1015. font-style:normal;
  1016. font-size:12px;
  1017. color:#B7A28A;
  1018. text-align:center;
  1019. line-height:30px;
  1020. }
  1021. #u227563 .text {
  1022. position:absolute;
  1023. align-self:center;
  1024. padding:0px 0px 0px 0px;
  1025. box-sizing:border-box;
  1026. width:100%;
  1027. }
  1028. #u227563_text {
  1029. border-width:0px;
  1030. word-wrap:break-word;
  1031. text-transform:none;
  1032. visibility:hidden;
  1033. }
  1034. #u227564_div {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:0px;
  1038. top:0px;
  1039. width:13px;
  1040. height:17px;
  1041. background:inherit;
  1042. background-color:rgba(255, 255, 255, 0);
  1043. border:none;
  1044. border-radius:0px;
  1045. -moz-box-shadow:none;
  1046. -webkit-box-shadow:none;
  1047. box-shadow:none;
  1048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1049. font-weight:400;
  1050. font-style:normal;
  1051. font-size:12px;
  1052. color:#B7A28A;
  1053. text-align:center;
  1054. }
  1055. #u227564 {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:380px;
  1059. top:127px;
  1060. width:13px;
  1061. height:17px;
  1062. display:flex;
  1063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1064. font-weight:400;
  1065. font-style:normal;
  1066. font-size:12px;
  1067. color:#B7A28A;
  1068. text-align:center;
  1069. }
  1070. #u227564 .text {
  1071. position:absolute;
  1072. align-self:flex-start;
  1073. padding:0px 0px 0px 0px;
  1074. box-sizing:border-box;
  1075. width:100%;
  1076. }
  1077. #u227564_text {
  1078. border-width:0px;
  1079. word-wrap:break-word;
  1080. text-transform:none;
  1081. }
  1082. #u227565_div {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:61px;
  1088. height:30px;
  1089. background:inherit;
  1090. background-color:rgba(255, 255, 255, 0);
  1091. border:none;
  1092. border-left:0px;
  1093. border-top:0px;
  1094. border-right:0px;
  1095. border-radius:0px;
  1096. border-bottom-right-radius:0px;
  1097. border-bottom-left-radius:0px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. font-size:14px;
  1105. color:#FFFFFF;
  1106. line-height:30px;
  1107. }
  1108. #u227565 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:49px;
  1112. top:175px;
  1113. width:61px;
  1114. height:30px;
  1115. display:flex;
  1116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1117. font-weight:400;
  1118. font-style:normal;
  1119. font-size:14px;
  1120. color:#FFFFFF;
  1121. line-height:30px;
  1122. }
  1123. #u227565 .text {
  1124. position:absolute;
  1125. align-self:flex-start;
  1126. padding:0px 0px 0px 0px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u227565_text {
  1131. border-width:0px;
  1132. white-space:nowrap;
  1133. text-transform:none;
  1134. }
  1135. #u227566_div {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:61px;
  1141. height:30px;
  1142. background:inherit;
  1143. background-color:rgba(255, 255, 255, 0);
  1144. border:none;
  1145. border-left:0px;
  1146. border-top:0px;
  1147. border-right:0px;
  1148. border-radius:0px;
  1149. border-bottom-right-radius:0px;
  1150. border-bottom-left-radius:0px;
  1151. -moz-box-shadow:none;
  1152. -webkit-box-shadow:none;
  1153. box-shadow:none;
  1154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1155. font-weight:400;
  1156. font-style:normal;
  1157. font-size:14px;
  1158. color:rgba(255, 255, 255, 0.498039215686275);
  1159. line-height:30px;
  1160. }
  1161. #u227566 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:137px;
  1165. top:175px;
  1166. width:61px;
  1167. height:30px;
  1168. display:flex;
  1169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1170. font-weight:400;
  1171. font-style:normal;
  1172. font-size:14px;
  1173. color:rgba(255, 255, 255, 0.498039215686275);
  1174. line-height:30px;
  1175. }
  1176. #u227566 .text {
  1177. position:absolute;
  1178. align-self:flex-start;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u227566_text {
  1184. border-width:0px;
  1185. white-space:nowrap;
  1186. text-transform:none;
  1187. }
  1188. #u227567 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:0px;
  1194. height:0px;
  1195. }
  1196. #u227568_div {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:375px;
  1202. height:80px;
  1203. background:inherit;
  1204. background-color:rgba(255, 255, 255, 1);
  1205. border:none;
  1206. border-radius:0px;
  1207. -moz-box-shadow:none;
  1208. -webkit-box-shadow:none;
  1209. box-shadow:none;
  1210. }
  1211. #u227568 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:29px;
  1215. top:220px;
  1216. width:375px;
  1217. height:80px;
  1218. display:flex;
  1219. }
  1220. #u227568 .text {
  1221. position:absolute;
  1222. align-self:center;
  1223. padding:2px 2px 2px 2px;
  1224. box-sizing:border-box;
  1225. width:100%;
  1226. }
  1227. #u227568_text {
  1228. border-width:0px;
  1229. word-wrap:break-word;
  1230. text-transform:none;
  1231. visibility:hidden;
  1232. }
  1233. #u227569_div {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:0px;
  1237. top:0px;
  1238. width:206px;
  1239. height:30px;
  1240. background:inherit;
  1241. background-color:rgba(255, 255, 255, 0);
  1242. border:none;
  1243. border-left:0px;
  1244. border-top:0px;
  1245. border-right:0px;
  1246. border-radius:0px;
  1247. border-bottom-right-radius:0px;
  1248. border-bottom-left-radius:0px;
  1249. -moz-box-shadow:none;
  1250. -webkit-box-shadow:none;
  1251. box-shadow:none;
  1252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1253. font-weight:400;
  1254. font-style:normal;
  1255. font-size:18px;
  1256. line-height:30px;
  1257. }
  1258. #u227569 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:49px;
  1262. top:230px;
  1263. width:206px;
  1264. height:30px;
  1265. display:flex;
  1266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1267. font-weight:400;
  1268. font-style:normal;
  1269. font-size:18px;
  1270. line-height:30px;
  1271. }
  1272. #u227569 .text {
  1273. position:absolute;
  1274. align-self:flex-start;
  1275. padding:0px 0px 0px 0px;
  1276. box-sizing:border-box;
  1277. width:100%;
  1278. }
  1279. #u227569_text {
  1280. border-width:0px;
  1281. white-space:nowrap;
  1282. text-transform:none;
  1283. }
  1284. #u227570_div {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:0px;
  1288. top:0px;
  1289. width:49px;
  1290. height:30px;
  1291. background:inherit;
  1292. background-color:rgba(255, 255, 255, 0);
  1293. border:none;
  1294. border-left:0px;
  1295. border-top:0px;
  1296. border-right:0px;
  1297. border-radius:0px;
  1298. border-bottom-right-radius:0px;
  1299. border-bottom-left-radius:0px;
  1300. -moz-box-shadow:none;
  1301. -webkit-box-shadow:none;
  1302. box-shadow:none;
  1303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1304. font-weight:400;
  1305. font-style:normal;
  1306. font-size:12px;
  1307. color:#AAAAAA;
  1308. line-height:30px;
  1309. }
  1310. #u227570 {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:49px;
  1314. top:260px;
  1315. width:49px;
  1316. height:30px;
  1317. display:flex;
  1318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1319. font-weight:400;
  1320. font-style:normal;
  1321. font-size:12px;
  1322. color:#AAAAAA;
  1323. line-height:30px;
  1324. }
  1325. #u227570 .text {
  1326. position:absolute;
  1327. align-self:flex-start;
  1328. padding:0px 0px 0px 0px;
  1329. box-sizing:border-box;
  1330. width:100%;
  1331. }
  1332. #u227570_text {
  1333. border-width:0px;
  1334. white-space:nowrap;
  1335. text-transform:none;
  1336. }
  1337. #u227571_img {
  1338. border-width:0px;
  1339. position:absolute;
  1340. left:0px;
  1341. top:0px;
  1342. width:14px;
  1343. height:14px;
  1344. }
  1345. #u227571 {
  1346. border-width:0px;
  1347. position:absolute;
  1348. left:370px;
  1349. top:253px;
  1350. width:14px;
  1351. height:14px;
  1352. display:flex;
  1353. }
  1354. #u227571 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:2px 2px 2px 2px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u227571_text {
  1362. border-width:0px;
  1363. word-wrap:break-word;
  1364. text-transform:none;
  1365. visibility:hidden;
  1366. }
  1367. #u227572_div {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:0px;
  1371. top:0px;
  1372. width:375px;
  1373. height:80px;
  1374. background:inherit;
  1375. background-color:rgba(255, 255, 255, 1);
  1376. border:none;
  1377. border-top:0px;
  1378. border-radius:23px;
  1379. border-top-left-radius:0px;
  1380. border-top-right-radius:0px;
  1381. -moz-box-shadow:none;
  1382. -webkit-box-shadow:none;
  1383. box-shadow:none;
  1384. }
  1385. #u227572 {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:29px;
  1389. top:765px;
  1390. width:375px;
  1391. height:80px;
  1392. display:flex;
  1393. }
  1394. #u227572 .text {
  1395. position:absolute;
  1396. align-self:center;
  1397. padding:2px 2px 2px 2px;
  1398. box-sizing:border-box;
  1399. width:100%;
  1400. }
  1401. #u227572_text {
  1402. border-width:0px;
  1403. word-wrap:break-word;
  1404. text-transform:none;
  1405. visibility:hidden;
  1406. }
  1407. #u227573_img {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:16px;
  1413. height:16px;
  1414. }
  1415. #u227573 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:49px;
  1419. top:796px;
  1420. width:16px;
  1421. height:16px;
  1422. display:flex;
  1423. }
  1424. #u227573 .text {
  1425. position:absolute;
  1426. align-self:center;
  1427. padding:2px 2px 2px 2px;
  1428. box-sizing:border-box;
  1429. width:100%;
  1430. }
  1431. #u227573_text {
  1432. border-width:0px;
  1433. word-wrap:break-word;
  1434. text-transform:none;
  1435. visibility:hidden;
  1436. }
  1437. #u227574_div {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:0px;
  1441. top:0px;
  1442. width:29px;
  1443. height:30px;
  1444. background:inherit;
  1445. background-color:rgba(255, 255, 255, 0);
  1446. border:none;
  1447. border-left:0px;
  1448. border-top:0px;
  1449. border-right:0px;
  1450. border-radius:0px;
  1451. border-bottom-right-radius:0px;
  1452. border-bottom-left-radius:0px;
  1453. -moz-box-shadow:none;
  1454. -webkit-box-shadow:none;
  1455. box-shadow:none;
  1456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1457. font-weight:400;
  1458. font-style:normal;
  1459. font-size:14px;
  1460. color:#555555;
  1461. line-height:30px;
  1462. }
  1463. #u227574 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:78px;
  1467. top:790px;
  1468. width:29px;
  1469. height:30px;
  1470. display:flex;
  1471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1472. font-weight:400;
  1473. font-style:normal;
  1474. font-size:14px;
  1475. color:#555555;
  1476. line-height:30px;
  1477. }
  1478. #u227574 .text {
  1479. position:absolute;
  1480. align-self:flex-start;
  1481. padding:0px 0px 0px 0px;
  1482. box-sizing:border-box;
  1483. width:100%;
  1484. }
  1485. #u227574_text {
  1486. border-width:0px;
  1487. white-space:nowrap;
  1488. text-transform:none;
  1489. }
  1490. #u227575_div {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:100px;
  1496. height:40px;
  1497. background:inherit;
  1498. background-color:rgba(24, 144, 255, 1);
  1499. box-sizing:border-box;
  1500. border-width:1px;
  1501. border-style:solid;
  1502. border-color:rgba(24, 144, 255, 1);
  1503. border-radius:19px;
  1504. -moz-box-shadow:none;
  1505. -webkit-box-shadow:none;
  1506. box-shadow:none;
  1507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:14px;
  1511. color:#FFFFFF;
  1512. text-align:center;
  1513. line-height:30px;
  1514. }
  1515. #u227575 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:272px;
  1519. top:785px;
  1520. width:100px;
  1521. height:40px;
  1522. display:flex;
  1523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1524. font-weight:400;
  1525. font-style:normal;
  1526. font-size:14px;
  1527. color:#FFFFFF;
  1528. text-align:center;
  1529. line-height:30px;
  1530. }
  1531. #u227575 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:0px 0px 0px 0px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u227575_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. }
  1543. #u227577_img {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:433px;
  1549. height:865px;
  1550. }
  1551. #u227577 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:453px;
  1555. top:0px;
  1556. width:433px;
  1557. height:865px;
  1558. display:flex;
  1559. }
  1560. #u227577 .text {
  1561. position:absolute;
  1562. align-self:center;
  1563. padding:2px 2px 2px 2px;
  1564. box-sizing:border-box;
  1565. width:100%;
  1566. }
  1567. #u227577_text {
  1568. border-width:0px;
  1569. word-wrap:break-word;
  1570. text-transform:none;
  1571. visibility:hidden;
  1572. }
  1573. #u227578_div {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:0px;
  1577. top:0px;
  1578. width:375px;
  1579. height:40px;
  1580. background:inherit;
  1581. background-color:rgba(255, 255, 255, 1);
  1582. box-sizing:border-box;
  1583. border-width:1px;
  1584. border-style:solid;
  1585. border-color:rgba(215, 215, 215, 1);
  1586. border-left:0px;
  1587. border-top:0px;
  1588. border-right:0px;
  1589. border-radius:0px;
  1590. border-bottom-right-radius:0px;
  1591. border-bottom-left-radius:0px;
  1592. -moz-box-shadow:none;
  1593. -webkit-box-shadow:none;
  1594. box-shadow:none;
  1595. }
  1596. #u227578 {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:482px;
  1600. top:67px;
  1601. width:375px;
  1602. height:40px;
  1603. display:flex;
  1604. }
  1605. #u227578 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 2px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u227578_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. visibility:hidden;
  1617. }
  1618. #u227579 {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:0px;
  1624. height:0px;
  1625. }
  1626. #u227580_div {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:88px;
  1632. height:32px;
  1633. background:inherit;
  1634. background-color:rgba(255, 255, 255, 1);
  1635. box-sizing:border-box;
  1636. border-width:1px;
  1637. border-style:solid;
  1638. border-color:rgba(242, 242, 242, 1);
  1639. border-radius:33px;
  1640. -moz-box-shadow:none;
  1641. -webkit-box-shadow:none;
  1642. box-shadow:none;
  1643. }
  1644. #u227580 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:762px;
  1648. top:71px;
  1649. width:88px;
  1650. height:32px;
  1651. display:flex;
  1652. }
  1653. #u227580 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:2px 2px 2px 2px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u227580_text {
  1661. border-width:0px;
  1662. word-wrap:break-word;
  1663. text-transform:none;
  1664. visibility:hidden;
  1665. }
  1666. #u227581 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:0px;
  1672. height:0px;
  1673. }
  1674. #u227582_img {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:18px;
  1680. height:18px;
  1681. }
  1682. #u227582 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:825px;
  1686. top:78px;
  1687. width:18px;
  1688. height:18px;
  1689. display:flex;
  1690. }
  1691. #u227582 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u227582_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u227583_img {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:6px;
  1710. height:6px;
  1711. }
  1712. #u227583 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:831px;
  1716. top:84px;
  1717. width:6px;
  1718. height:6px;
  1719. display:flex;
  1720. }
  1721. #u227583 .text {
  1722. position:absolute;
  1723. align-self:center;
  1724. padding:2px 2px 2px 2px;
  1725. box-sizing:border-box;
  1726. width:100%;
  1727. }
  1728. #u227583_text {
  1729. border-width:0px;
  1730. word-wrap:break-word;
  1731. text-transform:none;
  1732. visibility:hidden;
  1733. }
  1734. #u227584 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:0px;
  1740. height:0px;
  1741. }
  1742. #u227585_img {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:5px;
  1748. height:5px;
  1749. }
  1750. #u227585 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:776px;
  1754. top:85px;
  1755. width:5px;
  1756. height:5px;
  1757. display:flex;
  1758. }
  1759. #u227585 .text {
  1760. position:absolute;
  1761. align-self:center;
  1762. padding:2px 2px 2px 2px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u227585_text {
  1767. border-width:0px;
  1768. word-wrap:break-word;
  1769. text-transform:none;
  1770. visibility:hidden;
  1771. }
  1772. #u227586_img {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:5px;
  1778. height:5px;
  1779. }
  1780. #u227586 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:792px;
  1784. top:85px;
  1785. width:5px;
  1786. height:5px;
  1787. display:flex;
  1788. }
  1789. #u227586 .text {
  1790. position:absolute;
  1791. align-self:center;
  1792. padding:2px 2px 2px 2px;
  1793. box-sizing:border-box;
  1794. width:100%;
  1795. }
  1796. #u227586_text {
  1797. border-width:0px;
  1798. word-wrap:break-word;
  1799. text-transform:none;
  1800. visibility:hidden;
  1801. }
  1802. #u227587_img {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:7px;
  1808. height:7px;
  1809. }
  1810. #u227587 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:783px;
  1814. top:84px;
  1815. width:7px;
  1816. height:7px;
  1817. display:flex;
  1818. }
  1819. #u227587 .text {
  1820. position:absolute;
  1821. align-self:center;
  1822. padding:2px 2px 2px 2px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u227587_text {
  1827. border-width:0px;
  1828. word-wrap:break-word;
  1829. text-transform:none;
  1830. visibility:hidden;
  1831. }
  1832. #u227588_img {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:19px;
  1838. height:2px;
  1839. }
  1840. #u227588 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:800px;
  1844. top:87px;
  1845. width:18px;
  1846. height:1px;
  1847. display:flex;
  1848. -webkit-transform:rotate(90deg);
  1849. -moz-transform:rotate(90deg);
  1850. -ms-transform:rotate(90deg);
  1851. transform:rotate(90deg);
  1852. }
  1853. #u227588 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:2px 2px 2px 2px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u227588_text {
  1861. border-width:0px;
  1862. word-wrap:break-word;
  1863. text-transform:none;
  1864. visibility:hidden;
  1865. }
  1866. #u227589_img {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:375px;
  1872. height:44px;
  1873. }
  1874. #u227589 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:482px;
  1878. top:24px;
  1879. width:375px;
  1880. height:44px;
  1881. display:flex;
  1882. }
  1883. #u227589 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:2px 2px 2px 2px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u227589_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. visibility:hidden;
  1895. }
  1896. #u227590_div {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:375px;
  1902. height:50px;
  1903. background:inherit;
  1904. background-color:rgba(255, 255, 255, 1);
  1905. box-sizing:border-box;
  1906. border-width:1px;
  1907. border-style:solid;
  1908. border-color:rgba(242, 242, 242, 1);
  1909. border-radius:26px;
  1910. border-top-left-radius:0px;
  1911. border-top-right-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. }
  1916. #u227590 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:482px;
  1920. top:788px;
  1921. width:375px;
  1922. height:50px;
  1923. display:flex;
  1924. }
  1925. #u227590 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 2px 2px 2px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u227590_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. visibility:hidden;
  1937. }
  1938. #u227591 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:0px;
  1944. height:0px;
  1945. }
  1946. #u227592_img {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:24px;
  1952. height:24px;
  1953. }
  1954. #u227592 {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:522px;
  1958. top:792px;
  1959. width:24px;
  1960. height:24px;
  1961. display:flex;
  1962. font-size:8px;
  1963. }
  1964. #u227592 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:2px 2px 2px 2px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u227592_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u227593_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:25px;
  1982. height:17px;
  1983. background:inherit;
  1984. background-color:rgba(255, 255, 255, 0);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:12px;
  1994. }
  1995. #u227593 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:522px;
  1999. top:817px;
  2000. width:25px;
  2001. height:17px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:12px;
  2007. }
  2008. #u227593 .text {
  2009. position:absolute;
  2010. align-self:flex-start;
  2011. padding:0px 0px 0px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u227593_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u227594 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:0px;
  2026. height:0px;
  2027. }
  2028. #u227595_img {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:24px;
  2034. height:24px;
  2035. }
  2036. #u227595 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:792px;
  2040. top:794px;
  2041. width:24px;
  2042. height:24px;
  2043. display:flex;
  2044. font-size:8px;
  2045. }
  2046. #u227595 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u227595_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. }
  2058. #u227596_div {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:25px;
  2064. height:17px;
  2065. background:inherit;
  2066. background-color:rgba(255, 255, 255, 0);
  2067. border:none;
  2068. border-radius:0px;
  2069. -moz-box-shadow:none;
  2070. -webkit-box-shadow:none;
  2071. box-shadow:none;
  2072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:12px;
  2076. }
  2077. #u227596 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:792px;
  2081. top:819px;
  2082. width:25px;
  2083. height:17px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:12px;
  2089. }
  2090. #u227596 .text {
  2091. position:absolute;
  2092. align-self:flex-start;
  2093. padding:0px 0px 0px 0px;
  2094. box-sizing:border-box;
  2095. width:100%;
  2096. }
  2097. #u227596_text {
  2098. border-width:0px;
  2099. white-space:nowrap;
  2100. text-transform:none;
  2101. }
  2102. #u227597_div {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:375px;
  2108. height:681px;
  2109. background:inherit;
  2110. background-color:rgba(242, 242, 242, 0.462745098039216);
  2111. border:none;
  2112. border-radius:0px;
  2113. -moz-box-shadow:none;
  2114. -webkit-box-shadow:none;
  2115. box-shadow:none;
  2116. }
  2117. #u227597 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:482px;
  2121. top:107px;
  2122. width:375px;
  2123. height:681px;
  2124. display:flex;
  2125. }
  2126. #u227597 .text {
  2127. position:absolute;
  2128. align-self:center;
  2129. padding:2px 2px 2px 2px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u227597_text {
  2134. border-width:0px;
  2135. word-wrap:break-word;
  2136. text-transform:none;
  2137. visibility:hidden;
  2138. }
  2139. #u227598 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:0px;
  2145. height:0px;
  2146. }
  2147. #u227599_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:24px;
  2153. height:24px;
  2154. }
  2155. #u227599 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:704px;
  2159. top:792px;
  2160. width:24px;
  2161. height:24px;
  2162. display:flex;
  2163. font-size:8px;
  2164. }
  2165. #u227599 .text {
  2166. position:absolute;
  2167. align-self:center;
  2168. padding:2px 2px 2px 2px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u227599_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. }
  2177. #u227600_div {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:37px;
  2183. height:17px;
  2184. background:inherit;
  2185. background-color:rgba(255, 255, 255, 0);
  2186. border:none;
  2187. border-radius:0px;
  2188. -moz-box-shadow:none;
  2189. -webkit-box-shadow:none;
  2190. box-shadow:none;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:12px;
  2195. }
  2196. #u227600 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:698px;
  2200. top:817px;
  2201. width:37px;
  2202. height:17px;
  2203. display:flex;
  2204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:12px;
  2208. }
  2209. #u227600 .text {
  2210. position:absolute;
  2211. align-self:flex-start;
  2212. padding:0px 0px 0px 0px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u227600_text {
  2217. border-width:0px;
  2218. white-space:nowrap;
  2219. text-transform:none;
  2220. }
  2221. #u227601 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:0px;
  2227. height:0px;
  2228. }
  2229. #u227602_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:24px;
  2235. height:24px;
  2236. }
  2237. #u227602 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:610px;
  2241. top:792px;
  2242. width:24px;
  2243. height:24px;
  2244. display:flex;
  2245. font-size:8px;
  2246. }
  2247. #u227602 .text {
  2248. position:absolute;
  2249. align-self:center;
  2250. padding:2px 2px 2px 2px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u227602_text {
  2255. border-width:0px;
  2256. word-wrap:break-word;
  2257. text-transform:none;
  2258. }
  2259. #u227603_div {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:37px;
  2265. height:17px;
  2266. background:inherit;
  2267. background-color:rgba(255, 255, 255, 0);
  2268. border:none;
  2269. border-radius:0px;
  2270. -moz-box-shadow:none;
  2271. -webkit-box-shadow:none;
  2272. box-shadow:none;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:12px;
  2277. }
  2278. #u227603 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:604px;
  2282. top:817px;
  2283. width:37px;
  2284. height:17px;
  2285. display:flex;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:12px;
  2290. }
  2291. #u227603 .text {
  2292. position:absolute;
  2293. align-self:flex-start;
  2294. padding:0px 0px 0px 0px;
  2295. box-sizing:border-box;
  2296. width:100%;
  2297. }
  2298. #u227603_text {
  2299. border-width:0px;
  2300. white-space:nowrap;
  2301. text-transform:none;
  2302. }
  2303. #u227604_div {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:375px;
  2309. height:740px;
  2310. background:inherit;
  2311. background-color:rgba(255, 255, 255, 1);
  2312. border:none;
  2313. border-top:0px;
  2314. border-radius:25px;
  2315. border-top-left-radius:0px;
  2316. border-top-right-radius:0px;
  2317. -moz-box-shadow:none;
  2318. -webkit-box-shadow:none;
  2319. box-shadow:none;
  2320. }
  2321. #u227604 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:482px;
  2325. top:105px;
  2326. width:375px;
  2327. height:740px;
  2328. display:flex;
  2329. }
  2330. #u227604 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:2px 2px 2px 2px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u227604_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. visibility:hidden;
  2342. }
  2343. #u227605 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:0px;
  2349. height:0px;
  2350. }
  2351. #u227606_img {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:11px;
  2357. height:18px;
  2358. }
  2359. #u227606 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:493px;
  2363. top:79px;
  2364. width:11px;
  2365. height:18px;
  2366. display:flex;
  2367. }
  2368. #u227606 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 2px 2px 2px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u227606_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. visibility:hidden;
  2380. }
  2381. #u227607_div {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:193px;
  2387. height:30px;
  2388. background:inherit;
  2389. background-color:rgba(255, 255, 255, 0);
  2390. border:none;
  2391. border-left:0px;
  2392. border-top:0px;
  2393. border-right:0px;
  2394. border-radius:0px;
  2395. border-bottom-right-radius:0px;
  2396. border-bottom-left-radius:0px;
  2397. -moz-box-shadow:none;
  2398. -webkit-box-shadow:none;
  2399. box-shadow:none;
  2400. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2401. font-weight:500;
  2402. font-style:normal;
  2403. line-height:30px;
  2404. }
  2405. #u227607 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:502px;
  2409. top:125px;
  2410. width:193px;
  2411. height:30px;
  2412. display:flex;
  2413. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2414. font-weight:500;
  2415. font-style:normal;
  2416. line-height:30px;
  2417. }
  2418. #u227607 .text {
  2419. position:absolute;
  2420. align-self:flex-start;
  2421. padding:0px 0px 0px 0px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u227607_text {
  2426. border-width:0px;
  2427. white-space:nowrap;
  2428. text-transform:none;
  2429. }
  2430. #u227608_div {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:375px;
  2436. height:80px;
  2437. background:inherit;
  2438. background-color:rgba(255, 255, 255, 1);
  2439. border:none;
  2440. border-top:0px;
  2441. border-radius:23px;
  2442. border-top-left-radius:0px;
  2443. border-top-right-radius:0px;
  2444. -moz-box-shadow:none;
  2445. -webkit-box-shadow:none;
  2446. box-shadow:none;
  2447. }
  2448. #u227608 {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:482px;
  2452. top:765px;
  2453. width:375px;
  2454. height:80px;
  2455. display:flex;
  2456. }
  2457. #u227608 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 2px 2px 2px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u227608_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. visibility:hidden;
  2469. }
  2470. #u227609 label {
  2471. left:0px;
  2472. width:100%;
  2473. }
  2474. #u227609_img {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:3px;
  2479. width:12px;
  2480. height:12px;
  2481. }
  2482. #u227609 {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:502px;
  2486. top:796px;
  2487. width:159px;
  2488. height:18px;
  2489. display:flex;
  2490. }
  2491. #u227609 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:0px 2px 0px 2px;
  2495. box-sizing:border-box;
  2496. }
  2497. #u227609_img.selected {
  2498. }
  2499. #u227609.selected {
  2500. }
  2501. #u227609_img.disabled {
  2502. }
  2503. #u227609.disabled {
  2504. }
  2505. #u227609_img.selectedDisabled {
  2506. }
  2507. #u227609.selectedDisabled {
  2508. }
  2509. #u227609_text {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:14px;
  2513. top:0px;
  2514. width:143px;
  2515. word-wrap:break-word;
  2516. text-transform:none;
  2517. }
  2518. #u227609_input {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:0px;
  2524. height:0px;
  2525. opacity:0;
  2526. }
  2527. #u227610_div {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:100px;
  2533. height:40px;
  2534. background:inherit;
  2535. background-color:rgba(24, 144, 255, 1);
  2536. box-sizing:border-box;
  2537. border-width:1px;
  2538. border-style:solid;
  2539. border-color:rgba(24, 144, 255, 1);
  2540. border-radius:19px;
  2541. -moz-box-shadow:none;
  2542. -webkit-box-shadow:none;
  2543. box-shadow:none;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:14px;
  2548. color:#FFFFFF;
  2549. text-align:center;
  2550. line-height:30px;
  2551. }
  2552. #u227610 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:725px;
  2556. top:785px;
  2557. width:100px;
  2558. height:40px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:14px;
  2564. color:#FFFFFF;
  2565. text-align:center;
  2566. line-height:30px;
  2567. }
  2568. #u227610 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:0px 0px 0px 0px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u227610_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. }
  2580. #u227611 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:0px;
  2586. height:0px;
  2587. }
  2588. #u227612_div {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:339px;
  2594. height:120px;
  2595. background:inherit;
  2596. background-color:rgba(255, 255, 255, 1);
  2597. box-sizing:border-box;
  2598. border-width:1px;
  2599. border-style:solid;
  2600. border-color:rgba(215, 215, 215, 1);
  2601. border-radius:4px;
  2602. -moz-box-shadow:none;
  2603. -webkit-box-shadow:none;
  2604. box-shadow:none;
  2605. }
  2606. #u227612 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:505px;
  2610. top:180px;
  2611. width:339px;
  2612. height:120px;
  2613. display:flex;
  2614. }
  2615. #u227612 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 2px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u227612_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. visibility:hidden;
  2627. }
  2628. #u227613_div {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:229px;
  2634. height:20px;
  2635. background:inherit;
  2636. background-color:rgba(255, 255, 255, 0);
  2637. border:none;
  2638. border-left:0px;
  2639. border-top:0px;
  2640. border-right:0px;
  2641. border-radius:0px;
  2642. border-bottom-right-radius:0px;
  2643. border-bottom-left-radius:0px;
  2644. -moz-box-shadow:none;
  2645. -webkit-box-shadow:none;
  2646. box-shadow:none;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:14px;
  2651. }
  2652. #u227613 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:525px;
  2656. top:200px;
  2657. width:229px;
  2658. height:20px;
  2659. display:flex;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:14px;
  2664. }
  2665. #u227613 .text {
  2666. position:absolute;
  2667. align-self:flex-start;
  2668. padding:0px 0px 0px 0px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u227613_text {
  2673. border-width:0px;
  2674. white-space:nowrap;
  2675. text-transform:none;
  2676. }
  2677. #u227614_div {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:108px;
  2683. height:33px;
  2684. background:inherit;
  2685. background-color:rgba(255, 255, 255, 0);
  2686. border:none;
  2687. border-left:0px;
  2688. border-top:0px;
  2689. border-right:0px;
  2690. border-radius:0px;
  2691. border-bottom-right-radius:0px;
  2692. border-bottom-left-radius:0px;
  2693. -moz-box-shadow:none;
  2694. -webkit-box-shadow:none;
  2695. box-shadow:none;
  2696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2697. font-style:normal;
  2698. }
  2699. #u227614 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:525px;
  2703. top:230px;
  2704. width:108px;
  2705. height:33px;
  2706. display:flex;
  2707. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2708. font-style:normal;
  2709. }
  2710. #u227614 .text {
  2711. position:absolute;
  2712. align-self:flex-start;
  2713. padding:0px 0px 0px 0px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u227614_text {
  2718. border-width:0px;
  2719. white-space:nowrap;
  2720. text-transform:none;
  2721. }
  2722. #u227615_div {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:0px;
  2727. width:145px;
  2728. height:17px;
  2729. background:inherit;
  2730. background-color:rgba(255, 255, 255, 0);
  2731. border:none;
  2732. border-left:0px;
  2733. border-top:0px;
  2734. border-right:0px;
  2735. border-radius:0px;
  2736. border-bottom-right-radius:0px;
  2737. border-bottom-left-radius:0px;
  2738. -moz-box-shadow:none;
  2739. -webkit-box-shadow:none;
  2740. box-shadow:none;
  2741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:12px;
  2745. color:#AAAAAA;
  2746. }
  2747. #u227615 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:525px;
  2751. top:273px;
  2752. width:145px;
  2753. height:17px;
  2754. display:flex;
  2755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2756. font-weight:400;
  2757. font-style:normal;
  2758. font-size:12px;
  2759. color:#AAAAAA;
  2760. }
  2761. #u227615 .text {
  2762. position:absolute;
  2763. align-self:flex-start;
  2764. padding:0px 0px 0px 0px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u227615_text {
  2769. border-width:0px;
  2770. white-space:nowrap;
  2771. text-transform:none;
  2772. }
  2773. #u227616_img {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:14px;
  2779. height:14px;
  2780. }
  2781. #u227616 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:811px;
  2785. top:206px;
  2786. width:14px;
  2787. height:14px;
  2788. display:flex;
  2789. }
  2790. #u227616 .text {
  2791. position:absolute;
  2792. align-self:center;
  2793. padding:2px 2px 2px 2px;
  2794. box-sizing:border-box;
  2795. width:100%;
  2796. }
  2797. #u227616_text {
  2798. border-width:0px;
  2799. word-wrap:break-word;
  2800. text-transform:none;
  2801. visibility:hidden;
  2802. }
  2803. #u227617 {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:0px;
  2809. height:0px;
  2810. }
  2811. #u227618_div {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:339px;
  2817. height:120px;
  2818. background:inherit;
  2819. background-color:rgba(255, 255, 255, 1);
  2820. box-sizing:border-box;
  2821. border-width:1px;
  2822. border-style:solid;
  2823. border-color:rgba(215, 215, 215, 1);
  2824. border-radius:4px;
  2825. -moz-box-shadow:none;
  2826. -webkit-box-shadow:none;
  2827. box-shadow:none;
  2828. }
  2829. #u227618 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:505px;
  2833. top:310px;
  2834. width:339px;
  2835. height:120px;
  2836. display:flex;
  2837. }
  2838. #u227618 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u227618_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u227619_div {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:183px;
  2857. height:20px;
  2858. background:inherit;
  2859. background-color:rgba(255, 255, 255, 0);
  2860. border:none;
  2861. border-left:0px;
  2862. border-top:0px;
  2863. border-right:0px;
  2864. border-radius:0px;
  2865. border-bottom-right-radius:0px;
  2866. border-bottom-left-radius:0px;
  2867. -moz-box-shadow:none;
  2868. -webkit-box-shadow:none;
  2869. box-shadow:none;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:14px;
  2874. }
  2875. #u227619 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:525px;
  2879. top:330px;
  2880. width:183px;
  2881. height:20px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:14px;
  2887. }
  2888. #u227619 .text {
  2889. position:absolute;
  2890. align-self:flex-start;
  2891. padding:0px 0px 0px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u227619_text {
  2896. border-width:0px;
  2897. white-space:nowrap;
  2898. text-transform:none;
  2899. }
  2900. #u227620_div {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:108px;
  2906. height:33px;
  2907. background:inherit;
  2908. background-color:rgba(255, 255, 255, 0);
  2909. border:none;
  2910. border-left:0px;
  2911. border-top:0px;
  2912. border-right:0px;
  2913. border-radius:0px;
  2914. border-bottom-right-radius:0px;
  2915. border-bottom-left-radius:0px;
  2916. -moz-box-shadow:none;
  2917. -webkit-box-shadow:none;
  2918. box-shadow:none;
  2919. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2920. font-style:normal;
  2921. }
  2922. #u227620 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:525px;
  2926. top:360px;
  2927. width:108px;
  2928. height:33px;
  2929. display:flex;
  2930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2931. font-style:normal;
  2932. }
  2933. #u227620 .text {
  2934. position:absolute;
  2935. align-self:flex-start;
  2936. padding:0px 0px 0px 0px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u227620_text {
  2941. border-width:0px;
  2942. white-space:nowrap;
  2943. text-transform:none;
  2944. }
  2945. #u227621_img {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:14px;
  2951. height:14px;
  2952. }
  2953. #u227621 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:811px;
  2957. top:336px;
  2958. width:14px;
  2959. height:14px;
  2960. display:flex;
  2961. }
  2962. #u227621 .text {
  2963. position:absolute;
  2964. align-self:center;
  2965. padding:2px 2px 2px 2px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u227621_text {
  2970. border-width:0px;
  2971. word-wrap:break-word;
  2972. text-transform:none;
  2973. visibility:hidden;
  2974. }
  2975. #u227622 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:0px;
  2981. height:0px;
  2982. }
  2983. #u227623_div {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:339px;
  2989. height:80px;
  2990. background:inherit;
  2991. background-color:rgba(255, 255, 255, 1);
  2992. box-sizing:border-box;
  2993. border-width:1px;
  2994. border-style:solid;
  2995. border-color:rgba(215, 215, 215, 1);
  2996. border-radius:4px;
  2997. -moz-box-shadow:none;
  2998. -webkit-box-shadow:none;
  2999. box-shadow:none;
  3000. }
  3001. #u227623 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:505px;
  3005. top:440px;
  3006. width:339px;
  3007. height:80px;
  3008. display:flex;
  3009. }
  3010. #u227623 .text {
  3011. position:absolute;
  3012. align-self:center;
  3013. padding:2px 2px 2px 2px;
  3014. box-sizing:border-box;
  3015. width:100%;
  3016. }
  3017. #u227623_text {
  3018. border-width:0px;
  3019. word-wrap:break-word;
  3020. text-transform:none;
  3021. visibility:hidden;
  3022. }
  3023. #u227624_div {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:43px;
  3029. height:20px;
  3030. background:inherit;
  3031. background-color:rgba(255, 255, 255, 0);
  3032. border:none;
  3033. border-left:0px;
  3034. border-top:0px;
  3035. border-right:0px;
  3036. border-radius:0px;
  3037. border-bottom-right-radius:0px;
  3038. border-bottom-left-radius:0px;
  3039. -moz-box-shadow:none;
  3040. -webkit-box-shadow:none;
  3041. box-shadow:none;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. }
  3047. #u227624 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:525px;
  3051. top:460px;
  3052. width:43px;
  3053. height:20px;
  3054. display:flex;
  3055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:14px;
  3059. }
  3060. #u227624 .text {
  3061. position:absolute;
  3062. align-self:flex-start;
  3063. padding:0px 0px 0px 0px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u227624_text {
  3068. border-width:0px;
  3069. white-space:nowrap;
  3070. text-transform:none;
  3071. }
  3072. #u227625_div {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:282px;
  3078. height:17px;
  3079. background:inherit;
  3080. background-color:rgba(255, 255, 255, 0);
  3081. border:none;
  3082. border-left:0px;
  3083. border-top:0px;
  3084. border-right:0px;
  3085. border-radius:0px;
  3086. border-bottom-right-radius:0px;
  3087. border-bottom-left-radius:0px;
  3088. -moz-box-shadow:none;
  3089. -webkit-box-shadow:none;
  3090. box-shadow:none;
  3091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3092. font-weight:400;
  3093. font-style:normal;
  3094. font-size:12px;
  3095. color:#AAAAAA;
  3096. }
  3097. #u227625 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:525px;
  3101. top:490px;
  3102. width:282px;
  3103. height:17px;
  3104. display:flex;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:12px;
  3109. color:#AAAAAA;
  3110. }
  3111. #u227625 .text {
  3112. position:absolute;
  3113. align-self:flex-start;
  3114. padding:0px 0px 0px 0px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u227625_text {
  3119. border-width:0px;
  3120. white-space:nowrap;
  3121. text-transform:none;
  3122. }
  3123. #u227626_img {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:14px;
  3129. height:14px;
  3130. }
  3131. #u227626 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:811px;
  3135. top:463px;
  3136. width:14px;
  3137. height:14px;
  3138. display:flex;
  3139. }
  3140. #u227626 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 2px 2px 2px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u227626_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. visibility:hidden;
  3152. }
  3153. #u227627_div {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:375px;
  3159. height:784px;
  3160. background:inherit;
  3161. background-color:rgba(0, 0, 0, 0.498039215686275);
  3162. border:none;
  3163. border-top:0px;
  3164. border-radius:22px;
  3165. border-top-left-radius:0px;
  3166. border-top-right-radius:0px;
  3167. -moz-box-shadow:none;
  3168. -webkit-box-shadow:none;
  3169. box-shadow:none;
  3170. }
  3171. #u227627 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:935px;
  3175. top:61px;
  3176. width:375px;
  3177. height:784px;
  3178. display:flex;
  3179. }
  3180. #u227627 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:2px 2px 2px 2px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u227627_text {
  3188. border-width:0px;
  3189. word-wrap:break-word;
  3190. text-transform:none;
  3191. visibility:hidden;
  3192. }
  3193. #u227628 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:0px;
  3199. height:0px;
  3200. }
  3201. #u227629_div {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:300px;
  3207. height:240px;
  3208. background:inherit;
  3209. background-color:rgba(255, 255, 255, 1);
  3210. border:none;
  3211. border-radius:10px;
  3212. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3213. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3214. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3215. }
  3216. #u227629 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:981px;
  3220. top:273px;
  3221. width:300px;
  3222. height:240px;
  3223. display:flex;
  3224. }
  3225. #u227629 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 2px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u227629_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u227630_div {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:120px;
  3244. height:30px;
  3245. background:inherit;
  3246. background-color:rgba(255, 255, 255, 0);
  3247. border:none;
  3248. border-left:0px;
  3249. border-top:0px;
  3250. border-right:0px;
  3251. border-radius:0px;
  3252. border-bottom-right-radius:0px;
  3253. border-bottom-left-radius:0px;
  3254. -moz-box-shadow:none;
  3255. -webkit-box-shadow:none;
  3256. box-shadow:none;
  3257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. text-align:center;
  3261. line-height:30px;
  3262. }
  3263. #u227630 {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:1082px;
  3267. top:289px;
  3268. width:120px;
  3269. height:30px;
  3270. display:flex;
  3271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. text-align:center;
  3275. line-height:30px;
  3276. }
  3277. #u227630 .text {
  3278. position:absolute;
  3279. align-self:flex-start;
  3280. padding:0px 0px 0px 0px;
  3281. box-sizing:border-box;
  3282. width:100%;
  3283. }
  3284. #u227630_text {
  3285. border-width:0px;
  3286. word-wrap:break-word;
  3287. text-transform:none;
  3288. }
  3289. #u227631_div {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:254px;
  3295. height:104px;
  3296. background:inherit;
  3297. background-color:rgba(255, 255, 255, 0);
  3298. border:none;
  3299. border-left:0px;
  3300. border-top:0px;
  3301. border-right:0px;
  3302. border-radius:0px;
  3303. border-bottom-right-radius:0px;
  3304. border-bottom-left-radius:0px;
  3305. -moz-box-shadow:none;
  3306. -webkit-box-shadow:none;
  3307. box-shadow:none;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:14px;
  3312. text-align:center;
  3313. line-height:26px;
  3314. }
  3315. #u227631 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:1004px;
  3319. top:331px;
  3320. width:254px;
  3321. height:104px;
  3322. display:flex;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:14px;
  3327. text-align:center;
  3328. line-height:26px;
  3329. }
  3330. #u227631 .text {
  3331. position:absolute;
  3332. align-self:flex-start;
  3333. padding:0px 0px 0px 0px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u227631_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. }
  3342. #u227632_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:301px;
  3348. height:2px;
  3349. }
  3350. #u227632 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:981px;
  3354. top:453px;
  3355. width:300px;
  3356. height:1px;
  3357. display:flex;
  3358. }
  3359. #u227632 .text {
  3360. position:absolute;
  3361. align-self:center;
  3362. padding:2px 2px 2px 2px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u227632_text {
  3367. border-width:0px;
  3368. word-wrap:break-word;
  3369. text-transform:none;
  3370. visibility:hidden;
  3371. }
  3372. #u227633_div {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:37px;
  3378. height:30px;
  3379. background:inherit;
  3380. background-color:rgba(255, 255, 255, 0);
  3381. border:none;
  3382. border-left:0px;
  3383. border-top:0px;
  3384. border-right:0px;
  3385. border-radius:0px;
  3386. border-bottom-right-radius:0px;
  3387. border-bottom-left-radius:0px;
  3388. -moz-box-shadow:none;
  3389. -webkit-box-shadow:none;
  3390. box-shadow:none;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:18px;
  3395. color:#1890FF;
  3396. text-align:center;
  3397. line-height:30px;
  3398. }
  3399. #u227633 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:1113px;
  3403. top:463px;
  3404. width:37px;
  3405. height:30px;
  3406. display:flex;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:18px;
  3411. color:#1890FF;
  3412. text-align:center;
  3413. line-height:30px;
  3414. }
  3415. #u227633 .text {
  3416. position:absolute;
  3417. align-self:flex-start;
  3418. padding:0px 0px 0px 0px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u227633_text {
  3423. border-width:0px;
  3424. white-space:nowrap;
  3425. text-transform:none;
  3426. }
  3427. #u227634_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:30px;
  3433. height:30px;
  3434. }
  3435. #u227634 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:1052px;
  3439. top:289px;
  3440. width:30px;
  3441. height:30px;
  3442. display:flex;
  3443. }
  3444. #u227634 .text {
  3445. position:absolute;
  3446. align-self:center;
  3447. padding:2px 2px 2px 2px;
  3448. box-sizing:border-box;
  3449. width:100%;
  3450. }
  3451. #u227634_text {
  3452. border-width:0px;
  3453. word-wrap:break-word;
  3454. text-transform:none;
  3455. visibility:hidden;
  3456. }
  3457. #u227635 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:0px;
  3463. height:0px;
  3464. }
  3465. #u227636_div {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:375px;
  3471. height:80px;
  3472. background:inherit;
  3473. background-color:rgba(255, 255, 255, 1);
  3474. border:none;
  3475. border-radius:0px;
  3476. -moz-box-shadow:none;
  3477. -webkit-box-shadow:none;
  3478. box-shadow:none;
  3479. }
  3480. #u227636 {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:29px;
  3484. top:301px;
  3485. width:375px;
  3486. height:80px;
  3487. display:flex;
  3488. }
  3489. #u227636 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 2px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u227636_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u227637_div {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:199px;
  3508. height:30px;
  3509. background:inherit;
  3510. background-color:rgba(255, 255, 255, 0);
  3511. border:none;
  3512. border-left:0px;
  3513. border-top:0px;
  3514. border-right:0px;
  3515. border-radius:0px;
  3516. border-bottom-right-radius:0px;
  3517. border-bottom-left-radius:0px;
  3518. -moz-box-shadow:none;
  3519. -webkit-box-shadow:none;
  3520. box-shadow:none;
  3521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:18px;
  3525. line-height:30px;
  3526. }
  3527. #u227637 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:49px;
  3531. top:311px;
  3532. width:199px;
  3533. height:30px;
  3534. display:flex;
  3535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:18px;
  3539. line-height:30px;
  3540. }
  3541. #u227637 .text {
  3542. position:absolute;
  3543. align-self:flex-start;
  3544. padding:0px 0px 0px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u227637_text {
  3549. border-width:0px;
  3550. white-space:nowrap;
  3551. text-transform:none;
  3552. }
  3553. #u227638_div {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:49px;
  3559. height:30px;
  3560. background:inherit;
  3561. background-color:rgba(255, 255, 255, 0);
  3562. border:none;
  3563. border-left:0px;
  3564. border-top:0px;
  3565. border-right:0px;
  3566. border-radius:0px;
  3567. border-bottom-right-radius:0px;
  3568. border-bottom-left-radius:0px;
  3569. -moz-box-shadow:none;
  3570. -webkit-box-shadow:none;
  3571. box-shadow:none;
  3572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. font-size:12px;
  3576. color:#AAAAAA;
  3577. line-height:30px;
  3578. }
  3579. #u227638 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:49px;
  3583. top:341px;
  3584. width:49px;
  3585. height:30px;
  3586. display:flex;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:12px;
  3591. color:#AAAAAA;
  3592. line-height:30px;
  3593. }
  3594. #u227638 .text {
  3595. position:absolute;
  3596. align-self:flex-start;
  3597. padding:0px 0px 0px 0px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u227638_text {
  3602. border-width:0px;
  3603. white-space:nowrap;
  3604. text-transform:none;
  3605. }
  3606. #u227639_img {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:14px;
  3612. height:14px;
  3613. }
  3614. #u227639 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:370px;
  3618. top:334px;
  3619. width:14px;
  3620. height:14px;
  3621. display:flex;
  3622. }
  3623. #u227639 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 2px 2px 2px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u227639_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. visibility:hidden;
  3635. }
  3636. #u227641_img {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:433px;
  3642. height:865px;
  3643. }
  3644. #u227641 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:1368px;
  3648. top:0px;
  3649. width:433px;
  3650. height:865px;
  3651. display:flex;
  3652. }
  3653. #u227641 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 2px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u227641_text {
  3661. border-width:0px;
  3662. word-wrap:break-word;
  3663. text-transform:none;
  3664. visibility:hidden;
  3665. }
  3666. #u227642_div {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:375px;
  3672. height:40px;
  3673. background:inherit;
  3674. background-color:rgba(255, 255, 255, 1);
  3675. box-sizing:border-box;
  3676. border-width:1px;
  3677. border-style:solid;
  3678. border-color:rgba(215, 215, 215, 1);
  3679. border-left:0px;
  3680. border-top:0px;
  3681. border-right:0px;
  3682. border-radius:0px;
  3683. border-bottom-right-radius:0px;
  3684. border-bottom-left-radius:0px;
  3685. -moz-box-shadow:none;
  3686. -webkit-box-shadow:none;
  3687. box-shadow:none;
  3688. }
  3689. #u227642 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:1397px;
  3693. top:67px;
  3694. width:375px;
  3695. height:40px;
  3696. display:flex;
  3697. }
  3698. #u227642 .text {
  3699. position:absolute;
  3700. align-self:center;
  3701. padding:2px 2px 2px 2px;
  3702. box-sizing:border-box;
  3703. width:100%;
  3704. }
  3705. #u227642_text {
  3706. border-width:0px;
  3707. word-wrap:break-word;
  3708. text-transform:none;
  3709. visibility:hidden;
  3710. }
  3711. #u227643 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:0px;
  3717. height:0px;
  3718. }
  3719. #u227644_div {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:88px;
  3725. height:32px;
  3726. background:inherit;
  3727. background-color:rgba(255, 255, 255, 1);
  3728. box-sizing:border-box;
  3729. border-width:1px;
  3730. border-style:solid;
  3731. border-color:rgba(242, 242, 242, 1);
  3732. border-radius:33px;
  3733. -moz-box-shadow:none;
  3734. -webkit-box-shadow:none;
  3735. box-shadow:none;
  3736. }
  3737. #u227644 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:1677px;
  3741. top:71px;
  3742. width:88px;
  3743. height:32px;
  3744. display:flex;
  3745. }
  3746. #u227644 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:2px 2px 2px 2px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u227644_text {
  3754. border-width:0px;
  3755. word-wrap:break-word;
  3756. text-transform:none;
  3757. visibility:hidden;
  3758. }
  3759. #u227645 {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:0px;
  3765. height:0px;
  3766. }
  3767. #u227646_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:18px;
  3773. height:18px;
  3774. }
  3775. #u227646 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:1740px;
  3779. top:78px;
  3780. width:18px;
  3781. height:18px;
  3782. display:flex;
  3783. }
  3784. #u227646 .text {
  3785. position:absolute;
  3786. align-self:center;
  3787. padding:2px 2px 2px 2px;
  3788. box-sizing:border-box;
  3789. width:100%;
  3790. }
  3791. #u227646_text {
  3792. border-width:0px;
  3793. word-wrap:break-word;
  3794. text-transform:none;
  3795. visibility:hidden;
  3796. }
  3797. #u227647_img {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:6px;
  3803. height:6px;
  3804. }
  3805. #u227647 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:1746px;
  3809. top:84px;
  3810. width:6px;
  3811. height:6px;
  3812. display:flex;
  3813. }
  3814. #u227647 .text {
  3815. position:absolute;
  3816. align-self:center;
  3817. padding:2px 2px 2px 2px;
  3818. box-sizing:border-box;
  3819. width:100%;
  3820. }
  3821. #u227647_text {
  3822. border-width:0px;
  3823. word-wrap:break-word;
  3824. text-transform:none;
  3825. visibility:hidden;
  3826. }
  3827. #u227648 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:0px;
  3833. height:0px;
  3834. }
  3835. #u227649_img {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:0px;
  3840. width:5px;
  3841. height:5px;
  3842. }
  3843. #u227649 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:1691px;
  3847. top:85px;
  3848. width:5px;
  3849. height:5px;
  3850. display:flex;
  3851. }
  3852. #u227649 .text {
  3853. position:absolute;
  3854. align-self:center;
  3855. padding:2px 2px 2px 2px;
  3856. box-sizing:border-box;
  3857. width:100%;
  3858. }
  3859. #u227649_text {
  3860. border-width:0px;
  3861. word-wrap:break-word;
  3862. text-transform:none;
  3863. visibility:hidden;
  3864. }
  3865. #u227650_img {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:5px;
  3871. height:5px;
  3872. }
  3873. #u227650 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:1707px;
  3877. top:85px;
  3878. width:5px;
  3879. height:5px;
  3880. display:flex;
  3881. }
  3882. #u227650 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 2px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u227650_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u227651_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:7px;
  3901. height:7px;
  3902. }
  3903. #u227651 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:1698px;
  3907. top:84px;
  3908. width:7px;
  3909. height:7px;
  3910. display:flex;
  3911. }
  3912. #u227651 .text {
  3913. position:absolute;
  3914. align-self:center;
  3915. padding:2px 2px 2px 2px;
  3916. box-sizing:border-box;
  3917. width:100%;
  3918. }
  3919. #u227651_text {
  3920. border-width:0px;
  3921. word-wrap:break-word;
  3922. text-transform:none;
  3923. visibility:hidden;
  3924. }
  3925. #u227652_img {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:19px;
  3931. height:2px;
  3932. }
  3933. #u227652 {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:1715px;
  3937. top:87px;
  3938. width:18px;
  3939. height:1px;
  3940. display:flex;
  3941. -webkit-transform:rotate(90deg);
  3942. -moz-transform:rotate(90deg);
  3943. -ms-transform:rotate(90deg);
  3944. transform:rotate(90deg);
  3945. }
  3946. #u227652 .text {
  3947. position:absolute;
  3948. align-self:center;
  3949. padding:2px 2px 2px 2px;
  3950. box-sizing:border-box;
  3951. width:100%;
  3952. }
  3953. #u227652_text {
  3954. border-width:0px;
  3955. word-wrap:break-word;
  3956. text-transform:none;
  3957. visibility:hidden;
  3958. }
  3959. #u227653_img {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:375px;
  3965. height:44px;
  3966. }
  3967. #u227653 {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:1397px;
  3971. top:24px;
  3972. width:375px;
  3973. height:44px;
  3974. display:flex;
  3975. }
  3976. #u227653 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:2px 2px 2px 2px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u227653_text {
  3984. border-width:0px;
  3985. word-wrap:break-word;
  3986. text-transform:none;
  3987. visibility:hidden;
  3988. }
  3989. #u227654_div {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:375px;
  3995. height:50px;
  3996. background:inherit;
  3997. background-color:rgba(255, 255, 255, 1);
  3998. box-sizing:border-box;
  3999. border-width:1px;
  4000. border-style:solid;
  4001. border-color:rgba(242, 242, 242, 1);
  4002. border-radius:26px;
  4003. border-top-left-radius:0px;
  4004. border-top-right-radius:0px;
  4005. -moz-box-shadow:none;
  4006. -webkit-box-shadow:none;
  4007. box-shadow:none;
  4008. }
  4009. #u227654 {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:1397px;
  4013. top:788px;
  4014. width:375px;
  4015. height:50px;
  4016. display:flex;
  4017. }
  4018. #u227654 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 2px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u227654_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u227655 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:0px;
  4037. height:0px;
  4038. }
  4039. #u227656_img {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:24px;
  4045. height:24px;
  4046. }
  4047. #u227656 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:1437px;
  4051. top:792px;
  4052. width:24px;
  4053. height:24px;
  4054. display:flex;
  4055. font-size:8px;
  4056. }
  4057. #u227656 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 2px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u227656_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. }
  4069. #u227657_div {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:0px;
  4073. top:0px;
  4074. width:25px;
  4075. height:17px;
  4076. background:inherit;
  4077. background-color:rgba(255, 255, 255, 0);
  4078. border:none;
  4079. border-radius:0px;
  4080. -moz-box-shadow:none;
  4081. -webkit-box-shadow:none;
  4082. box-shadow:none;
  4083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4084. font-weight:400;
  4085. font-style:normal;
  4086. font-size:12px;
  4087. }
  4088. #u227657 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:1437px;
  4092. top:817px;
  4093. width:25px;
  4094. height:17px;
  4095. display:flex;
  4096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:12px;
  4100. }
  4101. #u227657 .text {
  4102. position:absolute;
  4103. align-self:flex-start;
  4104. padding:0px 0px 0px 0px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u227657_text {
  4109. border-width:0px;
  4110. white-space:nowrap;
  4111. text-transform:none;
  4112. }
  4113. #u227658 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:0px;
  4119. height:0px;
  4120. }
  4121. #u227659_img {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:24px;
  4127. height:24px;
  4128. }
  4129. #u227659 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:1707px;
  4133. top:794px;
  4134. width:24px;
  4135. height:24px;
  4136. display:flex;
  4137. font-size:8px;
  4138. }
  4139. #u227659 .text {
  4140. position:absolute;
  4141. align-self:center;
  4142. padding:2px 2px 2px 2px;
  4143. box-sizing:border-box;
  4144. width:100%;
  4145. }
  4146. #u227659_text {
  4147. border-width:0px;
  4148. word-wrap:break-word;
  4149. text-transform:none;
  4150. }
  4151. #u227660_div {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:25px;
  4157. height:17px;
  4158. background:inherit;
  4159. background-color:rgba(255, 255, 255, 0);
  4160. border:none;
  4161. border-radius:0px;
  4162. -moz-box-shadow:none;
  4163. -webkit-box-shadow:none;
  4164. box-shadow:none;
  4165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:12px;
  4169. }
  4170. #u227660 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:1707px;
  4174. top:819px;
  4175. width:25px;
  4176. height:17px;
  4177. display:flex;
  4178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:12px;
  4182. }
  4183. #u227660 .text {
  4184. position:absolute;
  4185. align-self:flex-start;
  4186. padding:0px 0px 0px 0px;
  4187. box-sizing:border-box;
  4188. width:100%;
  4189. }
  4190. #u227660_text {
  4191. border-width:0px;
  4192. white-space:nowrap;
  4193. text-transform:none;
  4194. }
  4195. #u227661_div {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:375px;
  4201. height:681px;
  4202. background:inherit;
  4203. background-color:rgba(242, 242, 242, 0.462745098039216);
  4204. border:none;
  4205. border-radius:0px;
  4206. -moz-box-shadow:none;
  4207. -webkit-box-shadow:none;
  4208. box-shadow:none;
  4209. }
  4210. #u227661 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:1397px;
  4214. top:107px;
  4215. width:375px;
  4216. height:681px;
  4217. display:flex;
  4218. }
  4219. #u227661 .text {
  4220. position:absolute;
  4221. align-self:center;
  4222. padding:2px 2px 2px 2px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u227661_text {
  4227. border-width:0px;
  4228. word-wrap:break-word;
  4229. text-transform:none;
  4230. visibility:hidden;
  4231. }
  4232. #u227662 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:0px;
  4238. height:0px;
  4239. }
  4240. #u227663_img {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:24px;
  4246. height:24px;
  4247. }
  4248. #u227663 {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:1619px;
  4252. top:792px;
  4253. width:24px;
  4254. height:24px;
  4255. display:flex;
  4256. font-size:8px;
  4257. }
  4258. #u227663 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:2px 2px 2px 2px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u227663_text {
  4266. border-width:0px;
  4267. word-wrap:break-word;
  4268. text-transform:none;
  4269. }
  4270. #u227664_div {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:37px;
  4276. height:17px;
  4277. background:inherit;
  4278. background-color:rgba(255, 255, 255, 0);
  4279. border:none;
  4280. border-radius:0px;
  4281. -moz-box-shadow:none;
  4282. -webkit-box-shadow:none;
  4283. box-shadow:none;
  4284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. font-size:12px;
  4288. }
  4289. #u227664 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:1613px;
  4293. top:817px;
  4294. width:37px;
  4295. height:17px;
  4296. display:flex;
  4297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4298. font-weight:400;
  4299. font-style:normal;
  4300. font-size:12px;
  4301. }
  4302. #u227664 .text {
  4303. position:absolute;
  4304. align-self:flex-start;
  4305. padding:0px 0px 0px 0px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u227664_text {
  4310. border-width:0px;
  4311. white-space:nowrap;
  4312. text-transform:none;
  4313. }
  4314. #u227665 {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:0px;
  4320. height:0px;
  4321. }
  4322. #u227666_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:24px;
  4328. height:24px;
  4329. }
  4330. #u227666 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:1525px;
  4334. top:792px;
  4335. width:24px;
  4336. height:24px;
  4337. display:flex;
  4338. font-size:8px;
  4339. }
  4340. #u227666 .text {
  4341. position:absolute;
  4342. align-self:center;
  4343. padding:2px 2px 2px 2px;
  4344. box-sizing:border-box;
  4345. width:100%;
  4346. }
  4347. #u227666_text {
  4348. border-width:0px;
  4349. word-wrap:break-word;
  4350. text-transform:none;
  4351. }
  4352. #u227667_div {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:0px;
  4356. top:0px;
  4357. width:37px;
  4358. height:17px;
  4359. background:inherit;
  4360. background-color:rgba(255, 255, 255, 0);
  4361. border:none;
  4362. border-radius:0px;
  4363. -moz-box-shadow:none;
  4364. -webkit-box-shadow:none;
  4365. box-shadow:none;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:12px;
  4370. }
  4371. #u227667 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:1519px;
  4375. top:817px;
  4376. width:37px;
  4377. height:17px;
  4378. display:flex;
  4379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:12px;
  4383. }
  4384. #u227667 .text {
  4385. position:absolute;
  4386. align-self:flex-start;
  4387. padding:0px 0px 0px 0px;
  4388. box-sizing:border-box;
  4389. width:100%;
  4390. }
  4391. #u227667_text {
  4392. border-width:0px;
  4393. white-space:nowrap;
  4394. text-transform:none;
  4395. }
  4396. #u227668_div {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:0px;
  4400. top:0px;
  4401. width:375px;
  4402. height:740px;
  4403. background:inherit;
  4404. background-color:rgba(242, 242, 242, 1);
  4405. border:none;
  4406. border-top:0px;
  4407. border-radius:25px;
  4408. border-top-left-radius:0px;
  4409. border-top-right-radius:0px;
  4410. -moz-box-shadow:none;
  4411. -webkit-box-shadow:none;
  4412. box-shadow:none;
  4413. }
  4414. #u227668 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:1397px;
  4418. top:105px;
  4419. width:375px;
  4420. height:740px;
  4421. display:flex;
  4422. }
  4423. #u227668 .text {
  4424. position:absolute;
  4425. align-self:center;
  4426. padding:2px 2px 2px 2px;
  4427. box-sizing:border-box;
  4428. width:100%;
  4429. }
  4430. #u227668_text {
  4431. border-width:0px;
  4432. word-wrap:break-word;
  4433. text-transform:none;
  4434. visibility:hidden;
  4435. }
  4436. #u227669 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:0px;
  4442. height:0px;
  4443. }
  4444. #u227670_img {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:11px;
  4450. height:18px;
  4451. }
  4452. #u227670 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:1408px;
  4456. top:79px;
  4457. width:11px;
  4458. height:18px;
  4459. display:flex;
  4460. }
  4461. #u227670 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:2px 2px 2px 2px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u227670_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u227671_div {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:375px;
  4480. height:100px;
  4481. background:inherit;
  4482. background-color:rgba(183, 162, 138, 1);
  4483. border:none;
  4484. border-radius:0px;
  4485. -moz-box-shadow:none;
  4486. -webkit-box-shadow:none;
  4487. box-shadow:none;
  4488. }
  4489. #u227671 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:1397px;
  4493. top:105px;
  4494. width:375px;
  4495. height:100px;
  4496. display:flex;
  4497. }
  4498. #u227671 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 2px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u227671_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. visibility:hidden;
  4510. }
  4511. #u227672_div {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:145px;
  4517. height:30px;
  4518. background:inherit;
  4519. background-color:rgba(255, 255, 255, 0);
  4520. border:none;
  4521. border-left:0px;
  4522. border-top:0px;
  4523. border-right:0px;
  4524. border-radius:0px;
  4525. border-bottom-right-radius:0px;
  4526. border-bottom-left-radius:0px;
  4527. -moz-box-shadow:none;
  4528. -webkit-box-shadow:none;
  4529. box-shadow:none;
  4530. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4531. font-weight:500;
  4532. font-style:normal;
  4533. color:#FFFFFF;
  4534. line-height:30px;
  4535. }
  4536. #u227672 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:1417px;
  4540. top:120px;
  4541. width:145px;
  4542. height:30px;
  4543. display:flex;
  4544. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4545. font-weight:500;
  4546. font-style:normal;
  4547. color:#FFFFFF;
  4548. line-height:30px;
  4549. }
  4550. #u227672 .text {
  4551. position:absolute;
  4552. align-self:flex-start;
  4553. padding:0px 0px 0px 0px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u227672_text {
  4558. border-width:0px;
  4559. white-space:nowrap;
  4560. text-transform:none;
  4561. }
  4562. #u227673 {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:0px;
  4566. top:0px;
  4567. width:0px;
  4568. height:0px;
  4569. }
  4570. #u227674_div {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:15px;
  4576. height:15px;
  4577. background:inherit;
  4578. background-color:rgba(255, 255, 255, 1);
  4579. border:none;
  4580. border-radius:19px;
  4581. -moz-box-shadow:none;
  4582. -webkit-box-shadow:none;
  4583. box-shadow:none;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:12px;
  4588. color:#B7A28A;
  4589. text-align:center;
  4590. line-height:30px;
  4591. }
  4592. #u227674 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:1744px;
  4596. top:128px;
  4597. width:15px;
  4598. height:15px;
  4599. display:flex;
  4600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:12px;
  4604. color:#B7A28A;
  4605. text-align:center;
  4606. line-height:30px;
  4607. }
  4608. #u227674 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:0px 0px 0px 0px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u227674_text {
  4616. border-width:0px;
  4617. word-wrap:break-word;
  4618. text-transform:none;
  4619. visibility:hidden;
  4620. }
  4621. #u227675_div {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:13px;
  4627. height:17px;
  4628. background:inherit;
  4629. background-color:rgba(255, 255, 255, 0);
  4630. border:none;
  4631. border-radius:0px;
  4632. -moz-box-shadow:none;
  4633. -webkit-box-shadow:none;
  4634. box-shadow:none;
  4635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4636. font-weight:400;
  4637. font-style:normal;
  4638. font-size:12px;
  4639. color:#B7A28A;
  4640. text-align:center;
  4641. }
  4642. #u227675 {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:1748px;
  4646. top:127px;
  4647. width:13px;
  4648. height:17px;
  4649. display:flex;
  4650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:12px;
  4654. color:#B7A28A;
  4655. text-align:center;
  4656. }
  4657. #u227675 .text {
  4658. position:absolute;
  4659. align-self:flex-start;
  4660. padding:0px 0px 0px 0px;
  4661. box-sizing:border-box;
  4662. width:100%;
  4663. }
  4664. #u227675_text {
  4665. border-width:0px;
  4666. word-wrap:break-word;
  4667. text-transform:none;
  4668. }
  4669. #u227676_div {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:0px;
  4673. top:0px;
  4674. width:61px;
  4675. height:30px;
  4676. background:inherit;
  4677. background-color:rgba(255, 255, 255, 0);
  4678. border:none;
  4679. border-left:0px;
  4680. border-top:0px;
  4681. border-right:0px;
  4682. border-radius:0px;
  4683. border-bottom-right-radius:0px;
  4684. border-bottom-left-radius:0px;
  4685. -moz-box-shadow:none;
  4686. -webkit-box-shadow:none;
  4687. box-shadow:none;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:14px;
  4692. color:rgba(255, 255, 255, 0.6);
  4693. line-height:30px;
  4694. }
  4695. #u227676 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:1417px;
  4699. top:175px;
  4700. width:61px;
  4701. height:30px;
  4702. display:flex;
  4703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:14px;
  4707. color:rgba(255, 255, 255, 0.6);
  4708. line-height:30px;
  4709. }
  4710. #u227676 .text {
  4711. position:absolute;
  4712. align-self:flex-start;
  4713. padding:0px 0px 0px 0px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u227676_text {
  4718. border-width:0px;
  4719. white-space:nowrap;
  4720. text-transform:none;
  4721. }
  4722. #u227677_div {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:61px;
  4728. height:30px;
  4729. background:inherit;
  4730. background-color:rgba(255, 255, 255, 0);
  4731. border:none;
  4732. border-left:0px;
  4733. border-top:0px;
  4734. border-right:0px;
  4735. border-radius:0px;
  4736. border-bottom-right-radius:0px;
  4737. border-bottom-left-radius:0px;
  4738. -moz-box-shadow:none;
  4739. -webkit-box-shadow:none;
  4740. box-shadow:none;
  4741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:14px;
  4745. color:#FFFFFF;
  4746. line-height:30px;
  4747. }
  4748. #u227677 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:1505px;
  4752. top:175px;
  4753. width:61px;
  4754. height:30px;
  4755. display:flex;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:14px;
  4760. color:#FFFFFF;
  4761. line-height:30px;
  4762. }
  4763. #u227677 .text {
  4764. position:absolute;
  4765. align-self:flex-start;
  4766. padding:0px 0px 0px 0px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u227677_text {
  4771. border-width:0px;
  4772. white-space:nowrap;
  4773. text-transform:none;
  4774. }
  4775. #u227678_div {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:0px;
  4779. top:0px;
  4780. width:375px;
  4781. height:80px;
  4782. background:inherit;
  4783. background-color:rgba(255, 255, 255, 1);
  4784. border:none;
  4785. border-top:0px;
  4786. border-radius:23px;
  4787. border-top-left-radius:0px;
  4788. border-top-right-radius:0px;
  4789. -moz-box-shadow:none;
  4790. -webkit-box-shadow:none;
  4791. box-shadow:none;
  4792. }
  4793. #u227678 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:1397px;
  4797. top:765px;
  4798. width:375px;
  4799. height:80px;
  4800. display:flex;
  4801. }
  4802. #u227678 .text {
  4803. position:absolute;
  4804. align-self:center;
  4805. padding:2px 2px 2px 2px;
  4806. box-sizing:border-box;
  4807. width:100%;
  4808. }
  4809. #u227678_text {
  4810. border-width:0px;
  4811. word-wrap:break-word;
  4812. text-transform:none;
  4813. visibility:hidden;
  4814. }
  4815. #u227679_img {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:16px;
  4821. height:16px;
  4822. }
  4823. #u227679 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:1417px;
  4827. top:796px;
  4828. width:16px;
  4829. height:16px;
  4830. display:flex;
  4831. }
  4832. #u227679 .text {
  4833. position:absolute;
  4834. align-self:center;
  4835. padding:2px 2px 2px 2px;
  4836. box-sizing:border-box;
  4837. width:100%;
  4838. }
  4839. #u227679_text {
  4840. border-width:0px;
  4841. word-wrap:break-word;
  4842. text-transform:none;
  4843. visibility:hidden;
  4844. }
  4845. #u227680_div {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:29px;
  4851. height:30px;
  4852. background:inherit;
  4853. background-color:rgba(255, 255, 255, 0);
  4854. border:none;
  4855. border-left:0px;
  4856. border-top:0px;
  4857. border-right:0px;
  4858. border-radius:0px;
  4859. border-bottom-right-radius:0px;
  4860. border-bottom-left-radius:0px;
  4861. -moz-box-shadow:none;
  4862. -webkit-box-shadow:none;
  4863. box-shadow:none;
  4864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:14px;
  4868. color:#555555;
  4869. line-height:30px;
  4870. }
  4871. #u227680 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:1446px;
  4875. top:790px;
  4876. width:29px;
  4877. height:30px;
  4878. display:flex;
  4879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4880. font-weight:400;
  4881. font-style:normal;
  4882. font-size:14px;
  4883. color:#555555;
  4884. line-height:30px;
  4885. }
  4886. #u227680 .text {
  4887. position:absolute;
  4888. align-self:flex-start;
  4889. padding:0px 0px 0px 0px;
  4890. box-sizing:border-box;
  4891. width:100%;
  4892. }
  4893. #u227680_text {
  4894. border-width:0px;
  4895. white-space:nowrap;
  4896. text-transform:none;
  4897. }
  4898. #u227681_div {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:122px;
  4904. height:40px;
  4905. background:inherit;
  4906. background-color:rgba(24, 144, 255, 1);
  4907. box-sizing:border-box;
  4908. border-width:1px;
  4909. border-style:solid;
  4910. border-color:rgba(24, 144, 255, 1);
  4911. border-radius:19px;
  4912. -moz-box-shadow:none;
  4913. -webkit-box-shadow:none;
  4914. box-shadow:none;
  4915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4916. font-weight:400;
  4917. font-style:normal;
  4918. font-size:14px;
  4919. color:#FFFFFF;
  4920. text-align:center;
  4921. line-height:30px;
  4922. }
  4923. #u227681 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:1630px;
  4927. top:785px;
  4928. width:122px;
  4929. height:40px;
  4930. display:flex;
  4931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:14px;
  4935. color:#FFFFFF;
  4936. text-align:center;
  4937. line-height:30px;
  4938. }
  4939. #u227681 .text {
  4940. position:absolute;
  4941. align-self:center;
  4942. padding:0px 0px 0px 0px;
  4943. box-sizing:border-box;
  4944. width:100%;
  4945. }
  4946. #u227681_text {
  4947. border-width:0px;
  4948. word-wrap:break-word;
  4949. text-transform:none;
  4950. }
  4951. #u227682 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:0px;
  4957. height:0px;
  4958. }
  4959. #u227683_div {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:0px;
  4963. top:0px;
  4964. width:375px;
  4965. height:80px;
  4966. background:inherit;
  4967. background-color:rgba(255, 255, 255, 1);
  4968. border:none;
  4969. border-radius:0px;
  4970. -moz-box-shadow:none;
  4971. -webkit-box-shadow:none;
  4972. box-shadow:none;
  4973. }
  4974. #u227683 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:1397px;
  4978. top:215px;
  4979. width:375px;
  4980. height:80px;
  4981. display:flex;
  4982. }
  4983. #u227683 .text {
  4984. position:absolute;
  4985. align-self:center;
  4986. padding:2px 2px 2px 2px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u227683_text {
  4991. border-width:0px;
  4992. word-wrap:break-word;
  4993. text-transform:none;
  4994. visibility:hidden;
  4995. }
  4996. #u227684_div {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:206px;
  5002. height:30px;
  5003. background:inherit;
  5004. background-color:rgba(255, 255, 255, 0);
  5005. border:none;
  5006. border-left:0px;
  5007. border-top:0px;
  5008. border-right:0px;
  5009. border-radius:0px;
  5010. border-bottom-right-radius:0px;
  5011. border-bottom-left-radius:0px;
  5012. -moz-box-shadow:none;
  5013. -webkit-box-shadow:none;
  5014. box-shadow:none;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:18px;
  5019. line-height:30px;
  5020. }
  5021. #u227684 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:1417px;
  5025. top:225px;
  5026. width:206px;
  5027. height:30px;
  5028. display:flex;
  5029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:18px;
  5033. line-height:30px;
  5034. }
  5035. #u227684 .text {
  5036. position:absolute;
  5037. align-self:flex-start;
  5038. padding:0px 0px 0px 0px;
  5039. box-sizing:border-box;
  5040. width:100%;
  5041. }
  5042. #u227684_text {
  5043. border-width:0px;
  5044. white-space:nowrap;
  5045. text-transform:none;
  5046. }
  5047. #u227685_div {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:49px;
  5053. height:30px;
  5054. background:inherit;
  5055. background-color:rgba(255, 255, 255, 0);
  5056. border:none;
  5057. border-left:0px;
  5058. border-top:0px;
  5059. border-right:0px;
  5060. border-radius:0px;
  5061. border-bottom-right-radius:0px;
  5062. border-bottom-left-radius:0px;
  5063. -moz-box-shadow:none;
  5064. -webkit-box-shadow:none;
  5065. box-shadow:none;
  5066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:12px;
  5070. color:#AAAAAA;
  5071. line-height:30px;
  5072. }
  5073. #u227685 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:1417px;
  5077. top:255px;
  5078. width:49px;
  5079. height:30px;
  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. color:#AAAAAA;
  5086. line-height:30px;
  5087. }
  5088. #u227685 .text {
  5089. position:absolute;
  5090. align-self:flex-start;
  5091. padding:0px 0px 0px 0px;
  5092. box-sizing:border-box;
  5093. width:100%;
  5094. }
  5095. #u227685_text {
  5096. border-width:0px;
  5097. white-space:nowrap;
  5098. text-transform:none;
  5099. }
  5100. #u227686_img {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:14px;
  5106. height:14px;
  5107. }
  5108. #u227686 {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:1738px;
  5112. top:248px;
  5113. width:14px;
  5114. height:14px;
  5115. display:flex;
  5116. }
  5117. #u227686 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 2px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u227686_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. visibility:hidden;
  5129. }
  5130. #u227687 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:0px;
  5136. height:0px;
  5137. }
  5138. #u227688_div {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:375px;
  5144. height:80px;
  5145. background:inherit;
  5146. background-color:rgba(255, 255, 255, 1);
  5147. border:none;
  5148. border-radius:0px;
  5149. -moz-box-shadow:none;
  5150. -webkit-box-shadow:none;
  5151. box-shadow:none;
  5152. }
  5153. #u227688 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:1397px;
  5157. top:296px;
  5158. width:375px;
  5159. height:80px;
  5160. display:flex;
  5161. }
  5162. #u227688 .text {
  5163. position:absolute;
  5164. align-self:center;
  5165. padding:2px 2px 2px 2px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u227688_text {
  5170. border-width:0px;
  5171. word-wrap:break-word;
  5172. text-transform:none;
  5173. visibility:hidden;
  5174. }
  5175. #u227689_div {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:199px;
  5181. height:30px;
  5182. background:inherit;
  5183. background-color:rgba(255, 255, 255, 0);
  5184. border:none;
  5185. border-left:0px;
  5186. border-top:0px;
  5187. border-right:0px;
  5188. border-radius:0px;
  5189. border-bottom-right-radius:0px;
  5190. border-bottom-left-radius:0px;
  5191. -moz-box-shadow:none;
  5192. -webkit-box-shadow:none;
  5193. box-shadow:none;
  5194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:18px;
  5198. line-height:30px;
  5199. }
  5200. #u227689 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:1417px;
  5204. top:306px;
  5205. width:199px;
  5206. height:30px;
  5207. display:flex;
  5208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5209. font-weight:400;
  5210. font-style:normal;
  5211. font-size:18px;
  5212. line-height:30px;
  5213. }
  5214. #u227689 .text {
  5215. position:absolute;
  5216. align-self:flex-start;
  5217. padding:0px 0px 0px 0px;
  5218. box-sizing:border-box;
  5219. width:100%;
  5220. }
  5221. #u227689_text {
  5222. border-width:0px;
  5223. white-space:nowrap;
  5224. text-transform:none;
  5225. }
  5226. #u227690_div {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:49px;
  5232. height:30px;
  5233. background:inherit;
  5234. background-color:rgba(255, 255, 255, 0);
  5235. border:none;
  5236. border-left:0px;
  5237. border-top:0px;
  5238. border-right:0px;
  5239. border-radius:0px;
  5240. border-bottom-right-radius:0px;
  5241. border-bottom-left-radius:0px;
  5242. -moz-box-shadow:none;
  5243. -webkit-box-shadow:none;
  5244. box-shadow:none;
  5245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:12px;
  5249. color:#AAAAAA;
  5250. line-height:30px;
  5251. }
  5252. #u227690 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:1417px;
  5256. top:336px;
  5257. width:49px;
  5258. height:30px;
  5259. display:flex;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:12px;
  5264. color:#AAAAAA;
  5265. line-height:30px;
  5266. }
  5267. #u227690 .text {
  5268. position:absolute;
  5269. align-self:flex-start;
  5270. padding:0px 0px 0px 0px;
  5271. box-sizing:border-box;
  5272. width:100%;
  5273. }
  5274. #u227690_text {
  5275. border-width:0px;
  5276. white-space:nowrap;
  5277. text-transform:none;
  5278. }
  5279. #u227691_img {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:14px;
  5285. height:14px;
  5286. }
  5287. #u227691 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:1738px;
  5291. top:329px;
  5292. width:14px;
  5293. height:14px;
  5294. display:flex;
  5295. }
  5296. #u227691 .text {
  5297. position:absolute;
  5298. align-self:center;
  5299. padding:2px 2px 2px 2px;
  5300. box-sizing:border-box;
  5301. width:100%;
  5302. }
  5303. #u227691_text {
  5304. border-width:0px;
  5305. word-wrap:break-word;
  5306. text-transform:none;
  5307. visibility:hidden;
  5308. }
  5309. #u227692 {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:0px;
  5315. height:0px;
  5316. }
  5317. #u227693_div {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:300px;
  5323. height:201px;
  5324. background:inherit;
  5325. background-color:rgba(255, 255, 255, 1);
  5326. border:none;
  5327. border-radius:10px;
  5328. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5329. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5330. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5331. }
  5332. #u227693 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:1448px;
  5336. top:416px;
  5337. width:300px;
  5338. height:201px;
  5339. display:flex;
  5340. }
  5341. #u227693 .text {
  5342. position:absolute;
  5343. align-self:center;
  5344. padding:2px 2px 2px 2px;
  5345. box-sizing:border-box;
  5346. width:100%;
  5347. }
  5348. #u227693_text {
  5349. border-width:0px;
  5350. word-wrap:break-word;
  5351. text-transform:none;
  5352. visibility:hidden;
  5353. }
  5354. #u227694_div {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:193px;
  5360. height:30px;
  5361. background:inherit;
  5362. background-color:rgba(255, 255, 255, 0);
  5363. border:none;
  5364. border-left:0px;
  5365. border-top:0px;
  5366. border-right:0px;
  5367. border-radius:0px;
  5368. border-bottom-right-radius:0px;
  5369. border-bottom-left-radius:0px;
  5370. -moz-box-shadow:none;
  5371. -webkit-box-shadow:none;
  5372. box-shadow:none;
  5373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5374. font-weight:400;
  5375. font-style:normal;
  5376. text-align:center;
  5377. line-height:30px;
  5378. }
  5379. #u227694 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:1502px;
  5383. top:433px;
  5384. width:193px;
  5385. height:30px;
  5386. display:flex;
  5387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5388. font-weight:400;
  5389. font-style:normal;
  5390. text-align:center;
  5391. line-height:30px;
  5392. }
  5393. #u227694 .text {
  5394. position:absolute;
  5395. align-self:flex-start;
  5396. padding:0px 0px 0px 0px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u227694_text {
  5401. border-width:0px;
  5402. white-space:nowrap;
  5403. text-transform:none;
  5404. }
  5405. #u227695_div {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:254px;
  5411. height:78px;
  5412. background:inherit;
  5413. background-color:rgba(255, 255, 255, 0);
  5414. border:none;
  5415. border-left:0px;
  5416. border-top:0px;
  5417. border-right:0px;
  5418. border-radius:0px;
  5419. border-bottom-right-radius:0px;
  5420. border-bottom-left-radius:0px;
  5421. -moz-box-shadow:none;
  5422. -webkit-box-shadow:none;
  5423. box-shadow:none;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:14px;
  5428. color:#7F7F7F;
  5429. text-align:center;
  5430. line-height:26px;
  5431. }
  5432. #u227695 {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:1471px;
  5436. top:474px;
  5437. width:254px;
  5438. height:78px;
  5439. display:flex;
  5440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5441. font-weight:400;
  5442. font-style:normal;
  5443. font-size:14px;
  5444. color:#7F7F7F;
  5445. text-align:center;
  5446. line-height:26px;
  5447. }
  5448. #u227695 .text {
  5449. position:absolute;
  5450. align-self:flex-start;
  5451. padding:0px 0px 0px 0px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u227695_text {
  5456. border-width:0px;
  5457. word-wrap:break-word;
  5458. text-transform:none;
  5459. }
  5460. #u227696_img {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:301px;
  5466. height:2px;
  5467. }
  5468. #u227696 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:1448px;
  5472. top:566px;
  5473. width:300px;
  5474. height:1px;
  5475. display:flex;
  5476. }
  5477. #u227696 .text {
  5478. position:absolute;
  5479. align-self:center;
  5480. padding:2px 2px 2px 2px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u227696_text {
  5485. border-width:0px;
  5486. word-wrap:break-word;
  5487. text-transform:none;
  5488. visibility:hidden;
  5489. }
  5490. #u227697_div {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:37px;
  5496. height:30px;
  5497. background:inherit;
  5498. background-color:rgba(255, 255, 255, 0);
  5499. border:none;
  5500. border-left:0px;
  5501. border-top:0px;
  5502. border-right:0px;
  5503. border-radius:0px;
  5504. border-bottom-right-radius:0px;
  5505. border-bottom-left-radius:0px;
  5506. -moz-box-shadow:none;
  5507. -webkit-box-shadow:none;
  5508. box-shadow:none;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:18px;
  5513. color:#1890FF;
  5514. text-align:center;
  5515. line-height:30px;
  5516. }
  5517. #u227697 {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:1653px;
  5521. top:576px;
  5522. width:37px;
  5523. height:30px;
  5524. display:flex;
  5525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5526. font-weight:400;
  5527. font-style:normal;
  5528. font-size:18px;
  5529. color:#1890FF;
  5530. text-align:center;
  5531. line-height:30px;
  5532. }
  5533. #u227697 .text {
  5534. position:absolute;
  5535. align-self:flex-start;
  5536. padding:0px 0px 0px 0px;
  5537. box-sizing:border-box;
  5538. width:100%;
  5539. }
  5540. #u227697_text {
  5541. border-width:0px;
  5542. white-space:nowrap;
  5543. text-transform:none;
  5544. }
  5545. #u227698_div {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:37px;
  5551. height:30px;
  5552. background:inherit;
  5553. background-color:rgba(255, 255, 255, 0);
  5554. border:none;
  5555. border-left:0px;
  5556. border-top:0px;
  5557. border-right:0px;
  5558. border-radius:0px;
  5559. border-bottom-right-radius:0px;
  5560. border-bottom-left-radius:0px;
  5561. -moz-box-shadow:none;
  5562. -webkit-box-shadow:none;
  5563. box-shadow:none;
  5564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. font-size:18px;
  5568. color:#1890FF;
  5569. text-align:center;
  5570. line-height:30px;
  5571. }
  5572. #u227698 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:1506px;
  5576. top:576px;
  5577. width:37px;
  5578. height:30px;
  5579. display:flex;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:18px;
  5584. color:#1890FF;
  5585. text-align:center;
  5586. line-height:30px;
  5587. }
  5588. #u227698 .text {
  5589. position:absolute;
  5590. align-self:flex-start;
  5591. padding:0px 0px 0px 0px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u227698_text {
  5596. border-width:0px;
  5597. white-space:nowrap;
  5598. text-transform:none;
  5599. }
  5600. #u227699_img {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:2px;
  5606. height:49px;
  5607. }
  5608. #u227699 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:1597px;
  5612. top:569px;
  5613. width:1px;
  5614. height:48px;
  5615. display:flex;
  5616. }
  5617. #u227699 .text {
  5618. position:absolute;
  5619. align-self:center;
  5620. padding:2px 2px 2px 2px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u227699_text {
  5625. border-width:0px;
  5626. word-wrap:break-word;
  5627. text-transform:none;
  5628. visibility:hidden;
  5629. }
  5630. #u227700_div {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:217px;
  5636. height:30px;
  5637. background:inherit;
  5638. background-color:rgba(255, 255, 255, 0);
  5639. border:none;
  5640. border-left:0px;
  5641. border-top:0px;
  5642. border-right:0px;
  5643. border-radius:0px;
  5644. border-bottom-right-radius:0px;
  5645. border-bottom-left-radius:0px;
  5646. -moz-box-shadow:none;
  5647. -webkit-box-shadow:none;
  5648. box-shadow:none;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:18px;
  5653. line-height:30px;
  5654. }
  5655. #u227700 {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:98px;
  5659. top:475px;
  5660. width:217px;
  5661. height:30px;
  5662. display:flex;
  5663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:18px;
  5667. line-height:30px;
  5668. }
  5669. #u227700 .text {
  5670. position:absolute;
  5671. align-self:flex-start;
  5672. padding:0px 0px 0px 0px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u227700_text {
  5677. border-width:0px;
  5678. white-space:nowrap;
  5679. text-transform:none;
  5680. }