styles.css 161 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1802px;
  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. #u134234_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u134234 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u134234 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u134234_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u134235_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. #u134235 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u134235 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u134235_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u134236 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u134237_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. #u134237 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u134237 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u134237_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u134238 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u134239_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u134239 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u134239 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u134239_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u134240_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u134240 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u134240 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u134240_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u134241 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u134242_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u134242 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u134242 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u134242_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u134243_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u134243 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u134243 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u134243_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u134244_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u134244 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u134244 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u134244_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u134245_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u134245 {
  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. #u134245 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u134245_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u134246_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u134246 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u134246 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u134246_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u134247_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. #u134247 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u134247 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u134247_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u134248 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u134249_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u134249 {
  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. #u134249 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u134249_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u134250_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. #u134250 {
  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. #u134250 .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. #u134250_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u134251 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u134252_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u134252 {
  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. #u134252 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u134252_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u134253_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. #u134253 {
  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. #u134253 .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. #u134253_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u134254_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. #u134254 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u134254 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u134254_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u134255 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u134256_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u134256 {
  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. #u134256 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u134256_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u134257_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. #u134257 {
  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. #u134257 .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. #u134257_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u134258 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u134259_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u134259 {
  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. #u134259 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u134259_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u134260_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. #u134260 {
  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. #u134260 .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. #u134260_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u134261_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. #u134261 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u134261 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u134261_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u134262_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:57px;
  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. #u134262 {
  845. border-width:0px;
  846. position:absolute;
  847. left:188px;
  848. top:73px;
  849. width:57px;
  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. #u134262 .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. #u134262_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u134263 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u134264_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u134264 {
  887. border-width:0px;
  888. position:absolute;
  889. left:42px;
  890. top:79px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u134264 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u134264_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u134265_div {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:375px;
  914. height:110px;
  915. background:inherit;
  916. background-color:rgba(255, 255, 255, 1);
  917. border:none;
  918. border-left:0px;
  919. border-top:0px;
  920. border-right:0px;
  921. border-radius:0px;
  922. border-bottom-right-radius:0px;
  923. border-bottom-left-radius:0px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. }
  928. #u134265 {
  929. border-width:0px;
  930. position:absolute;
  931. left:29px;
  932. top:105px;
  933. width:375px;
  934. height:110px;
  935. display:flex;
  936. }
  937. #u134265 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u134265_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u134266 {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:0px;
  956. height:0px;
  957. }
  958. #u134267 {
  959. border-width:0px;
  960. position:absolute;
  961. left:0px;
  962. top:0px;
  963. width:0px;
  964. height:0px;
  965. }
  966. #u134268_div {
  967. border-width:0px;
  968. position:absolute;
  969. left:0px;
  970. top:0px;
  971. width:349px;
  972. height:30px;
  973. background:inherit;
  974. background-color:rgba(242, 242, 242, 0.545098039215686);
  975. border:none;
  976. border-radius:4px;
  977. -moz-box-shadow:none;
  978. -webkit-box-shadow:none;
  979. box-shadow:none;
  980. font-family:'Microsoft YaHei', sans-serif;
  981. font-weight:400;
  982. font-style:normal;
  983. font-size:14px;
  984. color:#CCCCCC;
  985. text-align:left;
  986. }
  987. #u134268 {
  988. border-width:0px;
  989. position:absolute;
  990. left:42px;
  991. top:121px;
  992. width:349px;
  993. height:30px;
  994. display:flex;
  995. font-family:'Microsoft YaHei', sans-serif;
  996. font-weight:400;
  997. font-style:normal;
  998. font-size:14px;
  999. color:#CCCCCC;
  1000. text-align:left;
  1001. }
  1002. #u134268 .text {
  1003. position:absolute;
  1004. align-self:center;
  1005. padding:2px 8px 2px 8px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u134268_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u134269_input {
  1016. position:absolute;
  1017. left:0px;
  1018. top:0px;
  1019. width:309px;
  1020. height:25px;
  1021. padding:2px 2px 2px 2px;
  1022. font-family:'Microsoft YaHei', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:10px;
  1026. letter-spacing:normal;
  1027. color:#000000;
  1028. vertical-align:none;
  1029. text-align:left;
  1030. text-transform:none;
  1031. background-color:transparent;
  1032. border-color:transparent;
  1033. }
  1034. #u134269_input.disabled {
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:309px;
  1039. height:25px;
  1040. padding:2px 2px 2px 2px;
  1041. font-family:'Microsoft YaHei', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:10px;
  1045. letter-spacing:normal;
  1046. color:#000000;
  1047. vertical-align:none;
  1048. text-align:left;
  1049. text-transform:none;
  1050. background-color:transparent;
  1051. border-color:transparent;
  1052. }
  1053. #u134269_div {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:0px;
  1057. top:0px;
  1058. width:309px;
  1059. height:25px;
  1060. background:inherit;
  1061. background-color:rgba(255, 255, 255, 0);
  1062. border:none;
  1063. border-radius:0px;
  1064. -moz-box-shadow:none;
  1065. -webkit-box-shadow:none;
  1066. box-shadow:none;
  1067. font-family:'Microsoft YaHei', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:10px;
  1071. }
  1072. #u134269 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:72px;
  1076. top:122px;
  1077. width:309px;
  1078. height:25px;
  1079. display:flex;
  1080. font-family:'Microsoft YaHei', sans-serif;
  1081. font-weight:400;
  1082. font-style:normal;
  1083. font-size:10px;
  1084. }
  1085. #u134269 .text {
  1086. position:absolute;
  1087. align-self:center;
  1088. padding:2px 2px 2px 2px;
  1089. box-sizing:border-box;
  1090. width:100%;
  1091. }
  1092. #u134269_div.disabled {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:309px;
  1098. height:25px;
  1099. background:inherit;
  1100. background-color:rgba(240, 240, 240, 1);
  1101. border:none;
  1102. border-radius:0px;
  1103. -moz-box-shadow:none;
  1104. -webkit-box-shadow:none;
  1105. box-shadow:none;
  1106. font-family:'Microsoft YaHei', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:10px;
  1110. }
  1111. #u134269.disabled {
  1112. }
  1113. #u134270_img {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:0px;
  1117. top:0px;
  1118. width:14px;
  1119. height:14px;
  1120. }
  1121. #u134270 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:52px;
  1125. top:128px;
  1126. width:14px;
  1127. height:14px;
  1128. display:flex;
  1129. }
  1130. #u134270 .text {
  1131. position:absolute;
  1132. align-self:center;
  1133. padding:2px 2px 2px 2px;
  1134. box-sizing:border-box;
  1135. width:100%;
  1136. }
  1137. #u134270_text {
  1138. border-width:0px;
  1139. word-wrap:break-word;
  1140. text-transform:none;
  1141. visibility:hidden;
  1142. }
  1143. #u134271_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:375px;
  1149. height:270px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 1);
  1152. border:none;
  1153. border-left:0px;
  1154. border-top:0px;
  1155. border-right:0px;
  1156. border-radius:0px;
  1157. border-bottom-right-radius:0px;
  1158. border-bottom-left-radius:0px;
  1159. -moz-box-shadow:none;
  1160. -webkit-box-shadow:none;
  1161. box-shadow:none;
  1162. }
  1163. #u134271 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:29px;
  1167. top:225px;
  1168. width:375px;
  1169. height:270px;
  1170. display:flex;
  1171. }
  1172. #u134271 .text {
  1173. position:absolute;
  1174. align-self:center;
  1175. padding:2px 2px 2px 2px;
  1176. box-sizing:border-box;
  1177. width:100%;
  1178. }
  1179. #u134271_text {
  1180. border-width:0px;
  1181. word-wrap:break-word;
  1182. text-transform:none;
  1183. visibility:hidden;
  1184. }
  1185. #u134272 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:0px;
  1191. height:0px;
  1192. }
  1193. #u134273_div {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:375px;
  1199. height:50px;
  1200. background:inherit;
  1201. background-color:rgba(255, 255, 255, 1);
  1202. border:none;
  1203. border-left:0px;
  1204. border-top:0px;
  1205. border-right:0px;
  1206. border-radius:0px;
  1207. border-bottom-right-radius:0px;
  1208. border-bottom-left-radius:0px;
  1209. -moz-box-shadow:none;
  1210. -webkit-box-shadow:none;
  1211. box-shadow:none;
  1212. }
  1213. #u134273 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:29px;
  1217. top:235px;
  1218. width:375px;
  1219. height:50px;
  1220. display:flex;
  1221. }
  1222. #u134273 .text {
  1223. position:absolute;
  1224. align-self:center;
  1225. padding:2px 2px 2px 2px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u134273_text {
  1230. border-width:0px;
  1231. word-wrap:break-word;
  1232. text-transform:none;
  1233. visibility:hidden;
  1234. }
  1235. #u134274_div {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:0px;
  1239. top:0px;
  1240. width:61px;
  1241. height:30px;
  1242. background:inherit;
  1243. background-color:rgba(255, 255, 255, 0);
  1244. border:none;
  1245. border-left:0px;
  1246. border-top:0px;
  1247. border-right:0px;
  1248. border-radius:0px;
  1249. border-bottom-right-radius:0px;
  1250. border-bottom-left-radius:0px;
  1251. -moz-box-shadow:none;
  1252. -webkit-box-shadow:none;
  1253. box-shadow:none;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:14px;
  1258. line-height:30px;
  1259. }
  1260. #u134274 {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:49px;
  1264. top:245px;
  1265. width:61px;
  1266. height:30px;
  1267. display:flex;
  1268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1269. font-weight:400;
  1270. font-style:normal;
  1271. font-size:14px;
  1272. line-height:30px;
  1273. }
  1274. #u134274 .text {
  1275. position:absolute;
  1276. align-self:flex-start;
  1277. padding:0px 0px 0px 0px;
  1278. box-sizing:border-box;
  1279. width:100%;
  1280. }
  1281. #u134274_text {
  1282. border-width:0px;
  1283. white-space:nowrap;
  1284. text-transform:none;
  1285. }
  1286. #u134275_img {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:8px;
  1292. height:13px;
  1293. }
  1294. #u134275 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:377px;
  1298. top:254px;
  1299. width:8px;
  1300. height:13px;
  1301. display:flex;
  1302. -webkit-transform:rotate(180deg);
  1303. -moz-transform:rotate(180deg);
  1304. -ms-transform:rotate(180deg);
  1305. transform:rotate(180deg);
  1306. }
  1307. #u134275 .text {
  1308. position:absolute;
  1309. align-self:center;
  1310. padding:2px 2px 2px 2px;
  1311. box-sizing:border-box;
  1312. width:100%;
  1313. }
  1314. #u134275_text {
  1315. border-width:0px;
  1316. word-wrap:break-word;
  1317. text-transform:none;
  1318. visibility:hidden;
  1319. }
  1320. #u134276 {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:0px;
  1326. height:0px;
  1327. }
  1328. #u134277_div {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:375px;
  1334. height:50px;
  1335. background:inherit;
  1336. background-color:rgba(255, 255, 255, 1);
  1337. border:none;
  1338. border-left:0px;
  1339. border-top:0px;
  1340. border-right:0px;
  1341. border-radius:0px;
  1342. border-bottom-right-radius:0px;
  1343. border-bottom-left-radius:0px;
  1344. -moz-box-shadow:none;
  1345. -webkit-box-shadow:none;
  1346. box-shadow:none;
  1347. }
  1348. #u134277 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:29px;
  1352. top:285px;
  1353. width:375px;
  1354. height:50px;
  1355. display:flex;
  1356. }
  1357. #u134277 .text {
  1358. position:absolute;
  1359. align-self:center;
  1360. padding:2px 2px 2px 2px;
  1361. box-sizing:border-box;
  1362. width:100%;
  1363. }
  1364. #u134277_text {
  1365. border-width:0px;
  1366. word-wrap:break-word;
  1367. text-transform:none;
  1368. visibility:hidden;
  1369. }
  1370. #u134278_div {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:61px;
  1376. height:30px;
  1377. background:inherit;
  1378. background-color:rgba(255, 255, 255, 0);
  1379. border:none;
  1380. border-left:0px;
  1381. border-top:0px;
  1382. border-right:0px;
  1383. border-radius:0px;
  1384. border-bottom-right-radius:0px;
  1385. border-bottom-left-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1390. font-weight:400;
  1391. font-style:normal;
  1392. font-size:14px;
  1393. line-height:30px;
  1394. }
  1395. #u134278 {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:50px;
  1399. top:295px;
  1400. width:61px;
  1401. height:30px;
  1402. display:flex;
  1403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1404. font-weight:400;
  1405. font-style:normal;
  1406. font-size:14px;
  1407. line-height:30px;
  1408. }
  1409. #u134278 .text {
  1410. position:absolute;
  1411. align-self:flex-start;
  1412. padding:0px 0px 0px 0px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u134278_text {
  1417. border-width:0px;
  1418. white-space:nowrap;
  1419. text-transform:none;
  1420. }
  1421. #u134279_img {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:0px;
  1425. top:0px;
  1426. width:8px;
  1427. height:13px;
  1428. }
  1429. #u134279 {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:377px;
  1433. top:304px;
  1434. width:8px;
  1435. height:13px;
  1436. display:flex;
  1437. -webkit-transform:rotate(180deg);
  1438. -moz-transform:rotate(180deg);
  1439. -ms-transform:rotate(180deg);
  1440. transform:rotate(180deg);
  1441. }
  1442. #u134279 .text {
  1443. position:absolute;
  1444. align-self:center;
  1445. padding:2px 2px 2px 2px;
  1446. box-sizing:border-box;
  1447. width:100%;
  1448. }
  1449. #u134279_text {
  1450. border-width:0px;
  1451. word-wrap:break-word;
  1452. text-transform:none;
  1453. visibility:hidden;
  1454. }
  1455. #u134280 {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:0px;
  1461. height:0px;
  1462. }
  1463. #u134281_div {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:0px;
  1467. top:0px;
  1468. width:375px;
  1469. height:50px;
  1470. background:inherit;
  1471. background-color:rgba(255, 255, 255, 1);
  1472. border:none;
  1473. border-left:0px;
  1474. border-top:0px;
  1475. border-right:0px;
  1476. border-radius:0px;
  1477. border-bottom-right-radius:0px;
  1478. border-bottom-left-radius:0px;
  1479. -moz-box-shadow:none;
  1480. -webkit-box-shadow:none;
  1481. box-shadow:none;
  1482. }
  1483. #u134281 {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:29px;
  1487. top:335px;
  1488. width:375px;
  1489. height:50px;
  1490. display:flex;
  1491. }
  1492. #u134281 .text {
  1493. position:absolute;
  1494. align-self:center;
  1495. padding:2px 2px 2px 2px;
  1496. box-sizing:border-box;
  1497. width:100%;
  1498. }
  1499. #u134281_text {
  1500. border-width:0px;
  1501. word-wrap:break-word;
  1502. text-transform:none;
  1503. visibility:hidden;
  1504. }
  1505. #u134282_div {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:0px;
  1509. top:0px;
  1510. width:43px;
  1511. height:30px;
  1512. background:inherit;
  1513. background-color:rgba(255, 255, 255, 0);
  1514. border:none;
  1515. border-left:0px;
  1516. border-top:0px;
  1517. border-right:0px;
  1518. border-radius:0px;
  1519. border-bottom-right-radius:0px;
  1520. border-bottom-left-radius:0px;
  1521. -moz-box-shadow:none;
  1522. -webkit-box-shadow:none;
  1523. box-shadow:none;
  1524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1525. font-weight:400;
  1526. font-style:normal;
  1527. font-size:14px;
  1528. line-height:30px;
  1529. }
  1530. #u134282 {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:49px;
  1534. top:345px;
  1535. width:43px;
  1536. height:30px;
  1537. display:flex;
  1538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. font-size:14px;
  1542. line-height:30px;
  1543. }
  1544. #u134282 .text {
  1545. position:absolute;
  1546. align-self:flex-start;
  1547. padding:0px 0px 0px 0px;
  1548. box-sizing:border-box;
  1549. width:100%;
  1550. }
  1551. #u134282_text {
  1552. border-width:0px;
  1553. white-space:nowrap;
  1554. text-transform:none;
  1555. }
  1556. #u134283_img {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:0px;
  1560. top:0px;
  1561. width:8px;
  1562. height:13px;
  1563. }
  1564. #u134283 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:377px;
  1568. top:354px;
  1569. width:8px;
  1570. height:13px;
  1571. display:flex;
  1572. -webkit-transform:rotate(180deg);
  1573. -moz-transform:rotate(180deg);
  1574. -ms-transform:rotate(180deg);
  1575. transform:rotate(180deg);
  1576. }
  1577. #u134283 .text {
  1578. position:absolute;
  1579. align-self:center;
  1580. padding:2px 2px 2px 2px;
  1581. box-sizing:border-box;
  1582. width:100%;
  1583. }
  1584. #u134283_text {
  1585. border-width:0px;
  1586. word-wrap:break-word;
  1587. text-transform:none;
  1588. visibility:hidden;
  1589. }
  1590. #u134284 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:0px;
  1596. height:0px;
  1597. }
  1598. #u134285_div {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:0px;
  1602. top:0px;
  1603. width:375px;
  1604. height:50px;
  1605. background:inherit;
  1606. background-color:rgba(255, 255, 255, 1);
  1607. border:none;
  1608. border-left:0px;
  1609. border-top:0px;
  1610. border-right:0px;
  1611. border-radius:0px;
  1612. border-bottom-right-radius:0px;
  1613. border-bottom-left-radius:0px;
  1614. -moz-box-shadow:none;
  1615. -webkit-box-shadow:none;
  1616. box-shadow:none;
  1617. }
  1618. #u134285 {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:29px;
  1622. top:385px;
  1623. width:375px;
  1624. height:50px;
  1625. display:flex;
  1626. }
  1627. #u134285 .text {
  1628. position:absolute;
  1629. align-self:center;
  1630. padding:2px 2px 2px 2px;
  1631. box-sizing:border-box;
  1632. width:100%;
  1633. }
  1634. #u134285_text {
  1635. border-width:0px;
  1636. word-wrap:break-word;
  1637. text-transform:none;
  1638. visibility:hidden;
  1639. }
  1640. #u134286_div {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:43px;
  1646. height:30px;
  1647. background:inherit;
  1648. background-color:rgba(255, 255, 255, 0);
  1649. border:none;
  1650. border-left:0px;
  1651. border-top:0px;
  1652. border-right:0px;
  1653. border-radius:0px;
  1654. border-bottom-right-radius:0px;
  1655. border-bottom-left-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1660. font-weight:400;
  1661. font-style:normal;
  1662. font-size:14px;
  1663. line-height:30px;
  1664. }
  1665. #u134286 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:49px;
  1669. top:395px;
  1670. width:43px;
  1671. height:30px;
  1672. display:flex;
  1673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. font-size:14px;
  1677. line-height:30px;
  1678. }
  1679. #u134286 .text {
  1680. position:absolute;
  1681. align-self:flex-start;
  1682. padding:0px 0px 0px 0px;
  1683. box-sizing:border-box;
  1684. width:100%;
  1685. }
  1686. #u134286_text {
  1687. border-width:0px;
  1688. white-space:nowrap;
  1689. text-transform:none;
  1690. }
  1691. #u134287_img {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:8px;
  1697. height:13px;
  1698. }
  1699. #u134287 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:377px;
  1703. top:404px;
  1704. width:8px;
  1705. height:13px;
  1706. display:flex;
  1707. -webkit-transform:rotate(180deg);
  1708. -moz-transform:rotate(180deg);
  1709. -ms-transform:rotate(180deg);
  1710. transform:rotate(180deg);
  1711. }
  1712. #u134287 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:2px 2px 2px 2px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u134287_text {
  1720. border-width:0px;
  1721. word-wrap:break-word;
  1722. text-transform:none;
  1723. visibility:hidden;
  1724. }
  1725. #u134288 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:0px;
  1729. top:0px;
  1730. width:0px;
  1731. height:0px;
  1732. }
  1733. #u134289_div {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:375px;
  1739. height:50px;
  1740. background:inherit;
  1741. background-color:rgba(255, 255, 255, 1);
  1742. border:none;
  1743. border-left:0px;
  1744. border-top:0px;
  1745. border-right:0px;
  1746. border-radius:0px;
  1747. border-bottom-right-radius:0px;
  1748. border-bottom-left-radius:0px;
  1749. -moz-box-shadow:none;
  1750. -webkit-box-shadow:none;
  1751. box-shadow:none;
  1752. }
  1753. #u134289 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:29px;
  1757. top:435px;
  1758. width:375px;
  1759. height:50px;
  1760. display:flex;
  1761. }
  1762. #u134289 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 2px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u134289_text {
  1770. border-width:0px;
  1771. word-wrap:break-word;
  1772. text-transform:none;
  1773. visibility:hidden;
  1774. }
  1775. #u134290_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:43px;
  1781. height:30px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 0);
  1784. border:none;
  1785. border-left:0px;
  1786. border-top:0px;
  1787. border-right:0px;
  1788. border-radius:0px;
  1789. border-bottom-right-radius:0px;
  1790. border-bottom-left-radius:0px;
  1791. -moz-box-shadow:none;
  1792. -webkit-box-shadow:none;
  1793. box-shadow:none;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:14px;
  1798. line-height:30px;
  1799. }
  1800. #u134290 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:49px;
  1804. top:445px;
  1805. width:43px;
  1806. height:30px;
  1807. display:flex;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. line-height:30px;
  1813. }
  1814. #u134290 .text {
  1815. position:absolute;
  1816. align-self:flex-start;
  1817. padding:0px 0px 0px 0px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u134290_text {
  1822. border-width:0px;
  1823. white-space:nowrap;
  1824. text-transform:none;
  1825. }
  1826. #u134291_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:8px;
  1832. height:13px;
  1833. }
  1834. #u134291 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:377px;
  1838. top:454px;
  1839. width:8px;
  1840. height:13px;
  1841. display:flex;
  1842. -webkit-transform:rotate(180deg);
  1843. -moz-transform:rotate(180deg);
  1844. -ms-transform:rotate(180deg);
  1845. transform:rotate(180deg);
  1846. }
  1847. #u134291 .text {
  1848. position:absolute;
  1849. align-self:center;
  1850. padding:2px 2px 2px 2px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u134291_text {
  1855. border-width:0px;
  1856. word-wrap:break-word;
  1857. text-transform:none;
  1858. visibility:hidden;
  1859. }
  1860. #u134292_div {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:155px;
  1866. height:30px;
  1867. background:inherit;
  1868. background-color:rgba(255, 255, 255, 0);
  1869. border:none;
  1870. border-left:0px;
  1871. border-top:0px;
  1872. border-right:0px;
  1873. border-radius:0px;
  1874. border-bottom-right-radius:0px;
  1875. border-bottom-left-radius:0px;
  1876. -moz-box-shadow:none;
  1877. -webkit-box-shadow:none;
  1878. box-shadow:none;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:14px;
  1883. line-height:30px;
  1884. }
  1885. #u134292 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:42px;
  1889. top:171px;
  1890. width:155px;
  1891. height:30px;
  1892. display:flex;
  1893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:14px;
  1897. line-height:30px;
  1898. }
  1899. #u134292 .text {
  1900. position:absolute;
  1901. align-self:flex-start;
  1902. padding:0px 0px 0px 0px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u134292_text {
  1907. border-width:0px;
  1908. white-space:nowrap;
  1909. text-transform:none;
  1910. }
  1911. #u134294_img {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:433px;
  1917. height:865px;
  1918. }
  1919. #u134294 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:453px;
  1923. top:0px;
  1924. width:433px;
  1925. height:865px;
  1926. display:flex;
  1927. }
  1928. #u134294 .text {
  1929. position:absolute;
  1930. align-self:center;
  1931. padding:2px 2px 2px 2px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u134294_text {
  1936. border-width:0px;
  1937. word-wrap:break-word;
  1938. text-transform:none;
  1939. visibility:hidden;
  1940. }
  1941. #u134295_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:375px;
  1947. height:40px;
  1948. background:inherit;
  1949. background-color:rgba(255, 255, 255, 1);
  1950. box-sizing:border-box;
  1951. border-width:1px;
  1952. border-style:solid;
  1953. border-color:rgba(215, 215, 215, 1);
  1954. border-left:0px;
  1955. border-top:0px;
  1956. border-right:0px;
  1957. border-radius:0px;
  1958. border-bottom-right-radius:0px;
  1959. border-bottom-left-radius:0px;
  1960. -moz-box-shadow:none;
  1961. -webkit-box-shadow:none;
  1962. box-shadow:none;
  1963. }
  1964. #u134295 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:482px;
  1968. top:67px;
  1969. width:375px;
  1970. height:40px;
  1971. display:flex;
  1972. }
  1973. #u134295 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u134295_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. visibility:hidden;
  1985. }
  1986. #u134296 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:0px;
  1992. height:0px;
  1993. }
  1994. #u134297_div {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:88px;
  2000. height:32px;
  2001. background:inherit;
  2002. background-color:rgba(255, 255, 255, 1);
  2003. box-sizing:border-box;
  2004. border-width:1px;
  2005. border-style:solid;
  2006. border-color:rgba(242, 242, 242, 1);
  2007. border-radius:33px;
  2008. -moz-box-shadow:none;
  2009. -webkit-box-shadow:none;
  2010. box-shadow:none;
  2011. }
  2012. #u134297 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:762px;
  2016. top:71px;
  2017. width:88px;
  2018. height:32px;
  2019. display:flex;
  2020. }
  2021. #u134297 .text {
  2022. position:absolute;
  2023. align-self:center;
  2024. padding:2px 2px 2px 2px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u134297_text {
  2029. border-width:0px;
  2030. word-wrap:break-word;
  2031. text-transform:none;
  2032. visibility:hidden;
  2033. }
  2034. #u134298 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:0px;
  2040. height:0px;
  2041. }
  2042. #u134299_img {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:18px;
  2048. height:18px;
  2049. }
  2050. #u134299 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:825px;
  2054. top:78px;
  2055. width:18px;
  2056. height:18px;
  2057. display:flex;
  2058. }
  2059. #u134299 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 2px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u134299_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. visibility:hidden;
  2071. }
  2072. #u134300_img {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:0px;
  2076. top:0px;
  2077. width:6px;
  2078. height:6px;
  2079. }
  2080. #u134300 {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:831px;
  2084. top:84px;
  2085. width:6px;
  2086. height:6px;
  2087. display:flex;
  2088. }
  2089. #u134300 .text {
  2090. position:absolute;
  2091. align-self:center;
  2092. padding:2px 2px 2px 2px;
  2093. box-sizing:border-box;
  2094. width:100%;
  2095. }
  2096. #u134300_text {
  2097. border-width:0px;
  2098. word-wrap:break-word;
  2099. text-transform:none;
  2100. visibility:hidden;
  2101. }
  2102. #u134301 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:0px;
  2108. height:0px;
  2109. }
  2110. #u134302_img {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:5px;
  2116. height:5px;
  2117. }
  2118. #u134302 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:776px;
  2122. top:85px;
  2123. width:5px;
  2124. height:5px;
  2125. display:flex;
  2126. }
  2127. #u134302 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 2px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u134302_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. visibility:hidden;
  2139. }
  2140. #u134303_img {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:5px;
  2146. height:5px;
  2147. }
  2148. #u134303 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:792px;
  2152. top:85px;
  2153. width:5px;
  2154. height:5px;
  2155. display:flex;
  2156. }
  2157. #u134303 .text {
  2158. position:absolute;
  2159. align-self:center;
  2160. padding:2px 2px 2px 2px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u134303_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. visibility:hidden;
  2169. }
  2170. #u134304_img {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:7px;
  2176. height:7px;
  2177. }
  2178. #u134304 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:783px;
  2182. top:84px;
  2183. width:7px;
  2184. height:7px;
  2185. display:flex;
  2186. }
  2187. #u134304 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:2px 2px 2px 2px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u134304_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. visibility:hidden;
  2199. }
  2200. #u134305_img {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:19px;
  2206. height:2px;
  2207. }
  2208. #u134305 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:800px;
  2212. top:87px;
  2213. width:18px;
  2214. height:1px;
  2215. display:flex;
  2216. -webkit-transform:rotate(90deg);
  2217. -moz-transform:rotate(90deg);
  2218. -ms-transform:rotate(90deg);
  2219. transform:rotate(90deg);
  2220. }
  2221. #u134305 .text {
  2222. position:absolute;
  2223. align-self:center;
  2224. padding:2px 2px 2px 2px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u134305_text {
  2229. border-width:0px;
  2230. word-wrap:break-word;
  2231. text-transform:none;
  2232. visibility:hidden;
  2233. }
  2234. #u134306_img {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:375px;
  2240. height:44px;
  2241. }
  2242. #u134306 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:482px;
  2246. top:24px;
  2247. width:375px;
  2248. height:44px;
  2249. display:flex;
  2250. }
  2251. #u134306 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u134306_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u134307_div {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:375px;
  2270. height:50px;
  2271. background:inherit;
  2272. background-color:rgba(255, 255, 255, 1);
  2273. box-sizing:border-box;
  2274. border-width:1px;
  2275. border-style:solid;
  2276. border-color:rgba(242, 242, 242, 1);
  2277. border-radius:26px;
  2278. border-top-left-radius:0px;
  2279. border-top-right-radius:0px;
  2280. -moz-box-shadow:none;
  2281. -webkit-box-shadow:none;
  2282. box-shadow:none;
  2283. }
  2284. #u134307 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:482px;
  2288. top:788px;
  2289. width:375px;
  2290. height:50px;
  2291. display:flex;
  2292. }
  2293. #u134307 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 2px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u134307_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u134308 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:0px;
  2312. height:0px;
  2313. }
  2314. #u134309_img {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:24px;
  2320. height:24px;
  2321. }
  2322. #u134309 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:522px;
  2326. top:792px;
  2327. width:24px;
  2328. height:24px;
  2329. display:flex;
  2330. font-size:8px;
  2331. }
  2332. #u134309 .text {
  2333. position:absolute;
  2334. align-self:center;
  2335. padding:2px 2px 2px 2px;
  2336. box-sizing:border-box;
  2337. width:100%;
  2338. }
  2339. #u134309_text {
  2340. border-width:0px;
  2341. word-wrap:break-word;
  2342. text-transform:none;
  2343. }
  2344. #u134310_div {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:25px;
  2350. height:17px;
  2351. background:inherit;
  2352. background-color:rgba(255, 255, 255, 0);
  2353. border:none;
  2354. border-radius:0px;
  2355. -moz-box-shadow:none;
  2356. -webkit-box-shadow:none;
  2357. box-shadow:none;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. }
  2363. #u134310 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:522px;
  2367. top:817px;
  2368. width:25px;
  2369. height:17px;
  2370. display:flex;
  2371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2372. font-weight:400;
  2373. font-style:normal;
  2374. font-size:12px;
  2375. }
  2376. #u134310 .text {
  2377. position:absolute;
  2378. align-self:flex-start;
  2379. padding:0px 0px 0px 0px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u134310_text {
  2384. border-width:0px;
  2385. white-space:nowrap;
  2386. text-transform:none;
  2387. }
  2388. #u134311 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:0px;
  2394. height:0px;
  2395. }
  2396. #u134312_img {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:24px;
  2402. height:24px;
  2403. }
  2404. #u134312 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:792px;
  2408. top:794px;
  2409. width:24px;
  2410. height:24px;
  2411. display:flex;
  2412. font-size:8px;
  2413. }
  2414. #u134312 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 2px 2px 2px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u134312_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. }
  2426. #u134313_div {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:25px;
  2432. height:17px;
  2433. background:inherit;
  2434. background-color:rgba(255, 255, 255, 0);
  2435. border:none;
  2436. border-radius:0px;
  2437. -moz-box-shadow:none;
  2438. -webkit-box-shadow:none;
  2439. box-shadow:none;
  2440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2441. font-weight:400;
  2442. font-style:normal;
  2443. font-size:12px;
  2444. }
  2445. #u134313 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:792px;
  2449. top:819px;
  2450. width:25px;
  2451. height:17px;
  2452. display:flex;
  2453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2454. font-weight:400;
  2455. font-style:normal;
  2456. font-size:12px;
  2457. }
  2458. #u134313 .text {
  2459. position:absolute;
  2460. align-self:flex-start;
  2461. padding:0px 0px 0px 0px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u134313_text {
  2466. border-width:0px;
  2467. white-space:nowrap;
  2468. text-transform:none;
  2469. }
  2470. #u134314_div {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:375px;
  2476. height:681px;
  2477. background:inherit;
  2478. background-color:rgba(242, 242, 242, 0.462745098039216);
  2479. border:none;
  2480. border-radius:0px;
  2481. -moz-box-shadow:none;
  2482. -webkit-box-shadow:none;
  2483. box-shadow:none;
  2484. }
  2485. #u134314 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:482px;
  2489. top:107px;
  2490. width:375px;
  2491. height:681px;
  2492. display:flex;
  2493. }
  2494. #u134314 .text {
  2495. position:absolute;
  2496. align-self:center;
  2497. padding:2px 2px 2px 2px;
  2498. box-sizing:border-box;
  2499. width:100%;
  2500. }
  2501. #u134314_text {
  2502. border-width:0px;
  2503. word-wrap:break-word;
  2504. text-transform:none;
  2505. visibility:hidden;
  2506. }
  2507. #u134315 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:0px;
  2513. height:0px;
  2514. }
  2515. #u134316_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:24px;
  2521. height:24px;
  2522. }
  2523. #u134316 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:704px;
  2527. top:792px;
  2528. width:24px;
  2529. height:24px;
  2530. display:flex;
  2531. font-size:8px;
  2532. }
  2533. #u134316 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 2px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u134316_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. }
  2545. #u134317_div {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:37px;
  2551. height:17px;
  2552. background:inherit;
  2553. background-color:rgba(255, 255, 255, 0);
  2554. border:none;
  2555. border-radius:0px;
  2556. -moz-box-shadow:none;
  2557. -webkit-box-shadow:none;
  2558. box-shadow:none;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:12px;
  2563. }
  2564. #u134317 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:698px;
  2568. top:817px;
  2569. width:37px;
  2570. height:17px;
  2571. display:flex;
  2572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:12px;
  2576. }
  2577. #u134317 .text {
  2578. position:absolute;
  2579. align-self:flex-start;
  2580. padding:0px 0px 0px 0px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u134317_text {
  2585. border-width:0px;
  2586. white-space:nowrap;
  2587. text-transform:none;
  2588. }
  2589. #u134318 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:0px;
  2595. height:0px;
  2596. }
  2597. #u134319_img {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:24px;
  2603. height:24px;
  2604. }
  2605. #u134319 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:610px;
  2609. top:792px;
  2610. width:24px;
  2611. height:24px;
  2612. display:flex;
  2613. font-size:8px;
  2614. }
  2615. #u134319 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 2px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u134319_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. }
  2627. #u134320_div {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:37px;
  2633. height:17px;
  2634. background:inherit;
  2635. background-color:rgba(255, 255, 255, 0);
  2636. border:none;
  2637. border-radius:0px;
  2638. -moz-box-shadow:none;
  2639. -webkit-box-shadow:none;
  2640. box-shadow:none;
  2641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2642. font-weight:400;
  2643. font-style:normal;
  2644. font-size:12px;
  2645. }
  2646. #u134320 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:604px;
  2650. top:817px;
  2651. width:37px;
  2652. height:17px;
  2653. display:flex;
  2654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:12px;
  2658. }
  2659. #u134320 .text {
  2660. position:absolute;
  2661. align-self:flex-start;
  2662. padding:0px 0px 0px 0px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u134320_text {
  2667. border-width:0px;
  2668. white-space:nowrap;
  2669. text-transform:none;
  2670. }
  2671. #u134321_div {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:375px;
  2677. height:735px;
  2678. background:inherit;
  2679. background-color:rgba(242, 242, 242, 1);
  2680. border:none;
  2681. border-top:0px;
  2682. border-radius:25px;
  2683. border-top-left-radius:0px;
  2684. border-top-right-radius:0px;
  2685. -moz-box-shadow:none;
  2686. -webkit-box-shadow:none;
  2687. box-shadow:none;
  2688. }
  2689. #u134321 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:482px;
  2693. top:105px;
  2694. width:375px;
  2695. height:735px;
  2696. display:flex;
  2697. }
  2698. #u134321 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 2px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u134321_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. visibility:hidden;
  2710. }
  2711. #u134322_div {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:57px;
  2717. height:30px;
  2718. background:inherit;
  2719. background-color:rgba(255, 255, 255, 0);
  2720. border:none;
  2721. border-left:0px;
  2722. border-top:0px;
  2723. border-right:0px;
  2724. border-radius:0px;
  2725. border-bottom-right-radius:0px;
  2726. border-bottom-left-radius:0px;
  2727. -moz-box-shadow:none;
  2728. -webkit-box-shadow:none;
  2729. box-shadow:none;
  2730. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2731. font-weight:500;
  2732. font-style:normal;
  2733. font-size:14px;
  2734. line-height:30px;
  2735. }
  2736. #u134322 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:644px;
  2740. top:73px;
  2741. width:57px;
  2742. height:30px;
  2743. display:flex;
  2744. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2745. font-weight:500;
  2746. font-style:normal;
  2747. font-size:14px;
  2748. line-height:30px;
  2749. }
  2750. #u134322 .text {
  2751. position:absolute;
  2752. align-self:flex-start;
  2753. padding:0px 0px 0px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u134322_text {
  2758. border-width:0px;
  2759. white-space:nowrap;
  2760. text-transform:none;
  2761. }
  2762. #u134323 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:0px;
  2768. height:0px;
  2769. }
  2770. #u134324_img {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:11px;
  2776. height:18px;
  2777. }
  2778. #u134324 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:495px;
  2782. top:79px;
  2783. width:11px;
  2784. height:18px;
  2785. display:flex;
  2786. }
  2787. #u134324 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 2px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u134324_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. visibility:hidden;
  2799. }
  2800. #u134325_div {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:375px;
  2806. height:140px;
  2807. background:inherit;
  2808. background-color:rgba(255, 255, 255, 1);
  2809. border:none;
  2810. border-left:0px;
  2811. border-top:0px;
  2812. border-right:0px;
  2813. border-radius:0px;
  2814. border-bottom-right-radius:0px;
  2815. border-bottom-left-radius:0px;
  2816. -moz-box-shadow:none;
  2817. -webkit-box-shadow:none;
  2818. box-shadow:none;
  2819. }
  2820. #u134325 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:482px;
  2824. top:105px;
  2825. width:375px;
  2826. height:140px;
  2827. display:flex;
  2828. }
  2829. #u134325 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 2px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u134325_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u134326 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:0px;
  2848. height:0px;
  2849. }
  2850. #u134327 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:0px;
  2856. height:0px;
  2857. }
  2858. #u134328_div {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:349px;
  2864. height:30px;
  2865. background:inherit;
  2866. background-color:rgba(242, 242, 242, 0.545098039215686);
  2867. border:none;
  2868. border-radius:4px;
  2869. -moz-box-shadow:none;
  2870. -webkit-box-shadow:none;
  2871. box-shadow:none;
  2872. font-family:'Microsoft YaHei', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:14px;
  2876. color:#CCCCCC;
  2877. text-align:left;
  2878. }
  2879. #u134328 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:495px;
  2883. top:121px;
  2884. width:349px;
  2885. height:30px;
  2886. display:flex;
  2887. font-family:'Microsoft YaHei', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:14px;
  2891. color:#CCCCCC;
  2892. text-align:left;
  2893. }
  2894. #u134328 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 8px 2px 8px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u134328_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u134329_input {
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:309px;
  2912. height:25px;
  2913. padding:2px 2px 2px 2px;
  2914. font-family:'Microsoft YaHei', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:10px;
  2918. letter-spacing:normal;
  2919. color:#000000;
  2920. vertical-align:none;
  2921. text-align:left;
  2922. text-transform:none;
  2923. background-color:transparent;
  2924. border-color:transparent;
  2925. }
  2926. #u134329_input.disabled {
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:309px;
  2931. height:25px;
  2932. padding:2px 2px 2px 2px;
  2933. font-family:'Microsoft YaHei', sans-serif;
  2934. font-weight:400;
  2935. font-style:normal;
  2936. font-size:10px;
  2937. letter-spacing:normal;
  2938. color:#000000;
  2939. vertical-align:none;
  2940. text-align:left;
  2941. text-transform:none;
  2942. background-color:transparent;
  2943. border-color:transparent;
  2944. }
  2945. #u134329_div {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:309px;
  2951. height:25px;
  2952. background:inherit;
  2953. background-color:rgba(255, 255, 255, 0);
  2954. border:none;
  2955. border-radius:0px;
  2956. -moz-box-shadow:none;
  2957. -webkit-box-shadow:none;
  2958. box-shadow:none;
  2959. font-family:'Microsoft YaHei', sans-serif;
  2960. font-weight:400;
  2961. font-style:normal;
  2962. font-size:10px;
  2963. }
  2964. #u134329 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:525px;
  2968. top:122px;
  2969. width:309px;
  2970. height:25px;
  2971. display:flex;
  2972. font-family:'Microsoft YaHei', sans-serif;
  2973. font-weight:400;
  2974. font-style:normal;
  2975. font-size:10px;
  2976. }
  2977. #u134329 .text {
  2978. position:absolute;
  2979. align-self:center;
  2980. padding:2px 2px 2px 2px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u134329_div.disabled {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:309px;
  2990. height:25px;
  2991. background:inherit;
  2992. background-color:rgba(240, 240, 240, 1);
  2993. border:none;
  2994. border-radius:0px;
  2995. -moz-box-shadow:none;
  2996. -webkit-box-shadow:none;
  2997. box-shadow:none;
  2998. font-family:'Microsoft YaHei', sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. font-size:10px;
  3002. }
  3003. #u134329.disabled {
  3004. }
  3005. #u134330_img {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:14px;
  3011. height:14px;
  3012. }
  3013. #u134330 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:505px;
  3017. top:128px;
  3018. width:14px;
  3019. height:14px;
  3020. display:flex;
  3021. }
  3022. #u134330 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 2px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u134330_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u134331_div {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:362px;
  3041. height:60px;
  3042. background:inherit;
  3043. background-color:rgba(255, 255, 255, 0);
  3044. border:none;
  3045. border-left:0px;
  3046. border-top:0px;
  3047. border-right:0px;
  3048. border-radius:0px;
  3049. border-bottom-right-radius:0px;
  3050. border-bottom-left-radius:0px;
  3051. -moz-box-shadow:none;
  3052. -webkit-box-shadow:none;
  3053. box-shadow:none;
  3054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:14px;
  3058. line-height:30px;
  3059. }
  3060. #u134331 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:495px;
  3064. top:171px;
  3065. width:362px;
  3066. height:60px;
  3067. display:flex;
  3068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3069. font-weight:400;
  3070. font-style:normal;
  3071. font-size:14px;
  3072. line-height:30px;
  3073. }
  3074. #u134331 .text {
  3075. position:absolute;
  3076. align-self:flex-start;
  3077. padding:0px 0px 0px 0px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u134331_text {
  3082. border-width:0px;
  3083. word-wrap:break-word;
  3084. text-transform:none;
  3085. }
  3086. #u134332_img {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:0px;
  3090. top:0px;
  3091. width:118px;
  3092. height:90px;
  3093. }
  3094. #u134332 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:601px;
  3098. top:315px;
  3099. width:118px;
  3100. height:90px;
  3101. display:flex;
  3102. }
  3103. #u134332 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:2px 2px 2px 2px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u134332_text {
  3111. border-width:0px;
  3112. word-wrap:break-word;
  3113. text-transform:none;
  3114. visibility:hidden;
  3115. }
  3116. #u134333_div {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:73px;
  3122. height:30px;
  3123. background:inherit;
  3124. background-color:rgba(255, 255, 255, 0);
  3125. border:none;
  3126. border-left:0px;
  3127. border-top:0px;
  3128. border-right:0px;
  3129. border-radius:0px;
  3130. border-bottom-right-radius:0px;
  3131. border-bottom-left-radius:0px;
  3132. -moz-box-shadow:none;
  3133. -webkit-box-shadow:none;
  3134. box-shadow:none;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:18px;
  3139. line-height:30px;
  3140. }
  3141. #u134333 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:628px;
  3145. top:430px;
  3146. width:73px;
  3147. height:30px;
  3148. display:flex;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:18px;
  3153. line-height:30px;
  3154. }
  3155. #u134333 .text {
  3156. position:absolute;
  3157. align-self:flex-start;
  3158. padding:0px 0px 0px 0px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u134333_text {
  3163. border-width:0px;
  3164. white-space:nowrap;
  3165. text-transform:none;
  3166. }
  3167. #u134334_div {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:169px;
  3173. height:30px;
  3174. background:inherit;
  3175. background-color:rgba(255, 255, 255, 0);
  3176. border:none;
  3177. border-left:0px;
  3178. border-top:0px;
  3179. border-right:0px;
  3180. border-radius:0px;
  3181. border-bottom-right-radius:0px;
  3182. border-bottom-left-radius:0px;
  3183. -moz-box-shadow:none;
  3184. -webkit-box-shadow:none;
  3185. box-shadow:none;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:14px;
  3190. color:#AAAAAA;
  3191. line-height:30px;
  3192. }
  3193. #u134334 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:576px;
  3197. top:460px;
  3198. width:169px;
  3199. height:30px;
  3200. display:flex;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:14px;
  3205. color:#AAAAAA;
  3206. line-height:30px;
  3207. }
  3208. #u134334 .text {
  3209. position:absolute;
  3210. align-self:flex-start;
  3211. padding:0px 0px 0px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u134334_text {
  3216. border-width:0px;
  3217. white-space:nowrap;
  3218. text-transform:none;
  3219. }
  3220. #u134336_img {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:433px;
  3226. height:865px;
  3227. }
  3228. #u134336 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:916px;
  3232. top:0px;
  3233. width:433px;
  3234. height:865px;
  3235. display:flex;
  3236. }
  3237. #u134336 .text {
  3238. position:absolute;
  3239. align-self:center;
  3240. padding:2px 2px 2px 2px;
  3241. box-sizing:border-box;
  3242. width:100%;
  3243. }
  3244. #u134336_text {
  3245. border-width:0px;
  3246. word-wrap:break-word;
  3247. text-transform:none;
  3248. visibility:hidden;
  3249. }
  3250. #u134337_div {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:375px;
  3256. height:40px;
  3257. background:inherit;
  3258. background-color:rgba(255, 255, 255, 1);
  3259. box-sizing:border-box;
  3260. border-width:1px;
  3261. border-style:solid;
  3262. border-color:rgba(215, 215, 215, 1);
  3263. border-left:0px;
  3264. border-top:0px;
  3265. border-right:0px;
  3266. border-radius:0px;
  3267. border-bottom-right-radius:0px;
  3268. border-bottom-left-radius:0px;
  3269. -moz-box-shadow:none;
  3270. -webkit-box-shadow:none;
  3271. box-shadow:none;
  3272. }
  3273. #u134337 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:945px;
  3277. top:67px;
  3278. width:375px;
  3279. height:40px;
  3280. display:flex;
  3281. }
  3282. #u134337 .text {
  3283. position:absolute;
  3284. align-self:center;
  3285. padding:2px 2px 2px 2px;
  3286. box-sizing:border-box;
  3287. width:100%;
  3288. }
  3289. #u134337_text {
  3290. border-width:0px;
  3291. word-wrap:break-word;
  3292. text-transform:none;
  3293. visibility:hidden;
  3294. }
  3295. #u134338 {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:0px;
  3301. height:0px;
  3302. }
  3303. #u134339_div {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:88px;
  3309. height:32px;
  3310. background:inherit;
  3311. background-color:rgba(255, 255, 255, 1);
  3312. box-sizing:border-box;
  3313. border-width:1px;
  3314. border-style:solid;
  3315. border-color:rgba(242, 242, 242, 1);
  3316. border-radius:33px;
  3317. -moz-box-shadow:none;
  3318. -webkit-box-shadow:none;
  3319. box-shadow:none;
  3320. }
  3321. #u134339 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:1225px;
  3325. top:71px;
  3326. width:88px;
  3327. height:32px;
  3328. display:flex;
  3329. }
  3330. #u134339 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 2px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u134339_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. visibility:hidden;
  3342. }
  3343. #u134340 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:0px;
  3349. height:0px;
  3350. }
  3351. #u134341_img {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:18px;
  3357. height:18px;
  3358. }
  3359. #u134341 {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:1288px;
  3363. top:78px;
  3364. width:18px;
  3365. height:18px;
  3366. display:flex;
  3367. }
  3368. #u134341 .text {
  3369. position:absolute;
  3370. align-self:center;
  3371. padding:2px 2px 2px 2px;
  3372. box-sizing:border-box;
  3373. width:100%;
  3374. }
  3375. #u134341_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. visibility:hidden;
  3380. }
  3381. #u134342_img {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:0px;
  3386. width:6px;
  3387. height:6px;
  3388. }
  3389. #u134342 {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:1294px;
  3393. top:84px;
  3394. width:6px;
  3395. height:6px;
  3396. display:flex;
  3397. }
  3398. #u134342 .text {
  3399. position:absolute;
  3400. align-self:center;
  3401. padding:2px 2px 2px 2px;
  3402. box-sizing:border-box;
  3403. width:100%;
  3404. }
  3405. #u134342_text {
  3406. border-width:0px;
  3407. word-wrap:break-word;
  3408. text-transform:none;
  3409. visibility:hidden;
  3410. }
  3411. #u134343 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:0px;
  3417. height:0px;
  3418. }
  3419. #u134344_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:5px;
  3425. height:5px;
  3426. }
  3427. #u134344 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:1239px;
  3431. top:85px;
  3432. width:5px;
  3433. height:5px;
  3434. display:flex;
  3435. }
  3436. #u134344 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 2px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u134344_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u134345_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:5px;
  3455. height:5px;
  3456. }
  3457. #u134345 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:1255px;
  3461. top:85px;
  3462. width:5px;
  3463. height:5px;
  3464. display:flex;
  3465. }
  3466. #u134345 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:2px 2px 2px 2px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u134345_text {
  3474. border-width:0px;
  3475. word-wrap:break-word;
  3476. text-transform:none;
  3477. visibility:hidden;
  3478. }
  3479. #u134346_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:7px;
  3485. height:7px;
  3486. }
  3487. #u134346 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:1246px;
  3491. top:84px;
  3492. width:7px;
  3493. height:7px;
  3494. display:flex;
  3495. }
  3496. #u134346 .text {
  3497. position:absolute;
  3498. align-self:center;
  3499. padding:2px 2px 2px 2px;
  3500. box-sizing:border-box;
  3501. width:100%;
  3502. }
  3503. #u134346_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. visibility:hidden;
  3508. }
  3509. #u134347_img {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:19px;
  3515. height:2px;
  3516. }
  3517. #u134347 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:1263px;
  3521. top:87px;
  3522. width:18px;
  3523. height:1px;
  3524. display:flex;
  3525. -webkit-transform:rotate(90deg);
  3526. -moz-transform:rotate(90deg);
  3527. -ms-transform:rotate(90deg);
  3528. transform:rotate(90deg);
  3529. }
  3530. #u134347 .text {
  3531. position:absolute;
  3532. align-self:center;
  3533. padding:2px 2px 2px 2px;
  3534. box-sizing:border-box;
  3535. width:100%;
  3536. }
  3537. #u134347_text {
  3538. border-width:0px;
  3539. word-wrap:break-word;
  3540. text-transform:none;
  3541. visibility:hidden;
  3542. }
  3543. #u134348_img {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:375px;
  3549. height:44px;
  3550. }
  3551. #u134348 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:945px;
  3555. top:24px;
  3556. width:375px;
  3557. height:44px;
  3558. display:flex;
  3559. }
  3560. #u134348 .text {
  3561. position:absolute;
  3562. align-self:center;
  3563. padding:2px 2px 2px 2px;
  3564. box-sizing:border-box;
  3565. width:100%;
  3566. }
  3567. #u134348_text {
  3568. border-width:0px;
  3569. word-wrap:break-word;
  3570. text-transform:none;
  3571. visibility:hidden;
  3572. }
  3573. #u134349_div {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:375px;
  3579. height:50px;
  3580. background:inherit;
  3581. background-color:rgba(255, 255, 255, 1);
  3582. box-sizing:border-box;
  3583. border-width:1px;
  3584. border-style:solid;
  3585. border-color:rgba(242, 242, 242, 1);
  3586. border-radius:26px;
  3587. border-top-left-radius:0px;
  3588. border-top-right-radius:0px;
  3589. -moz-box-shadow:none;
  3590. -webkit-box-shadow:none;
  3591. box-shadow:none;
  3592. }
  3593. #u134349 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:945px;
  3597. top:788px;
  3598. width:375px;
  3599. height:50px;
  3600. display:flex;
  3601. }
  3602. #u134349 .text {
  3603. position:absolute;
  3604. align-self:center;
  3605. padding:2px 2px 2px 2px;
  3606. box-sizing:border-box;
  3607. width:100%;
  3608. }
  3609. #u134349_text {
  3610. border-width:0px;
  3611. word-wrap:break-word;
  3612. text-transform:none;
  3613. visibility:hidden;
  3614. }
  3615. #u134350 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:0px;
  3619. top:0px;
  3620. width:0px;
  3621. height:0px;
  3622. }
  3623. #u134351_img {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:24px;
  3629. height:24px;
  3630. }
  3631. #u134351 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:985px;
  3635. top:792px;
  3636. width:24px;
  3637. height:24px;
  3638. display:flex;
  3639. font-size:8px;
  3640. }
  3641. #u134351 .text {
  3642. position:absolute;
  3643. align-self:center;
  3644. padding:2px 2px 2px 2px;
  3645. box-sizing:border-box;
  3646. width:100%;
  3647. }
  3648. #u134351_text {
  3649. border-width:0px;
  3650. word-wrap:break-word;
  3651. text-transform:none;
  3652. }
  3653. #u134352_div {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:25px;
  3659. height:17px;
  3660. background:inherit;
  3661. background-color:rgba(255, 255, 255, 0);
  3662. border:none;
  3663. border-radius:0px;
  3664. -moz-box-shadow:none;
  3665. -webkit-box-shadow:none;
  3666. box-shadow:none;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:12px;
  3671. }
  3672. #u134352 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:985px;
  3676. top:817px;
  3677. width:25px;
  3678. height:17px;
  3679. display:flex;
  3680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3681. font-weight:400;
  3682. font-style:normal;
  3683. font-size:12px;
  3684. }
  3685. #u134352 .text {
  3686. position:absolute;
  3687. align-self:flex-start;
  3688. padding:0px 0px 0px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u134352_text {
  3693. border-width:0px;
  3694. white-space:nowrap;
  3695. text-transform:none;
  3696. }
  3697. #u134353 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:0px;
  3703. height:0px;
  3704. }
  3705. #u134354_img {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:24px;
  3711. height:24px;
  3712. }
  3713. #u134354 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:1255px;
  3717. top:794px;
  3718. width:24px;
  3719. height:24px;
  3720. display:flex;
  3721. font-size:8px;
  3722. }
  3723. #u134354 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 2px 2px 2px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u134354_text {
  3731. border-width:0px;
  3732. word-wrap:break-word;
  3733. text-transform:none;
  3734. }
  3735. #u134355_div {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:25px;
  3741. height:17px;
  3742. background:inherit;
  3743. background-color:rgba(255, 255, 255, 0);
  3744. border:none;
  3745. border-radius:0px;
  3746. -moz-box-shadow:none;
  3747. -webkit-box-shadow:none;
  3748. box-shadow:none;
  3749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3750. font-weight:400;
  3751. font-style:normal;
  3752. font-size:12px;
  3753. }
  3754. #u134355 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:1255px;
  3758. top:819px;
  3759. width:25px;
  3760. height:17px;
  3761. display:flex;
  3762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3763. font-weight:400;
  3764. font-style:normal;
  3765. font-size:12px;
  3766. }
  3767. #u134355 .text {
  3768. position:absolute;
  3769. align-self:flex-start;
  3770. padding:0px 0px 0px 0px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u134355_text {
  3775. border-width:0px;
  3776. white-space:nowrap;
  3777. text-transform:none;
  3778. }
  3779. #u134356_div {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:375px;
  3785. height:681px;
  3786. background:inherit;
  3787. background-color:rgba(242, 242, 242, 0.462745098039216);
  3788. border:none;
  3789. border-radius:0px;
  3790. -moz-box-shadow:none;
  3791. -webkit-box-shadow:none;
  3792. box-shadow:none;
  3793. }
  3794. #u134356 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:945px;
  3798. top:107px;
  3799. width:375px;
  3800. height:681px;
  3801. display:flex;
  3802. }
  3803. #u134356 .text {
  3804. position:absolute;
  3805. align-self:center;
  3806. padding:2px 2px 2px 2px;
  3807. box-sizing:border-box;
  3808. width:100%;
  3809. }
  3810. #u134356_text {
  3811. border-width:0px;
  3812. word-wrap:break-word;
  3813. text-transform:none;
  3814. visibility:hidden;
  3815. }
  3816. #u134357 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:0px;
  3822. height:0px;
  3823. }
  3824. #u134358_img {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:24px;
  3830. height:24px;
  3831. }
  3832. #u134358 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:1167px;
  3836. top:792px;
  3837. width:24px;
  3838. height:24px;
  3839. display:flex;
  3840. font-size:8px;
  3841. }
  3842. #u134358 .text {
  3843. position:absolute;
  3844. align-self:center;
  3845. padding:2px 2px 2px 2px;
  3846. box-sizing:border-box;
  3847. width:100%;
  3848. }
  3849. #u134358_text {
  3850. border-width:0px;
  3851. word-wrap:break-word;
  3852. text-transform:none;
  3853. }
  3854. #u134359_div {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:37px;
  3860. height:17px;
  3861. background:inherit;
  3862. background-color:rgba(255, 255, 255, 0);
  3863. border:none;
  3864. border-radius:0px;
  3865. -moz-box-shadow:none;
  3866. -webkit-box-shadow:none;
  3867. box-shadow:none;
  3868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:12px;
  3872. }
  3873. #u134359 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:1161px;
  3877. top:817px;
  3878. width:37px;
  3879. height:17px;
  3880. display:flex;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:12px;
  3885. }
  3886. #u134359 .text {
  3887. position:absolute;
  3888. align-self:flex-start;
  3889. padding:0px 0px 0px 0px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u134359_text {
  3894. border-width:0px;
  3895. white-space:nowrap;
  3896. text-transform:none;
  3897. }
  3898. #u134360 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:0px;
  3904. height:0px;
  3905. }
  3906. #u134361_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:24px;
  3912. height:24px;
  3913. }
  3914. #u134361 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:1073px;
  3918. top:792px;
  3919. width:24px;
  3920. height:24px;
  3921. display:flex;
  3922. font-size:8px;
  3923. }
  3924. #u134361 .text {
  3925. position:absolute;
  3926. align-self:center;
  3927. padding:2px 2px 2px 2px;
  3928. box-sizing:border-box;
  3929. width:100%;
  3930. }
  3931. #u134361_text {
  3932. border-width:0px;
  3933. word-wrap:break-word;
  3934. text-transform:none;
  3935. }
  3936. #u134362_div {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:37px;
  3942. height:17px;
  3943. background:inherit;
  3944. background-color:rgba(255, 255, 255, 0);
  3945. border:none;
  3946. border-radius:0px;
  3947. -moz-box-shadow:none;
  3948. -webkit-box-shadow:none;
  3949. box-shadow:none;
  3950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:12px;
  3954. }
  3955. #u134362 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:1067px;
  3959. top:817px;
  3960. width:37px;
  3961. height:17px;
  3962. display:flex;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:12px;
  3967. }
  3968. #u134362 .text {
  3969. position:absolute;
  3970. align-self:flex-start;
  3971. padding:0px 0px 0px 0px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u134362_text {
  3976. border-width:0px;
  3977. white-space:nowrap;
  3978. text-transform:none;
  3979. }
  3980. #u134363_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:375px;
  3986. height:735px;
  3987. background:inherit;
  3988. background-color:rgba(242, 242, 242, 1);
  3989. border:none;
  3990. border-top:0px;
  3991. border-radius:25px;
  3992. border-top-left-radius:0px;
  3993. border-top-right-radius:0px;
  3994. -moz-box-shadow:none;
  3995. -webkit-box-shadow:none;
  3996. box-shadow:none;
  3997. }
  3998. #u134363 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:945px;
  4002. top:105px;
  4003. width:375px;
  4004. height:735px;
  4005. display:flex;
  4006. }
  4007. #u134363 .text {
  4008. position:absolute;
  4009. align-self:center;
  4010. padding:2px 2px 2px 2px;
  4011. box-sizing:border-box;
  4012. width:100%;
  4013. }
  4014. #u134363_text {
  4015. border-width:0px;
  4016. word-wrap:break-word;
  4017. text-transform:none;
  4018. visibility:hidden;
  4019. }
  4020. #u134364_div {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:57px;
  4026. height:30px;
  4027. background:inherit;
  4028. background-color:rgba(255, 255, 255, 0);
  4029. border:none;
  4030. border-left:0px;
  4031. border-top:0px;
  4032. border-right:0px;
  4033. border-radius:0px;
  4034. border-bottom-right-radius:0px;
  4035. border-bottom-left-radius:0px;
  4036. -moz-box-shadow:none;
  4037. -webkit-box-shadow:none;
  4038. box-shadow:none;
  4039. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4040. font-weight:500;
  4041. font-style:normal;
  4042. font-size:14px;
  4043. line-height:30px;
  4044. }
  4045. #u134364 {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:1103px;
  4049. top:75px;
  4050. width:57px;
  4051. height:30px;
  4052. display:flex;
  4053. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4054. font-weight:500;
  4055. font-style:normal;
  4056. font-size:14px;
  4057. line-height:30px;
  4058. }
  4059. #u134364 .text {
  4060. position:absolute;
  4061. align-self:flex-start;
  4062. padding:0px 0px 0px 0px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u134364_text {
  4067. border-width:0px;
  4068. white-space:nowrap;
  4069. text-transform:none;
  4070. }
  4071. #u134365 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:0px;
  4077. height:0px;
  4078. }
  4079. #u134366_img {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:11px;
  4085. height:18px;
  4086. }
  4087. #u134366 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:958px;
  4091. top:79px;
  4092. width:11px;
  4093. height:18px;
  4094. display:flex;
  4095. }
  4096. #u134366 .text {
  4097. position:absolute;
  4098. align-self:center;
  4099. padding:2px 2px 2px 2px;
  4100. box-sizing:border-box;
  4101. width:100%;
  4102. }
  4103. #u134366_text {
  4104. border-width:0px;
  4105. word-wrap:break-word;
  4106. text-transform:none;
  4107. visibility:hidden;
  4108. }
  4109. #u134367 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:0px;
  4115. height:0px;
  4116. }
  4117. #u134368_div {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:375px;
  4123. height:50px;
  4124. background:inherit;
  4125. background-color:rgba(255, 255, 255, 1);
  4126. border:none;
  4127. border-top:0px;
  4128. border-radius:27px;
  4129. border-top-left-radius:0px;
  4130. border-top-right-radius:0px;
  4131. -moz-box-shadow:none;
  4132. -webkit-box-shadow:none;
  4133. box-shadow:none;
  4134. }
  4135. #u134368 {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:945px;
  4139. top:790px;
  4140. width:375px;
  4141. height:50px;
  4142. display:flex;
  4143. }
  4144. #u134368 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 2px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u134368_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u134369_div {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:57px;
  4163. height:30px;
  4164. background:inherit;
  4165. background-color:rgba(255, 255, 255, 0);
  4166. border:none;
  4167. border-left:0px;
  4168. border-top:0px;
  4169. border-right:0px;
  4170. border-radius:0px;
  4171. border-bottom-right-radius:0px;
  4172. border-bottom-left-radius:0px;
  4173. -moz-box-shadow:none;
  4174. -webkit-box-shadow:none;
  4175. box-shadow:none;
  4176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4177. font-weight:400;
  4178. font-style:normal;
  4179. font-size:14px;
  4180. line-height:30px;
  4181. }
  4182. #u134369 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:983px;
  4186. top:798px;
  4187. width:57px;
  4188. height:30px;
  4189. display:flex;
  4190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4191. font-weight:400;
  4192. font-style:normal;
  4193. font-size:14px;
  4194. line-height:30px;
  4195. }
  4196. #u134369 .text {
  4197. position:absolute;
  4198. align-self:flex-start;
  4199. padding:0px 0px 0px 0px;
  4200. box-sizing:border-box;
  4201. width:100%;
  4202. }
  4203. #u134369_text {
  4204. border-width:0px;
  4205. white-space:nowrap;
  4206. text-transform:none;
  4207. }
  4208. #u134370_div {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:0px;
  4212. top:0px;
  4213. width:71px;
  4214. height:30px;
  4215. background:inherit;
  4216. background-color:rgba(255, 255, 255, 0);
  4217. border:none;
  4218. border-left:0px;
  4219. border-top:0px;
  4220. border-right:0px;
  4221. border-radius:0px;
  4222. border-bottom-right-radius:0px;
  4223. border-bottom-left-radius:0px;
  4224. -moz-box-shadow:none;
  4225. -webkit-box-shadow:none;
  4226. box-shadow:none;
  4227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:14px;
  4231. line-height:30px;
  4232. }
  4233. #u134370 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:1098px;
  4237. top:798px;
  4238. width:71px;
  4239. height:30px;
  4240. display:flex;
  4241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4242. font-weight:400;
  4243. font-style:normal;
  4244. font-size:14px;
  4245. line-height:30px;
  4246. }
  4247. #u134370 .text {
  4248. position:absolute;
  4249. align-self:flex-start;
  4250. padding:0px 0px 0px 0px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u134370_text {
  4255. border-width:0px;
  4256. white-space:nowrap;
  4257. text-transform:none;
  4258. }
  4259. #u134371_img {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:2px;
  4265. height:16px;
  4266. }
  4267. #u134371 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:1069px;
  4271. top:805px;
  4272. width:1px;
  4273. height:15px;
  4274. display:flex;
  4275. color:#F2F2F2;
  4276. }
  4277. #u134371 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:2px 2px 2px 2px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u134371_text {
  4285. border-width:0px;
  4286. word-wrap:break-word;
  4287. text-transform:none;
  4288. visibility:hidden;
  4289. }
  4290. #u134372_div {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:57px;
  4296. height:30px;
  4297. background:inherit;
  4298. background-color:rgba(255, 255, 255, 0);
  4299. border:none;
  4300. border-left:0px;
  4301. border-top:0px;
  4302. border-right:0px;
  4303. border-radius:0px;
  4304. border-bottom-right-radius:0px;
  4305. border-bottom-left-radius:0px;
  4306. -moz-box-shadow:none;
  4307. -webkit-box-shadow:none;
  4308. box-shadow:none;
  4309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:14px;
  4313. line-height:30px;
  4314. }
  4315. #u134372 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:1227px;
  4319. top:798px;
  4320. width:57px;
  4321. height:30px;
  4322. display:flex;
  4323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4324. font-weight:400;
  4325. font-style:normal;
  4326. font-size:14px;
  4327. line-height:30px;
  4328. }
  4329. #u134372 .text {
  4330. position:absolute;
  4331. align-self:flex-start;
  4332. padding:0px 0px 0px 0px;
  4333. box-sizing:border-box;
  4334. width:100%;
  4335. }
  4336. #u134372_text {
  4337. border-width:0px;
  4338. white-space:nowrap;
  4339. text-transform:none;
  4340. }
  4341. #u134373_img {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:2px;
  4347. height:16px;
  4348. }
  4349. #u134373 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:1198px;
  4353. top:805px;
  4354. width:1px;
  4355. height:15px;
  4356. display:flex;
  4357. color:#F2F2F2;
  4358. }
  4359. #u134373 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 2px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u134373_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u134374_div {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:375px;
  4378. height:140px;
  4379. background:inherit;
  4380. background-color:rgba(255, 255, 255, 1);
  4381. border:none;
  4382. border-left:0px;
  4383. border-top:0px;
  4384. border-right:0px;
  4385. border-radius:0px;
  4386. border-bottom-right-radius:0px;
  4387. border-bottom-left-radius:0px;
  4388. -moz-box-shadow:none;
  4389. -webkit-box-shadow:none;
  4390. box-shadow:none;
  4391. }
  4392. #u134374 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:945px;
  4396. top:105px;
  4397. width:375px;
  4398. height:140px;
  4399. display:flex;
  4400. }
  4401. #u134374 .text {
  4402. position:absolute;
  4403. align-self:center;
  4404. padding:2px 2px 2px 2px;
  4405. box-sizing:border-box;
  4406. width:100%;
  4407. }
  4408. #u134374_text {
  4409. border-width:0px;
  4410. word-wrap:break-word;
  4411. text-transform:none;
  4412. visibility:hidden;
  4413. }
  4414. #u134375 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:0px;
  4420. height:0px;
  4421. }
  4422. #u134376 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:0px;
  4428. height:0px;
  4429. }
  4430. #u134377_div {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:349px;
  4436. height:30px;
  4437. background:inherit;
  4438. background-color:rgba(242, 242, 242, 0.545098039215686);
  4439. border:none;
  4440. border-radius:4px;
  4441. -moz-box-shadow:none;
  4442. -webkit-box-shadow:none;
  4443. box-shadow:none;
  4444. font-family:'Microsoft YaHei', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:14px;
  4448. color:#CCCCCC;
  4449. text-align:left;
  4450. }
  4451. #u134377 {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:958px;
  4455. top:121px;
  4456. width:349px;
  4457. height:30px;
  4458. display:flex;
  4459. font-family:'Microsoft YaHei', sans-serif;
  4460. font-weight:400;
  4461. font-style:normal;
  4462. font-size:14px;
  4463. color:#CCCCCC;
  4464. text-align:left;
  4465. }
  4466. #u134377 .text {
  4467. position:absolute;
  4468. align-self:center;
  4469. padding:2px 8px 2px 8px;
  4470. box-sizing:border-box;
  4471. width:100%;
  4472. }
  4473. #u134377_text {
  4474. border-width:0px;
  4475. word-wrap:break-word;
  4476. text-transform:none;
  4477. visibility:hidden;
  4478. }
  4479. #u134378_input {
  4480. position:absolute;
  4481. left:0px;
  4482. top:0px;
  4483. width:309px;
  4484. height:25px;
  4485. padding:2px 2px 2px 2px;
  4486. font-family:'Microsoft YaHei', sans-serif;
  4487. font-weight:400;
  4488. font-style:normal;
  4489. font-size:10px;
  4490. letter-spacing:normal;
  4491. color:#000000;
  4492. vertical-align:none;
  4493. text-align:left;
  4494. text-transform:none;
  4495. background-color:transparent;
  4496. border-color:transparent;
  4497. }
  4498. #u134378_input.disabled {
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:309px;
  4503. height:25px;
  4504. padding:2px 2px 2px 2px;
  4505. font-family:'Microsoft YaHei', sans-serif;
  4506. font-weight:400;
  4507. font-style:normal;
  4508. font-size:10px;
  4509. letter-spacing:normal;
  4510. color:#000000;
  4511. vertical-align:none;
  4512. text-align:left;
  4513. text-transform:none;
  4514. background-color:transparent;
  4515. border-color:transparent;
  4516. }
  4517. #u134378_div {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:309px;
  4523. height:25px;
  4524. background:inherit;
  4525. background-color:rgba(255, 255, 255, 0);
  4526. border:none;
  4527. border-radius:0px;
  4528. -moz-box-shadow:none;
  4529. -webkit-box-shadow:none;
  4530. box-shadow:none;
  4531. font-family:'Microsoft YaHei', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:10px;
  4535. }
  4536. #u134378 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:988px;
  4540. top:122px;
  4541. width:309px;
  4542. height:25px;
  4543. display:flex;
  4544. font-family:'Microsoft YaHei', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:10px;
  4548. }
  4549. #u134378 .text {
  4550. position:absolute;
  4551. align-self:center;
  4552. padding:2px 2px 2px 2px;
  4553. box-sizing:border-box;
  4554. width:100%;
  4555. }
  4556. #u134378_div.disabled {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:309px;
  4562. height:25px;
  4563. background:inherit;
  4564. background-color:rgba(240, 240, 240, 1);
  4565. border:none;
  4566. border-radius:0px;
  4567. -moz-box-shadow:none;
  4568. -webkit-box-shadow:none;
  4569. box-shadow:none;
  4570. font-family:'Microsoft YaHei', sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:10px;
  4574. }
  4575. #u134378.disabled {
  4576. }
  4577. #u134379_img {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:14px;
  4583. height:14px;
  4584. }
  4585. #u134379 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:968px;
  4589. top:128px;
  4590. width:14px;
  4591. height:14px;
  4592. display:flex;
  4593. }
  4594. #u134379 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:2px 2px 2px 2px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u134379_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. visibility:hidden;
  4606. }
  4607. #u134380_div {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:339px;
  4613. height:60px;
  4614. background:inherit;
  4615. background-color:rgba(255, 255, 255, 0);
  4616. border:none;
  4617. border-left:0px;
  4618. border-top:0px;
  4619. border-right:0px;
  4620. border-radius:0px;
  4621. border-bottom-right-radius:0px;
  4622. border-bottom-left-radius:0px;
  4623. -moz-box-shadow:none;
  4624. -webkit-box-shadow:none;
  4625. box-shadow:none;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:14px;
  4630. line-height:30px;
  4631. }
  4632. #u134380 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:958px;
  4636. top:171px;
  4637. width:339px;
  4638. height:60px;
  4639. display:flex;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:14px;
  4644. line-height:30px;
  4645. }
  4646. #u134380 .text {
  4647. position:absolute;
  4648. align-self:flex-start;
  4649. padding:0px 0px 0px 0px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u134380_text {
  4654. border-width:0px;
  4655. word-wrap:break-word;
  4656. text-transform:none;
  4657. }
  4658. #u134381_div {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:352px;
  4664. height:80px;
  4665. background:inherit;
  4666. background-color:rgba(255, 255, 255, 1);
  4667. border:none;
  4668. border-left:0px;
  4669. border-top:0px;
  4670. border-right:0px;
  4671. border-radius:4px;
  4672. border-bottom-right-radius:0px;
  4673. border-bottom-left-radius:0px;
  4674. -moz-box-shadow:none;
  4675. -webkit-box-shadow:none;
  4676. box-shadow:none;
  4677. }
  4678. #u134381 {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:955px;
  4682. top:255px;
  4683. width:352px;
  4684. height:80px;
  4685. display:flex;
  4686. }
  4687. #u134381 .text {
  4688. position:absolute;
  4689. align-self:center;
  4690. padding:2px 2px 2px 2px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u134381_text {
  4695. border-width:0px;
  4696. word-wrap:break-word;
  4697. text-transform:none;
  4698. visibility:hidden;
  4699. }
  4700. #u134382_img {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:40px;
  4706. height:40px;
  4707. }
  4708. #u134382 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:970px;
  4712. top:275px;
  4713. width:40px;
  4714. height:40px;
  4715. display:flex;
  4716. }
  4717. #u134382 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 2px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u134382_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u134383 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:0px;
  4736. height:0px;
  4737. }
  4738. #u134384_div {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:91px;
  4744. height:30px;
  4745. background:inherit;
  4746. background-color:rgba(255, 255, 255, 0);
  4747. border:none;
  4748. border-left:0px;
  4749. border-top:0px;
  4750. border-right:0px;
  4751. border-radius:0px;
  4752. border-bottom-right-radius:0px;
  4753. border-bottom-left-radius:0px;
  4754. -moz-box-shadow:none;
  4755. -webkit-box-shadow:none;
  4756. box-shadow:none;
  4757. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4758. font-weight:500;
  4759. font-style:normal;
  4760. font-size:18px;
  4761. line-height:30px;
  4762. }
  4763. #u134384 {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:1020px;
  4767. top:265px;
  4768. width:91px;
  4769. height:30px;
  4770. display:flex;
  4771. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4772. font-weight:500;
  4773. font-style:normal;
  4774. font-size:18px;
  4775. line-height:30px;
  4776. }
  4777. #u134384 .text {
  4778. position:absolute;
  4779. align-self:flex-start;
  4780. padding:0px 0px 0px 0px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u134384_text {
  4785. border-width:0px;
  4786. white-space:nowrap;
  4787. text-transform:none;
  4788. }
  4789. #u134385_div {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:211px;
  4795. height:30px;
  4796. background:inherit;
  4797. background-color:rgba(255, 255, 255, 0);
  4798. border:none;
  4799. border-left:0px;
  4800. border-top:0px;
  4801. border-right:0px;
  4802. border-radius:0px;
  4803. border-bottom-right-radius:0px;
  4804. border-bottom-left-radius:0px;
  4805. -moz-box-shadow:none;
  4806. -webkit-box-shadow:none;
  4807. box-shadow:none;
  4808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:14px;
  4812. color:#7F7F7F;
  4813. line-height:30px;
  4814. }
  4815. #u134385 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:1020px;
  4819. top:295px;
  4820. width:211px;
  4821. height:30px;
  4822. display:flex;
  4823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4824. font-weight:400;
  4825. font-style:normal;
  4826. font-size:14px;
  4827. color:#7F7F7F;
  4828. line-height:30px;
  4829. }
  4830. #u134385 .text {
  4831. position:absolute;
  4832. align-self:flex-start;
  4833. padding:0px 0px 0px 0px;
  4834. box-sizing:border-box;
  4835. width:100%;
  4836. }
  4837. #u134385_text {
  4838. border-width:0px;
  4839. white-space:nowrap;
  4840. text-transform:none;
  4841. }
  4842. #u134386_div {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:375px;
  4848. height:60px;
  4849. background:inherit;
  4850. background-color:rgba(255, 255, 255, 1);
  4851. border:none;
  4852. border-left:0px;
  4853. border-top:0px;
  4854. border-right:0px;
  4855. border-radius:0px;
  4856. border-bottom-right-radius:0px;
  4857. border-bottom-left-radius:0px;
  4858. -moz-box-shadow:none;
  4859. -webkit-box-shadow:none;
  4860. box-shadow:none;
  4861. }
  4862. #u134386 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:945px;
  4866. top:462px;
  4867. width:375px;
  4868. height:60px;
  4869. display:flex;
  4870. }
  4871. #u134386 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 2px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u134386_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u134387_div {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:40px;
  4890. height:40px;
  4891. background:inherit;
  4892. background-color:rgba(0, 137, 254, 1);
  4893. border:none;
  4894. border-radius:4px;
  4895. -moz-box-shadow:none;
  4896. -webkit-box-shadow:none;
  4897. box-shadow:none;
  4898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. color:#FFFFFF;
  4902. }
  4903. #u134387 {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:963px;
  4907. top:472px;
  4908. width:40px;
  4909. height:40px;
  4910. display:flex;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. color:#FFFFFF;
  4915. }
  4916. #u134387 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 2px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u134387_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. }
  4928. #u134388_div {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:37px;
  4934. height:30px;
  4935. background:inherit;
  4936. background-color:rgba(255, 255, 255, 0);
  4937. border:none;
  4938. border-left:0px;
  4939. border-top:0px;
  4940. border-right:0px;
  4941. border-radius:0px;
  4942. border-bottom-right-radius:0px;
  4943. border-bottom-left-radius:0px;
  4944. -moz-box-shadow:none;
  4945. -webkit-box-shadow:none;
  4946. box-shadow:none;
  4947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:18px;
  4951. line-height:30px;
  4952. }
  4953. #u134388 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:1016px;
  4957. top:477px;
  4958. width:37px;
  4959. height:30px;
  4960. display:flex;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:18px;
  4965. line-height:30px;
  4966. }
  4967. #u134388 .text {
  4968. position:absolute;
  4969. align-self:flex-start;
  4970. padding:0px 0px 0px 0px;
  4971. box-sizing:border-box;
  4972. width:100%;
  4973. }
  4974. #u134388_text {
  4975. border-width:0px;
  4976. white-space:nowrap;
  4977. text-transform:none;
  4978. }
  4979. #u134389_div {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:45px;
  4985. height:18px;
  4986. background:inherit;
  4987. background-color:rgba(255, 255, 255, 0);
  4988. box-sizing:border-box;
  4989. border-width:1px;
  4990. border-style:solid;
  4991. border-color:rgba(0, 137, 254, 1);
  4992. border-radius:2px;
  4993. -moz-box-shadow:none;
  4994. -webkit-box-shadow:none;
  4995. box-shadow:none;
  4996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:10px;
  5000. color:#0089FE;
  5001. }
  5002. #u134389 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:1066px;
  5006. top:483px;
  5007. width:45px;
  5008. height:18px;
  5009. display:flex;
  5010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:10px;
  5014. color:#0089FE;
  5015. }
  5016. #u134389 .text {
  5017. position:absolute;
  5018. align-self:flex-start;
  5019. padding:2px 2px 2px 2px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u134389_text {
  5024. border-width:0px;
  5025. white-space:nowrap;
  5026. text-transform:none;
  5027. }
  5028. #u134390_img {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:14px;
  5034. height:11px;
  5035. }
  5036. #u134390 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:1283px;
  5040. top:487px;
  5041. width:14px;
  5042. height:11px;
  5043. display:flex;
  5044. }
  5045. #u134390 .text {
  5046. position:absolute;
  5047. align-self:center;
  5048. padding:2px 2px 2px 2px;
  5049. box-sizing:border-box;
  5050. width:100%;
  5051. }
  5052. #u134390_text {
  5053. border-width:0px;
  5054. word-wrap:break-word;
  5055. text-transform:none;
  5056. visibility:hidden;
  5057. }
  5058. #u134391_div {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:0px;
  5063. width:375px;
  5064. height:60px;
  5065. background:inherit;
  5066. background-color:rgba(255, 255, 255, 1);
  5067. border:none;
  5068. border-left:0px;
  5069. border-top:0px;
  5070. border-right:0px;
  5071. border-radius:0px;
  5072. border-bottom-right-radius:0px;
  5073. border-bottom-left-radius:0px;
  5074. -moz-box-shadow:none;
  5075. -webkit-box-shadow:none;
  5076. box-shadow:none;
  5077. }
  5078. #u134391 {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:945px;
  5082. top:523px;
  5083. width:375px;
  5084. height:60px;
  5085. display:flex;
  5086. }
  5087. #u134391 .text {
  5088. position:absolute;
  5089. align-self:center;
  5090. padding:2px 2px 2px 2px;
  5091. box-sizing:border-box;
  5092. width:100%;
  5093. }
  5094. #u134391_text {
  5095. border-width:0px;
  5096. word-wrap:break-word;
  5097. text-transform:none;
  5098. visibility:hidden;
  5099. }
  5100. #u134392_div {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:40px;
  5106. height:40px;
  5107. background:inherit;
  5108. background-color:rgba(0, 137, 254, 1);
  5109. border:none;
  5110. border-radius:4px;
  5111. -moz-box-shadow:none;
  5112. -webkit-box-shadow:none;
  5113. box-shadow:none;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. color:#FFFFFF;
  5118. }
  5119. #u134392 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:963px;
  5123. top:533px;
  5124. width:40px;
  5125. height:40px;
  5126. display:flex;
  5127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. color:#FFFFFF;
  5131. }
  5132. #u134392 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:2px 2px 2px 2px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u134392_text {
  5140. border-width:0px;
  5141. word-wrap:break-word;
  5142. text-transform:none;
  5143. }
  5144. #u134393_div {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:37px;
  5150. height:30px;
  5151. background:inherit;
  5152. background-color:rgba(255, 255, 255, 0);
  5153. border:none;
  5154. border-left:0px;
  5155. border-top:0px;
  5156. border-right:0px;
  5157. border-radius:0px;
  5158. border-bottom-right-radius:0px;
  5159. border-bottom-left-radius:0px;
  5160. -moz-box-shadow:none;
  5161. -webkit-box-shadow:none;
  5162. box-shadow:none;
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:18px;
  5167. line-height:30px;
  5168. }
  5169. #u134393 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:1016px;
  5173. top:538px;
  5174. width:37px;
  5175. height:30px;
  5176. display:flex;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:18px;
  5181. line-height:30px;
  5182. }
  5183. #u134393 .text {
  5184. position:absolute;
  5185. align-self:flex-start;
  5186. padding:0px 0px 0px 0px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u134393_text {
  5191. border-width:0px;
  5192. white-space:nowrap;
  5193. text-transform:none;
  5194. }
  5195. #u134394_img {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:14px;
  5201. height:11px;
  5202. }
  5203. #u134394 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:1283px;
  5207. top:548px;
  5208. width:14px;
  5209. height:11px;
  5210. display:flex;
  5211. }
  5212. #u134394 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 2px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u134394_text {
  5220. border-width:0px;
  5221. word-wrap:break-word;
  5222. text-transform:none;
  5223. visibility:hidden;
  5224. }
  5225. #u134395_div {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:375px;
  5231. height:60px;
  5232. background:inherit;
  5233. background-color:rgba(255, 255, 255, 1);
  5234. border:none;
  5235. border-left:0px;
  5236. border-top:0px;
  5237. border-right:0px;
  5238. border-radius:0px;
  5239. border-bottom-right-radius:0px;
  5240. border-bottom-left-radius:0px;
  5241. -moz-box-shadow:none;
  5242. -webkit-box-shadow:none;
  5243. box-shadow:none;
  5244. }
  5245. #u134395 {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:945px;
  5249. top:584px;
  5250. width:375px;
  5251. height:60px;
  5252. display:flex;
  5253. }
  5254. #u134395 .text {
  5255. position:absolute;
  5256. align-self:center;
  5257. padding:2px 2px 2px 2px;
  5258. box-sizing:border-box;
  5259. width:100%;
  5260. }
  5261. #u134395_text {
  5262. border-width:0px;
  5263. word-wrap:break-word;
  5264. text-transform:none;
  5265. visibility:hidden;
  5266. }
  5267. #u134396_div {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:40px;
  5273. height:40px;
  5274. background:inherit;
  5275. background-color:rgba(0, 137, 254, 1);
  5276. border:none;
  5277. border-radius:4px;
  5278. -moz-box-shadow:none;
  5279. -webkit-box-shadow:none;
  5280. box-shadow:none;
  5281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5282. font-weight:400;
  5283. font-style:normal;
  5284. color:#FFFFFF;
  5285. }
  5286. #u134396 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:963px;
  5290. top:594px;
  5291. width:40px;
  5292. height:40px;
  5293. display:flex;
  5294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5295. font-weight:400;
  5296. font-style:normal;
  5297. color:#FFFFFF;
  5298. }
  5299. #u134396 .text {
  5300. position:absolute;
  5301. align-self:center;
  5302. padding:2px 2px 2px 2px;
  5303. box-sizing:border-box;
  5304. width:100%;
  5305. }
  5306. #u134396_text {
  5307. border-width:0px;
  5308. word-wrap:break-word;
  5309. text-transform:none;
  5310. }
  5311. #u134397_div {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:37px;
  5317. height:30px;
  5318. background:inherit;
  5319. background-color:rgba(255, 255, 255, 0);
  5320. border:none;
  5321. border-left:0px;
  5322. border-top:0px;
  5323. border-right:0px;
  5324. border-radius:0px;
  5325. border-bottom-right-radius:0px;
  5326. border-bottom-left-radius:0px;
  5327. -moz-box-shadow:none;
  5328. -webkit-box-shadow:none;
  5329. box-shadow:none;
  5330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:18px;
  5334. line-height:30px;
  5335. }
  5336. #u134397 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:1016px;
  5340. top:599px;
  5341. width:37px;
  5342. height:30px;
  5343. display:flex;
  5344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. font-size:18px;
  5348. line-height:30px;
  5349. }
  5350. #u134397 .text {
  5351. position:absolute;
  5352. align-self:flex-start;
  5353. padding:0px 0px 0px 0px;
  5354. box-sizing:border-box;
  5355. width:100%;
  5356. }
  5357. #u134397_text {
  5358. border-width:0px;
  5359. white-space:nowrap;
  5360. text-transform:none;
  5361. }
  5362. #u134398_img {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:14px;
  5368. height:11px;
  5369. }
  5370. #u134398 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:1283px;
  5374. top:609px;
  5375. width:14px;
  5376. height:11px;
  5377. display:flex;
  5378. }
  5379. #u134398 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 2px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u134398_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u134399_div {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:375px;
  5398. height:60px;
  5399. background:inherit;
  5400. background-color:rgba(255, 255, 255, 1);
  5401. border:none;
  5402. border-left:0px;
  5403. border-top:0px;
  5404. border-right:0px;
  5405. border-radius:0px;
  5406. border-bottom-right-radius:0px;
  5407. border-bottom-left-radius:0px;
  5408. -moz-box-shadow:none;
  5409. -webkit-box-shadow:none;
  5410. box-shadow:none;
  5411. }
  5412. #u134399 {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:29px;
  5416. top:496px;
  5417. width:375px;
  5418. height:60px;
  5419. display:flex;
  5420. }
  5421. #u134399 .text {
  5422. position:absolute;
  5423. align-self:center;
  5424. padding:2px 2px 2px 2px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. #u134399_text {
  5429. border-width:0px;
  5430. word-wrap:break-word;
  5431. text-transform:none;
  5432. visibility:hidden;
  5433. }
  5434. #u134400_div {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:0px;
  5438. top:0px;
  5439. width:40px;
  5440. height:40px;
  5441. background:inherit;
  5442. background-color:rgba(0, 137, 254, 1);
  5443. border:none;
  5444. border-radius:4px;
  5445. -moz-box-shadow:none;
  5446. -webkit-box-shadow:none;
  5447. box-shadow:none;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. color:#FFFFFF;
  5452. }
  5453. #u134400 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:47px;
  5457. top:506px;
  5458. width:40px;
  5459. height:40px;
  5460. display:flex;
  5461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. color:#FFFFFF;
  5465. }
  5466. #u134400 .text {
  5467. position:absolute;
  5468. align-self:center;
  5469. padding:2px 2px 2px 2px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u134400_text {
  5474. border-width:0px;
  5475. word-wrap:break-word;
  5476. text-transform:none;
  5477. }
  5478. #u134401_div {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:37px;
  5484. height:30px;
  5485. background:inherit;
  5486. background-color:rgba(255, 255, 255, 0);
  5487. border:none;
  5488. border-left:0px;
  5489. border-top:0px;
  5490. border-right:0px;
  5491. border-radius:0px;
  5492. border-bottom-right-radius:0px;
  5493. border-bottom-left-radius:0px;
  5494. -moz-box-shadow:none;
  5495. -webkit-box-shadow:none;
  5496. box-shadow:none;
  5497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:18px;
  5501. line-height:30px;
  5502. }
  5503. #u134401 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:100px;
  5507. top:511px;
  5508. width:37px;
  5509. height:30px;
  5510. display:flex;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:18px;
  5515. line-height:30px;
  5516. }
  5517. #u134401 .text {
  5518. position:absolute;
  5519. align-self:flex-start;
  5520. padding:0px 0px 0px 0px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u134401_text {
  5525. border-width:0px;
  5526. white-space:nowrap;
  5527. text-transform:none;
  5528. }
  5529. #u134402_img {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:14px;
  5535. height:11px;
  5536. }
  5537. #u134402 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:367px;
  5541. top:521px;
  5542. width:14px;
  5543. height:11px;
  5544. display:flex;
  5545. }
  5546. #u134402 .text {
  5547. position:absolute;
  5548. align-self:center;
  5549. padding:2px 2px 2px 2px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u134402_text {
  5554. border-width:0px;
  5555. word-wrap:break-word;
  5556. text-transform:none;
  5557. visibility:hidden;
  5558. }
  5559. #u134403_div {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:375px;
  5565. height:60px;
  5566. background:inherit;
  5567. background-color:rgba(255, 255, 255, 1);
  5568. border:none;
  5569. border-left:0px;
  5570. border-top:0px;
  5571. border-right:0px;
  5572. border-radius:0px;
  5573. border-bottom-right-radius:0px;
  5574. border-bottom-left-radius:0px;
  5575. -moz-box-shadow:none;
  5576. -webkit-box-shadow:none;
  5577. box-shadow:none;
  5578. }
  5579. #u134403 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:29px;
  5583. top:557px;
  5584. width:375px;
  5585. height:60px;
  5586. display:flex;
  5587. }
  5588. #u134403 .text {
  5589. position:absolute;
  5590. align-self:center;
  5591. padding:2px 2px 2px 2px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u134403_text {
  5596. border-width:0px;
  5597. word-wrap:break-word;
  5598. text-transform:none;
  5599. visibility:hidden;
  5600. }
  5601. #u134404_div {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:40px;
  5607. height:40px;
  5608. background:inherit;
  5609. background-color:rgba(0, 137, 254, 1);
  5610. border:none;
  5611. border-radius:4px;
  5612. -moz-box-shadow:none;
  5613. -webkit-box-shadow:none;
  5614. box-shadow:none;
  5615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5616. font-weight:400;
  5617. font-style:normal;
  5618. color:#FFFFFF;
  5619. }
  5620. #u134404 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:47px;
  5624. top:567px;
  5625. width:40px;
  5626. height:40px;
  5627. display:flex;
  5628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5629. font-weight:400;
  5630. font-style:normal;
  5631. color:#FFFFFF;
  5632. }
  5633. #u134404 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:2px 2px 2px 2px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u134404_text {
  5641. border-width:0px;
  5642. word-wrap:break-word;
  5643. text-transform:none;
  5644. }
  5645. #u134405_div {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:37px;
  5651. height:30px;
  5652. background:inherit;
  5653. background-color:rgba(255, 255, 255, 0);
  5654. border:none;
  5655. border-left:0px;
  5656. border-top:0px;
  5657. border-right:0px;
  5658. border-radius:0px;
  5659. border-bottom-right-radius:0px;
  5660. border-bottom-left-radius:0px;
  5661. -moz-box-shadow:none;
  5662. -webkit-box-shadow:none;
  5663. box-shadow:none;
  5664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:18px;
  5668. line-height:30px;
  5669. }
  5670. #u134405 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:100px;
  5674. top:572px;
  5675. width:37px;
  5676. height:30px;
  5677. display:flex;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:18px;
  5682. line-height:30px;
  5683. }
  5684. #u134405 .text {
  5685. position:absolute;
  5686. align-self:flex-start;
  5687. padding:0px 0px 0px 0px;
  5688. box-sizing:border-box;
  5689. width:100%;
  5690. }
  5691. #u134405_text {
  5692. border-width:0px;
  5693. white-space:nowrap;
  5694. text-transform:none;
  5695. }
  5696. #u134406_img {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:14px;
  5702. height:11px;
  5703. }
  5704. #u134406 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:367px;
  5708. top:582px;
  5709. width:14px;
  5710. height:11px;
  5711. display:flex;
  5712. }
  5713. #u134406 .text {
  5714. position:absolute;
  5715. align-self:center;
  5716. padding:2px 2px 2px 2px;
  5717. box-sizing:border-box;
  5718. width:100%;
  5719. }
  5720. #u134406_text {
  5721. border-width:0px;
  5722. word-wrap:break-word;
  5723. text-transform:none;
  5724. visibility:hidden;
  5725. }
  5726. #u134407 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:0px;
  5730. top:0px;
  5731. width:0px;
  5732. height:0px;
  5733. }
  5734. #u134408_div {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:375px;
  5740. height:50px;
  5741. background:inherit;
  5742. background-color:rgba(255, 255, 255, 1);
  5743. border:none;
  5744. border-top:0px;
  5745. border-radius:27px;
  5746. border-top-left-radius:0px;
  5747. border-top-right-radius:0px;
  5748. -moz-box-shadow:none;
  5749. -webkit-box-shadow:none;
  5750. box-shadow:none;
  5751. }
  5752. #u134408 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:482px;
  5756. top:790px;
  5757. width:375px;
  5758. height:50px;
  5759. display:flex;
  5760. }
  5761. #u134408 .text {
  5762. position:absolute;
  5763. align-self:center;
  5764. padding:2px 2px 2px 2px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u134408_text {
  5769. border-width:0px;
  5770. word-wrap:break-word;
  5771. text-transform:none;
  5772. visibility:hidden;
  5773. }
  5774. #u134409_div {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:57px;
  5780. height:30px;
  5781. background:inherit;
  5782. background-color:rgba(255, 255, 255, 0);
  5783. border:none;
  5784. border-left:0px;
  5785. border-top:0px;
  5786. border-right:0px;
  5787. border-radius:0px;
  5788. border-bottom-right-radius:0px;
  5789. border-bottom-left-radius:0px;
  5790. -moz-box-shadow:none;
  5791. -webkit-box-shadow:none;
  5792. box-shadow:none;
  5793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5794. font-weight:400;
  5795. font-style:normal;
  5796. font-size:14px;
  5797. line-height:30px;
  5798. }
  5799. #u134409 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:520px;
  5803. top:798px;
  5804. width:57px;
  5805. height:30px;
  5806. display:flex;
  5807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:14px;
  5811. line-height:30px;
  5812. }
  5813. #u134409 .text {
  5814. position:absolute;
  5815. align-self:flex-start;
  5816. padding:0px 0px 0px 0px;
  5817. box-sizing:border-box;
  5818. width:100%;
  5819. }
  5820. #u134409_text {
  5821. border-width:0px;
  5822. white-space:nowrap;
  5823. text-transform:none;
  5824. }
  5825. #u134410_div {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:71px;
  5831. height:30px;
  5832. background:inherit;
  5833. background-color:rgba(255, 255, 255, 0);
  5834. border:none;
  5835. border-left:0px;
  5836. border-top:0px;
  5837. border-right:0px;
  5838. border-radius:0px;
  5839. border-bottom-right-radius:0px;
  5840. border-bottom-left-radius:0px;
  5841. -moz-box-shadow:none;
  5842. -webkit-box-shadow:none;
  5843. box-shadow:none;
  5844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5845. font-weight:400;
  5846. font-style:normal;
  5847. font-size:14px;
  5848. line-height:30px;
  5849. }
  5850. #u134410 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:635px;
  5854. top:798px;
  5855. width:71px;
  5856. height:30px;
  5857. display:flex;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:14px;
  5862. line-height:30px;
  5863. }
  5864. #u134410 .text {
  5865. position:absolute;
  5866. align-self:flex-start;
  5867. padding:0px 0px 0px 0px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u134410_text {
  5872. border-width:0px;
  5873. white-space:nowrap;
  5874. text-transform:none;
  5875. }
  5876. #u134411_img {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:2px;
  5882. height:16px;
  5883. }
  5884. #u134411 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:606px;
  5888. top:805px;
  5889. width:1px;
  5890. height:15px;
  5891. display:flex;
  5892. color:#F2F2F2;
  5893. }
  5894. #u134411 .text {
  5895. position:absolute;
  5896. align-self:center;
  5897. padding:2px 2px 2px 2px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u134411_text {
  5902. border-width:0px;
  5903. word-wrap:break-word;
  5904. text-transform:none;
  5905. visibility:hidden;
  5906. }
  5907. #u134412_div {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:57px;
  5913. height:30px;
  5914. background:inherit;
  5915. background-color:rgba(255, 255, 255, 0);
  5916. border:none;
  5917. border-left:0px;
  5918. border-top:0px;
  5919. border-right:0px;
  5920. border-radius:0px;
  5921. border-bottom-right-radius:0px;
  5922. border-bottom-left-radius:0px;
  5923. -moz-box-shadow:none;
  5924. -webkit-box-shadow:none;
  5925. box-shadow:none;
  5926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:14px;
  5930. line-height:30px;
  5931. }
  5932. #u134412 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:764px;
  5936. top:798px;
  5937. width:57px;
  5938. height:30px;
  5939. display:flex;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:14px;
  5944. line-height:30px;
  5945. }
  5946. #u134412 .text {
  5947. position:absolute;
  5948. align-self:flex-start;
  5949. padding:0px 0px 0px 0px;
  5950. box-sizing:border-box;
  5951. width:100%;
  5952. }
  5953. #u134412_text {
  5954. border-width:0px;
  5955. white-space:nowrap;
  5956. text-transform:none;
  5957. }
  5958. #u134413_img {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:2px;
  5964. height:16px;
  5965. }
  5966. #u134413 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:735px;
  5970. top:805px;
  5971. width:1px;
  5972. height:15px;
  5973. display:flex;
  5974. color:#F2F2F2;
  5975. }
  5976. #u134413 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:2px 2px 2px 2px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u134413_text {
  5984. border-width:0px;
  5985. word-wrap:break-word;
  5986. text-transform:none;
  5987. visibility:hidden;
  5988. }
  5989. #u134414 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:0px;
  5995. height:0px;
  5996. }
  5997. #u134415_div {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:0px;
  6001. top:0px;
  6002. width:375px;
  6003. height:60px;
  6004. background:inherit;
  6005. background-color:rgba(255, 255, 255, 1);
  6006. border:none;
  6007. border-left:0px;
  6008. border-top:0px;
  6009. border-right:0px;
  6010. border-radius:0px;
  6011. border-bottom-right-radius:0px;
  6012. border-bottom-left-radius:0px;
  6013. -moz-box-shadow:none;
  6014. -webkit-box-shadow:none;
  6015. box-shadow:none;
  6016. }
  6017. #u134415 {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:29px;
  6021. top:627px;
  6022. width:375px;
  6023. height:60px;
  6024. display:flex;
  6025. }
  6026. #u134415 .text {
  6027. position:absolute;
  6028. align-self:center;
  6029. padding:2px 2px 2px 2px;
  6030. box-sizing:border-box;
  6031. width:100%;
  6032. }
  6033. #u134415_text {
  6034. border-width:0px;
  6035. word-wrap:break-word;
  6036. text-transform:none;
  6037. visibility:hidden;
  6038. }
  6039. #u134416_div {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:181px;
  6045. height:30px;
  6046. background:inherit;
  6047. background-color:rgba(255, 255, 255, 0);
  6048. border:none;
  6049. border-left:0px;
  6050. border-top:0px;
  6051. border-right:0px;
  6052. border-radius:0px;
  6053. border-bottom-right-radius:0px;
  6054. border-bottom-left-radius:0px;
  6055. -moz-box-shadow:none;
  6056. -webkit-box-shadow:none;
  6057. box-shadow:none;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:18px;
  6062. line-height:30px;
  6063. }
  6064. #u134416 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:120px;
  6068. top:642px;
  6069. width:181px;
  6070. height:30px;
  6071. display:flex;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:18px;
  6076. line-height:30px;
  6077. }
  6078. #u134416 .text {
  6079. position:absolute;
  6080. align-self:flex-start;
  6081. padding:0px 0px 0px 0px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u134416_text {
  6086. border-width:0px;
  6087. white-space:nowrap;
  6088. text-transform:none;
  6089. }
  6090. #u134417_img {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:40px;
  6096. height:40px;
  6097. }
  6098. #u134417 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:45px;
  6102. top:637px;
  6103. width:40px;
  6104. height:40px;
  6105. display:flex;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:12px;
  6110. color:#FFFFFF;
  6111. }
  6112. #u134417 .text {
  6113. position:absolute;
  6114. align-self:center;
  6115. padding:2px 2px 2px 2px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u134417_text {
  6120. border-width:0px;
  6121. word-wrap:break-word;
  6122. text-transform:none;
  6123. }
  6124. #u134418_img {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:8px;
  6130. height:13px;
  6131. }
  6132. #u134418 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:370px;
  6136. top:651px;
  6137. width:8px;
  6138. height:13px;
  6139. display:flex;
  6140. -webkit-transform:rotate(180deg);
  6141. -moz-transform:rotate(180deg);
  6142. -ms-transform:rotate(180deg);
  6143. transform:rotate(180deg);
  6144. }
  6145. #u134418 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 2px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u134418_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u134419_img {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:19px;
  6164. height:17px;
  6165. }
  6166. #u134419 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:96px;
  6170. top:649px;
  6171. width:19px;
  6172. height:17px;
  6173. display:flex;
  6174. }
  6175. #u134419 .text {
  6176. position:absolute;
  6177. align-self:center;
  6178. padding:2px 2px 2px 2px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u134419_text {
  6183. border-width:0px;
  6184. word-wrap:break-word;
  6185. text-transform:none;
  6186. visibility:hidden;
  6187. }
  6188. #u134420 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:0px;
  6194. height:0px;
  6195. }
  6196. #u134421_div {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:375px;
  6202. height:50px;
  6203. background:inherit;
  6204. background-color:rgba(255, 255, 255, 1);
  6205. border:none;
  6206. border-top:0px;
  6207. border-radius:27px;
  6208. border-top-left-radius:0px;
  6209. border-top-right-radius:0px;
  6210. -moz-box-shadow:none;
  6211. -webkit-box-shadow:none;
  6212. box-shadow:none;
  6213. }
  6214. #u134421 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:29px;
  6218. top:790px;
  6219. width:375px;
  6220. height:50px;
  6221. display:flex;
  6222. }
  6223. #u134421 .text {
  6224. position:absolute;
  6225. align-self:center;
  6226. padding:2px 2px 2px 2px;
  6227. box-sizing:border-box;
  6228. width:100%;
  6229. }
  6230. #u134421_text {
  6231. border-width:0px;
  6232. word-wrap:break-word;
  6233. text-transform:none;
  6234. visibility:hidden;
  6235. }
  6236. #u134422_div {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:57px;
  6242. height:30px;
  6243. background:inherit;
  6244. background-color:rgba(255, 255, 255, 0);
  6245. border:none;
  6246. border-left:0px;
  6247. border-top:0px;
  6248. border-right:0px;
  6249. border-radius:0px;
  6250. border-bottom-right-radius:0px;
  6251. border-bottom-left-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:14px;
  6259. line-height:30px;
  6260. }
  6261. #u134422 {
  6262. border-width:0px;
  6263. position:absolute;
  6264. left:100px;
  6265. top:798px;
  6266. width:57px;
  6267. height:30px;
  6268. display:flex;
  6269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. font-size:14px;
  6273. line-height:30px;
  6274. }
  6275. #u134422 .text {
  6276. position:absolute;
  6277. align-self:flex-start;
  6278. padding:0px 0px 0px 0px;
  6279. box-sizing:border-box;
  6280. width:100%;
  6281. }
  6282. #u134422_text {
  6283. border-width:0px;
  6284. white-space:nowrap;
  6285. text-transform:none;
  6286. }
  6287. #u134423_img {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:0px;
  6291. top:0px;
  6292. width:2px;
  6293. height:16px;
  6294. }
  6295. #u134423 {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:217px;
  6299. top:805px;
  6300. width:1px;
  6301. height:15px;
  6302. display:flex;
  6303. color:#F2F2F2;
  6304. }
  6305. #u134423 .text {
  6306. position:absolute;
  6307. align-self:center;
  6308. padding:2px 2px 2px 2px;
  6309. box-sizing:border-box;
  6310. width:100%;
  6311. }
  6312. #u134423_text {
  6313. border-width:0px;
  6314. word-wrap:break-word;
  6315. text-transform:none;
  6316. visibility:hidden;
  6317. }
  6318. #u134424_div {
  6319. border-width:0px;
  6320. position:absolute;
  6321. left:0px;
  6322. top:0px;
  6323. width:71px;
  6324. height:30px;
  6325. background:inherit;
  6326. background-color:rgba(255, 255, 255, 0);
  6327. border:none;
  6328. border-left:0px;
  6329. border-top:0px;
  6330. border-right:0px;
  6331. border-radius:0px;
  6332. border-bottom-right-radius:0px;
  6333. border-bottom-left-radius:0px;
  6334. -moz-box-shadow:none;
  6335. -webkit-box-shadow:none;
  6336. box-shadow:none;
  6337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6338. font-weight:400;
  6339. font-style:normal;
  6340. font-size:14px;
  6341. line-height:30px;
  6342. }
  6343. #u134424 {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:274px;
  6347. top:798px;
  6348. width:71px;
  6349. height:30px;
  6350. display:flex;
  6351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6352. font-weight:400;
  6353. font-style:normal;
  6354. font-size:14px;
  6355. line-height:30px;
  6356. }
  6357. #u134424 .text {
  6358. position:absolute;
  6359. align-self:flex-start;
  6360. padding:0px 0px 0px 0px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u134424_text {
  6365. border-width:0px;
  6366. white-space:nowrap;
  6367. text-transform:none;
  6368. }
  6369. #u134426_img {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:433px;
  6375. height:865px;
  6376. }
  6377. #u134426 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:1369px;
  6381. top:0px;
  6382. width:433px;
  6383. height:865px;
  6384. display:flex;
  6385. }
  6386. #u134426 .text {
  6387. position:absolute;
  6388. align-self:center;
  6389. padding:2px 2px 2px 2px;
  6390. box-sizing:border-box;
  6391. width:100%;
  6392. }
  6393. #u134426_text {
  6394. border-width:0px;
  6395. word-wrap:break-word;
  6396. text-transform:none;
  6397. visibility:hidden;
  6398. }
  6399. #u134427_div {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:375px;
  6405. height:40px;
  6406. background:inherit;
  6407. background-color:rgba(255, 255, 255, 1);
  6408. box-sizing:border-box;
  6409. border-width:1px;
  6410. border-style:solid;
  6411. border-color:rgba(215, 215, 215, 1);
  6412. border-left:0px;
  6413. border-top:0px;
  6414. border-right:0px;
  6415. border-radius:0px;
  6416. border-bottom-right-radius:0px;
  6417. border-bottom-left-radius:0px;
  6418. -moz-box-shadow:none;
  6419. -webkit-box-shadow:none;
  6420. box-shadow:none;
  6421. }
  6422. #u134427 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:1398px;
  6426. top:67px;
  6427. width:375px;
  6428. height:40px;
  6429. display:flex;
  6430. }
  6431. #u134427 .text {
  6432. position:absolute;
  6433. align-self:center;
  6434. padding:2px 2px 2px 2px;
  6435. box-sizing:border-box;
  6436. width:100%;
  6437. }
  6438. #u134427_text {
  6439. border-width:0px;
  6440. word-wrap:break-word;
  6441. text-transform:none;
  6442. visibility:hidden;
  6443. }
  6444. #u134428 {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:0px;
  6450. height:0px;
  6451. }
  6452. #u134429_div {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:88px;
  6458. height:32px;
  6459. background:inherit;
  6460. background-color:rgba(255, 255, 255, 1);
  6461. box-sizing:border-box;
  6462. border-width:1px;
  6463. border-style:solid;
  6464. border-color:rgba(242, 242, 242, 1);
  6465. border-radius:33px;
  6466. -moz-box-shadow:none;
  6467. -webkit-box-shadow:none;
  6468. box-shadow:none;
  6469. }
  6470. #u134429 {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:1678px;
  6474. top:71px;
  6475. width:88px;
  6476. height:32px;
  6477. display:flex;
  6478. }
  6479. #u134429 .text {
  6480. position:absolute;
  6481. align-self:center;
  6482. padding:2px 2px 2px 2px;
  6483. box-sizing:border-box;
  6484. width:100%;
  6485. }
  6486. #u134429_text {
  6487. border-width:0px;
  6488. word-wrap:break-word;
  6489. text-transform:none;
  6490. visibility:hidden;
  6491. }
  6492. #u134430 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:0px;
  6498. height:0px;
  6499. }
  6500. #u134431_img {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:18px;
  6506. height:18px;
  6507. }
  6508. #u134431 {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:1741px;
  6512. top:78px;
  6513. width:18px;
  6514. height:18px;
  6515. display:flex;
  6516. }
  6517. #u134431 .text {
  6518. position:absolute;
  6519. align-self:center;
  6520. padding:2px 2px 2px 2px;
  6521. box-sizing:border-box;
  6522. width:100%;
  6523. }
  6524. #u134431_text {
  6525. border-width:0px;
  6526. word-wrap:break-word;
  6527. text-transform:none;
  6528. visibility:hidden;
  6529. }
  6530. #u134432_img {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:6px;
  6536. height:6px;
  6537. }
  6538. #u134432 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:1747px;
  6542. top:84px;
  6543. width:6px;
  6544. height:6px;
  6545. display:flex;
  6546. }
  6547. #u134432 .text {
  6548. position:absolute;
  6549. align-self:center;
  6550. padding:2px 2px 2px 2px;
  6551. box-sizing:border-box;
  6552. width:100%;
  6553. }
  6554. #u134432_text {
  6555. border-width:0px;
  6556. word-wrap:break-word;
  6557. text-transform:none;
  6558. visibility:hidden;
  6559. }
  6560. #u134433 {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:0px;
  6566. height:0px;
  6567. }
  6568. #u134434_img {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:0px;
  6572. top:0px;
  6573. width:5px;
  6574. height:5px;
  6575. }
  6576. #u134434 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:1692px;
  6580. top:85px;
  6581. width:5px;
  6582. height:5px;
  6583. display:flex;
  6584. }
  6585. #u134434 .text {
  6586. position:absolute;
  6587. align-self:center;
  6588. padding:2px 2px 2px 2px;
  6589. box-sizing:border-box;
  6590. width:100%;
  6591. }
  6592. #u134434_text {
  6593. border-width:0px;
  6594. word-wrap:break-word;
  6595. text-transform:none;
  6596. visibility:hidden;
  6597. }
  6598. #u134435_img {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:0px;
  6602. top:0px;
  6603. width:5px;
  6604. height:5px;
  6605. }
  6606. #u134435 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:1708px;
  6610. top:85px;
  6611. width:5px;
  6612. height:5px;
  6613. display:flex;
  6614. }
  6615. #u134435 .text {
  6616. position:absolute;
  6617. align-self:center;
  6618. padding:2px 2px 2px 2px;
  6619. box-sizing:border-box;
  6620. width:100%;
  6621. }
  6622. #u134435_text {
  6623. border-width:0px;
  6624. word-wrap:break-word;
  6625. text-transform:none;
  6626. visibility:hidden;
  6627. }
  6628. #u134436_img {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:0px;
  6632. top:0px;
  6633. width:7px;
  6634. height:7px;
  6635. }
  6636. #u134436 {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:1699px;
  6640. top:84px;
  6641. width:7px;
  6642. height:7px;
  6643. display:flex;
  6644. }
  6645. #u134436 .text {
  6646. position:absolute;
  6647. align-self:center;
  6648. padding:2px 2px 2px 2px;
  6649. box-sizing:border-box;
  6650. width:100%;
  6651. }
  6652. #u134436_text {
  6653. border-width:0px;
  6654. word-wrap:break-word;
  6655. text-transform:none;
  6656. visibility:hidden;
  6657. }
  6658. #u134437_img {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:19px;
  6664. height:2px;
  6665. }
  6666. #u134437 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:1716px;
  6670. top:87px;
  6671. width:18px;
  6672. height:1px;
  6673. display:flex;
  6674. -webkit-transform:rotate(90deg);
  6675. -moz-transform:rotate(90deg);
  6676. -ms-transform:rotate(90deg);
  6677. transform:rotate(90deg);
  6678. }
  6679. #u134437 .text {
  6680. position:absolute;
  6681. align-self:center;
  6682. padding:2px 2px 2px 2px;
  6683. box-sizing:border-box;
  6684. width:100%;
  6685. }
  6686. #u134437_text {
  6687. border-width:0px;
  6688. word-wrap:break-word;
  6689. text-transform:none;
  6690. visibility:hidden;
  6691. }
  6692. #u134438_img {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:0px;
  6696. top:0px;
  6697. width:375px;
  6698. height:44px;
  6699. }
  6700. #u134438 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:1398px;
  6704. top:24px;
  6705. width:375px;
  6706. height:44px;
  6707. display:flex;
  6708. }
  6709. #u134438 .text {
  6710. position:absolute;
  6711. align-self:center;
  6712. padding:2px 2px 2px 2px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u134438_text {
  6717. border-width:0px;
  6718. word-wrap:break-word;
  6719. text-transform:none;
  6720. visibility:hidden;
  6721. }
  6722. #u134439_div {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:0px;
  6726. top:0px;
  6727. width:375px;
  6728. height:50px;
  6729. background:inherit;
  6730. background-color:rgba(255, 255, 255, 1);
  6731. box-sizing:border-box;
  6732. border-width:1px;
  6733. border-style:solid;
  6734. border-color:rgba(242, 242, 242, 1);
  6735. border-radius:26px;
  6736. border-top-left-radius:0px;
  6737. border-top-right-radius:0px;
  6738. -moz-box-shadow:none;
  6739. -webkit-box-shadow:none;
  6740. box-shadow:none;
  6741. }
  6742. #u134439 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:1398px;
  6746. top:788px;
  6747. width:375px;
  6748. height:50px;
  6749. display:flex;
  6750. }
  6751. #u134439 .text {
  6752. position:absolute;
  6753. align-self:center;
  6754. padding:2px 2px 2px 2px;
  6755. box-sizing:border-box;
  6756. width:100%;
  6757. }
  6758. #u134439_text {
  6759. border-width:0px;
  6760. word-wrap:break-word;
  6761. text-transform:none;
  6762. visibility:hidden;
  6763. }
  6764. #u134440 {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:0px;
  6768. top:0px;
  6769. width:0px;
  6770. height:0px;
  6771. }
  6772. #u134441_img {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:24px;
  6778. height:24px;
  6779. }
  6780. #u134441 {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:1438px;
  6784. top:792px;
  6785. width:24px;
  6786. height:24px;
  6787. display:flex;
  6788. font-size:8px;
  6789. }
  6790. #u134441 .text {
  6791. position:absolute;
  6792. align-self:center;
  6793. padding:2px 2px 2px 2px;
  6794. box-sizing:border-box;
  6795. width:100%;
  6796. }
  6797. #u134441_text {
  6798. border-width:0px;
  6799. word-wrap:break-word;
  6800. text-transform:none;
  6801. }
  6802. #u134442_div {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:0px;
  6806. top:0px;
  6807. width:25px;
  6808. height:17px;
  6809. background:inherit;
  6810. background-color:rgba(255, 255, 255, 0);
  6811. border:none;
  6812. border-radius:0px;
  6813. -moz-box-shadow:none;
  6814. -webkit-box-shadow:none;
  6815. box-shadow:none;
  6816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6817. font-weight:400;
  6818. font-style:normal;
  6819. font-size:12px;
  6820. }
  6821. #u134442 {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:1438px;
  6825. top:817px;
  6826. width:25px;
  6827. height:17px;
  6828. display:flex;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. font-size:12px;
  6833. }
  6834. #u134442 .text {
  6835. position:absolute;
  6836. align-self:flex-start;
  6837. padding:0px 0px 0px 0px;
  6838. box-sizing:border-box;
  6839. width:100%;
  6840. }
  6841. #u134442_text {
  6842. border-width:0px;
  6843. white-space:nowrap;
  6844. text-transform:none;
  6845. }
  6846. #u134443 {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:0px;
  6850. top:0px;
  6851. width:0px;
  6852. height:0px;
  6853. }
  6854. #u134444_img {
  6855. border-width:0px;
  6856. position:absolute;
  6857. left:0px;
  6858. top:0px;
  6859. width:24px;
  6860. height:24px;
  6861. }
  6862. #u134444 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:1708px;
  6866. top:794px;
  6867. width:24px;
  6868. height:24px;
  6869. display:flex;
  6870. font-size:8px;
  6871. }
  6872. #u134444 .text {
  6873. position:absolute;
  6874. align-self:center;
  6875. padding:2px 2px 2px 2px;
  6876. box-sizing:border-box;
  6877. width:100%;
  6878. }
  6879. #u134444_text {
  6880. border-width:0px;
  6881. word-wrap:break-word;
  6882. text-transform:none;
  6883. }
  6884. #u134445_div {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:25px;
  6890. height:17px;
  6891. background:inherit;
  6892. background-color:rgba(255, 255, 255, 0);
  6893. border:none;
  6894. border-radius:0px;
  6895. -moz-box-shadow:none;
  6896. -webkit-box-shadow:none;
  6897. box-shadow:none;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:12px;
  6902. }
  6903. #u134445 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:1708px;
  6907. top:819px;
  6908. width:25px;
  6909. height:17px;
  6910. display:flex;
  6911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. font-size:12px;
  6915. }
  6916. #u134445 .text {
  6917. position:absolute;
  6918. align-self:flex-start;
  6919. padding:0px 0px 0px 0px;
  6920. box-sizing:border-box;
  6921. width:100%;
  6922. }
  6923. #u134445_text {
  6924. border-width:0px;
  6925. white-space:nowrap;
  6926. text-transform:none;
  6927. }
  6928. #u134446_div {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:375px;
  6934. height:681px;
  6935. background:inherit;
  6936. background-color:rgba(242, 242, 242, 0.462745098039216);
  6937. border:none;
  6938. border-radius:0px;
  6939. -moz-box-shadow:none;
  6940. -webkit-box-shadow:none;
  6941. box-shadow:none;
  6942. }
  6943. #u134446 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:1398px;
  6947. top:107px;
  6948. width:375px;
  6949. height:681px;
  6950. display:flex;
  6951. }
  6952. #u134446 .text {
  6953. position:absolute;
  6954. align-self:center;
  6955. padding:2px 2px 2px 2px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u134446_text {
  6960. border-width:0px;
  6961. word-wrap:break-word;
  6962. text-transform:none;
  6963. visibility:hidden;
  6964. }
  6965. #u134447 {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:0px;
  6971. height:0px;
  6972. }
  6973. #u134448_img {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:0px;
  6977. top:0px;
  6978. width:24px;
  6979. height:24px;
  6980. }
  6981. #u134448 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:1620px;
  6985. top:792px;
  6986. width:24px;
  6987. height:24px;
  6988. display:flex;
  6989. font-size:8px;
  6990. }
  6991. #u134448 .text {
  6992. position:absolute;
  6993. align-self:center;
  6994. padding:2px 2px 2px 2px;
  6995. box-sizing:border-box;
  6996. width:100%;
  6997. }
  6998. #u134448_text {
  6999. border-width:0px;
  7000. word-wrap:break-word;
  7001. text-transform:none;
  7002. }
  7003. #u134449_div {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:37px;
  7009. height:17px;
  7010. background:inherit;
  7011. background-color:rgba(255, 255, 255, 0);
  7012. border:none;
  7013. border-radius:0px;
  7014. -moz-box-shadow:none;
  7015. -webkit-box-shadow:none;
  7016. box-shadow:none;
  7017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7018. font-weight:400;
  7019. font-style:normal;
  7020. font-size:12px;
  7021. }
  7022. #u134449 {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:1614px;
  7026. top:817px;
  7027. width:37px;
  7028. height:17px;
  7029. display:flex;
  7030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. font-size:12px;
  7034. }
  7035. #u134449 .text {
  7036. position:absolute;
  7037. align-self:flex-start;
  7038. padding:0px 0px 0px 0px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u134449_text {
  7043. border-width:0px;
  7044. white-space:nowrap;
  7045. text-transform:none;
  7046. }
  7047. #u134450 {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:0px;
  7053. height:0px;
  7054. }
  7055. #u134451_img {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:24px;
  7061. height:24px;
  7062. }
  7063. #u134451 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:1526px;
  7067. top:792px;
  7068. width:24px;
  7069. height:24px;
  7070. display:flex;
  7071. font-size:8px;
  7072. }
  7073. #u134451 .text {
  7074. position:absolute;
  7075. align-self:center;
  7076. padding:2px 2px 2px 2px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u134451_text {
  7081. border-width:0px;
  7082. word-wrap:break-word;
  7083. text-transform:none;
  7084. }
  7085. #u134452_div {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:37px;
  7091. height:17px;
  7092. background:inherit;
  7093. background-color:rgba(255, 255, 255, 0);
  7094. border:none;
  7095. border-radius:0px;
  7096. -moz-box-shadow:none;
  7097. -webkit-box-shadow:none;
  7098. box-shadow:none;
  7099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7100. font-weight:400;
  7101. font-style:normal;
  7102. font-size:12px;
  7103. }
  7104. #u134452 {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:1520px;
  7108. top:817px;
  7109. width:37px;
  7110. height:17px;
  7111. display:flex;
  7112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7113. font-weight:400;
  7114. font-style:normal;
  7115. font-size:12px;
  7116. }
  7117. #u134452 .text {
  7118. position:absolute;
  7119. align-self:flex-start;
  7120. padding:0px 0px 0px 0px;
  7121. box-sizing:border-box;
  7122. width:100%;
  7123. }
  7124. #u134452_text {
  7125. border-width:0px;
  7126. white-space:nowrap;
  7127. text-transform:none;
  7128. }
  7129. #u134453_div {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:0px;
  7133. top:0px;
  7134. width:375px;
  7135. height:735px;
  7136. background:inherit;
  7137. background-color:rgba(242, 242, 242, 1);
  7138. border:none;
  7139. border-top:0px;
  7140. border-radius:25px;
  7141. border-top-left-radius:0px;
  7142. border-top-right-radius:0px;
  7143. -moz-box-shadow:none;
  7144. -webkit-box-shadow:none;
  7145. box-shadow:none;
  7146. }
  7147. #u134453 {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:1398px;
  7151. top:105px;
  7152. width:375px;
  7153. height:735px;
  7154. display:flex;
  7155. }
  7156. #u134453 .text {
  7157. position:absolute;
  7158. align-self:center;
  7159. padding:2px 2px 2px 2px;
  7160. box-sizing:border-box;
  7161. width:100%;
  7162. }
  7163. #u134453_text {
  7164. border-width:0px;
  7165. word-wrap:break-word;
  7166. text-transform:none;
  7167. visibility:hidden;
  7168. }
  7169. #u134454_div {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:57px;
  7175. height:30px;
  7176. background:inherit;
  7177. background-color:rgba(255, 255, 255, 0);
  7178. border:none;
  7179. border-left:0px;
  7180. border-top:0px;
  7181. border-right:0px;
  7182. border-radius:0px;
  7183. border-bottom-right-radius:0px;
  7184. border-bottom-left-radius:0px;
  7185. -moz-box-shadow:none;
  7186. -webkit-box-shadow:none;
  7187. box-shadow:none;
  7188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7189. font-weight:500;
  7190. font-style:normal;
  7191. font-size:14px;
  7192. line-height:30px;
  7193. }
  7194. #u134454 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:1557px;
  7198. top:73px;
  7199. width:57px;
  7200. height:30px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7203. font-weight:500;
  7204. font-style:normal;
  7205. font-size:14px;
  7206. line-height:30px;
  7207. }
  7208. #u134454 .text {
  7209. position:absolute;
  7210. align-self:flex-start;
  7211. padding:0px 0px 0px 0px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u134454_text {
  7216. border-width:0px;
  7217. white-space:nowrap;
  7218. text-transform:none;
  7219. }
  7220. #u134455 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:0px;
  7226. height:0px;
  7227. }
  7228. #u134456_img {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:11px;
  7234. height:18px;
  7235. }
  7236. #u134456 {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:1411px;
  7240. top:79px;
  7241. width:11px;
  7242. height:18px;
  7243. display:flex;
  7244. }
  7245. #u134456 .text {
  7246. position:absolute;
  7247. align-self:center;
  7248. padding:2px 2px 2px 2px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u134456_text {
  7253. border-width:0px;
  7254. word-wrap:break-word;
  7255. text-transform:none;
  7256. visibility:hidden;
  7257. }
  7258. #u134457 {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:0px;
  7262. top:0px;
  7263. width:0px;
  7264. height:0px;
  7265. }
  7266. #u134458_div {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:375px;
  7272. height:50px;
  7273. background:inherit;
  7274. background-color:rgba(255, 255, 255, 1);
  7275. border:none;
  7276. border-top:0px;
  7277. border-radius:27px;
  7278. border-top-left-radius:0px;
  7279. border-top-right-radius:0px;
  7280. -moz-box-shadow:none;
  7281. -webkit-box-shadow:none;
  7282. box-shadow:none;
  7283. }
  7284. #u134458 {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:1398px;
  7288. top:790px;
  7289. width:375px;
  7290. height:50px;
  7291. display:flex;
  7292. }
  7293. #u134458 .text {
  7294. position:absolute;
  7295. align-self:center;
  7296. padding:2px 2px 2px 2px;
  7297. box-sizing:border-box;
  7298. width:100%;
  7299. }
  7300. #u134458_text {
  7301. border-width:0px;
  7302. word-wrap:break-word;
  7303. text-transform:none;
  7304. visibility:hidden;
  7305. }
  7306. #u134459_div {
  7307. border-width:0px;
  7308. position:absolute;
  7309. left:0px;
  7310. top:0px;
  7311. width:57px;
  7312. height:30px;
  7313. background:inherit;
  7314. background-color:rgba(255, 255, 255, 0);
  7315. border:none;
  7316. border-left:0px;
  7317. border-top:0px;
  7318. border-right:0px;
  7319. border-radius:0px;
  7320. border-bottom-right-radius:0px;
  7321. border-bottom-left-radius:0px;
  7322. -moz-box-shadow:none;
  7323. -webkit-box-shadow:none;
  7324. box-shadow:none;
  7325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:14px;
  7329. line-height:30px;
  7330. }
  7331. #u134459 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:1436px;
  7335. top:798px;
  7336. width:57px;
  7337. height:30px;
  7338. display:flex;
  7339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. font-size:14px;
  7343. line-height:30px;
  7344. }
  7345. #u134459 .text {
  7346. position:absolute;
  7347. align-self:flex-start;
  7348. padding:0px 0px 0px 0px;
  7349. box-sizing:border-box;
  7350. width:100%;
  7351. }
  7352. #u134459_text {
  7353. border-width:0px;
  7354. white-space:nowrap;
  7355. text-transform:none;
  7356. }
  7357. #u134460_div {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:71px;
  7363. height:30px;
  7364. background:inherit;
  7365. background-color:rgba(255, 255, 255, 0);
  7366. border:none;
  7367. border-left:0px;
  7368. border-top:0px;
  7369. border-right:0px;
  7370. border-radius:0px;
  7371. border-bottom-right-radius:0px;
  7372. border-bottom-left-radius:0px;
  7373. -moz-box-shadow:none;
  7374. -webkit-box-shadow:none;
  7375. box-shadow:none;
  7376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7377. font-weight:400;
  7378. font-style:normal;
  7379. font-size:14px;
  7380. line-height:30px;
  7381. }
  7382. #u134460 {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:1551px;
  7386. top:798px;
  7387. width:71px;
  7388. height:30px;
  7389. display:flex;
  7390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7391. font-weight:400;
  7392. font-style:normal;
  7393. font-size:14px;
  7394. line-height:30px;
  7395. }
  7396. #u134460 .text {
  7397. position:absolute;
  7398. align-self:flex-start;
  7399. padding:0px 0px 0px 0px;
  7400. box-sizing:border-box;
  7401. width:100%;
  7402. }
  7403. #u134460_text {
  7404. border-width:0px;
  7405. white-space:nowrap;
  7406. text-transform:none;
  7407. }
  7408. #u134461_img {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:0px;
  7412. top:0px;
  7413. width:2px;
  7414. height:16px;
  7415. }
  7416. #u134461 {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:1522px;
  7420. top:805px;
  7421. width:1px;
  7422. height:15px;
  7423. display:flex;
  7424. color:#F2F2F2;
  7425. }
  7426. #u134461 .text {
  7427. position:absolute;
  7428. align-self:center;
  7429. padding:2px 2px 2px 2px;
  7430. box-sizing:border-box;
  7431. width:100%;
  7432. }
  7433. #u134461_text {
  7434. border-width:0px;
  7435. word-wrap:break-word;
  7436. text-transform:none;
  7437. visibility:hidden;
  7438. }
  7439. #u134462_div {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:57px;
  7445. height:30px;
  7446. background:inherit;
  7447. background-color:rgba(255, 255, 255, 0);
  7448. border:none;
  7449. border-left:0px;
  7450. border-top:0px;
  7451. border-right:0px;
  7452. border-radius:0px;
  7453. border-bottom-right-radius:0px;
  7454. border-bottom-left-radius:0px;
  7455. -moz-box-shadow:none;
  7456. -webkit-box-shadow:none;
  7457. box-shadow:none;
  7458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7459. font-weight:400;
  7460. font-style:normal;
  7461. font-size:14px;
  7462. line-height:30px;
  7463. }
  7464. #u134462 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:1680px;
  7468. top:798px;
  7469. width:57px;
  7470. height:30px;
  7471. display:flex;
  7472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7473. font-weight:400;
  7474. font-style:normal;
  7475. font-size:14px;
  7476. line-height:30px;
  7477. }
  7478. #u134462 .text {
  7479. position:absolute;
  7480. align-self:flex-start;
  7481. padding:0px 0px 0px 0px;
  7482. box-sizing:border-box;
  7483. width:100%;
  7484. }
  7485. #u134462_text {
  7486. border-width:0px;
  7487. white-space:nowrap;
  7488. text-transform:none;
  7489. }
  7490. #u134463_img {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:0px;
  7494. top:0px;
  7495. width:2px;
  7496. height:16px;
  7497. }
  7498. #u134463 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:1651px;
  7502. top:805px;
  7503. width:1px;
  7504. height:15px;
  7505. display:flex;
  7506. color:#F2F2F2;
  7507. }
  7508. #u134463 .text {
  7509. position:absolute;
  7510. align-self:center;
  7511. padding:2px 2px 2px 2px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u134463_text {
  7516. border-width:0px;
  7517. word-wrap:break-word;
  7518. text-transform:none;
  7519. visibility:hidden;
  7520. }
  7521. #u134464_div {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:375px;
  7527. height:140px;
  7528. background:inherit;
  7529. background-color:rgba(255, 255, 255, 1);
  7530. border:none;
  7531. border-left:0px;
  7532. border-top:0px;
  7533. border-right:0px;
  7534. border-radius:0px;
  7535. border-bottom-right-radius:0px;
  7536. border-bottom-left-radius:0px;
  7537. -moz-box-shadow:none;
  7538. -webkit-box-shadow:none;
  7539. box-shadow:none;
  7540. }
  7541. #u134464 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:1398px;
  7545. top:105px;
  7546. width:375px;
  7547. height:140px;
  7548. display:flex;
  7549. }
  7550. #u134464 .text {
  7551. position:absolute;
  7552. align-self:center;
  7553. padding:2px 2px 2px 2px;
  7554. box-sizing:border-box;
  7555. width:100%;
  7556. }
  7557. #u134464_text {
  7558. border-width:0px;
  7559. word-wrap:break-word;
  7560. text-transform:none;
  7561. visibility:hidden;
  7562. }
  7563. #u134465 {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:0px;
  7569. height:0px;
  7570. }
  7571. #u134466 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:0px;
  7577. height:0px;
  7578. }
  7579. #u134467_div {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:0px;
  7583. top:0px;
  7584. width:349px;
  7585. height:30px;
  7586. background:inherit;
  7587. background-color:rgba(242, 242, 242, 0.545098039215686);
  7588. border:none;
  7589. border-radius:4px;
  7590. -moz-box-shadow:none;
  7591. -webkit-box-shadow:none;
  7592. box-shadow:none;
  7593. font-family:'Microsoft YaHei', sans-serif;
  7594. font-weight:400;
  7595. font-style:normal;
  7596. font-size:14px;
  7597. color:#CCCCCC;
  7598. text-align:left;
  7599. }
  7600. #u134467 {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:1411px;
  7604. top:121px;
  7605. width:349px;
  7606. height:30px;
  7607. display:flex;
  7608. font-family:'Microsoft YaHei', sans-serif;
  7609. font-weight:400;
  7610. font-style:normal;
  7611. font-size:14px;
  7612. color:#CCCCCC;
  7613. text-align:left;
  7614. }
  7615. #u134467 .text {
  7616. position:absolute;
  7617. align-self:center;
  7618. padding:2px 8px 2px 8px;
  7619. box-sizing:border-box;
  7620. width:100%;
  7621. }
  7622. #u134467_text {
  7623. border-width:0px;
  7624. word-wrap:break-word;
  7625. text-transform:none;
  7626. visibility:hidden;
  7627. }
  7628. #u134468_input {
  7629. position:absolute;
  7630. left:0px;
  7631. top:0px;
  7632. width:309px;
  7633. height:25px;
  7634. padding:2px 2px 2px 2px;
  7635. font-family:'Microsoft YaHei', sans-serif;
  7636. font-weight:400;
  7637. font-style:normal;
  7638. font-size:10px;
  7639. letter-spacing:normal;
  7640. color:#000000;
  7641. vertical-align:none;
  7642. text-align:left;
  7643. text-transform:none;
  7644. background-color:transparent;
  7645. border-color:transparent;
  7646. }
  7647. #u134468_input.disabled {
  7648. position:absolute;
  7649. left:0px;
  7650. top:0px;
  7651. width:309px;
  7652. height:25px;
  7653. padding:2px 2px 2px 2px;
  7654. font-family:'Microsoft YaHei', sans-serif;
  7655. font-weight:400;
  7656. font-style:normal;
  7657. font-size:10px;
  7658. letter-spacing:normal;
  7659. color:#000000;
  7660. vertical-align:none;
  7661. text-align:left;
  7662. text-transform:none;
  7663. background-color:transparent;
  7664. border-color:transparent;
  7665. }
  7666. #u134468_div {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:309px;
  7672. height:25px;
  7673. background:inherit;
  7674. background-color:rgba(255, 255, 255, 0);
  7675. border:none;
  7676. border-radius:0px;
  7677. -moz-box-shadow:none;
  7678. -webkit-box-shadow:none;
  7679. box-shadow:none;
  7680. font-family:'Microsoft YaHei', sans-serif;
  7681. font-weight:400;
  7682. font-style:normal;
  7683. font-size:10px;
  7684. }
  7685. #u134468 {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:1441px;
  7689. top:122px;
  7690. width:309px;
  7691. height:25px;
  7692. display:flex;
  7693. font-family:'Microsoft YaHei', sans-serif;
  7694. font-weight:400;
  7695. font-style:normal;
  7696. font-size:10px;
  7697. }
  7698. #u134468 .text {
  7699. position:absolute;
  7700. align-self:center;
  7701. padding:2px 2px 2px 2px;
  7702. box-sizing:border-box;
  7703. width:100%;
  7704. }
  7705. #u134468_div.disabled {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:309px;
  7711. height:25px;
  7712. background:inherit;
  7713. background-color:rgba(240, 240, 240, 1);
  7714. border:none;
  7715. border-radius:0px;
  7716. -moz-box-shadow:none;
  7717. -webkit-box-shadow:none;
  7718. box-shadow:none;
  7719. font-family:'Microsoft YaHei', sans-serif;
  7720. font-weight:400;
  7721. font-style:normal;
  7722. font-size:10px;
  7723. }
  7724. #u134468.disabled {
  7725. }
  7726. #u134469_img {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:0px;
  7730. top:0px;
  7731. width:14px;
  7732. height:14px;
  7733. }
  7734. #u134469 {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:1421px;
  7738. top:128px;
  7739. width:14px;
  7740. height:14px;
  7741. display:flex;
  7742. }
  7743. #u134469 .text {
  7744. position:absolute;
  7745. align-self:center;
  7746. padding:2px 2px 2px 2px;
  7747. box-sizing:border-box;
  7748. width:100%;
  7749. }
  7750. #u134469_text {
  7751. border-width:0px;
  7752. word-wrap:break-word;
  7753. text-transform:none;
  7754. visibility:hidden;
  7755. }
  7756. #u134470_div {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:339px;
  7762. height:60px;
  7763. background:inherit;
  7764. background-color:rgba(255, 255, 255, 0);
  7765. border:none;
  7766. border-left:0px;
  7767. border-top:0px;
  7768. border-right:0px;
  7769. border-radius:0px;
  7770. border-bottom-right-radius:0px;
  7771. border-bottom-left-radius:0px;
  7772. -moz-box-shadow:none;
  7773. -webkit-box-shadow:none;
  7774. box-shadow:none;
  7775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7776. font-weight:400;
  7777. font-style:normal;
  7778. font-size:14px;
  7779. line-height:30px;
  7780. }
  7781. #u134470 {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:1411px;
  7785. top:171px;
  7786. width:339px;
  7787. height:60px;
  7788. display:flex;
  7789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7790. font-weight:400;
  7791. font-style:normal;
  7792. font-size:14px;
  7793. line-height:30px;
  7794. }
  7795. #u134470 .text {
  7796. position:absolute;
  7797. align-self:flex-start;
  7798. padding:0px 0px 0px 0px;
  7799. box-sizing:border-box;
  7800. width:100%;
  7801. }
  7802. #u134470_text {
  7803. border-width:0px;
  7804. word-wrap:break-word;
  7805. text-transform:none;
  7806. }
  7807. #u134471_div {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:0px;
  7811. top:0px;
  7812. width:375px;
  7813. height:60px;
  7814. background:inherit;
  7815. background-color:rgba(255, 255, 255, 1);
  7816. border:none;
  7817. border-left:0px;
  7818. border-top:0px;
  7819. border-right:0px;
  7820. border-radius:0px;
  7821. border-bottom-right-radius:0px;
  7822. border-bottom-left-radius:0px;
  7823. -moz-box-shadow:none;
  7824. -webkit-box-shadow:none;
  7825. box-shadow:none;
  7826. }
  7827. #u134471 {
  7828. border-width:0px;
  7829. position:absolute;
  7830. left:1398px;
  7831. top:316px;
  7832. width:375px;
  7833. height:60px;
  7834. display:flex;
  7835. }
  7836. #u134471 .text {
  7837. position:absolute;
  7838. align-self:center;
  7839. padding:2px 2px 2px 2px;
  7840. box-sizing:border-box;
  7841. width:100%;
  7842. }
  7843. #u134471_text {
  7844. border-width:0px;
  7845. word-wrap:break-word;
  7846. text-transform:none;
  7847. visibility:hidden;
  7848. }
  7849. #u134472_div {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:40px;
  7855. height:40px;
  7856. background:inherit;
  7857. background-color:rgba(0, 137, 254, 1);
  7858. border:none;
  7859. border-radius:4px;
  7860. -moz-box-shadow:none;
  7861. -webkit-box-shadow:none;
  7862. box-shadow:none;
  7863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7864. font-weight:400;
  7865. font-style:normal;
  7866. color:#FFFFFF;
  7867. }
  7868. #u134472 {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:1416px;
  7872. top:326px;
  7873. width:40px;
  7874. height:40px;
  7875. display:flex;
  7876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7877. font-weight:400;
  7878. font-style:normal;
  7879. color:#FFFFFF;
  7880. }
  7881. #u134472 .text {
  7882. position:absolute;
  7883. align-self:center;
  7884. padding:2px 2px 2px 2px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u134472_text {
  7889. border-width:0px;
  7890. word-wrap:break-word;
  7891. text-transform:none;
  7892. }
  7893. #u134473_div {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:37px;
  7899. height:30px;
  7900. background:inherit;
  7901. background-color:rgba(255, 255, 255, 0);
  7902. border:none;
  7903. border-left:0px;
  7904. border-top:0px;
  7905. border-right:0px;
  7906. border-radius:0px;
  7907. border-bottom-right-radius:0px;
  7908. border-bottom-left-radius:0px;
  7909. -moz-box-shadow:none;
  7910. -webkit-box-shadow:none;
  7911. box-shadow:none;
  7912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:18px;
  7916. line-height:30px;
  7917. }
  7918. #u134473 {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:1469px;
  7922. top:331px;
  7923. width:37px;
  7924. height:30px;
  7925. display:flex;
  7926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7927. font-weight:400;
  7928. font-style:normal;
  7929. font-size:18px;
  7930. line-height:30px;
  7931. }
  7932. #u134473 .text {
  7933. position:absolute;
  7934. align-self:flex-start;
  7935. padding:0px 0px 0px 0px;
  7936. box-sizing:border-box;
  7937. width:100%;
  7938. }
  7939. #u134473_text {
  7940. border-width:0px;
  7941. white-space:nowrap;
  7942. text-transform:none;
  7943. }
  7944. #u134474_div {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:45px;
  7950. height:18px;
  7951. background:inherit;
  7952. background-color:rgba(255, 255, 255, 0);
  7953. box-sizing:border-box;
  7954. border-width:1px;
  7955. border-style:solid;
  7956. border-color:rgba(0, 137, 254, 1);
  7957. border-radius:2px;
  7958. -moz-box-shadow:none;
  7959. -webkit-box-shadow:none;
  7960. box-shadow:none;
  7961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7962. font-weight:400;
  7963. font-style:normal;
  7964. font-size:10px;
  7965. color:#0089FE;
  7966. }
  7967. #u134474 {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:1519px;
  7971. top:337px;
  7972. width:45px;
  7973. height:18px;
  7974. display:flex;
  7975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7976. font-weight:400;
  7977. font-style:normal;
  7978. font-size:10px;
  7979. color:#0089FE;
  7980. }
  7981. #u134474 .text {
  7982. position:absolute;
  7983. align-self:flex-start;
  7984. padding:2px 2px 2px 2px;
  7985. box-sizing:border-box;
  7986. width:100%;
  7987. }
  7988. #u134474_text {
  7989. border-width:0px;
  7990. white-space:nowrap;
  7991. text-transform:none;
  7992. }
  7993. #u134475_img {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:0px;
  7997. top:0px;
  7998. width:14px;
  7999. height:11px;
  8000. }
  8001. #u134475 {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:1736px;
  8005. top:341px;
  8006. width:14px;
  8007. height:11px;
  8008. display:flex;
  8009. }
  8010. #u134475 .text {
  8011. position:absolute;
  8012. align-self:center;
  8013. padding:2px 2px 2px 2px;
  8014. box-sizing:border-box;
  8015. width:100%;
  8016. }
  8017. #u134475_text {
  8018. border-width:0px;
  8019. word-wrap:break-word;
  8020. text-transform:none;
  8021. visibility:hidden;
  8022. }
  8023. #u134476_div {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:0px;
  8027. top:0px;
  8028. width:375px;
  8029. height:60px;
  8030. background:inherit;
  8031. background-color:rgba(255, 255, 255, 1);
  8032. border:none;
  8033. border-left:0px;
  8034. border-top:0px;
  8035. border-right:0px;
  8036. border-radius:0px;
  8037. border-bottom-right-radius:0px;
  8038. border-bottom-left-radius:0px;
  8039. -moz-box-shadow:none;
  8040. -webkit-box-shadow:none;
  8041. box-shadow:none;
  8042. }
  8043. #u134476 {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:1398px;
  8047. top:377px;
  8048. width:375px;
  8049. height:60px;
  8050. display:flex;
  8051. }
  8052. #u134476 .text {
  8053. position:absolute;
  8054. align-self:center;
  8055. padding:2px 2px 2px 2px;
  8056. box-sizing:border-box;
  8057. width:100%;
  8058. }
  8059. #u134476_text {
  8060. border-width:0px;
  8061. word-wrap:break-word;
  8062. text-transform:none;
  8063. visibility:hidden;
  8064. }
  8065. #u134477_div {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:0px;
  8069. top:0px;
  8070. width:40px;
  8071. height:40px;
  8072. background:inherit;
  8073. background-color:rgba(0, 137, 254, 1);
  8074. border:none;
  8075. border-radius:4px;
  8076. -moz-box-shadow:none;
  8077. -webkit-box-shadow:none;
  8078. box-shadow:none;
  8079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8080. font-weight:400;
  8081. font-style:normal;
  8082. color:#FFFFFF;
  8083. }
  8084. #u134477 {
  8085. border-width:0px;
  8086. position:absolute;
  8087. left:1416px;
  8088. top:387px;
  8089. width:40px;
  8090. height:40px;
  8091. display:flex;
  8092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8093. font-weight:400;
  8094. font-style:normal;
  8095. color:#FFFFFF;
  8096. }
  8097. #u134477 .text {
  8098. position:absolute;
  8099. align-self:center;
  8100. padding:2px 2px 2px 2px;
  8101. box-sizing:border-box;
  8102. width:100%;
  8103. }
  8104. #u134477_text {
  8105. border-width:0px;
  8106. word-wrap:break-word;
  8107. text-transform:none;
  8108. }
  8109. #u134478_div {
  8110. border-width:0px;
  8111. position:absolute;
  8112. left:0px;
  8113. top:0px;
  8114. width:37px;
  8115. height:30px;
  8116. background:inherit;
  8117. background-color:rgba(255, 255, 255, 0);
  8118. border:none;
  8119. border-left:0px;
  8120. border-top:0px;
  8121. border-right:0px;
  8122. border-radius:0px;
  8123. border-bottom-right-radius:0px;
  8124. border-bottom-left-radius:0px;
  8125. -moz-box-shadow:none;
  8126. -webkit-box-shadow:none;
  8127. box-shadow:none;
  8128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8129. font-weight:400;
  8130. font-style:normal;
  8131. font-size:18px;
  8132. line-height:30px;
  8133. }
  8134. #u134478 {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:1469px;
  8138. top:392px;
  8139. width:37px;
  8140. height:30px;
  8141. display:flex;
  8142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8143. font-weight:400;
  8144. font-style:normal;
  8145. font-size:18px;
  8146. line-height:30px;
  8147. }
  8148. #u134478 .text {
  8149. position:absolute;
  8150. align-self:flex-start;
  8151. padding:0px 0px 0px 0px;
  8152. box-sizing:border-box;
  8153. width:100%;
  8154. }
  8155. #u134478_text {
  8156. border-width:0px;
  8157. white-space:nowrap;
  8158. text-transform:none;
  8159. }
  8160. #u134479_img {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:0px;
  8164. top:0px;
  8165. width:14px;
  8166. height:11px;
  8167. }
  8168. #u134479 {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:1736px;
  8172. top:402px;
  8173. width:14px;
  8174. height:11px;
  8175. display:flex;
  8176. }
  8177. #u134479 .text {
  8178. position:absolute;
  8179. align-self:center;
  8180. padding:2px 2px 2px 2px;
  8181. box-sizing:border-box;
  8182. width:100%;
  8183. }
  8184. #u134479_text {
  8185. border-width:0px;
  8186. word-wrap:break-word;
  8187. text-transform:none;
  8188. visibility:hidden;
  8189. }
  8190. #u134480_div {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:0px;
  8194. top:0px;
  8195. width:375px;
  8196. height:60px;
  8197. background:inherit;
  8198. background-color:rgba(255, 255, 255, 1);
  8199. border:none;
  8200. border-left:0px;
  8201. border-top:0px;
  8202. border-right:0px;
  8203. border-radius:0px;
  8204. border-bottom-right-radius:0px;
  8205. border-bottom-left-radius:0px;
  8206. -moz-box-shadow:none;
  8207. -webkit-box-shadow:none;
  8208. box-shadow:none;
  8209. }
  8210. #u134480 {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:1398px;
  8214. top:438px;
  8215. width:375px;
  8216. height:60px;
  8217. display:flex;
  8218. }
  8219. #u134480 .text {
  8220. position:absolute;
  8221. align-self:center;
  8222. padding:2px 2px 2px 2px;
  8223. box-sizing:border-box;
  8224. width:100%;
  8225. }
  8226. #u134480_text {
  8227. border-width:0px;
  8228. word-wrap:break-word;
  8229. text-transform:none;
  8230. visibility:hidden;
  8231. }
  8232. #u134481_div {
  8233. border-width:0px;
  8234. position:absolute;
  8235. left:0px;
  8236. top:0px;
  8237. width:40px;
  8238. height:40px;
  8239. background:inherit;
  8240. background-color:rgba(0, 137, 254, 1);
  8241. border:none;
  8242. border-radius:4px;
  8243. -moz-box-shadow:none;
  8244. -webkit-box-shadow:none;
  8245. box-shadow:none;
  8246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8247. font-weight:400;
  8248. font-style:normal;
  8249. color:#FFFFFF;
  8250. }
  8251. #u134481 {
  8252. border-width:0px;
  8253. position:absolute;
  8254. left:1416px;
  8255. top:448px;
  8256. width:40px;
  8257. height:40px;
  8258. display:flex;
  8259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8260. font-weight:400;
  8261. font-style:normal;
  8262. color:#FFFFFF;
  8263. }
  8264. #u134481 .text {
  8265. position:absolute;
  8266. align-self:center;
  8267. padding:2px 2px 2px 2px;
  8268. box-sizing:border-box;
  8269. width:100%;
  8270. }
  8271. #u134481_text {
  8272. border-width:0px;
  8273. word-wrap:break-word;
  8274. text-transform:none;
  8275. }
  8276. #u134482_div {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:0px;
  8280. top:0px;
  8281. width:37px;
  8282. height:30px;
  8283. background:inherit;
  8284. background-color:rgba(255, 255, 255, 0);
  8285. border:none;
  8286. border-left:0px;
  8287. border-top:0px;
  8288. border-right:0px;
  8289. border-radius:0px;
  8290. border-bottom-right-radius:0px;
  8291. border-bottom-left-radius:0px;
  8292. -moz-box-shadow:none;
  8293. -webkit-box-shadow:none;
  8294. box-shadow:none;
  8295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8296. font-weight:400;
  8297. font-style:normal;
  8298. font-size:18px;
  8299. line-height:30px;
  8300. }
  8301. #u134482 {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:1469px;
  8305. top:453px;
  8306. width:37px;
  8307. height:30px;
  8308. display:flex;
  8309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8310. font-weight:400;
  8311. font-style:normal;
  8312. font-size:18px;
  8313. line-height:30px;
  8314. }
  8315. #u134482 .text {
  8316. position:absolute;
  8317. align-self:flex-start;
  8318. padding:0px 0px 0px 0px;
  8319. box-sizing:border-box;
  8320. width:100%;
  8321. }
  8322. #u134482_text {
  8323. border-width:0px;
  8324. white-space:nowrap;
  8325. text-transform:none;
  8326. }
  8327. #u134483_img {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:0px;
  8331. top:0px;
  8332. width:14px;
  8333. height:11px;
  8334. }
  8335. #u134483 {
  8336. border-width:0px;
  8337. position:absolute;
  8338. left:1736px;
  8339. top:463px;
  8340. width:14px;
  8341. height:11px;
  8342. display:flex;
  8343. }
  8344. #u134483 .text {
  8345. position:absolute;
  8346. align-self:center;
  8347. padding:2px 2px 2px 2px;
  8348. box-sizing:border-box;
  8349. width:100%;
  8350. }
  8351. #u134483_text {
  8352. border-width:0px;
  8353. word-wrap:break-word;
  8354. text-transform:none;
  8355. visibility:hidden;
  8356. }
  8357. #u134484_div {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:0px;
  8361. top:0px;
  8362. width:375px;
  8363. height:60px;
  8364. background:inherit;
  8365. background-color:rgba(255, 255, 255, 1);
  8366. border:none;
  8367. border-left:0px;
  8368. border-top:0px;
  8369. border-right:0px;
  8370. border-radius:0px;
  8371. border-bottom-right-radius:0px;
  8372. border-bottom-left-radius:0px;
  8373. -moz-box-shadow:none;
  8374. -webkit-box-shadow:none;
  8375. box-shadow:none;
  8376. }
  8377. #u134484 {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:1398px;
  8381. top:255px;
  8382. width:375px;
  8383. height:60px;
  8384. display:flex;
  8385. }
  8386. #u134484 .text {
  8387. position:absolute;
  8388. align-self:center;
  8389. padding:2px 2px 2px 2px;
  8390. box-sizing:border-box;
  8391. width:100%;
  8392. }
  8393. #u134484_text {
  8394. border-width:0px;
  8395. word-wrap:break-word;
  8396. text-transform:none;
  8397. visibility:hidden;
  8398. }
  8399. #u134485_div {
  8400. border-width:0px;
  8401. position:absolute;
  8402. left:0px;
  8403. top:0px;
  8404. width:40px;
  8405. height:40px;
  8406. background:inherit;
  8407. background-color:rgba(0, 137, 254, 1);
  8408. border:none;
  8409. border-radius:4px;
  8410. -moz-box-shadow:none;
  8411. -webkit-box-shadow:none;
  8412. box-shadow:none;
  8413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8414. font-weight:400;
  8415. font-style:normal;
  8416. color:#FFFFFF;
  8417. }
  8418. #u134485 {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:1416px;
  8422. top:265px;
  8423. width:40px;
  8424. height:40px;
  8425. display:flex;
  8426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8427. font-weight:400;
  8428. font-style:normal;
  8429. color:#FFFFFF;
  8430. }
  8431. #u134485 .text {
  8432. position:absolute;
  8433. align-self:center;
  8434. padding:2px 2px 2px 2px;
  8435. box-sizing:border-box;
  8436. width:100%;
  8437. }
  8438. #u134485_text {
  8439. border-width:0px;
  8440. word-wrap:break-word;
  8441. text-transform:none;
  8442. }
  8443. #u134486_div {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:0px;
  8447. top:0px;
  8448. width:37px;
  8449. height:30px;
  8450. background:inherit;
  8451. background-color:rgba(255, 255, 255, 0);
  8452. border:none;
  8453. border-left:0px;
  8454. border-top:0px;
  8455. border-right:0px;
  8456. border-radius:0px;
  8457. border-bottom-right-radius:0px;
  8458. border-bottom-left-radius:0px;
  8459. -moz-box-shadow:none;
  8460. -webkit-box-shadow:none;
  8461. box-shadow:none;
  8462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8463. font-weight:400;
  8464. font-style:normal;
  8465. font-size:18px;
  8466. line-height:30px;
  8467. }
  8468. #u134486 {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:1469px;
  8472. top:270px;
  8473. width:37px;
  8474. height:30px;
  8475. display:flex;
  8476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8477. font-weight:400;
  8478. font-style:normal;
  8479. font-size:18px;
  8480. line-height:30px;
  8481. }
  8482. #u134486 .text {
  8483. position:absolute;
  8484. align-self:flex-start;
  8485. padding:0px 0px 0px 0px;
  8486. box-sizing:border-box;
  8487. width:100%;
  8488. }
  8489. #u134486_text {
  8490. border-width:0px;
  8491. white-space:nowrap;
  8492. text-transform:none;
  8493. }
  8494. #u134487_div {
  8495. border-width:0px;
  8496. position:absolute;
  8497. left:0px;
  8498. top:0px;
  8499. width:25px;
  8500. height:18px;
  8501. background:inherit;
  8502. background-color:rgba(255, 255, 255, 0);
  8503. box-sizing:border-box;
  8504. border-width:1px;
  8505. border-style:solid;
  8506. border-color:rgba(0, 137, 254, 1);
  8507. border-radius:2px;
  8508. -moz-box-shadow:none;
  8509. -webkit-box-shadow:none;
  8510. box-shadow:none;
  8511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8512. font-weight:400;
  8513. font-style:normal;
  8514. font-size:10px;
  8515. color:#0089FE;
  8516. }
  8517. #u134487 {
  8518. border-width:0px;
  8519. position:absolute;
  8520. left:1519px;
  8521. top:276px;
  8522. width:25px;
  8523. height:18px;
  8524. display:flex;
  8525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8526. font-weight:400;
  8527. font-style:normal;
  8528. font-size:10px;
  8529. color:#0089FE;
  8530. }
  8531. #u134487 .text {
  8532. position:absolute;
  8533. align-self:flex-start;
  8534. padding:2px 2px 2px 2px;
  8535. box-sizing:border-box;
  8536. width:100%;
  8537. }
  8538. #u134487_text {
  8539. border-width:0px;
  8540. white-space:nowrap;
  8541. text-transform:none;
  8542. }
  8543. #u134488_img {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:0px;
  8547. top:0px;
  8548. width:14px;
  8549. height:11px;
  8550. }
  8551. #u134488 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:1736px;
  8555. top:280px;
  8556. width:14px;
  8557. height:11px;
  8558. display:flex;
  8559. }
  8560. #u134488 .text {
  8561. position:absolute;
  8562. align-self:center;
  8563. padding:2px 2px 2px 2px;
  8564. box-sizing:border-box;
  8565. width:100%;
  8566. }
  8567. #u134488_text {
  8568. border-width:0px;
  8569. word-wrap:break-word;
  8570. text-transform:none;
  8571. visibility:hidden;
  8572. }
  8573. #u134489 {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:0px;
  8577. top:0px;
  8578. width:0px;
  8579. height:0px;
  8580. }
  8581. #u134490_div {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:375px;
  8587. height:50px;
  8588. background:inherit;
  8589. background-color:rgba(255, 255, 255, 1);
  8590. border:none;
  8591. border-left:0px;
  8592. border-top:0px;
  8593. border-right:0px;
  8594. border-radius:0px;
  8595. border-bottom-right-radius:0px;
  8596. border-bottom-left-radius:0px;
  8597. -moz-box-shadow:none;
  8598. -webkit-box-shadow:none;
  8599. box-shadow:none;
  8600. }
  8601. #u134490 {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:945px;
  8605. top:360px;
  8606. width:375px;
  8607. height:50px;
  8608. display:flex;
  8609. }
  8610. #u134490 .text {
  8611. position:absolute;
  8612. align-self:center;
  8613. padding:2px 2px 2px 2px;
  8614. box-sizing:border-box;
  8615. width:100%;
  8616. }
  8617. #u134490_text {
  8618. border-width:0px;
  8619. word-wrap:break-word;
  8620. text-transform:none;
  8621. visibility:hidden;
  8622. }
  8623. #u134491_div {
  8624. border-width:0px;
  8625. position:absolute;
  8626. left:0px;
  8627. top:0px;
  8628. width:85px;
  8629. height:30px;
  8630. background:inherit;
  8631. background-color:rgba(255, 255, 255, 0);
  8632. border:none;
  8633. border-left:0px;
  8634. border-top:0px;
  8635. border-right:0px;
  8636. border-radius:0px;
  8637. border-bottom-right-radius:0px;
  8638. border-bottom-left-radius:0px;
  8639. -moz-box-shadow:none;
  8640. -webkit-box-shadow:none;
  8641. box-shadow:none;
  8642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8643. font-weight:400;
  8644. font-style:normal;
  8645. font-size:14px;
  8646. line-height:30px;
  8647. }
  8648. #u134491 {
  8649. border-width:0px;
  8650. position:absolute;
  8651. left:966px;
  8652. top:370px;
  8653. width:85px;
  8654. height:30px;
  8655. display:flex;
  8656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8657. font-weight:400;
  8658. font-style:normal;
  8659. font-size:14px;
  8660. line-height:30px;
  8661. }
  8662. #u134491 .text {
  8663. position:absolute;
  8664. align-self:flex-start;
  8665. padding:0px 0px 0px 0px;
  8666. box-sizing:border-box;
  8667. width:100%;
  8668. }
  8669. #u134491_text {
  8670. border-width:0px;
  8671. white-space:nowrap;
  8672. text-transform:none;
  8673. }
  8674. #u134492_img {
  8675. border-width:0px;
  8676. position:absolute;
  8677. left:0px;
  8678. top:0px;
  8679. width:8px;
  8680. height:13px;
  8681. }
  8682. #u134492 {
  8683. border-width:0px;
  8684. position:absolute;
  8685. left:1293px;
  8686. top:379px;
  8687. width:8px;
  8688. height:13px;
  8689. display:flex;
  8690. -webkit-transform:rotate(180deg);
  8691. -moz-transform:rotate(180deg);
  8692. -ms-transform:rotate(180deg);
  8693. transform:rotate(180deg);
  8694. }
  8695. #u134492 .text {
  8696. position:absolute;
  8697. align-self:center;
  8698. padding:2px 2px 2px 2px;
  8699. box-sizing:border-box;
  8700. width:100%;
  8701. }
  8702. #u134492_text {
  8703. border-width:0px;
  8704. word-wrap:break-word;
  8705. text-transform:none;
  8706. visibility:hidden;
  8707. }
  8708. #u134493 {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:0px;
  8712. top:0px;
  8713. width:0px;
  8714. height:0px;
  8715. }
  8716. #u134494_div {
  8717. border-width:0px;
  8718. position:absolute;
  8719. left:0px;
  8720. top:0px;
  8721. width:375px;
  8722. height:50px;
  8723. background:inherit;
  8724. background-color:rgba(255, 255, 255, 1);
  8725. border:none;
  8726. border-left:0px;
  8727. border-top:0px;
  8728. border-right:0px;
  8729. border-radius:0px;
  8730. border-bottom-right-radius:0px;
  8731. border-bottom-left-radius:0px;
  8732. -moz-box-shadow:none;
  8733. -webkit-box-shadow:none;
  8734. box-shadow:none;
  8735. }
  8736. #u134494 {
  8737. border-width:0px;
  8738. position:absolute;
  8739. left:945px;
  8740. top:411px;
  8741. width:375px;
  8742. height:50px;
  8743. display:flex;
  8744. }
  8745. #u134494 .text {
  8746. position:absolute;
  8747. align-self:center;
  8748. padding:2px 2px 2px 2px;
  8749. box-sizing:border-box;
  8750. width:100%;
  8751. }
  8752. #u134494_text {
  8753. border-width:0px;
  8754. word-wrap:break-word;
  8755. text-transform:none;
  8756. visibility:hidden;
  8757. }
  8758. #u134495_div {
  8759. border-width:0px;
  8760. position:absolute;
  8761. left:0px;
  8762. top:0px;
  8763. width:85px;
  8764. height:30px;
  8765. background:inherit;
  8766. background-color:rgba(255, 255, 255, 0);
  8767. border:none;
  8768. border-left:0px;
  8769. border-top:0px;
  8770. border-right:0px;
  8771. border-radius:0px;
  8772. border-bottom-right-radius:0px;
  8773. border-bottom-left-radius:0px;
  8774. -moz-box-shadow:none;
  8775. -webkit-box-shadow:none;
  8776. box-shadow:none;
  8777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:14px;
  8781. line-height:30px;
  8782. }
  8783. #u134495 {
  8784. border-width:0px;
  8785. position:absolute;
  8786. left:966px;
  8787. top:421px;
  8788. width:85px;
  8789. height:30px;
  8790. display:flex;
  8791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8792. font-weight:400;
  8793. font-style:normal;
  8794. font-size:14px;
  8795. line-height:30px;
  8796. }
  8797. #u134495 .text {
  8798. position:absolute;
  8799. align-self:flex-start;
  8800. padding:0px 0px 0px 0px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u134495_text {
  8805. border-width:0px;
  8806. white-space:nowrap;
  8807. text-transform:none;
  8808. }
  8809. #u134496_img {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:8px;
  8815. height:13px;
  8816. }
  8817. #u134496 {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:1293px;
  8821. top:430px;
  8822. width:8px;
  8823. height:13px;
  8824. display:flex;
  8825. -webkit-transform:rotate(180deg);
  8826. -moz-transform:rotate(180deg);
  8827. -ms-transform:rotate(180deg);
  8828. transform:rotate(180deg);
  8829. }
  8830. #u134496 .text {
  8831. position:absolute;
  8832. align-self:center;
  8833. padding:2px 2px 2px 2px;
  8834. box-sizing:border-box;
  8835. width:100%;
  8836. }
  8837. #u134496_text {
  8838. border-width:0px;
  8839. word-wrap:break-word;
  8840. text-transform:none;
  8841. visibility:hidden;
  8842. }
  8843. #u134497_div {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:0px;
  8847. top:0px;
  8848. width:41px;
  8849. height:14px;
  8850. background:inherit;
  8851. background-color:rgba(242, 242, 242, 1);
  8852. border:none;
  8853. border-radius:8px;
  8854. -moz-box-shadow:none;
  8855. -webkit-box-shadow:none;
  8856. box-shadow:none;
  8857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8858. font-weight:400;
  8859. font-style:normal;
  8860. font-size:10px;
  8861. color:#7F7F7F;
  8862. }
  8863. #u134497 {
  8864. border-width:0px;
  8865. position:absolute;
  8866. left:323px;
  8867. top:650px;
  8868. width:41px;
  8869. height:14px;
  8870. display:flex;
  8871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8872. font-weight:400;
  8873. font-style:normal;
  8874. font-size:10px;
  8875. color:#7F7F7F;
  8876. }
  8877. #u134497 .text {
  8878. position:absolute;
  8879. align-self:flex-start;
  8880. padding:0px 0px 0px 0px;
  8881. box-sizing:border-box;
  8882. width:100%;
  8883. }
  8884. #u134497_text {
  8885. border-width:0px;
  8886. white-space:nowrap;
  8887. text-transform:none;
  8888. }
  8889. #u134498_div {
  8890. border-width:0px;
  8891. position:absolute;
  8892. left:0px;
  8893. top:0px;
  8894. width:25px;
  8895. height:18px;
  8896. background:inherit;
  8897. background-color:rgba(255, 255, 255, 0);
  8898. box-sizing:border-box;
  8899. border-width:1px;
  8900. border-style:solid;
  8901. border-color:rgba(0, 137, 254, 1);
  8902. border-radius:2px;
  8903. -moz-box-shadow:none;
  8904. -webkit-box-shadow:none;
  8905. box-shadow:none;
  8906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8907. font-weight:400;
  8908. font-style:normal;
  8909. font-size:10px;
  8910. color:#0089FE;
  8911. }
  8912. #u134498 {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:1516px;
  8916. top:398px;
  8917. width:25px;
  8918. height:18px;
  8919. display:flex;
  8920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8921. font-weight:400;
  8922. font-style:normal;
  8923. font-size:10px;
  8924. color:#0089FE;
  8925. }
  8926. #u134498 .text {
  8927. position:absolute;
  8928. align-self:flex-start;
  8929. padding:2px 2px 2px 2px;
  8930. box-sizing:border-box;
  8931. width:100%;
  8932. }
  8933. #u134498_text {
  8934. border-width:0px;
  8935. white-space:nowrap;
  8936. text-transform:none;
  8937. }
  8938. #u134499 {
  8939. border-width:0px;
  8940. position:absolute;
  8941. left:0px;
  8942. top:0px;
  8943. width:0px;
  8944. height:0px;
  8945. }
  8946. #u134500_div {
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:0px;
  8950. top:0px;
  8951. width:375px;
  8952. height:60px;
  8953. background:inherit;
  8954. background-color:rgba(255, 255, 255, 1);
  8955. border:none;
  8956. border-left:0px;
  8957. border-top:0px;
  8958. border-right:0px;
  8959. border-radius:0px;
  8960. border-bottom-right-radius:0px;
  8961. border-bottom-left-radius:0px;
  8962. -moz-box-shadow:none;
  8963. -webkit-box-shadow:none;
  8964. box-shadow:none;
  8965. }
  8966. #u134500 {
  8967. border-width:0px;
  8968. position:absolute;
  8969. left:482px;
  8970. top:250px;
  8971. width:375px;
  8972. height:60px;
  8973. display:flex;
  8974. }
  8975. #u134500 .text {
  8976. position:absolute;
  8977. align-self:center;
  8978. padding:2px 2px 2px 2px;
  8979. box-sizing:border-box;
  8980. width:100%;
  8981. }
  8982. #u134500_text {
  8983. border-width:0px;
  8984. word-wrap:break-word;
  8985. text-transform:none;
  8986. visibility:hidden;
  8987. }
  8988. #u134501_div {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:0px;
  8992. top:0px;
  8993. width:181px;
  8994. height:30px;
  8995. background:inherit;
  8996. background-color:rgba(255, 255, 255, 0);
  8997. border:none;
  8998. border-left:0px;
  8999. border-top:0px;
  9000. border-right:0px;
  9001. border-radius:0px;
  9002. border-bottom-right-radius:0px;
  9003. border-bottom-left-radius:0px;
  9004. -moz-box-shadow:none;
  9005. -webkit-box-shadow:none;
  9006. box-shadow:none;
  9007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9008. font-weight:400;
  9009. font-style:normal;
  9010. font-size:18px;
  9011. line-height:30px;
  9012. }
  9013. #u134501 {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:573px;
  9017. top:265px;
  9018. width:181px;
  9019. height:30px;
  9020. display:flex;
  9021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9022. font-weight:400;
  9023. font-style:normal;
  9024. font-size:18px;
  9025. line-height:30px;
  9026. }
  9027. #u134501 .text {
  9028. position:absolute;
  9029. align-self:flex-start;
  9030. padding:0px 0px 0px 0px;
  9031. box-sizing:border-box;
  9032. width:100%;
  9033. }
  9034. #u134501_text {
  9035. border-width:0px;
  9036. white-space:nowrap;
  9037. text-transform:none;
  9038. }
  9039. #u134502_img {
  9040. border-width:0px;
  9041. position:absolute;
  9042. left:0px;
  9043. top:0px;
  9044. width:40px;
  9045. height:40px;
  9046. }
  9047. #u134502 {
  9048. border-width:0px;
  9049. position:absolute;
  9050. left:498px;
  9051. top:260px;
  9052. width:40px;
  9053. height:40px;
  9054. display:flex;
  9055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9056. font-weight:400;
  9057. font-style:normal;
  9058. font-size:12px;
  9059. color:#FFFFFF;
  9060. }
  9061. #u134502 .text {
  9062. position:absolute;
  9063. align-self:center;
  9064. padding:2px 2px 2px 2px;
  9065. box-sizing:border-box;
  9066. width:100%;
  9067. }
  9068. #u134502_text {
  9069. border-width:0px;
  9070. word-wrap:break-word;
  9071. text-transform:none;
  9072. }
  9073. #u134503_img {
  9074. border-width:0px;
  9075. position:absolute;
  9076. left:0px;
  9077. top:0px;
  9078. width:8px;
  9079. height:13px;
  9080. }
  9081. #u134503 {
  9082. border-width:0px;
  9083. position:absolute;
  9084. left:823px;
  9085. top:274px;
  9086. width:8px;
  9087. height:13px;
  9088. display:flex;
  9089. -webkit-transform:rotate(180deg);
  9090. -moz-transform:rotate(180deg);
  9091. -ms-transform:rotate(180deg);
  9092. transform:rotate(180deg);
  9093. }
  9094. #u134503 .text {
  9095. position:absolute;
  9096. align-self:center;
  9097. padding:2px 2px 2px 2px;
  9098. box-sizing:border-box;
  9099. width:100%;
  9100. }
  9101. #u134503_text {
  9102. border-width:0px;
  9103. word-wrap:break-word;
  9104. text-transform:none;
  9105. visibility:hidden;
  9106. }
  9107. #u134504_img {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:0px;
  9111. top:0px;
  9112. width:19px;
  9113. height:17px;
  9114. }
  9115. #u134504 {
  9116. border-width:0px;
  9117. position:absolute;
  9118. left:549px;
  9119. top:272px;
  9120. width:19px;
  9121. height:17px;
  9122. display:flex;
  9123. }
  9124. #u134504 .text {
  9125. position:absolute;
  9126. align-self:center;
  9127. padding:2px 2px 2px 2px;
  9128. box-sizing:border-box;
  9129. width:100%;
  9130. }
  9131. #u134504_text {
  9132. border-width:0px;
  9133. word-wrap:break-word;
  9134. text-transform:none;
  9135. visibility:hidden;
  9136. }