styles.css 103 KB

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