styles.css 105 KB

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