styles.css 108 KB

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