styles.css 108 KB

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