styles.css 182 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2785px;
  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. #u140262_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u140262 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1883px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u140262 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u140262_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u140263_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. #u140263 {
  73. border-width:0px;
  74. position:absolute;
  75. left:1912px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u140263 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u140263_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u140264 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u140265_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. #u140265 {
  121. border-width:0px;
  122. position:absolute;
  123. left:2192px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u140265 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u140265_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u140266 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u140267_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u140267 {
  159. border-width:0px;
  160. position:absolute;
  161. left:2255px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u140267 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u140267_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u140268_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u140268 {
  189. border-width:0px;
  190. position:absolute;
  191. left:2261px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u140268 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u140268_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u140269 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u140270_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u140270 {
  227. border-width:0px;
  228. position:absolute;
  229. left:2206px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u140270 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u140270_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u140271_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u140271 {
  257. border-width:0px;
  258. position:absolute;
  259. left:2222px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u140271 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u140271_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u140272_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u140272 {
  287. border-width:0px;
  288. position:absolute;
  289. left:2213px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u140272 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u140272_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u140273_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u140273 {
  317. border-width:0px;
  318. position:absolute;
  319. left:2230px;
  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. #u140273 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u140273_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u140274_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u140274 {
  351. border-width:0px;
  352. position:absolute;
  353. left:1912px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u140274 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u140274_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u140275_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. #u140275 {
  393. border-width:0px;
  394. position:absolute;
  395. left:1912px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u140275 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u140275_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u140276 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u140277_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u140277 {
  431. border-width:0px;
  432. position:absolute;
  433. left:1952px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u140277 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u140277_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u140278_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. #u140278 {
  472. border-width:0px;
  473. position:absolute;
  474. left:1952px;
  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. #u140278 .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. #u140278_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u140279 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u140280_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u140280 {
  513. border-width:0px;
  514. position:absolute;
  515. left:2222px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u140280 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u140280_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u140281_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. #u140281 {
  554. border-width:0px;
  555. position:absolute;
  556. left:2222px;
  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. #u140281 .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. #u140281_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u140282_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. #u140282 {
  594. border-width:0px;
  595. position:absolute;
  596. left:1912px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u140282 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u140282_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u140283 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u140284_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u140284 {
  632. border-width:0px;
  633. position:absolute;
  634. left:2134px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u140284 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u140284_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u140285_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. #u140285 {
  673. border-width:0px;
  674. position:absolute;
  675. left:2128px;
  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. #u140285 .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. #u140285_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u140286 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u140287_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u140287 {
  714. border-width:0px;
  715. position:absolute;
  716. left:2040px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u140287 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u140287_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u140288_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. #u140288 {
  755. border-width:0px;
  756. position:absolute;
  757. left:2034px;
  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. #u140288 .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. #u140288_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u140289_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, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:35px;
  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. #u140289 {
  798. border-width:0px;
  799. position:absolute;
  800. left:1912px;
  801. top:106px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u140289 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u140289_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u140291_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:433px;
  825. height:865px;
  826. }
  827. #u140291 {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:433px;
  833. height:865px;
  834. display:flex;
  835. }
  836. #u140291 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u140291_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u140292_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:375px;
  855. height:40px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 1);
  858. box-sizing:border-box;
  859. border-width:1px;
  860. border-style:solid;
  861. border-color:rgba(215, 215, 215, 1);
  862. border-left:0px;
  863. border-top:0px;
  864. border-right:0px;
  865. border-radius:0px;
  866. border-bottom-right-radius:0px;
  867. border-bottom-left-radius:0px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. }
  872. #u140292 {
  873. border-width:0px;
  874. position:absolute;
  875. left:29px;
  876. top:67px;
  877. width:375px;
  878. height:40px;
  879. display:flex;
  880. }
  881. #u140292 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u140292_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u140293 {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:0px;
  900. height:0px;
  901. }
  902. #u140294_div {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:88px;
  908. height:32px;
  909. background:inherit;
  910. background-color:rgba(255, 255, 255, 1);
  911. box-sizing:border-box;
  912. border-width:1px;
  913. border-style:solid;
  914. border-color:rgba(242, 242, 242, 1);
  915. border-radius:33px;
  916. -moz-box-shadow:none;
  917. -webkit-box-shadow:none;
  918. box-shadow:none;
  919. }
  920. #u140294 {
  921. border-width:0px;
  922. position:absolute;
  923. left:309px;
  924. top:71px;
  925. width:88px;
  926. height:32px;
  927. display:flex;
  928. }
  929. #u140294 .text {
  930. position:absolute;
  931. align-self:center;
  932. padding:2px 2px 2px 2px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u140294_text {
  937. border-width:0px;
  938. word-wrap:break-word;
  939. text-transform:none;
  940. visibility:hidden;
  941. }
  942. #u140295 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u140296_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:18px;
  956. height:18px;
  957. }
  958. #u140296 {
  959. border-width:0px;
  960. position:absolute;
  961. left:372px;
  962. top:78px;
  963. width:18px;
  964. height:18px;
  965. display:flex;
  966. }
  967. #u140296 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:2px 2px 2px 2px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u140296_text {
  975. border-width:0px;
  976. word-wrap:break-word;
  977. text-transform:none;
  978. visibility:hidden;
  979. }
  980. #u140297_img {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:6px;
  986. height:6px;
  987. }
  988. #u140297 {
  989. border-width:0px;
  990. position:absolute;
  991. left:378px;
  992. top:84px;
  993. width:6px;
  994. height:6px;
  995. display:flex;
  996. }
  997. #u140297 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u140297_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u140298 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u140299_img {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:5px;
  1024. height:5px;
  1025. }
  1026. #u140299 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:323px;
  1030. top:85px;
  1031. width:5px;
  1032. height:5px;
  1033. display:flex;
  1034. }
  1035. #u140299 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u140299_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u140300_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u140300 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:339px;
  1060. top:85px;
  1061. width:5px;
  1062. height:5px;
  1063. display:flex;
  1064. }
  1065. #u140300 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u140300_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u140301_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:7px;
  1085. }
  1086. #u140301 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:330px;
  1090. top:84px;
  1091. width:7px;
  1092. height:7px;
  1093. display:flex;
  1094. }
  1095. #u140301 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u140301_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u140302_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:19px;
  1114. height:2px;
  1115. }
  1116. #u140302 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:347px;
  1120. top:87px;
  1121. width:18px;
  1122. height:1px;
  1123. display:flex;
  1124. -webkit-transform:rotate(90deg);
  1125. -moz-transform:rotate(90deg);
  1126. -ms-transform:rotate(90deg);
  1127. transform:rotate(90deg);
  1128. }
  1129. #u140302 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u140302_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u140303_img {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:375px;
  1148. height:44px;
  1149. }
  1150. #u140303 {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:29px;
  1154. top:24px;
  1155. width:375px;
  1156. height:44px;
  1157. display:flex;
  1158. }
  1159. #u140303 .text {
  1160. position:absolute;
  1161. align-self:center;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u140303_text {
  1167. border-width:0px;
  1168. word-wrap:break-word;
  1169. text-transform:none;
  1170. visibility:hidden;
  1171. }
  1172. #u140304_div {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:0px;
  1176. top:0px;
  1177. width:375px;
  1178. height:50px;
  1179. background:inherit;
  1180. background-color:rgba(255, 255, 255, 1);
  1181. box-sizing:border-box;
  1182. border-width:1px;
  1183. border-style:solid;
  1184. border-color:rgba(242, 242, 242, 1);
  1185. border-radius:26px;
  1186. border-top-left-radius:0px;
  1187. border-top-right-radius:0px;
  1188. -moz-box-shadow:none;
  1189. -webkit-box-shadow:none;
  1190. box-shadow:none;
  1191. }
  1192. #u140304 {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:29px;
  1196. top:788px;
  1197. width:375px;
  1198. height:50px;
  1199. display:flex;
  1200. }
  1201. #u140304 .text {
  1202. position:absolute;
  1203. align-self:center;
  1204. padding:2px 2px 2px 2px;
  1205. box-sizing:border-box;
  1206. width:100%;
  1207. }
  1208. #u140304_text {
  1209. border-width:0px;
  1210. word-wrap:break-word;
  1211. text-transform:none;
  1212. visibility:hidden;
  1213. }
  1214. #u140305 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:0px;
  1218. top:0px;
  1219. width:0px;
  1220. height:0px;
  1221. }
  1222. #u140306_img {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:0px;
  1226. top:0px;
  1227. width:24px;
  1228. height:24px;
  1229. }
  1230. #u140306 {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:69px;
  1234. top:792px;
  1235. width:24px;
  1236. height:24px;
  1237. display:flex;
  1238. font-size:8px;
  1239. }
  1240. #u140306 .text {
  1241. position:absolute;
  1242. align-self:center;
  1243. padding:2px 2px 2px 2px;
  1244. box-sizing:border-box;
  1245. width:100%;
  1246. }
  1247. #u140306_text {
  1248. border-width:0px;
  1249. word-wrap:break-word;
  1250. text-transform:none;
  1251. }
  1252. #u140307_div {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:25px;
  1258. height:17px;
  1259. background:inherit;
  1260. background-color:rgba(255, 255, 255, 0);
  1261. border:none;
  1262. border-radius:0px;
  1263. -moz-box-shadow:none;
  1264. -webkit-box-shadow:none;
  1265. box-shadow:none;
  1266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1267. font-weight:400;
  1268. font-style:normal;
  1269. font-size:12px;
  1270. }
  1271. #u140307 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:69px;
  1275. top:817px;
  1276. width:25px;
  1277. height:17px;
  1278. display:flex;
  1279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1280. font-weight:400;
  1281. font-style:normal;
  1282. font-size:12px;
  1283. }
  1284. #u140307 .text {
  1285. position:absolute;
  1286. align-self:flex-start;
  1287. padding:0px 0px 0px 0px;
  1288. box-sizing:border-box;
  1289. width:100%;
  1290. }
  1291. #u140307_text {
  1292. border-width:0px;
  1293. white-space:nowrap;
  1294. text-transform:none;
  1295. }
  1296. #u140308 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:0px;
  1300. top:0px;
  1301. width:0px;
  1302. height:0px;
  1303. }
  1304. #u140309_img {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:0px;
  1308. top:0px;
  1309. width:24px;
  1310. height:24px;
  1311. }
  1312. #u140309 {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:339px;
  1316. top:794px;
  1317. width:24px;
  1318. height:24px;
  1319. display:flex;
  1320. font-size:8px;
  1321. }
  1322. #u140309 .text {
  1323. position:absolute;
  1324. align-self:center;
  1325. padding:2px 2px 2px 2px;
  1326. box-sizing:border-box;
  1327. width:100%;
  1328. }
  1329. #u140309_text {
  1330. border-width:0px;
  1331. word-wrap:break-word;
  1332. text-transform:none;
  1333. }
  1334. #u140310_div {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:0px;
  1338. top:0px;
  1339. width:25px;
  1340. height:17px;
  1341. background:inherit;
  1342. background-color:rgba(255, 255, 255, 0);
  1343. border:none;
  1344. border-radius:0px;
  1345. -moz-box-shadow:none;
  1346. -webkit-box-shadow:none;
  1347. box-shadow:none;
  1348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1349. font-weight:400;
  1350. font-style:normal;
  1351. font-size:12px;
  1352. }
  1353. #u140310 {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:339px;
  1357. top:819px;
  1358. width:25px;
  1359. height:17px;
  1360. display:flex;
  1361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1362. font-weight:400;
  1363. font-style:normal;
  1364. font-size:12px;
  1365. }
  1366. #u140310 .text {
  1367. position:absolute;
  1368. align-self:flex-start;
  1369. padding:0px 0px 0px 0px;
  1370. box-sizing:border-box;
  1371. width:100%;
  1372. }
  1373. #u140310_text {
  1374. border-width:0px;
  1375. white-space:nowrap;
  1376. text-transform:none;
  1377. }
  1378. #u140311_div {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:375px;
  1384. height:681px;
  1385. background:inherit;
  1386. background-color:rgba(242, 242, 242, 0.462745098039216);
  1387. border:none;
  1388. border-radius:0px;
  1389. -moz-box-shadow:none;
  1390. -webkit-box-shadow:none;
  1391. box-shadow:none;
  1392. }
  1393. #u140311 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:29px;
  1397. top:107px;
  1398. width:375px;
  1399. height:681px;
  1400. display:flex;
  1401. }
  1402. #u140311 .text {
  1403. position:absolute;
  1404. align-self:center;
  1405. padding:2px 2px 2px 2px;
  1406. box-sizing:border-box;
  1407. width:100%;
  1408. }
  1409. #u140311_text {
  1410. border-width:0px;
  1411. word-wrap:break-word;
  1412. text-transform:none;
  1413. visibility:hidden;
  1414. }
  1415. #u140312 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:0px;
  1419. top:0px;
  1420. width:0px;
  1421. height:0px;
  1422. }
  1423. #u140313_img {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:24px;
  1429. height:24px;
  1430. }
  1431. #u140313 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:251px;
  1435. top:792px;
  1436. width:24px;
  1437. height:24px;
  1438. display:flex;
  1439. font-size:8px;
  1440. }
  1441. #u140313 .text {
  1442. position:absolute;
  1443. align-self:center;
  1444. padding:2px 2px 2px 2px;
  1445. box-sizing:border-box;
  1446. width:100%;
  1447. }
  1448. #u140313_text {
  1449. border-width:0px;
  1450. word-wrap:break-word;
  1451. text-transform:none;
  1452. }
  1453. #u140314_div {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:0px;
  1457. top:0px;
  1458. width:37px;
  1459. height:17px;
  1460. background:inherit;
  1461. background-color:rgba(255, 255, 255, 0);
  1462. border:none;
  1463. border-radius:0px;
  1464. -moz-box-shadow:none;
  1465. -webkit-box-shadow:none;
  1466. box-shadow:none;
  1467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1468. font-weight:400;
  1469. font-style:normal;
  1470. font-size:12px;
  1471. }
  1472. #u140314 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:245px;
  1476. top:817px;
  1477. width:37px;
  1478. height:17px;
  1479. display:flex;
  1480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1481. font-weight:400;
  1482. font-style:normal;
  1483. font-size:12px;
  1484. }
  1485. #u140314 .text {
  1486. position:absolute;
  1487. align-self:flex-start;
  1488. padding:0px 0px 0px 0px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u140314_text {
  1493. border-width:0px;
  1494. white-space:nowrap;
  1495. text-transform:none;
  1496. }
  1497. #u140315 {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:0px;
  1503. height:0px;
  1504. }
  1505. #u140316_img {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:0px;
  1509. top:0px;
  1510. width:24px;
  1511. height:24px;
  1512. }
  1513. #u140316 {
  1514. border-width:0px;
  1515. position:absolute;
  1516. left:157px;
  1517. top:792px;
  1518. width:24px;
  1519. height:24px;
  1520. display:flex;
  1521. font-size:8px;
  1522. }
  1523. #u140316 .text {
  1524. position:absolute;
  1525. align-self:center;
  1526. padding:2px 2px 2px 2px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u140316_text {
  1531. border-width:0px;
  1532. word-wrap:break-word;
  1533. text-transform:none;
  1534. }
  1535. #u140317_div {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:37px;
  1541. height:17px;
  1542. background:inherit;
  1543. background-color:rgba(255, 255, 255, 0);
  1544. border:none;
  1545. border-radius:0px;
  1546. -moz-box-shadow:none;
  1547. -webkit-box-shadow:none;
  1548. box-shadow:none;
  1549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:12px;
  1553. }
  1554. #u140317 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:151px;
  1558. top:817px;
  1559. width:37px;
  1560. height:17px;
  1561. display:flex;
  1562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:12px;
  1566. }
  1567. #u140317 .text {
  1568. position:absolute;
  1569. align-self:flex-start;
  1570. padding:0px 0px 0px 0px;
  1571. box-sizing:border-box;
  1572. width:100%;
  1573. }
  1574. #u140317_text {
  1575. border-width:0px;
  1576. white-space:nowrap;
  1577. text-transform:none;
  1578. }
  1579. #u140318_div {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:0px;
  1583. top:0px;
  1584. width:375px;
  1585. height:735px;
  1586. background:inherit;
  1587. background-color:rgba(255, 255, 255, 0.996078431372549);
  1588. border:none;
  1589. border-top:0px;
  1590. border-radius:35px;
  1591. border-top-left-radius:0px;
  1592. border-top-right-radius:0px;
  1593. -moz-box-shadow:none;
  1594. -webkit-box-shadow:none;
  1595. box-shadow:none;
  1596. }
  1597. #u140318 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:29px;
  1601. top:106px;
  1602. width:375px;
  1603. height:735px;
  1604. display:flex;
  1605. }
  1606. #u140318 .text {
  1607. position:absolute;
  1608. align-self:center;
  1609. padding:2px 2px 2px 2px;
  1610. box-sizing:border-box;
  1611. width:100%;
  1612. }
  1613. #u140318_text {
  1614. border-width:0px;
  1615. word-wrap:break-word;
  1616. text-transform:none;
  1617. visibility:hidden;
  1618. }
  1619. #u140319_img {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:375px;
  1625. height:44px;
  1626. }
  1627. #u140319 {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:29px;
  1631. top:24px;
  1632. width:375px;
  1633. height:44px;
  1634. display:flex;
  1635. }
  1636. #u140319 .text {
  1637. position:absolute;
  1638. align-self:center;
  1639. padding:2px 2px 2px 2px;
  1640. box-sizing:border-box;
  1641. width:100%;
  1642. }
  1643. #u140319_text {
  1644. border-width:0px;
  1645. word-wrap:break-word;
  1646. text-transform:none;
  1647. visibility:hidden;
  1648. }
  1649. #u140320 {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:0px;
  1655. height:0px;
  1656. }
  1657. #u140321_div {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:0px;
  1661. top:0px;
  1662. width:88px;
  1663. height:32px;
  1664. background:inherit;
  1665. background-color:rgba(255, 255, 255, 1);
  1666. box-sizing:border-box;
  1667. border-width:1px;
  1668. border-style:solid;
  1669. border-color:rgba(242, 242, 242, 1);
  1670. border-radius:33px;
  1671. -moz-box-shadow:none;
  1672. -webkit-box-shadow:none;
  1673. box-shadow:none;
  1674. }
  1675. #u140321 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:309px;
  1679. top:71px;
  1680. width:88px;
  1681. height:32px;
  1682. display:flex;
  1683. }
  1684. #u140321 .text {
  1685. position:absolute;
  1686. align-self:center;
  1687. padding:2px 2px 2px 2px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u140321_text {
  1692. border-width:0px;
  1693. word-wrap:break-word;
  1694. text-transform:none;
  1695. visibility:hidden;
  1696. }
  1697. #u140322 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:0px;
  1703. height:0px;
  1704. }
  1705. #u140323_img {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:18px;
  1711. height:18px;
  1712. }
  1713. #u140323 {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:372px;
  1717. top:78px;
  1718. width:18px;
  1719. height:18px;
  1720. display:flex;
  1721. }
  1722. #u140323 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:2px 2px 2px 2px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u140323_text {
  1730. border-width:0px;
  1731. word-wrap:break-word;
  1732. text-transform:none;
  1733. visibility:hidden;
  1734. }
  1735. #u140324_img {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:6px;
  1741. height:6px;
  1742. }
  1743. #u140324 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:378px;
  1747. top:84px;
  1748. width:6px;
  1749. height:6px;
  1750. display:flex;
  1751. }
  1752. #u140324 .text {
  1753. position:absolute;
  1754. align-self:center;
  1755. padding:2px 2px 2px 2px;
  1756. box-sizing:border-box;
  1757. width:100%;
  1758. }
  1759. #u140324_text {
  1760. border-width:0px;
  1761. word-wrap:break-word;
  1762. text-transform:none;
  1763. visibility:hidden;
  1764. }
  1765. #u140325 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:0px;
  1771. height:0px;
  1772. }
  1773. #u140326_img {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:5px;
  1779. height:5px;
  1780. }
  1781. #u140326 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:323px;
  1785. top:85px;
  1786. width:5px;
  1787. height:5px;
  1788. display:flex;
  1789. }
  1790. #u140326 .text {
  1791. position:absolute;
  1792. align-self:center;
  1793. padding:2px 2px 2px 2px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u140326_text {
  1798. border-width:0px;
  1799. word-wrap:break-word;
  1800. text-transform:none;
  1801. visibility:hidden;
  1802. }
  1803. #u140327_img {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:5px;
  1809. height:5px;
  1810. }
  1811. #u140327 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:339px;
  1815. top:85px;
  1816. width:5px;
  1817. height:5px;
  1818. display:flex;
  1819. }
  1820. #u140327 .text {
  1821. position:absolute;
  1822. align-self:center;
  1823. padding:2px 2px 2px 2px;
  1824. box-sizing:border-box;
  1825. width:100%;
  1826. }
  1827. #u140327_text {
  1828. border-width:0px;
  1829. word-wrap:break-word;
  1830. text-transform:none;
  1831. visibility:hidden;
  1832. }
  1833. #u140328_img {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:7px;
  1839. height:7px;
  1840. }
  1841. #u140328 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:330px;
  1845. top:84px;
  1846. width:7px;
  1847. height:7px;
  1848. display:flex;
  1849. }
  1850. #u140328 .text {
  1851. position:absolute;
  1852. align-self:center;
  1853. padding:2px 2px 2px 2px;
  1854. box-sizing:border-box;
  1855. width:100%;
  1856. }
  1857. #u140328_text {
  1858. border-width:0px;
  1859. word-wrap:break-word;
  1860. text-transform:none;
  1861. visibility:hidden;
  1862. }
  1863. #u140329_img {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:19px;
  1869. height:2px;
  1870. }
  1871. #u140329 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:347px;
  1875. top:87px;
  1876. width:18px;
  1877. height:1px;
  1878. display:flex;
  1879. -webkit-transform:rotate(90deg);
  1880. -moz-transform:rotate(90deg);
  1881. -ms-transform:rotate(90deg);
  1882. transform:rotate(90deg);
  1883. }
  1884. #u140329 .text {
  1885. position:absolute;
  1886. align-self:center;
  1887. padding:2px 2px 2px 2px;
  1888. box-sizing:border-box;
  1889. width:100%;
  1890. }
  1891. #u140329_text {
  1892. border-width:0px;
  1893. word-wrap:break-word;
  1894. text-transform:none;
  1895. visibility:hidden;
  1896. }
  1897. #u140330_div {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:65px;
  1903. height:22px;
  1904. background:inherit;
  1905. background-color:rgba(255, 255, 255, 0);
  1906. border:none;
  1907. border-radius:0px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:16px;
  1915. color:#000000;
  1916. }
  1917. #u140330 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:60px;
  1921. top:76px;
  1922. width:65px;
  1923. height:22px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:16px;
  1929. color:#000000;
  1930. }
  1931. #u140330 .text {
  1932. position:absolute;
  1933. align-self:flex-start;
  1934. padding:0px 0px 0px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u140330_text {
  1939. border-width:0px;
  1940. white-space:nowrap;
  1941. text-transform:none;
  1942. }
  1943. #u140331_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:12px;
  1949. height:12px;
  1950. background:inherit;
  1951. background-color:rgba(255, 255, 255, 0);
  1952. box-sizing:border-box;
  1953. border-width:2px;
  1954. border-style:solid;
  1955. border-color:rgba(51, 51, 51, 1);
  1956. border-right:0px;
  1957. border-bottom:0px;
  1958. border-radius:0px;
  1959. border-top-right-radius:0px;
  1960. border-bottom-left-radius:0px;
  1961. -moz-box-shadow:none;
  1962. -webkit-box-shadow:none;
  1963. box-shadow:none;
  1964. }
  1965. #u140331 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:46px;
  1969. top:81px;
  1970. width:12px;
  1971. height:12px;
  1972. display:flex;
  1973. -webkit-transform:rotate(315deg);
  1974. -moz-transform:rotate(315deg);
  1975. -ms-transform:rotate(315deg);
  1976. transform:rotate(315deg);
  1977. }
  1978. #u140331 .text {
  1979. position:absolute;
  1980. align-self:center;
  1981. padding:2px 2px 2px 2px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u140331_text {
  1986. border-width:0px;
  1987. word-wrap:break-word;
  1988. text-transform:none;
  1989. visibility:hidden;
  1990. }
  1991. #u140332 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:0px;
  1997. height:0px;
  1998. }
  1999. #u140333_div {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:320px;
  2005. height:40px;
  2006. background:inherit;
  2007. background-color:rgba(242, 242, 242, 1);
  2008. border:none;
  2009. border-radius:20px;
  2010. -moz-box-shadow:none;
  2011. -webkit-box-shadow:none;
  2012. box-shadow:none;
  2013. }
  2014. #u140333 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:60px;
  2018. top:173px;
  2019. width:320px;
  2020. height:40px;
  2021. display:flex;
  2022. }
  2023. #u140333 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 2px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u140333_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. visibility:hidden;
  2035. }
  2036. #u140334_input {
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:297px;
  2041. height:33px;
  2042. padding:2px 2px 2px 2px;
  2043. font-family:'ArialMT', 'Arial', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:13px;
  2047. letter-spacing:normal;
  2048. color:#000000;
  2049. vertical-align:none;
  2050. text-align:left;
  2051. text-transform:none;
  2052. background-color:transparent;
  2053. border-color:transparent;
  2054. }
  2055. #u140334_input.disabled {
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:297px;
  2060. height:33px;
  2061. padding:2px 2px 2px 2px;
  2062. font-family:'ArialMT', 'Arial', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. font-size:13px;
  2066. letter-spacing:normal;
  2067. color:#000000;
  2068. vertical-align:none;
  2069. text-align:left;
  2070. text-transform:none;
  2071. background-color:transparent;
  2072. border-color:transparent;
  2073. }
  2074. #u140334_div {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:297px;
  2080. height:33px;
  2081. background:inherit;
  2082. background-color:rgba(242, 242, 242, 1);
  2083. border:none;
  2084. border-radius:0px;
  2085. -moz-box-shadow:none;
  2086. -webkit-box-shadow:none;
  2087. box-shadow:none;
  2088. }
  2089. #u140334 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:70px;
  2093. top:174px;
  2094. width:297px;
  2095. height:33px;
  2096. display:flex;
  2097. }
  2098. #u140334 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u140334_div.disabled {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:297px;
  2111. height:33px;
  2112. background:inherit;
  2113. background-color:rgba(240, 240, 240, 1);
  2114. border:none;
  2115. border-radius:0px;
  2116. -moz-box-shadow:none;
  2117. -webkit-box-shadow:none;
  2118. box-shadow:none;
  2119. }
  2120. #u140334.disabled {
  2121. }
  2122. #u140335_div {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:65px;
  2128. height:22px;
  2129. background:inherit;
  2130. background-color:rgba(255, 255, 255, 0);
  2131. border:none;
  2132. border-radius:0px;
  2133. -moz-box-shadow:none;
  2134. -webkit-box-shadow:none;
  2135. box-shadow:none;
  2136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:16px;
  2140. color:#000000;
  2141. }
  2142. #u140335 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:60px;
  2146. top:141px;
  2147. width:65px;
  2148. height:22px;
  2149. display:flex;
  2150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2151. font-weight:400;
  2152. font-style:normal;
  2153. font-size:16px;
  2154. color:#000000;
  2155. }
  2156. #u140335 .text {
  2157. position:absolute;
  2158. align-self:flex-start;
  2159. padding:0px 0px 0px 0px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u140335_text {
  2164. border-width:0px;
  2165. white-space:nowrap;
  2166. text-transform:none;
  2167. }
  2168. #u140336 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:0px;
  2174. height:0px;
  2175. }
  2176. #u140337_div {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:320px;
  2182. height:40px;
  2183. background:inherit;
  2184. background-color:rgba(242, 242, 242, 1);
  2185. border:none;
  2186. border-radius:20px;
  2187. -moz-box-shadow:none;
  2188. -webkit-box-shadow:none;
  2189. box-shadow:none;
  2190. }
  2191. #u140337 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:60px;
  2195. top:280px;
  2196. width:320px;
  2197. height:40px;
  2198. display:flex;
  2199. }
  2200. #u140337 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:2px 2px 2px 2px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u140337_text {
  2208. border-width:0px;
  2209. word-wrap:break-word;
  2210. text-transform:none;
  2211. visibility:hidden;
  2212. }
  2213. #u140338_input {
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:297px;
  2218. height:33px;
  2219. padding:2px 2px 2px 2px;
  2220. font-family:'ArialMT', 'Arial', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:13px;
  2224. letter-spacing:normal;
  2225. color:#000000;
  2226. vertical-align:none;
  2227. text-align:left;
  2228. text-transform:none;
  2229. background-color:transparent;
  2230. border-color:transparent;
  2231. }
  2232. #u140338_input.disabled {
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:297px;
  2237. height:33px;
  2238. padding:2px 2px 2px 2px;
  2239. font-family:'ArialMT', 'Arial', sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. font-size:13px;
  2243. letter-spacing:normal;
  2244. color:#000000;
  2245. vertical-align:none;
  2246. text-align:left;
  2247. text-transform:none;
  2248. background-color:transparent;
  2249. border-color:transparent;
  2250. }
  2251. #u140338_div {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:297px;
  2257. height:33px;
  2258. background:inherit;
  2259. background-color:rgba(242, 242, 242, 1);
  2260. border:none;
  2261. border-radius:0px;
  2262. -moz-box-shadow:none;
  2263. -webkit-box-shadow:none;
  2264. box-shadow:none;
  2265. }
  2266. #u140338 {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:70px;
  2270. top:281px;
  2271. width:297px;
  2272. height:33px;
  2273. display:flex;
  2274. }
  2275. #u140338 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 2px 2px 2px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u140338_div.disabled {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:297px;
  2288. height:33px;
  2289. background:inherit;
  2290. background-color:rgba(240, 240, 240, 1);
  2291. border:none;
  2292. border-radius:0px;
  2293. -moz-box-shadow:none;
  2294. -webkit-box-shadow:none;
  2295. box-shadow:none;
  2296. }
  2297. #u140338.disabled {
  2298. }
  2299. #u140339_div {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:65px;
  2305. height:22px;
  2306. background:inherit;
  2307. background-color:rgba(255, 255, 255, 0);
  2308. border:none;
  2309. border-radius:0px;
  2310. -moz-box-shadow:none;
  2311. -webkit-box-shadow:none;
  2312. box-shadow:none;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:16px;
  2317. color:#000000;
  2318. }
  2319. #u140339 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:60px;
  2323. top:248px;
  2324. width:65px;
  2325. height:22px;
  2326. display:flex;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:16px;
  2331. color:#000000;
  2332. }
  2333. #u140339 .text {
  2334. position:absolute;
  2335. align-self:flex-start;
  2336. padding:0px 0px 0px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u140339_text {
  2341. border-width:0px;
  2342. white-space:nowrap;
  2343. text-transform:none;
  2344. }
  2345. #u140340_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:51px;
  2351. height:14px;
  2352. background:inherit;
  2353. background-color:rgba(255, 255, 255, 0);
  2354. border:none;
  2355. border-radius:0px;
  2356. -moz-box-shadow:none;
  2357. -webkit-box-shadow:none;
  2358. box-shadow:none;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:10px;
  2363. color:#1890FF;
  2364. }
  2365. #u140340 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:319px;
  2369. top:250px;
  2370. width:51px;
  2371. height:14px;
  2372. display:flex;
  2373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2374. font-weight:400;
  2375. font-style:normal;
  2376. font-size:10px;
  2377. color:#1890FF;
  2378. }
  2379. #u140340 .text {
  2380. position:absolute;
  2381. align-self:flex-start;
  2382. padding:0px 0px 0px 0px;
  2383. box-sizing:border-box;
  2384. width:100%;
  2385. }
  2386. #u140340_text {
  2387. border-width:0px;
  2388. white-space:nowrap;
  2389. text-transform:none;
  2390. }
  2391. #u140341_div {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:320px;
  2397. height:40px;
  2398. background:inherit;
  2399. background-color:rgba(0, 137, 254, 1);
  2400. border:none;
  2401. border-radius:20px;
  2402. -moz-box-shadow:none;
  2403. -webkit-box-shadow:none;
  2404. box-shadow:none;
  2405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2406. font-weight:400;
  2407. font-style:normal;
  2408. font-size:18px;
  2409. color:#FFFFFF;
  2410. }
  2411. #u140341 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:60px;
  2415. top:360px;
  2416. width:320px;
  2417. height:40px;
  2418. display:flex;
  2419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2420. font-weight:400;
  2421. font-style:normal;
  2422. font-size:18px;
  2423. color:#FFFFFF;
  2424. }
  2425. #u140341 .text {
  2426. position:absolute;
  2427. align-self:center;
  2428. padding:2px 2px 2px 2px;
  2429. box-sizing:border-box;
  2430. width:100%;
  2431. }
  2432. #u140341_text {
  2433. border-width:0px;
  2434. word-wrap:break-word;
  2435. text-transform:none;
  2436. }
  2437. #u140343_img {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:433px;
  2443. height:865px;
  2444. }
  2445. #u140343 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:462px;
  2449. top:0px;
  2450. width:433px;
  2451. height:865px;
  2452. display:flex;
  2453. }
  2454. #u140343 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:2px 2px 2px 2px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u140343_text {
  2462. border-width:0px;
  2463. word-wrap:break-word;
  2464. text-transform:none;
  2465. visibility:hidden;
  2466. }
  2467. #u140344_div {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:375px;
  2473. height:40px;
  2474. background:inherit;
  2475. background-color:rgba(255, 255, 255, 1);
  2476. box-sizing:border-box;
  2477. border-width:1px;
  2478. border-style:solid;
  2479. border-color:rgba(215, 215, 215, 1);
  2480. border-left:0px;
  2481. border-top:0px;
  2482. border-right:0px;
  2483. border-radius:0px;
  2484. border-bottom-right-radius:0px;
  2485. border-bottom-left-radius:0px;
  2486. -moz-box-shadow:none;
  2487. -webkit-box-shadow:none;
  2488. box-shadow:none;
  2489. }
  2490. #u140344 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:491px;
  2494. top:67px;
  2495. width:375px;
  2496. height:40px;
  2497. display:flex;
  2498. }
  2499. #u140344 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 2px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u140344_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u140345 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:0px;
  2518. height:0px;
  2519. }
  2520. #u140346_div {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:88px;
  2526. height:32px;
  2527. background:inherit;
  2528. background-color:rgba(255, 255, 255, 1);
  2529. box-sizing:border-box;
  2530. border-width:1px;
  2531. border-style:solid;
  2532. border-color:rgba(242, 242, 242, 1);
  2533. border-radius:33px;
  2534. -moz-box-shadow:none;
  2535. -webkit-box-shadow:none;
  2536. box-shadow:none;
  2537. }
  2538. #u140346 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:771px;
  2542. top:71px;
  2543. width:88px;
  2544. height:32px;
  2545. display:flex;
  2546. }
  2547. #u140346 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:2px 2px 2px 2px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u140346_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. visibility:hidden;
  2559. }
  2560. #u140347 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:0px;
  2566. height:0px;
  2567. }
  2568. #u140348_img {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:18px;
  2574. height:18px;
  2575. }
  2576. #u140348 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:834px;
  2580. top:78px;
  2581. width:18px;
  2582. height:18px;
  2583. display:flex;
  2584. }
  2585. #u140348 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 2px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u140348_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. visibility:hidden;
  2597. }
  2598. #u140349_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:6px;
  2604. height:6px;
  2605. }
  2606. #u140349 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:840px;
  2610. top:84px;
  2611. width:6px;
  2612. height:6px;
  2613. display:flex;
  2614. }
  2615. #u140349 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 2px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u140349_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. visibility:hidden;
  2627. }
  2628. #u140350 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:0px;
  2634. height:0px;
  2635. }
  2636. #u140351_img {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:5px;
  2642. height:5px;
  2643. }
  2644. #u140351 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:785px;
  2648. top:85px;
  2649. width:5px;
  2650. height:5px;
  2651. display:flex;
  2652. }
  2653. #u140351 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 2px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u140351_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u140352_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:5px;
  2672. height:5px;
  2673. }
  2674. #u140352 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:801px;
  2678. top:85px;
  2679. width:5px;
  2680. height:5px;
  2681. display:flex;
  2682. }
  2683. #u140352 .text {
  2684. position:absolute;
  2685. align-self:center;
  2686. padding:2px 2px 2px 2px;
  2687. box-sizing:border-box;
  2688. width:100%;
  2689. }
  2690. #u140352_text {
  2691. border-width:0px;
  2692. word-wrap:break-word;
  2693. text-transform:none;
  2694. visibility:hidden;
  2695. }
  2696. #u140353_img {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:7px;
  2702. height:7px;
  2703. }
  2704. #u140353 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:792px;
  2708. top:84px;
  2709. width:7px;
  2710. height:7px;
  2711. display:flex;
  2712. }
  2713. #u140353 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 2px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u140353_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. visibility:hidden;
  2725. }
  2726. #u140354_img {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:19px;
  2732. height:2px;
  2733. }
  2734. #u140354 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:809px;
  2738. top:87px;
  2739. width:18px;
  2740. height:1px;
  2741. display:flex;
  2742. -webkit-transform:rotate(90deg);
  2743. -moz-transform:rotate(90deg);
  2744. -ms-transform:rotate(90deg);
  2745. transform:rotate(90deg);
  2746. }
  2747. #u140354 .text {
  2748. position:absolute;
  2749. align-self:center;
  2750. padding:2px 2px 2px 2px;
  2751. box-sizing:border-box;
  2752. width:100%;
  2753. }
  2754. #u140354_text {
  2755. border-width:0px;
  2756. word-wrap:break-word;
  2757. text-transform:none;
  2758. visibility:hidden;
  2759. }
  2760. #u140355_img {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:375px;
  2766. height:44px;
  2767. }
  2768. #u140355 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:491px;
  2772. top:24px;
  2773. width:375px;
  2774. height:44px;
  2775. display:flex;
  2776. }
  2777. #u140355 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u140355_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u140356_div {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:375px;
  2796. height:50px;
  2797. background:inherit;
  2798. background-color:rgba(255, 255, 255, 1);
  2799. box-sizing:border-box;
  2800. border-width:1px;
  2801. border-style:solid;
  2802. border-color:rgba(242, 242, 242, 1);
  2803. border-radius:26px;
  2804. border-top-left-radius:0px;
  2805. border-top-right-radius:0px;
  2806. -moz-box-shadow:none;
  2807. -webkit-box-shadow:none;
  2808. box-shadow:none;
  2809. }
  2810. #u140356 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:491px;
  2814. top:788px;
  2815. width:375px;
  2816. height:50px;
  2817. display:flex;
  2818. }
  2819. #u140356 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 2px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u140356_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. visibility:hidden;
  2831. }
  2832. #u140357 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:0px;
  2838. height:0px;
  2839. }
  2840. #u140358_img {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:24px;
  2846. height:24px;
  2847. }
  2848. #u140358 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:531px;
  2852. top:792px;
  2853. width:24px;
  2854. height:24px;
  2855. display:flex;
  2856. font-size:8px;
  2857. }
  2858. #u140358 .text {
  2859. position:absolute;
  2860. align-self:center;
  2861. padding:2px 2px 2px 2px;
  2862. box-sizing:border-box;
  2863. width:100%;
  2864. }
  2865. #u140358_text {
  2866. border-width:0px;
  2867. word-wrap:break-word;
  2868. text-transform:none;
  2869. }
  2870. #u140359_div {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:25px;
  2876. height:17px;
  2877. background:inherit;
  2878. background-color:rgba(255, 255, 255, 0);
  2879. border:none;
  2880. border-radius:0px;
  2881. -moz-box-shadow:none;
  2882. -webkit-box-shadow:none;
  2883. box-shadow:none;
  2884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2885. font-weight:400;
  2886. font-style:normal;
  2887. font-size:12px;
  2888. }
  2889. #u140359 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:531px;
  2893. top:817px;
  2894. width:25px;
  2895. height:17px;
  2896. display:flex;
  2897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2898. font-weight:400;
  2899. font-style:normal;
  2900. font-size:12px;
  2901. }
  2902. #u140359 .text {
  2903. position:absolute;
  2904. align-self:flex-start;
  2905. padding:0px 0px 0px 0px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u140359_text {
  2910. border-width:0px;
  2911. white-space:nowrap;
  2912. text-transform:none;
  2913. }
  2914. #u140360 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:0px;
  2920. height:0px;
  2921. }
  2922. #u140361_img {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:24px;
  2928. height:24px;
  2929. }
  2930. #u140361 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:801px;
  2934. top:794px;
  2935. width:24px;
  2936. height:24px;
  2937. display:flex;
  2938. font-size:8px;
  2939. }
  2940. #u140361 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:2px 2px 2px 2px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u140361_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. }
  2952. #u140362_div {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:25px;
  2958. height:17px;
  2959. background:inherit;
  2960. background-color:rgba(255, 255, 255, 0);
  2961. border:none;
  2962. border-radius:0px;
  2963. -moz-box-shadow:none;
  2964. -webkit-box-shadow:none;
  2965. box-shadow:none;
  2966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:12px;
  2970. }
  2971. #u140362 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:801px;
  2975. top:819px;
  2976. width:25px;
  2977. height:17px;
  2978. display:flex;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:12px;
  2983. }
  2984. #u140362 .text {
  2985. position:absolute;
  2986. align-self:flex-start;
  2987. padding:0px 0px 0px 0px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u140362_text {
  2992. border-width:0px;
  2993. white-space:nowrap;
  2994. text-transform:none;
  2995. }
  2996. #u140363_div {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:375px;
  3002. height:681px;
  3003. background:inherit;
  3004. background-color:rgba(242, 242, 242, 0.462745098039216);
  3005. border:none;
  3006. border-radius:0px;
  3007. -moz-box-shadow:none;
  3008. -webkit-box-shadow:none;
  3009. box-shadow:none;
  3010. }
  3011. #u140363 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:491px;
  3015. top:107px;
  3016. width:375px;
  3017. height:681px;
  3018. display:flex;
  3019. }
  3020. #u140363 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:2px 2px 2px 2px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u140363_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. visibility:hidden;
  3032. }
  3033. #u140364 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:0px;
  3039. height:0px;
  3040. }
  3041. #u140365_img {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:24px;
  3047. height:24px;
  3048. }
  3049. #u140365 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:713px;
  3053. top:792px;
  3054. width:24px;
  3055. height:24px;
  3056. display:flex;
  3057. font-size:8px;
  3058. }
  3059. #u140365 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:2px 2px 2px 2px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u140365_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. }
  3071. #u140366_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:37px;
  3077. height:17px;
  3078. background:inherit;
  3079. background-color:rgba(255, 255, 255, 0);
  3080. border:none;
  3081. border-radius:0px;
  3082. -moz-box-shadow:none;
  3083. -webkit-box-shadow:none;
  3084. box-shadow:none;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:12px;
  3089. }
  3090. #u140366 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:707px;
  3094. top:817px;
  3095. width:37px;
  3096. height:17px;
  3097. display:flex;
  3098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:12px;
  3102. }
  3103. #u140366 .text {
  3104. position:absolute;
  3105. align-self:flex-start;
  3106. padding:0px 0px 0px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u140366_text {
  3111. border-width:0px;
  3112. white-space:nowrap;
  3113. text-transform:none;
  3114. }
  3115. #u140367 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:0px;
  3121. height:0px;
  3122. }
  3123. #u140368_img {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:24px;
  3129. height:24px;
  3130. }
  3131. #u140368 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:619px;
  3135. top:792px;
  3136. width:24px;
  3137. height:24px;
  3138. display:flex;
  3139. font-size:8px;
  3140. }
  3141. #u140368 .text {
  3142. position:absolute;
  3143. align-self:center;
  3144. padding:2px 2px 2px 2px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u140368_text {
  3149. border-width:0px;
  3150. word-wrap:break-word;
  3151. text-transform:none;
  3152. }
  3153. #u140369_div {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:37px;
  3159. height:17px;
  3160. background:inherit;
  3161. background-color:rgba(255, 255, 255, 0);
  3162. border:none;
  3163. border-radius:0px;
  3164. -moz-box-shadow:none;
  3165. -webkit-box-shadow:none;
  3166. box-shadow:none;
  3167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:12px;
  3171. }
  3172. #u140369 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:613px;
  3176. top:817px;
  3177. width:37px;
  3178. height:17px;
  3179. display:flex;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:12px;
  3184. }
  3185. #u140369 .text {
  3186. position:absolute;
  3187. align-self:flex-start;
  3188. padding:0px 0px 0px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u140369_text {
  3193. border-width:0px;
  3194. white-space:nowrap;
  3195. text-transform:none;
  3196. }
  3197. #u140370_div {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:375px;
  3203. height:735px;
  3204. background:inherit;
  3205. background-color:rgba(255, 255, 255, 0.996078431372549);
  3206. border:none;
  3207. border-top:0px;
  3208. border-radius:35px;
  3209. border-top-left-radius:0px;
  3210. border-top-right-radius:0px;
  3211. -moz-box-shadow:none;
  3212. -webkit-box-shadow:none;
  3213. box-shadow:none;
  3214. }
  3215. #u140370 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:491px;
  3219. top:106px;
  3220. width:375px;
  3221. height:735px;
  3222. display:flex;
  3223. }
  3224. #u140370 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 2px 2px 2px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u140370_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. visibility:hidden;
  3236. }
  3237. #u140371_img {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:375px;
  3243. height:44px;
  3244. }
  3245. #u140371 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:491px;
  3249. top:24px;
  3250. width:375px;
  3251. height:44px;
  3252. display:flex;
  3253. }
  3254. #u140371 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 2px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u140371_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. visibility:hidden;
  3266. }
  3267. #u140372 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:0px;
  3273. height:0px;
  3274. }
  3275. #u140373_div {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:88px;
  3281. height:32px;
  3282. background:inherit;
  3283. background-color:rgba(255, 255, 255, 1);
  3284. box-sizing:border-box;
  3285. border-width:1px;
  3286. border-style:solid;
  3287. border-color:rgba(242, 242, 242, 1);
  3288. border-radius:33px;
  3289. -moz-box-shadow:none;
  3290. -webkit-box-shadow:none;
  3291. box-shadow:none;
  3292. }
  3293. #u140373 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:771px;
  3297. top:71px;
  3298. width:88px;
  3299. height:32px;
  3300. display:flex;
  3301. }
  3302. #u140373 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 2px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u140373_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. visibility:hidden;
  3314. }
  3315. #u140374 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:0px;
  3321. height:0px;
  3322. }
  3323. #u140375_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:18px;
  3329. height:18px;
  3330. }
  3331. #u140375 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:834px;
  3335. top:78px;
  3336. width:18px;
  3337. height:18px;
  3338. display:flex;
  3339. }
  3340. #u140375 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 2px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u140375_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u140376_img {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:6px;
  3359. height:6px;
  3360. }
  3361. #u140376 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:840px;
  3365. top:84px;
  3366. width:6px;
  3367. height:6px;
  3368. display:flex;
  3369. }
  3370. #u140376 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 2px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u140376_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u140377 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:0px;
  3389. height:0px;
  3390. }
  3391. #u140378_img {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:5px;
  3397. height:5px;
  3398. }
  3399. #u140378 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:785px;
  3403. top:85px;
  3404. width:5px;
  3405. height:5px;
  3406. display:flex;
  3407. }
  3408. #u140378 .text {
  3409. position:absolute;
  3410. align-self:center;
  3411. padding:2px 2px 2px 2px;
  3412. box-sizing:border-box;
  3413. width:100%;
  3414. }
  3415. #u140378_text {
  3416. border-width:0px;
  3417. word-wrap:break-word;
  3418. text-transform:none;
  3419. visibility:hidden;
  3420. }
  3421. #u140379_img {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:5px;
  3427. height:5px;
  3428. }
  3429. #u140379 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:801px;
  3433. top:85px;
  3434. width:5px;
  3435. height:5px;
  3436. display:flex;
  3437. }
  3438. #u140379 .text {
  3439. position:absolute;
  3440. align-self:center;
  3441. padding:2px 2px 2px 2px;
  3442. box-sizing:border-box;
  3443. width:100%;
  3444. }
  3445. #u140379_text {
  3446. border-width:0px;
  3447. word-wrap:break-word;
  3448. text-transform:none;
  3449. visibility:hidden;
  3450. }
  3451. #u140380_img {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:7px;
  3457. height:7px;
  3458. }
  3459. #u140380 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:792px;
  3463. top:84px;
  3464. width:7px;
  3465. height:7px;
  3466. display:flex;
  3467. }
  3468. #u140380 .text {
  3469. position:absolute;
  3470. align-self:center;
  3471. padding:2px 2px 2px 2px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u140380_text {
  3476. border-width:0px;
  3477. word-wrap:break-word;
  3478. text-transform:none;
  3479. visibility:hidden;
  3480. }
  3481. #u140381_img {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:19px;
  3487. height:2px;
  3488. }
  3489. #u140381 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:809px;
  3493. top:87px;
  3494. width:18px;
  3495. height:1px;
  3496. display:flex;
  3497. -webkit-transform:rotate(90deg);
  3498. -moz-transform:rotate(90deg);
  3499. -ms-transform:rotate(90deg);
  3500. transform:rotate(90deg);
  3501. }
  3502. #u140381 .text {
  3503. position:absolute;
  3504. align-self:center;
  3505. padding:2px 2px 2px 2px;
  3506. box-sizing:border-box;
  3507. width:100%;
  3508. }
  3509. #u140381_text {
  3510. border-width:0px;
  3511. word-wrap:break-word;
  3512. text-transform:none;
  3513. visibility:hidden;
  3514. }
  3515. #u140382_div {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:65px;
  3521. height:22px;
  3522. background:inherit;
  3523. background-color:rgba(255, 255, 255, 0);
  3524. border:none;
  3525. border-radius:0px;
  3526. -moz-box-shadow:none;
  3527. -webkit-box-shadow:none;
  3528. box-shadow:none;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:16px;
  3533. color:#000000;
  3534. }
  3535. #u140382 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:522px;
  3539. top:76px;
  3540. width:65px;
  3541. height:22px;
  3542. display:flex;
  3543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3544. font-weight:400;
  3545. font-style:normal;
  3546. font-size:16px;
  3547. color:#000000;
  3548. }
  3549. #u140382 .text {
  3550. position:absolute;
  3551. align-self:flex-start;
  3552. padding:0px 0px 0px 0px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u140382_text {
  3557. border-width:0px;
  3558. white-space:nowrap;
  3559. text-transform:none;
  3560. }
  3561. #u140383_div {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:12px;
  3567. height:12px;
  3568. background:inherit;
  3569. background-color:rgba(255, 255, 255, 0);
  3570. box-sizing:border-box;
  3571. border-width:2px;
  3572. border-style:solid;
  3573. border-color:rgba(51, 51, 51, 1);
  3574. border-right:0px;
  3575. border-bottom:0px;
  3576. border-radius:0px;
  3577. border-top-right-radius:0px;
  3578. border-bottom-left-radius:0px;
  3579. -moz-box-shadow:none;
  3580. -webkit-box-shadow:none;
  3581. box-shadow:none;
  3582. }
  3583. #u140383 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:508px;
  3587. top:81px;
  3588. width:12px;
  3589. height:12px;
  3590. display:flex;
  3591. -webkit-transform:rotate(315deg);
  3592. -moz-transform:rotate(315deg);
  3593. -ms-transform:rotate(315deg);
  3594. transform:rotate(315deg);
  3595. }
  3596. #u140383 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 2px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u140383_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. visibility:hidden;
  3608. }
  3609. #u140384 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:0px;
  3615. height:0px;
  3616. }
  3617. #u140385_div {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:320px;
  3623. height:40px;
  3624. background:inherit;
  3625. background-color:rgba(242, 242, 242, 1);
  3626. border:none;
  3627. border-radius:20px;
  3628. -moz-box-shadow:none;
  3629. -webkit-box-shadow:none;
  3630. box-shadow:none;
  3631. }
  3632. #u140385 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:522px;
  3636. top:173px;
  3637. width:320px;
  3638. height:40px;
  3639. display:flex;
  3640. }
  3641. #u140385 .text {
  3642. position:absolute;
  3643. align-self:center;
  3644. padding:2px 2px 2px 2px;
  3645. box-sizing:border-box;
  3646. width:100%;
  3647. }
  3648. #u140385_text {
  3649. border-width:0px;
  3650. word-wrap:break-word;
  3651. text-transform:none;
  3652. visibility:hidden;
  3653. }
  3654. #u140386_input {
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:297px;
  3659. height:33px;
  3660. padding:2px 2px 2px 2px;
  3661. font-family:'ArialMT', 'Arial', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:13px;
  3665. letter-spacing:normal;
  3666. color:#000000;
  3667. vertical-align:none;
  3668. text-align:left;
  3669. text-transform:none;
  3670. background-color:transparent;
  3671. border-color:transparent;
  3672. }
  3673. #u140386_input.disabled {
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:297px;
  3678. height:33px;
  3679. padding:2px 2px 2px 2px;
  3680. font-family:'ArialMT', 'Arial', sans-serif;
  3681. font-weight:400;
  3682. font-style:normal;
  3683. font-size:13px;
  3684. letter-spacing:normal;
  3685. color:#000000;
  3686. vertical-align:none;
  3687. text-align:left;
  3688. text-transform:none;
  3689. background-color:transparent;
  3690. border-color:transparent;
  3691. }
  3692. #u140386_div {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:297px;
  3698. height:33px;
  3699. background:inherit;
  3700. background-color:rgba(242, 242, 242, 1);
  3701. border:none;
  3702. border-radius:0px;
  3703. -moz-box-shadow:none;
  3704. -webkit-box-shadow:none;
  3705. box-shadow:none;
  3706. }
  3707. #u140386 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:532px;
  3711. top:174px;
  3712. width:297px;
  3713. height:33px;
  3714. display:flex;
  3715. }
  3716. #u140386 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 2px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u140386_div.disabled {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:0px;
  3727. top:0px;
  3728. width:297px;
  3729. height:33px;
  3730. background:inherit;
  3731. background-color:rgba(240, 240, 240, 1);
  3732. border:none;
  3733. border-radius:0px;
  3734. -moz-box-shadow:none;
  3735. -webkit-box-shadow:none;
  3736. box-shadow:none;
  3737. }
  3738. #u140386.disabled {
  3739. }
  3740. #u140387_div {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:65px;
  3746. height:22px;
  3747. background:inherit;
  3748. background-color:rgba(255, 255, 255, 0);
  3749. border:none;
  3750. border-radius:0px;
  3751. -moz-box-shadow:none;
  3752. -webkit-box-shadow:none;
  3753. box-shadow:none;
  3754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:16px;
  3758. color:#000000;
  3759. }
  3760. #u140387 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:522px;
  3764. top:141px;
  3765. width:65px;
  3766. height:22px;
  3767. display:flex;
  3768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3769. font-weight:400;
  3770. font-style:normal;
  3771. font-size:16px;
  3772. color:#000000;
  3773. }
  3774. #u140387 .text {
  3775. position:absolute;
  3776. align-self:flex-start;
  3777. padding:0px 0px 0px 0px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u140387_text {
  3782. border-width:0px;
  3783. white-space:nowrap;
  3784. text-transform:none;
  3785. }
  3786. #u140388 {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:0px;
  3792. height:0px;
  3793. }
  3794. #u140389_div {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:320px;
  3800. height:40px;
  3801. background:inherit;
  3802. background-color:rgba(242, 242, 242, 1);
  3803. border:none;
  3804. border-radius:20px;
  3805. -moz-box-shadow:none;
  3806. -webkit-box-shadow:none;
  3807. box-shadow:none;
  3808. }
  3809. #u140389 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:522px;
  3813. top:280px;
  3814. width:320px;
  3815. height:40px;
  3816. display:flex;
  3817. }
  3818. #u140389 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 2px 2px 2px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u140389_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. visibility:hidden;
  3830. }
  3831. #u140390_input {
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:297px;
  3836. height:33px;
  3837. padding:2px 2px 2px 2px;
  3838. font-family:'ArialMT', 'Arial', sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. font-size:13px;
  3842. letter-spacing:normal;
  3843. color:#000000;
  3844. vertical-align:none;
  3845. text-align:left;
  3846. text-transform:none;
  3847. background-color:transparent;
  3848. border-color:transparent;
  3849. }
  3850. #u140390_input.disabled {
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:297px;
  3855. height:33px;
  3856. padding:2px 2px 2px 2px;
  3857. font-family:'ArialMT', 'Arial', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:13px;
  3861. letter-spacing:normal;
  3862. color:#000000;
  3863. vertical-align:none;
  3864. text-align:left;
  3865. text-transform:none;
  3866. background-color:transparent;
  3867. border-color:transparent;
  3868. }
  3869. #u140390_div {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:297px;
  3875. height:33px;
  3876. background:inherit;
  3877. background-color:rgba(242, 242, 242, 1);
  3878. border:none;
  3879. border-radius:0px;
  3880. -moz-box-shadow:none;
  3881. -webkit-box-shadow:none;
  3882. box-shadow:none;
  3883. }
  3884. #u140390 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:532px;
  3888. top:281px;
  3889. width:297px;
  3890. height:33px;
  3891. display:flex;
  3892. }
  3893. #u140390 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 2px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u140390_div.disabled {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:297px;
  3906. height:33px;
  3907. background:inherit;
  3908. background-color:rgba(240, 240, 240, 1);
  3909. border:none;
  3910. border-radius:0px;
  3911. -moz-box-shadow:none;
  3912. -webkit-box-shadow:none;
  3913. box-shadow:none;
  3914. }
  3915. #u140390.disabled {
  3916. }
  3917. #u140391_div {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:65px;
  3923. height:22px;
  3924. background:inherit;
  3925. background-color:rgba(255, 255, 255, 0);
  3926. border:none;
  3927. border-radius:0px;
  3928. -moz-box-shadow:none;
  3929. -webkit-box-shadow:none;
  3930. box-shadow:none;
  3931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3932. font-weight:400;
  3933. font-style:normal;
  3934. font-size:16px;
  3935. color:#000000;
  3936. }
  3937. #u140391 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:522px;
  3941. top:248px;
  3942. width:65px;
  3943. height:22px;
  3944. display:flex;
  3945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3946. font-weight:400;
  3947. font-style:normal;
  3948. font-size:16px;
  3949. color:#000000;
  3950. }
  3951. #u140391 .text {
  3952. position:absolute;
  3953. align-self:flex-start;
  3954. padding:0px 0px 0px 0px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u140391_text {
  3959. border-width:0px;
  3960. white-space:nowrap;
  3961. text-transform:none;
  3962. }
  3963. #u140392_div {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:61px;
  3969. height:14px;
  3970. background:inherit;
  3971. background-color:rgba(255, 255, 255, 0);
  3972. border:none;
  3973. border-radius:0px;
  3974. -moz-box-shadow:none;
  3975. -webkit-box-shadow:none;
  3976. box-shadow:none;
  3977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:10px;
  3981. color:#1890FF;
  3982. }
  3983. #u140392 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:781px;
  3987. top:250px;
  3988. width:61px;
  3989. height:14px;
  3990. display:flex;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:10px;
  3995. color:#1890FF;
  3996. }
  3997. #u140392 .text {
  3998. position:absolute;
  3999. align-self:flex-start;
  4000. padding:0px 0px 0px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u140392_text {
  4005. border-width:0px;
  4006. white-space:nowrap;
  4007. text-transform:none;
  4008. }
  4009. #u140393_div {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:320px;
  4015. height:40px;
  4016. background:inherit;
  4017. background-color:rgba(0, 137, 254, 1);
  4018. border:none;
  4019. border-radius:20px;
  4020. -moz-box-shadow:none;
  4021. -webkit-box-shadow:none;
  4022. box-shadow:none;
  4023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:18px;
  4027. color:#FFFFFF;
  4028. }
  4029. #u140393 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:522px;
  4033. top:360px;
  4034. width:320px;
  4035. height:40px;
  4036. display:flex;
  4037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:18px;
  4041. color:#FFFFFF;
  4042. }
  4043. #u140393 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 2px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u140393_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. }
  4055. #u140394_div {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:61px;
  4061. height:17px;
  4062. background:inherit;
  4063. background-color:rgba(255, 255, 255, 0);
  4064. border:none;
  4065. border-radius:0px;
  4066. -moz-box-shadow:none;
  4067. -webkit-box-shadow:none;
  4068. box-shadow:none;
  4069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:12px;
  4073. color:#1890FF;
  4074. }
  4075. #u140394 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:765px;
  4079. top:292px;
  4080. width:61px;
  4081. height:17px;
  4082. display:flex;
  4083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4084. font-weight:400;
  4085. font-style:normal;
  4086. font-size:12px;
  4087. color:#1890FF;
  4088. }
  4089. #u140394 .text {
  4090. position:absolute;
  4091. align-self:flex-start;
  4092. padding:0px 0px 0px 0px;
  4093. box-sizing:border-box;
  4094. width:100%;
  4095. }
  4096. #u140394_text {
  4097. border-width:0px;
  4098. white-space:nowrap;
  4099. text-transform:none;
  4100. }
  4101. #u140396_img {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:433px;
  4107. height:865px;
  4108. }
  4109. #u140396 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:932px;
  4113. top:0px;
  4114. width:433px;
  4115. height:865px;
  4116. display:flex;
  4117. }
  4118. #u140396 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:2px 2px 2px 2px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u140396_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. visibility:hidden;
  4130. }
  4131. #u140397_div {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:375px;
  4137. height:40px;
  4138. background:inherit;
  4139. background-color:rgba(255, 255, 255, 1);
  4140. box-sizing:border-box;
  4141. border-width:1px;
  4142. border-style:solid;
  4143. border-color:rgba(215, 215, 215, 1);
  4144. border-left:0px;
  4145. border-top:0px;
  4146. border-right:0px;
  4147. border-radius:0px;
  4148. border-bottom-right-radius:0px;
  4149. border-bottom-left-radius:0px;
  4150. -moz-box-shadow:none;
  4151. -webkit-box-shadow:none;
  4152. box-shadow:none;
  4153. }
  4154. #u140397 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:961px;
  4158. top:67px;
  4159. width:375px;
  4160. height:40px;
  4161. display:flex;
  4162. }
  4163. #u140397 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:2px 2px 2px 2px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u140397_text {
  4171. border-width:0px;
  4172. word-wrap:break-word;
  4173. text-transform:none;
  4174. visibility:hidden;
  4175. }
  4176. #u140398 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:0px;
  4182. height:0px;
  4183. }
  4184. #u140399_div {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:88px;
  4190. height:32px;
  4191. background:inherit;
  4192. background-color:rgba(255, 255, 255, 1);
  4193. box-sizing:border-box;
  4194. border-width:1px;
  4195. border-style:solid;
  4196. border-color:rgba(242, 242, 242, 1);
  4197. border-radius:33px;
  4198. -moz-box-shadow:none;
  4199. -webkit-box-shadow:none;
  4200. box-shadow:none;
  4201. }
  4202. #u140399 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:1241px;
  4206. top:71px;
  4207. width:88px;
  4208. height:32px;
  4209. display:flex;
  4210. }
  4211. #u140399 .text {
  4212. position:absolute;
  4213. align-self:center;
  4214. padding:2px 2px 2px 2px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u140399_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. visibility:hidden;
  4223. }
  4224. #u140400 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:0px;
  4230. height:0px;
  4231. }
  4232. #u140401_img {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:18px;
  4238. height:18px;
  4239. }
  4240. #u140401 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:1304px;
  4244. top:78px;
  4245. width:18px;
  4246. height:18px;
  4247. display:flex;
  4248. }
  4249. #u140401 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 2px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u140401_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. visibility:hidden;
  4261. }
  4262. #u140402_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:6px;
  4268. height:6px;
  4269. }
  4270. #u140402 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:1310px;
  4274. top:84px;
  4275. width:6px;
  4276. height:6px;
  4277. display:flex;
  4278. }
  4279. #u140402 .text {
  4280. position:absolute;
  4281. align-self:center;
  4282. padding:2px 2px 2px 2px;
  4283. box-sizing:border-box;
  4284. width:100%;
  4285. }
  4286. #u140402_text {
  4287. border-width:0px;
  4288. word-wrap:break-word;
  4289. text-transform:none;
  4290. visibility:hidden;
  4291. }
  4292. #u140403 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:0px;
  4296. top:0px;
  4297. width:0px;
  4298. height:0px;
  4299. }
  4300. #u140404_img {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:5px;
  4306. height:5px;
  4307. }
  4308. #u140404 {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:1255px;
  4312. top:85px;
  4313. width:5px;
  4314. height:5px;
  4315. display:flex;
  4316. }
  4317. #u140404 .text {
  4318. position:absolute;
  4319. align-self:center;
  4320. padding:2px 2px 2px 2px;
  4321. box-sizing:border-box;
  4322. width:100%;
  4323. }
  4324. #u140404_text {
  4325. border-width:0px;
  4326. word-wrap:break-word;
  4327. text-transform:none;
  4328. visibility:hidden;
  4329. }
  4330. #u140405_img {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:5px;
  4336. height:5px;
  4337. }
  4338. #u140405 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:1271px;
  4342. top:85px;
  4343. width:5px;
  4344. height:5px;
  4345. display:flex;
  4346. }
  4347. #u140405 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:2px 2px 2px 2px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u140405_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. visibility:hidden;
  4359. }
  4360. #u140406_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:7px;
  4366. height:7px;
  4367. }
  4368. #u140406 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:1262px;
  4372. top:84px;
  4373. width:7px;
  4374. height:7px;
  4375. display:flex;
  4376. }
  4377. #u140406 .text {
  4378. position:absolute;
  4379. align-self:center;
  4380. padding:2px 2px 2px 2px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u140406_text {
  4385. border-width:0px;
  4386. word-wrap:break-word;
  4387. text-transform:none;
  4388. visibility:hidden;
  4389. }
  4390. #u140407_img {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:19px;
  4396. height:2px;
  4397. }
  4398. #u140407 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:1279px;
  4402. top:87px;
  4403. width:18px;
  4404. height:1px;
  4405. display:flex;
  4406. -webkit-transform:rotate(90deg);
  4407. -moz-transform:rotate(90deg);
  4408. -ms-transform:rotate(90deg);
  4409. transform:rotate(90deg);
  4410. }
  4411. #u140407 .text {
  4412. position:absolute;
  4413. align-self:center;
  4414. padding:2px 2px 2px 2px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u140407_text {
  4419. border-width:0px;
  4420. word-wrap:break-word;
  4421. text-transform:none;
  4422. visibility:hidden;
  4423. }
  4424. #u140408_img {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:375px;
  4430. height:44px;
  4431. }
  4432. #u140408 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:961px;
  4436. top:24px;
  4437. width:375px;
  4438. height:44px;
  4439. display:flex;
  4440. }
  4441. #u140408 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 2px 2px 2px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u140408_text {
  4449. border-width:0px;
  4450. word-wrap:break-word;
  4451. text-transform:none;
  4452. visibility:hidden;
  4453. }
  4454. #u140409_div {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:375px;
  4460. height:50px;
  4461. background:inherit;
  4462. background-color:rgba(255, 255, 255, 1);
  4463. box-sizing:border-box;
  4464. border-width:1px;
  4465. border-style:solid;
  4466. border-color:rgba(242, 242, 242, 1);
  4467. border-radius:26px;
  4468. border-top-left-radius:0px;
  4469. border-top-right-radius:0px;
  4470. -moz-box-shadow:none;
  4471. -webkit-box-shadow:none;
  4472. box-shadow:none;
  4473. }
  4474. #u140409 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:961px;
  4478. top:788px;
  4479. width:375px;
  4480. height:50px;
  4481. display:flex;
  4482. }
  4483. #u140409 .text {
  4484. position:absolute;
  4485. align-self:center;
  4486. padding:2px 2px 2px 2px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u140409_text {
  4491. border-width:0px;
  4492. word-wrap:break-word;
  4493. text-transform:none;
  4494. visibility:hidden;
  4495. }
  4496. #u140410 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:0px;
  4502. height:0px;
  4503. }
  4504. #u140411_img {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:0px;
  4508. top:0px;
  4509. width:24px;
  4510. height:24px;
  4511. }
  4512. #u140411 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:1001px;
  4516. top:792px;
  4517. width:24px;
  4518. height:24px;
  4519. display:flex;
  4520. font-size:8px;
  4521. }
  4522. #u140411 .text {
  4523. position:absolute;
  4524. align-self:center;
  4525. padding:2px 2px 2px 2px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u140411_text {
  4530. border-width:0px;
  4531. word-wrap:break-word;
  4532. text-transform:none;
  4533. }
  4534. #u140412_div {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:25px;
  4540. height:17px;
  4541. background:inherit;
  4542. background-color:rgba(255, 255, 255, 0);
  4543. border:none;
  4544. border-radius:0px;
  4545. -moz-box-shadow:none;
  4546. -webkit-box-shadow:none;
  4547. box-shadow:none;
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:12px;
  4552. }
  4553. #u140412 {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:1001px;
  4557. top:817px;
  4558. width:25px;
  4559. height:17px;
  4560. display:flex;
  4561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:12px;
  4565. }
  4566. #u140412 .text {
  4567. position:absolute;
  4568. align-self:flex-start;
  4569. padding:0px 0px 0px 0px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u140412_text {
  4574. border-width:0px;
  4575. white-space:nowrap;
  4576. text-transform:none;
  4577. }
  4578. #u140413 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:0px;
  4584. height:0px;
  4585. }
  4586. #u140414_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:24px;
  4592. height:24px;
  4593. }
  4594. #u140414 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:1271px;
  4598. top:794px;
  4599. width:24px;
  4600. height:24px;
  4601. display:flex;
  4602. font-size:8px;
  4603. }
  4604. #u140414 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 2px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u140414_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. }
  4616. #u140415_div {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:25px;
  4622. height:17px;
  4623. background:inherit;
  4624. background-color:rgba(255, 255, 255, 0);
  4625. border:none;
  4626. border-radius:0px;
  4627. -moz-box-shadow:none;
  4628. -webkit-box-shadow:none;
  4629. box-shadow:none;
  4630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:12px;
  4634. }
  4635. #u140415 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:1271px;
  4639. top:819px;
  4640. width:25px;
  4641. height:17px;
  4642. display:flex;
  4643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4644. font-weight:400;
  4645. font-style:normal;
  4646. font-size:12px;
  4647. }
  4648. #u140415 .text {
  4649. position:absolute;
  4650. align-self:flex-start;
  4651. padding:0px 0px 0px 0px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u140415_text {
  4656. border-width:0px;
  4657. white-space:nowrap;
  4658. text-transform:none;
  4659. }
  4660. #u140416_div {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:375px;
  4666. height:681px;
  4667. background:inherit;
  4668. background-color:rgba(242, 242, 242, 0.462745098039216);
  4669. border:none;
  4670. border-radius:0px;
  4671. -moz-box-shadow:none;
  4672. -webkit-box-shadow:none;
  4673. box-shadow:none;
  4674. }
  4675. #u140416 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:961px;
  4679. top:107px;
  4680. width:375px;
  4681. height:681px;
  4682. display:flex;
  4683. }
  4684. #u140416 .text {
  4685. position:absolute;
  4686. align-self:center;
  4687. padding:2px 2px 2px 2px;
  4688. box-sizing:border-box;
  4689. width:100%;
  4690. }
  4691. #u140416_text {
  4692. border-width:0px;
  4693. word-wrap:break-word;
  4694. text-transform:none;
  4695. visibility:hidden;
  4696. }
  4697. #u140417 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:0px;
  4703. height:0px;
  4704. }
  4705. #u140418_img {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:0px;
  4709. top:0px;
  4710. width:24px;
  4711. height:24px;
  4712. }
  4713. #u140418 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:1183px;
  4717. top:792px;
  4718. width:24px;
  4719. height:24px;
  4720. display:flex;
  4721. font-size:8px;
  4722. }
  4723. #u140418 .text {
  4724. position:absolute;
  4725. align-self:center;
  4726. padding:2px 2px 2px 2px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u140418_text {
  4731. border-width:0px;
  4732. word-wrap:break-word;
  4733. text-transform:none;
  4734. }
  4735. #u140419_div {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:37px;
  4741. height:17px;
  4742. background:inherit;
  4743. background-color:rgba(255, 255, 255, 0);
  4744. border:none;
  4745. border-radius:0px;
  4746. -moz-box-shadow:none;
  4747. -webkit-box-shadow:none;
  4748. box-shadow:none;
  4749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:12px;
  4753. }
  4754. #u140419 {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:1177px;
  4758. top:817px;
  4759. width:37px;
  4760. height:17px;
  4761. display:flex;
  4762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. font-size:12px;
  4766. }
  4767. #u140419 .text {
  4768. position:absolute;
  4769. align-self:flex-start;
  4770. padding:0px 0px 0px 0px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u140419_text {
  4775. border-width:0px;
  4776. white-space:nowrap;
  4777. text-transform:none;
  4778. }
  4779. #u140420 {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:0px;
  4785. height:0px;
  4786. }
  4787. #u140421_img {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:24px;
  4793. height:24px;
  4794. }
  4795. #u140421 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:1089px;
  4799. top:792px;
  4800. width:24px;
  4801. height:24px;
  4802. display:flex;
  4803. font-size:8px;
  4804. }
  4805. #u140421 .text {
  4806. position:absolute;
  4807. align-self:center;
  4808. padding:2px 2px 2px 2px;
  4809. box-sizing:border-box;
  4810. width:100%;
  4811. }
  4812. #u140421_text {
  4813. border-width:0px;
  4814. word-wrap:break-word;
  4815. text-transform:none;
  4816. }
  4817. #u140422_div {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:37px;
  4823. height:17px;
  4824. background:inherit;
  4825. background-color:rgba(255, 255, 255, 0);
  4826. border:none;
  4827. border-radius:0px;
  4828. -moz-box-shadow:none;
  4829. -webkit-box-shadow:none;
  4830. box-shadow:none;
  4831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. font-size:12px;
  4835. }
  4836. #u140422 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:1083px;
  4840. top:817px;
  4841. width:37px;
  4842. height:17px;
  4843. display:flex;
  4844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4845. font-weight:400;
  4846. font-style:normal;
  4847. font-size:12px;
  4848. }
  4849. #u140422 .text {
  4850. position:absolute;
  4851. align-self:flex-start;
  4852. padding:0px 0px 0px 0px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u140422_text {
  4857. border-width:0px;
  4858. white-space:nowrap;
  4859. text-transform:none;
  4860. }
  4861. #u140423_div {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:375px;
  4867. height:735px;
  4868. background:inherit;
  4869. background-color:rgba(255, 255, 255, 0.996078431372549);
  4870. border:none;
  4871. border-top:0px;
  4872. border-radius:35px;
  4873. border-top-left-radius:0px;
  4874. border-top-right-radius:0px;
  4875. -moz-box-shadow:none;
  4876. -webkit-box-shadow:none;
  4877. box-shadow:none;
  4878. }
  4879. #u140423 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:961px;
  4883. top:106px;
  4884. width:375px;
  4885. height:735px;
  4886. display:flex;
  4887. }
  4888. #u140423 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 2px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u140423_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u140424_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:375px;
  4907. height:44px;
  4908. }
  4909. #u140424 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:961px;
  4913. top:24px;
  4914. width:375px;
  4915. height:44px;
  4916. display:flex;
  4917. }
  4918. #u140424 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u140424_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u140425 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:0px;
  4937. height:0px;
  4938. }
  4939. #u140426_div {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:88px;
  4945. height:32px;
  4946. background:inherit;
  4947. background-color:rgba(255, 255, 255, 1);
  4948. box-sizing:border-box;
  4949. border-width:1px;
  4950. border-style:solid;
  4951. border-color:rgba(242, 242, 242, 1);
  4952. border-radius:33px;
  4953. -moz-box-shadow:none;
  4954. -webkit-box-shadow:none;
  4955. box-shadow:none;
  4956. }
  4957. #u140426 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:1241px;
  4961. top:71px;
  4962. width:88px;
  4963. height:32px;
  4964. display:flex;
  4965. }
  4966. #u140426 .text {
  4967. position:absolute;
  4968. align-self:center;
  4969. padding:2px 2px 2px 2px;
  4970. box-sizing:border-box;
  4971. width:100%;
  4972. }
  4973. #u140426_text {
  4974. border-width:0px;
  4975. word-wrap:break-word;
  4976. text-transform:none;
  4977. visibility:hidden;
  4978. }
  4979. #u140427 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:0px;
  4985. height:0px;
  4986. }
  4987. #u140428_img {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:18px;
  4993. height:18px;
  4994. }
  4995. #u140428 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:1304px;
  4999. top:78px;
  5000. width:18px;
  5001. height:18px;
  5002. display:flex;
  5003. }
  5004. #u140428 .text {
  5005. position:absolute;
  5006. align-self:center;
  5007. padding:2px 2px 2px 2px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u140428_text {
  5012. border-width:0px;
  5013. word-wrap:break-word;
  5014. text-transform:none;
  5015. visibility:hidden;
  5016. }
  5017. #u140429_img {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:6px;
  5023. height:6px;
  5024. }
  5025. #u140429 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:1310px;
  5029. top:84px;
  5030. width:6px;
  5031. height:6px;
  5032. display:flex;
  5033. }
  5034. #u140429 .text {
  5035. position:absolute;
  5036. align-self:center;
  5037. padding:2px 2px 2px 2px;
  5038. box-sizing:border-box;
  5039. width:100%;
  5040. }
  5041. #u140429_text {
  5042. border-width:0px;
  5043. word-wrap:break-word;
  5044. text-transform:none;
  5045. visibility:hidden;
  5046. }
  5047. #u140430 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:0px;
  5053. height:0px;
  5054. }
  5055. #u140431_img {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:5px;
  5061. height:5px;
  5062. }
  5063. #u140431 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:1255px;
  5067. top:85px;
  5068. width:5px;
  5069. height:5px;
  5070. display:flex;
  5071. }
  5072. #u140431 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 2px 2px 2px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u140431_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u140432_img {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:5px;
  5091. height:5px;
  5092. }
  5093. #u140432 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:1271px;
  5097. top:85px;
  5098. width:5px;
  5099. height:5px;
  5100. display:flex;
  5101. }
  5102. #u140432 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 2px 2px 2px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u140432_text {
  5110. border-width:0px;
  5111. word-wrap:break-word;
  5112. text-transform:none;
  5113. visibility:hidden;
  5114. }
  5115. #u140433_img {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:7px;
  5121. height:7px;
  5122. }
  5123. #u140433 {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:1262px;
  5127. top:84px;
  5128. width:7px;
  5129. height:7px;
  5130. display:flex;
  5131. }
  5132. #u140433 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:2px 2px 2px 2px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u140433_text {
  5140. border-width:0px;
  5141. word-wrap:break-word;
  5142. text-transform:none;
  5143. visibility:hidden;
  5144. }
  5145. #u140434_img {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:19px;
  5151. height:2px;
  5152. }
  5153. #u140434 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:1279px;
  5157. top:87px;
  5158. width:18px;
  5159. height:1px;
  5160. display:flex;
  5161. -webkit-transform:rotate(90deg);
  5162. -moz-transform:rotate(90deg);
  5163. -ms-transform:rotate(90deg);
  5164. transform:rotate(90deg);
  5165. }
  5166. #u140434 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:2px 2px 2px 2px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u140434_text {
  5174. border-width:0px;
  5175. word-wrap:break-word;
  5176. text-transform:none;
  5177. visibility:hidden;
  5178. }
  5179. #u140435_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:65px;
  5185. height:22px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 0);
  5188. border:none;
  5189. border-radius:0px;
  5190. -moz-box-shadow:none;
  5191. -webkit-box-shadow:none;
  5192. box-shadow:none;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:16px;
  5197. color:#000000;
  5198. }
  5199. #u140435 {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:992px;
  5203. top:76px;
  5204. width:65px;
  5205. height:22px;
  5206. display:flex;
  5207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5208. font-weight:400;
  5209. font-style:normal;
  5210. font-size:16px;
  5211. color:#000000;
  5212. }
  5213. #u140435 .text {
  5214. position:absolute;
  5215. align-self:flex-start;
  5216. padding:0px 0px 0px 0px;
  5217. box-sizing:border-box;
  5218. width:100%;
  5219. }
  5220. #u140435_text {
  5221. border-width:0px;
  5222. white-space:nowrap;
  5223. text-transform:none;
  5224. }
  5225. #u140436_div {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:12px;
  5231. height:12px;
  5232. background:inherit;
  5233. background-color:rgba(255, 255, 255, 0);
  5234. box-sizing:border-box;
  5235. border-width:2px;
  5236. border-style:solid;
  5237. border-color:rgba(51, 51, 51, 1);
  5238. border-right:0px;
  5239. border-bottom:0px;
  5240. border-radius:0px;
  5241. border-top-right-radius:0px;
  5242. border-bottom-left-radius:0px;
  5243. -moz-box-shadow:none;
  5244. -webkit-box-shadow:none;
  5245. box-shadow:none;
  5246. }
  5247. #u140436 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:978px;
  5251. top:81px;
  5252. width:12px;
  5253. height:12px;
  5254. display:flex;
  5255. -webkit-transform:rotate(315deg);
  5256. -moz-transform:rotate(315deg);
  5257. -ms-transform:rotate(315deg);
  5258. transform:rotate(315deg);
  5259. }
  5260. #u140436 .text {
  5261. position:absolute;
  5262. align-self:center;
  5263. padding:2px 2px 2px 2px;
  5264. box-sizing:border-box;
  5265. width:100%;
  5266. }
  5267. #u140436_text {
  5268. border-width:0px;
  5269. word-wrap:break-word;
  5270. text-transform:none;
  5271. visibility:hidden;
  5272. }
  5273. #u140437 {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:0px;
  5279. height:0px;
  5280. }
  5281. #u140438_div {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:320px;
  5287. height:40px;
  5288. background:inherit;
  5289. background-color:rgba(242, 242, 242, 1);
  5290. border:none;
  5291. border-radius:20px;
  5292. -moz-box-shadow:none;
  5293. -webkit-box-shadow:none;
  5294. box-shadow:none;
  5295. }
  5296. #u140438 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:992px;
  5300. top:173px;
  5301. width:320px;
  5302. height:40px;
  5303. display:flex;
  5304. }
  5305. #u140438 .text {
  5306. position:absolute;
  5307. align-self:center;
  5308. padding:2px 2px 2px 2px;
  5309. box-sizing:border-box;
  5310. width:100%;
  5311. }
  5312. #u140438_text {
  5313. border-width:0px;
  5314. word-wrap:break-word;
  5315. text-transform:none;
  5316. visibility:hidden;
  5317. }
  5318. #u140439_input {
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:297px;
  5323. height:33px;
  5324. padding:2px 2px 2px 2px;
  5325. font-family:'ArialMT', 'Arial', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:13px;
  5329. letter-spacing:normal;
  5330. color:#000000;
  5331. vertical-align:none;
  5332. text-align:left;
  5333. text-transform:none;
  5334. background-color:transparent;
  5335. border-color:transparent;
  5336. }
  5337. #u140439_input.disabled {
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:297px;
  5342. height:33px;
  5343. padding:2px 2px 2px 2px;
  5344. font-family:'ArialMT', 'Arial', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. font-size:13px;
  5348. letter-spacing:normal;
  5349. color:#000000;
  5350. vertical-align:none;
  5351. text-align:left;
  5352. text-transform:none;
  5353. background-color:transparent;
  5354. border-color:transparent;
  5355. }
  5356. #u140439_div {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:297px;
  5362. height:33px;
  5363. background:inherit;
  5364. background-color:rgba(242, 242, 242, 1);
  5365. border:none;
  5366. border-radius:0px;
  5367. -moz-box-shadow:none;
  5368. -webkit-box-shadow:none;
  5369. box-shadow:none;
  5370. }
  5371. #u140439 {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:1002px;
  5375. top:174px;
  5376. width:297px;
  5377. height:33px;
  5378. display:flex;
  5379. }
  5380. #u140439 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:2px 2px 2px 2px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u140439_div.disabled {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:297px;
  5393. height:33px;
  5394. background:inherit;
  5395. background-color:rgba(240, 240, 240, 1);
  5396. border:none;
  5397. border-radius:0px;
  5398. -moz-box-shadow:none;
  5399. -webkit-box-shadow:none;
  5400. box-shadow:none;
  5401. }
  5402. #u140439.disabled {
  5403. }
  5404. #u140440_div {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:81px;
  5410. height:22px;
  5411. background:inherit;
  5412. background-color:rgba(255, 255, 255, 0);
  5413. border:none;
  5414. border-radius:0px;
  5415. -moz-box-shadow:none;
  5416. -webkit-box-shadow:none;
  5417. box-shadow:none;
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:16px;
  5422. color:#000000;
  5423. }
  5424. #u140440 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:992px;
  5428. top:141px;
  5429. width:81px;
  5430. height:22px;
  5431. display:flex;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:16px;
  5436. color:#000000;
  5437. }
  5438. #u140440 .text {
  5439. position:absolute;
  5440. align-self:flex-start;
  5441. padding:0px 0px 0px 0px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u140440_text {
  5446. border-width:0px;
  5447. white-space:nowrap;
  5448. text-transform:none;
  5449. }
  5450. #u140441 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:0px;
  5456. height:0px;
  5457. }
  5458. #u140442_div {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:320px;
  5464. height:40px;
  5465. background:inherit;
  5466. background-color:rgba(242, 242, 242, 1);
  5467. border:none;
  5468. border-radius:20px;
  5469. -moz-box-shadow:none;
  5470. -webkit-box-shadow:none;
  5471. box-shadow:none;
  5472. }
  5473. #u140442 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:992px;
  5477. top:280px;
  5478. width:320px;
  5479. height:40px;
  5480. display:flex;
  5481. }
  5482. #u140442 .text {
  5483. position:absolute;
  5484. align-self:center;
  5485. padding:2px 2px 2px 2px;
  5486. box-sizing:border-box;
  5487. width:100%;
  5488. }
  5489. #u140442_text {
  5490. border-width:0px;
  5491. word-wrap:break-word;
  5492. text-transform:none;
  5493. visibility:hidden;
  5494. }
  5495. #u140443_input {
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:297px;
  5500. height:33px;
  5501. padding:2px 2px 2px 2px;
  5502. font-family:'ArialMT', 'Arial', sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:13px;
  5506. letter-spacing:normal;
  5507. color:#000000;
  5508. vertical-align:none;
  5509. text-align:left;
  5510. text-transform:none;
  5511. background-color:transparent;
  5512. border-color:transparent;
  5513. }
  5514. #u140443_input.disabled {
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:297px;
  5519. height:33px;
  5520. padding:2px 2px 2px 2px;
  5521. font-family:'ArialMT', 'Arial', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:13px;
  5525. letter-spacing:normal;
  5526. color:#000000;
  5527. vertical-align:none;
  5528. text-align:left;
  5529. text-transform:none;
  5530. background-color:transparent;
  5531. border-color:transparent;
  5532. }
  5533. #u140443_div {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:297px;
  5539. height:33px;
  5540. background:inherit;
  5541. background-color:rgba(242, 242, 242, 1);
  5542. border:none;
  5543. border-radius:0px;
  5544. -moz-box-shadow:none;
  5545. -webkit-box-shadow:none;
  5546. box-shadow:none;
  5547. }
  5548. #u140443 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:1002px;
  5552. top:281px;
  5553. width:297px;
  5554. height:33px;
  5555. display:flex;
  5556. }
  5557. #u140443 .text {
  5558. position:absolute;
  5559. align-self:center;
  5560. padding:2px 2px 2px 2px;
  5561. box-sizing:border-box;
  5562. width:100%;
  5563. }
  5564. #u140443_div.disabled {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:297px;
  5570. height:33px;
  5571. background:inherit;
  5572. background-color:rgba(240, 240, 240, 1);
  5573. border:none;
  5574. border-radius:0px;
  5575. -moz-box-shadow:none;
  5576. -webkit-box-shadow:none;
  5577. box-shadow:none;
  5578. }
  5579. #u140443.disabled {
  5580. }
  5581. #u140444_div {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:0px;
  5585. top:0px;
  5586. width:65px;
  5587. height:22px;
  5588. background:inherit;
  5589. background-color:rgba(255, 255, 255, 0);
  5590. border:none;
  5591. border-radius:0px;
  5592. -moz-box-shadow:none;
  5593. -webkit-box-shadow:none;
  5594. box-shadow:none;
  5595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:16px;
  5599. color:#000000;
  5600. }
  5601. #u140444 {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:992px;
  5605. top:248px;
  5606. width:65px;
  5607. height:22px;
  5608. display:flex;
  5609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5610. font-weight:400;
  5611. font-style:normal;
  5612. font-size:16px;
  5613. color:#000000;
  5614. }
  5615. #u140444 .text {
  5616. position:absolute;
  5617. align-self:flex-start;
  5618. padding:0px 0px 0px 0px;
  5619. box-sizing:border-box;
  5620. width:100%;
  5621. }
  5622. #u140444_text {
  5623. border-width:0px;
  5624. white-space:nowrap;
  5625. text-transform:none;
  5626. }
  5627. #u140445_div {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:61px;
  5633. height:14px;
  5634. background:inherit;
  5635. background-color:rgba(255, 255, 255, 0);
  5636. border:none;
  5637. border-radius:0px;
  5638. -moz-box-shadow:none;
  5639. -webkit-box-shadow:none;
  5640. box-shadow:none;
  5641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5642. font-weight:400;
  5643. font-style:normal;
  5644. font-size:10px;
  5645. color:#1890FF;
  5646. }
  5647. #u140445 {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:1251px;
  5651. top:250px;
  5652. width:61px;
  5653. height:14px;
  5654. display:flex;
  5655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5656. font-weight:400;
  5657. font-style:normal;
  5658. font-size:10px;
  5659. color:#1890FF;
  5660. }
  5661. #u140445 .text {
  5662. position:absolute;
  5663. align-self:flex-start;
  5664. padding:0px 0px 0px 0px;
  5665. box-sizing:border-box;
  5666. width:100%;
  5667. }
  5668. #u140445_text {
  5669. border-width:0px;
  5670. white-space:nowrap;
  5671. text-transform:none;
  5672. }
  5673. #u140446_div {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:320px;
  5679. height:40px;
  5680. background:inherit;
  5681. background-color:rgba(0, 137, 254, 1);
  5682. border:none;
  5683. border-radius:20px;
  5684. -moz-box-shadow:none;
  5685. -webkit-box-shadow:none;
  5686. box-shadow:none;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:18px;
  5691. color:#FFFFFF;
  5692. }
  5693. #u140446 {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:992px;
  5697. top:360px;
  5698. width:320px;
  5699. height:40px;
  5700. display:flex;
  5701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5702. font-weight:400;
  5703. font-style:normal;
  5704. font-size:18px;
  5705. color:#FFFFFF;
  5706. }
  5707. #u140446 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:2px 2px 2px 2px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u140446_text {
  5715. border-width:0px;
  5716. word-wrap:break-word;
  5717. text-transform:none;
  5718. }
  5719. #u140447_div {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:61px;
  5725. height:17px;
  5726. background:inherit;
  5727. background-color:rgba(255, 255, 255, 0);
  5728. border:none;
  5729. border-radius:0px;
  5730. -moz-box-shadow:none;
  5731. -webkit-box-shadow:none;
  5732. box-shadow:none;
  5733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:12px;
  5737. color:#1890FF;
  5738. }
  5739. #u140447 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:1235px;
  5743. top:292px;
  5744. width:61px;
  5745. height:17px;
  5746. display:flex;
  5747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:12px;
  5751. color:#1890FF;
  5752. }
  5753. #u140447 .text {
  5754. position:absolute;
  5755. align-self:flex-start;
  5756. padding:0px 0px 0px 0px;
  5757. box-sizing:border-box;
  5758. width:100%;
  5759. }
  5760. #u140447_text {
  5761. border-width:0px;
  5762. white-space:nowrap;
  5763. text-transform:none;
  5764. }
  5765. #u140449_img {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:0px;
  5769. top:0px;
  5770. width:433px;
  5771. height:865px;
  5772. }
  5773. #u140449 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:1413px;
  5777. top:0px;
  5778. width:433px;
  5779. height:865px;
  5780. display:flex;
  5781. }
  5782. #u140449 .text {
  5783. position:absolute;
  5784. align-self:center;
  5785. padding:2px 2px 2px 2px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u140449_text {
  5790. border-width:0px;
  5791. word-wrap:break-word;
  5792. text-transform:none;
  5793. visibility:hidden;
  5794. }
  5795. #u140450_div {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:375px;
  5801. height:40px;
  5802. background:inherit;
  5803. background-color:rgba(255, 255, 255, 1);
  5804. box-sizing:border-box;
  5805. border-width:1px;
  5806. border-style:solid;
  5807. border-color:rgba(215, 215, 215, 1);
  5808. border-left:0px;
  5809. border-top:0px;
  5810. border-right:0px;
  5811. border-radius:0px;
  5812. border-bottom-right-radius:0px;
  5813. border-bottom-left-radius:0px;
  5814. -moz-box-shadow:none;
  5815. -webkit-box-shadow:none;
  5816. box-shadow:none;
  5817. }
  5818. #u140450 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:1442px;
  5822. top:67px;
  5823. width:375px;
  5824. height:40px;
  5825. display:flex;
  5826. }
  5827. #u140450 .text {
  5828. position:absolute;
  5829. align-self:center;
  5830. padding:2px 2px 2px 2px;
  5831. box-sizing:border-box;
  5832. width:100%;
  5833. }
  5834. #u140450_text {
  5835. border-width:0px;
  5836. word-wrap:break-word;
  5837. text-transform:none;
  5838. visibility:hidden;
  5839. }
  5840. #u140451 {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:0px;
  5846. height:0px;
  5847. }
  5848. #u140452_div {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:88px;
  5854. height:32px;
  5855. background:inherit;
  5856. background-color:rgba(255, 255, 255, 1);
  5857. box-sizing:border-box;
  5858. border-width:1px;
  5859. border-style:solid;
  5860. border-color:rgba(242, 242, 242, 1);
  5861. border-radius:33px;
  5862. -moz-box-shadow:none;
  5863. -webkit-box-shadow:none;
  5864. box-shadow:none;
  5865. }
  5866. #u140452 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:1722px;
  5870. top:71px;
  5871. width:88px;
  5872. height:32px;
  5873. display:flex;
  5874. }
  5875. #u140452 .text {
  5876. position:absolute;
  5877. align-self:center;
  5878. padding:2px 2px 2px 2px;
  5879. box-sizing:border-box;
  5880. width:100%;
  5881. }
  5882. #u140452_text {
  5883. border-width:0px;
  5884. word-wrap:break-word;
  5885. text-transform:none;
  5886. visibility:hidden;
  5887. }
  5888. #u140453 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:0px;
  5894. height:0px;
  5895. }
  5896. #u140454_img {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:18px;
  5902. height:18px;
  5903. }
  5904. #u140454 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:1785px;
  5908. top:78px;
  5909. width:18px;
  5910. height:18px;
  5911. display:flex;
  5912. }
  5913. #u140454 .text {
  5914. position:absolute;
  5915. align-self:center;
  5916. padding:2px 2px 2px 2px;
  5917. box-sizing:border-box;
  5918. width:100%;
  5919. }
  5920. #u140454_text {
  5921. border-width:0px;
  5922. word-wrap:break-word;
  5923. text-transform:none;
  5924. visibility:hidden;
  5925. }
  5926. #u140455_img {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:6px;
  5932. height:6px;
  5933. }
  5934. #u140455 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:1791px;
  5938. top:84px;
  5939. width:6px;
  5940. height:6px;
  5941. display:flex;
  5942. }
  5943. #u140455 .text {
  5944. position:absolute;
  5945. align-self:center;
  5946. padding:2px 2px 2px 2px;
  5947. box-sizing:border-box;
  5948. width:100%;
  5949. }
  5950. #u140455_text {
  5951. border-width:0px;
  5952. word-wrap:break-word;
  5953. text-transform:none;
  5954. visibility:hidden;
  5955. }
  5956. #u140456 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:0px;
  5962. height:0px;
  5963. }
  5964. #u140457_img {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:5px;
  5970. height:5px;
  5971. }
  5972. #u140457 {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:1736px;
  5976. top:85px;
  5977. width:5px;
  5978. height:5px;
  5979. display:flex;
  5980. }
  5981. #u140457 .text {
  5982. position:absolute;
  5983. align-self:center;
  5984. padding:2px 2px 2px 2px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u140457_text {
  5989. border-width:0px;
  5990. word-wrap:break-word;
  5991. text-transform:none;
  5992. visibility:hidden;
  5993. }
  5994. #u140458_img {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:5px;
  6000. height:5px;
  6001. }
  6002. #u140458 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:1752px;
  6006. top:85px;
  6007. width:5px;
  6008. height:5px;
  6009. display:flex;
  6010. }
  6011. #u140458 .text {
  6012. position:absolute;
  6013. align-self:center;
  6014. padding:2px 2px 2px 2px;
  6015. box-sizing:border-box;
  6016. width:100%;
  6017. }
  6018. #u140458_text {
  6019. border-width:0px;
  6020. word-wrap:break-word;
  6021. text-transform:none;
  6022. visibility:hidden;
  6023. }
  6024. #u140459_img {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:7px;
  6030. height:7px;
  6031. }
  6032. #u140459 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:1743px;
  6036. top:84px;
  6037. width:7px;
  6038. height:7px;
  6039. display:flex;
  6040. }
  6041. #u140459 .text {
  6042. position:absolute;
  6043. align-self:center;
  6044. padding:2px 2px 2px 2px;
  6045. box-sizing:border-box;
  6046. width:100%;
  6047. }
  6048. #u140459_text {
  6049. border-width:0px;
  6050. word-wrap:break-word;
  6051. text-transform:none;
  6052. visibility:hidden;
  6053. }
  6054. #u140460_img {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:19px;
  6060. height:2px;
  6061. }
  6062. #u140460 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:1760px;
  6066. top:87px;
  6067. width:18px;
  6068. height:1px;
  6069. display:flex;
  6070. -webkit-transform:rotate(90deg);
  6071. -moz-transform:rotate(90deg);
  6072. -ms-transform:rotate(90deg);
  6073. transform:rotate(90deg);
  6074. }
  6075. #u140460 .text {
  6076. position:absolute;
  6077. align-self:center;
  6078. padding:2px 2px 2px 2px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u140460_text {
  6083. border-width:0px;
  6084. word-wrap:break-word;
  6085. text-transform:none;
  6086. visibility:hidden;
  6087. }
  6088. #u140461_img {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:375px;
  6094. height:44px;
  6095. }
  6096. #u140461 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:1442px;
  6100. top:24px;
  6101. width:375px;
  6102. height:44px;
  6103. display:flex;
  6104. }
  6105. #u140461 .text {
  6106. position:absolute;
  6107. align-self:center;
  6108. padding:2px 2px 2px 2px;
  6109. box-sizing:border-box;
  6110. width:100%;
  6111. }
  6112. #u140461_text {
  6113. border-width:0px;
  6114. word-wrap:break-word;
  6115. text-transform:none;
  6116. visibility:hidden;
  6117. }
  6118. #u140462_div {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:375px;
  6124. height:50px;
  6125. background:inherit;
  6126. background-color:rgba(255, 255, 255, 1);
  6127. box-sizing:border-box;
  6128. border-width:1px;
  6129. border-style:solid;
  6130. border-color:rgba(242, 242, 242, 1);
  6131. border-radius:26px;
  6132. border-top-left-radius:0px;
  6133. border-top-right-radius:0px;
  6134. -moz-box-shadow:none;
  6135. -webkit-box-shadow:none;
  6136. box-shadow:none;
  6137. }
  6138. #u140462 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:1442px;
  6142. top:788px;
  6143. width:375px;
  6144. height:50px;
  6145. display:flex;
  6146. }
  6147. #u140462 .text {
  6148. position:absolute;
  6149. align-self:center;
  6150. padding:2px 2px 2px 2px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u140462_text {
  6155. border-width:0px;
  6156. word-wrap:break-word;
  6157. text-transform:none;
  6158. visibility:hidden;
  6159. }
  6160. #u140463 {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:0px;
  6166. height:0px;
  6167. }
  6168. #u140464_img {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:24px;
  6174. height:24px;
  6175. }
  6176. #u140464 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:1482px;
  6180. top:792px;
  6181. width:24px;
  6182. height:24px;
  6183. display:flex;
  6184. font-size:8px;
  6185. }
  6186. #u140464 .text {
  6187. position:absolute;
  6188. align-self:center;
  6189. padding:2px 2px 2px 2px;
  6190. box-sizing:border-box;
  6191. width:100%;
  6192. }
  6193. #u140464_text {
  6194. border-width:0px;
  6195. word-wrap:break-word;
  6196. text-transform:none;
  6197. }
  6198. #u140465_div {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:25px;
  6204. height:17px;
  6205. background:inherit;
  6206. background-color:rgba(255, 255, 255, 0);
  6207. border:none;
  6208. border-radius:0px;
  6209. -moz-box-shadow:none;
  6210. -webkit-box-shadow:none;
  6211. box-shadow:none;
  6212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6213. font-weight:400;
  6214. font-style:normal;
  6215. font-size:12px;
  6216. }
  6217. #u140465 {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:1482px;
  6221. top:817px;
  6222. width:25px;
  6223. height:17px;
  6224. display:flex;
  6225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6226. font-weight:400;
  6227. font-style:normal;
  6228. font-size:12px;
  6229. }
  6230. #u140465 .text {
  6231. position:absolute;
  6232. align-self:flex-start;
  6233. padding:0px 0px 0px 0px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u140465_text {
  6238. border-width:0px;
  6239. white-space:nowrap;
  6240. text-transform:none;
  6241. }
  6242. #u140466 {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:0px;
  6248. height:0px;
  6249. }
  6250. #u140467_img {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:24px;
  6256. height:24px;
  6257. }
  6258. #u140467 {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:1752px;
  6262. top:794px;
  6263. width:24px;
  6264. height:24px;
  6265. display:flex;
  6266. font-size:8px;
  6267. }
  6268. #u140467 .text {
  6269. position:absolute;
  6270. align-self:center;
  6271. padding:2px 2px 2px 2px;
  6272. box-sizing:border-box;
  6273. width:100%;
  6274. }
  6275. #u140467_text {
  6276. border-width:0px;
  6277. word-wrap:break-word;
  6278. text-transform:none;
  6279. }
  6280. #u140468_div {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:25px;
  6286. height:17px;
  6287. background:inherit;
  6288. background-color:rgba(255, 255, 255, 0);
  6289. border:none;
  6290. border-radius:0px;
  6291. -moz-box-shadow:none;
  6292. -webkit-box-shadow:none;
  6293. box-shadow:none;
  6294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6295. font-weight:400;
  6296. font-style:normal;
  6297. font-size:12px;
  6298. }
  6299. #u140468 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:1752px;
  6303. top:819px;
  6304. width:25px;
  6305. height:17px;
  6306. display:flex;
  6307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6308. font-weight:400;
  6309. font-style:normal;
  6310. font-size:12px;
  6311. }
  6312. #u140468 .text {
  6313. position:absolute;
  6314. align-self:flex-start;
  6315. padding:0px 0px 0px 0px;
  6316. box-sizing:border-box;
  6317. width:100%;
  6318. }
  6319. #u140468_text {
  6320. border-width:0px;
  6321. white-space:nowrap;
  6322. text-transform:none;
  6323. }
  6324. #u140469_div {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:375px;
  6330. height:681px;
  6331. background:inherit;
  6332. background-color:rgba(242, 242, 242, 0.462745098039216);
  6333. border:none;
  6334. border-radius:0px;
  6335. -moz-box-shadow:none;
  6336. -webkit-box-shadow:none;
  6337. box-shadow:none;
  6338. }
  6339. #u140469 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:1442px;
  6343. top:107px;
  6344. width:375px;
  6345. height:681px;
  6346. display:flex;
  6347. }
  6348. #u140469 .text {
  6349. position:absolute;
  6350. align-self:center;
  6351. padding:2px 2px 2px 2px;
  6352. box-sizing:border-box;
  6353. width:100%;
  6354. }
  6355. #u140469_text {
  6356. border-width:0px;
  6357. word-wrap:break-word;
  6358. text-transform:none;
  6359. visibility:hidden;
  6360. }
  6361. #u140470 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:0px;
  6367. height:0px;
  6368. }
  6369. #u140471_img {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:24px;
  6375. height:24px;
  6376. }
  6377. #u140471 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:1664px;
  6381. top:792px;
  6382. width:24px;
  6383. height:24px;
  6384. display:flex;
  6385. font-size:8px;
  6386. }
  6387. #u140471 .text {
  6388. position:absolute;
  6389. align-self:center;
  6390. padding:2px 2px 2px 2px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u140471_text {
  6395. border-width:0px;
  6396. word-wrap:break-word;
  6397. text-transform:none;
  6398. }
  6399. #u140472_div {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:37px;
  6405. height:17px;
  6406. background:inherit;
  6407. background-color:rgba(255, 255, 255, 0);
  6408. border:none;
  6409. border-radius:0px;
  6410. -moz-box-shadow:none;
  6411. -webkit-box-shadow:none;
  6412. box-shadow:none;
  6413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6414. font-weight:400;
  6415. font-style:normal;
  6416. font-size:12px;
  6417. }
  6418. #u140472 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:1658px;
  6422. top:817px;
  6423. width:37px;
  6424. height:17px;
  6425. display:flex;
  6426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:12px;
  6430. }
  6431. #u140472 .text {
  6432. position:absolute;
  6433. align-self:flex-start;
  6434. padding:0px 0px 0px 0px;
  6435. box-sizing:border-box;
  6436. width:100%;
  6437. }
  6438. #u140472_text {
  6439. border-width:0px;
  6440. white-space:nowrap;
  6441. text-transform:none;
  6442. }
  6443. #u140473 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:0px;
  6449. height:0px;
  6450. }
  6451. #u140474_img {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:24px;
  6457. height:24px;
  6458. }
  6459. #u140474 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:1570px;
  6463. top:792px;
  6464. width:24px;
  6465. height:24px;
  6466. display:flex;
  6467. font-size:8px;
  6468. }
  6469. #u140474 .text {
  6470. position:absolute;
  6471. align-self:center;
  6472. padding:2px 2px 2px 2px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u140474_text {
  6477. border-width:0px;
  6478. word-wrap:break-word;
  6479. text-transform:none;
  6480. }
  6481. #u140475_div {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:37px;
  6487. height:17px;
  6488. background:inherit;
  6489. background-color:rgba(255, 255, 255, 0);
  6490. border:none;
  6491. border-radius:0px;
  6492. -moz-box-shadow:none;
  6493. -webkit-box-shadow:none;
  6494. box-shadow:none;
  6495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6496. font-weight:400;
  6497. font-style:normal;
  6498. font-size:12px;
  6499. }
  6500. #u140475 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:1564px;
  6504. top:817px;
  6505. width:37px;
  6506. height:17px;
  6507. display:flex;
  6508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:12px;
  6512. }
  6513. #u140475 .text {
  6514. position:absolute;
  6515. align-self:flex-start;
  6516. padding:0px 0px 0px 0px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u140475_text {
  6521. border-width:0px;
  6522. white-space:nowrap;
  6523. text-transform:none;
  6524. }
  6525. #u140476_div {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:375px;
  6531. height:735px;
  6532. background:inherit;
  6533. background-color:rgba(255, 255, 255, 0.996078431372549);
  6534. border:none;
  6535. border-top:0px;
  6536. border-radius:35px;
  6537. border-top-left-radius:0px;
  6538. border-top-right-radius:0px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. }
  6543. #u140476 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:1442px;
  6547. top:106px;
  6548. width:375px;
  6549. height:735px;
  6550. display:flex;
  6551. }
  6552. #u140476 .text {
  6553. position:absolute;
  6554. align-self:center;
  6555. padding:2px 2px 2px 2px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u140476_text {
  6560. border-width:0px;
  6561. word-wrap:break-word;
  6562. text-transform:none;
  6563. visibility:hidden;
  6564. }
  6565. #u140477_img {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:0px;
  6569. top:0px;
  6570. width:375px;
  6571. height:44px;
  6572. }
  6573. #u140477 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:1442px;
  6577. top:24px;
  6578. width:375px;
  6579. height:44px;
  6580. display:flex;
  6581. }
  6582. #u140477 .text {
  6583. position:absolute;
  6584. align-self:center;
  6585. padding:2px 2px 2px 2px;
  6586. box-sizing:border-box;
  6587. width:100%;
  6588. }
  6589. #u140477_text {
  6590. border-width:0px;
  6591. word-wrap:break-word;
  6592. text-transform:none;
  6593. visibility:hidden;
  6594. }
  6595. #u140478 {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:0px;
  6601. height:0px;
  6602. }
  6603. #u140479_div {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:0px;
  6607. top:0px;
  6608. width:88px;
  6609. height:32px;
  6610. background:inherit;
  6611. background-color:rgba(255, 255, 255, 1);
  6612. box-sizing:border-box;
  6613. border-width:1px;
  6614. border-style:solid;
  6615. border-color:rgba(242, 242, 242, 1);
  6616. border-radius:33px;
  6617. -moz-box-shadow:none;
  6618. -webkit-box-shadow:none;
  6619. box-shadow:none;
  6620. }
  6621. #u140479 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:1722px;
  6625. top:71px;
  6626. width:88px;
  6627. height:32px;
  6628. display:flex;
  6629. }
  6630. #u140479 .text {
  6631. position:absolute;
  6632. align-self:center;
  6633. padding:2px 2px 2px 2px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u140479_text {
  6638. border-width:0px;
  6639. word-wrap:break-word;
  6640. text-transform:none;
  6641. visibility:hidden;
  6642. }
  6643. #u140480 {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:0px;
  6649. height:0px;
  6650. }
  6651. #u140481_img {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:18px;
  6657. height:18px;
  6658. }
  6659. #u140481 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:1785px;
  6663. top:78px;
  6664. width:18px;
  6665. height:18px;
  6666. display:flex;
  6667. }
  6668. #u140481 .text {
  6669. position:absolute;
  6670. align-self:center;
  6671. padding:2px 2px 2px 2px;
  6672. box-sizing:border-box;
  6673. width:100%;
  6674. }
  6675. #u140481_text {
  6676. border-width:0px;
  6677. word-wrap:break-word;
  6678. text-transform:none;
  6679. visibility:hidden;
  6680. }
  6681. #u140482_img {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:6px;
  6687. height:6px;
  6688. }
  6689. #u140482 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:1791px;
  6693. top:84px;
  6694. width:6px;
  6695. height:6px;
  6696. display:flex;
  6697. }
  6698. #u140482 .text {
  6699. position:absolute;
  6700. align-self:center;
  6701. padding:2px 2px 2px 2px;
  6702. box-sizing:border-box;
  6703. width:100%;
  6704. }
  6705. #u140482_text {
  6706. border-width:0px;
  6707. word-wrap:break-word;
  6708. text-transform:none;
  6709. visibility:hidden;
  6710. }
  6711. #u140483 {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:0px;
  6717. height:0px;
  6718. }
  6719. #u140484_img {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:5px;
  6725. height:5px;
  6726. }
  6727. #u140484 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:1736px;
  6731. top:85px;
  6732. width:5px;
  6733. height:5px;
  6734. display:flex;
  6735. }
  6736. #u140484 .text {
  6737. position:absolute;
  6738. align-self:center;
  6739. padding:2px 2px 2px 2px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u140484_text {
  6744. border-width:0px;
  6745. word-wrap:break-word;
  6746. text-transform:none;
  6747. visibility:hidden;
  6748. }
  6749. #u140485_img {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:5px;
  6755. height:5px;
  6756. }
  6757. #u140485 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:1752px;
  6761. top:85px;
  6762. width:5px;
  6763. height:5px;
  6764. display:flex;
  6765. }
  6766. #u140485 .text {
  6767. position:absolute;
  6768. align-self:center;
  6769. padding:2px 2px 2px 2px;
  6770. box-sizing:border-box;
  6771. width:100%;
  6772. }
  6773. #u140485_text {
  6774. border-width:0px;
  6775. word-wrap:break-word;
  6776. text-transform:none;
  6777. visibility:hidden;
  6778. }
  6779. #u140486_img {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:7px;
  6785. height:7px;
  6786. }
  6787. #u140486 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:1743px;
  6791. top:84px;
  6792. width:7px;
  6793. height:7px;
  6794. display:flex;
  6795. }
  6796. #u140486 .text {
  6797. position:absolute;
  6798. align-self:center;
  6799. padding:2px 2px 2px 2px;
  6800. box-sizing:border-box;
  6801. width:100%;
  6802. }
  6803. #u140486_text {
  6804. border-width:0px;
  6805. word-wrap:break-word;
  6806. text-transform:none;
  6807. visibility:hidden;
  6808. }
  6809. #u140487_img {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:0px;
  6813. top:0px;
  6814. width:19px;
  6815. height:2px;
  6816. }
  6817. #u140487 {
  6818. border-width:0px;
  6819. position:absolute;
  6820. left:1760px;
  6821. top:87px;
  6822. width:18px;
  6823. height:1px;
  6824. display:flex;
  6825. -webkit-transform:rotate(90deg);
  6826. -moz-transform:rotate(90deg);
  6827. -ms-transform:rotate(90deg);
  6828. transform:rotate(90deg);
  6829. }
  6830. #u140487 .text {
  6831. position:absolute;
  6832. align-self:center;
  6833. padding:2px 2px 2px 2px;
  6834. box-sizing:border-box;
  6835. width:100%;
  6836. }
  6837. #u140487_text {
  6838. border-width:0px;
  6839. word-wrap:break-word;
  6840. text-transform:none;
  6841. visibility:hidden;
  6842. }
  6843. #u140488_div {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:0px;
  6847. top:0px;
  6848. width:65px;
  6849. height:22px;
  6850. background:inherit;
  6851. background-color:rgba(255, 255, 255, 0);
  6852. border:none;
  6853. border-radius:0px;
  6854. -moz-box-shadow:none;
  6855. -webkit-box-shadow:none;
  6856. box-shadow:none;
  6857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:16px;
  6861. color:#000000;
  6862. }
  6863. #u140488 {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:1473px;
  6867. top:76px;
  6868. width:65px;
  6869. height:22px;
  6870. display:flex;
  6871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6872. font-weight:400;
  6873. font-style:normal;
  6874. font-size:16px;
  6875. color:#000000;
  6876. }
  6877. #u140488 .text {
  6878. position:absolute;
  6879. align-self:flex-start;
  6880. padding:0px 0px 0px 0px;
  6881. box-sizing:border-box;
  6882. width:100%;
  6883. }
  6884. #u140488_text {
  6885. border-width:0px;
  6886. white-space:nowrap;
  6887. text-transform:none;
  6888. }
  6889. #u140489_div {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:0px;
  6893. top:0px;
  6894. width:12px;
  6895. height:12px;
  6896. background:inherit;
  6897. background-color:rgba(255, 255, 255, 0);
  6898. box-sizing:border-box;
  6899. border-width:2px;
  6900. border-style:solid;
  6901. border-color:rgba(51, 51, 51, 1);
  6902. border-right:0px;
  6903. border-bottom:0px;
  6904. border-radius:0px;
  6905. border-top-right-radius:0px;
  6906. border-bottom-left-radius:0px;
  6907. -moz-box-shadow:none;
  6908. -webkit-box-shadow:none;
  6909. box-shadow:none;
  6910. }
  6911. #u140489 {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:1459px;
  6915. top:81px;
  6916. width:12px;
  6917. height:12px;
  6918. display:flex;
  6919. -webkit-transform:rotate(315deg);
  6920. -moz-transform:rotate(315deg);
  6921. -ms-transform:rotate(315deg);
  6922. transform:rotate(315deg);
  6923. }
  6924. #u140489 .text {
  6925. position:absolute;
  6926. align-self:center;
  6927. padding:2px 2px 2px 2px;
  6928. box-sizing:border-box;
  6929. width:100%;
  6930. }
  6931. #u140489_text {
  6932. border-width:0px;
  6933. word-wrap:break-word;
  6934. text-transform:none;
  6935. visibility:hidden;
  6936. }
  6937. #u140490 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:0px;
  6943. height:0px;
  6944. }
  6945. #u140491_div {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:0px;
  6949. top:0px;
  6950. width:320px;
  6951. height:40px;
  6952. background:inherit;
  6953. background-color:rgba(242, 242, 242, 1);
  6954. border:none;
  6955. border-radius:20px;
  6956. -moz-box-shadow:none;
  6957. -webkit-box-shadow:none;
  6958. box-shadow:none;
  6959. }
  6960. #u140491 {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:1473px;
  6964. top:263px;
  6965. width:320px;
  6966. height:40px;
  6967. display:flex;
  6968. }
  6969. #u140491 .text {
  6970. position:absolute;
  6971. align-self:center;
  6972. padding:2px 2px 2px 2px;
  6973. box-sizing:border-box;
  6974. width:100%;
  6975. }
  6976. #u140491_text {
  6977. border-width:0px;
  6978. word-wrap:break-word;
  6979. text-transform:none;
  6980. visibility:hidden;
  6981. }
  6982. #u140492_input {
  6983. position:absolute;
  6984. left:0px;
  6985. top:0px;
  6986. width:297px;
  6987. height:33px;
  6988. padding:2px 2px 2px 2px;
  6989. font-family:'ArialMT', 'Arial', sans-serif;
  6990. font-weight:400;
  6991. font-style:normal;
  6992. font-size:13px;
  6993. letter-spacing:normal;
  6994. color:#000000;
  6995. vertical-align:none;
  6996. text-align:left;
  6997. text-transform:none;
  6998. background-color:transparent;
  6999. border-color:transparent;
  7000. }
  7001. #u140492_input.disabled {
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:297px;
  7006. height:33px;
  7007. padding:2px 2px 2px 2px;
  7008. font-family:'ArialMT', 'Arial', sans-serif;
  7009. font-weight:400;
  7010. font-style:normal;
  7011. font-size:13px;
  7012. letter-spacing:normal;
  7013. color:#000000;
  7014. vertical-align:none;
  7015. text-align:left;
  7016. text-transform:none;
  7017. background-color:transparent;
  7018. border-color:transparent;
  7019. }
  7020. #u140492_div {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:0px;
  7024. top:0px;
  7025. width:297px;
  7026. height:33px;
  7027. background:inherit;
  7028. background-color:rgba(242, 242, 242, 1);
  7029. border:none;
  7030. border-radius:0px;
  7031. -moz-box-shadow:none;
  7032. -webkit-box-shadow:none;
  7033. box-shadow:none;
  7034. }
  7035. #u140492 {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:1483px;
  7039. top:264px;
  7040. width:297px;
  7041. height:33px;
  7042. display:flex;
  7043. }
  7044. #u140492 .text {
  7045. position:absolute;
  7046. align-self:center;
  7047. padding:2px 2px 2px 2px;
  7048. box-sizing:border-box;
  7049. width:100%;
  7050. }
  7051. #u140492_div.disabled {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:297px;
  7057. height:33px;
  7058. background:inherit;
  7059. background-color:rgba(240, 240, 240, 1);
  7060. border:none;
  7061. border-radius:0px;
  7062. -moz-box-shadow:none;
  7063. -webkit-box-shadow:none;
  7064. box-shadow:none;
  7065. }
  7066. #u140492.disabled {
  7067. }
  7068. #u140493_div {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:0px;
  7072. top:0px;
  7073. width:65px;
  7074. height:22px;
  7075. background:inherit;
  7076. background-color:rgba(255, 255, 255, 0);
  7077. border:none;
  7078. border-radius:0px;
  7079. -moz-box-shadow:none;
  7080. -webkit-box-shadow:none;
  7081. box-shadow:none;
  7082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7083. font-weight:400;
  7084. font-style:normal;
  7085. font-size:16px;
  7086. color:#000000;
  7087. }
  7088. #u140493 {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:1473px;
  7092. top:231px;
  7093. width:65px;
  7094. height:22px;
  7095. display:flex;
  7096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7097. font-weight:400;
  7098. font-style:normal;
  7099. font-size:16px;
  7100. color:#000000;
  7101. }
  7102. #u140493 .text {
  7103. position:absolute;
  7104. align-self:flex-start;
  7105. padding:0px 0px 0px 0px;
  7106. box-sizing:border-box;
  7107. width:100%;
  7108. }
  7109. #u140493_text {
  7110. border-width:0px;
  7111. white-space:nowrap;
  7112. text-transform:none;
  7113. }
  7114. #u140494 {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:0px;
  7120. height:0px;
  7121. }
  7122. #u140495_img {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:0px;
  7126. top:0px;
  7127. width:320px;
  7128. height:40px;
  7129. }
  7130. #u140495 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:1473px;
  7134. top:370px;
  7135. width:320px;
  7136. height:40px;
  7137. display:flex;
  7138. }
  7139. #u140495 .text {
  7140. position:absolute;
  7141. align-self:center;
  7142. padding:2px 2px 2px 2px;
  7143. box-sizing:border-box;
  7144. width:100%;
  7145. }
  7146. #u140495_text {
  7147. border-width:0px;
  7148. word-wrap:break-word;
  7149. text-transform:none;
  7150. }
  7151. #u140496_div {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:65px;
  7157. height:22px;
  7158. background:inherit;
  7159. background-color:rgba(255, 255, 255, 0);
  7160. border:none;
  7161. border-radius:0px;
  7162. -moz-box-shadow:none;
  7163. -webkit-box-shadow:none;
  7164. box-shadow:none;
  7165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:16px;
  7169. color:#000000;
  7170. }
  7171. #u140496 {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:1473px;
  7175. top:338px;
  7176. width:65px;
  7177. height:22px;
  7178. display:flex;
  7179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7180. font-weight:400;
  7181. font-style:normal;
  7182. font-size:16px;
  7183. color:#000000;
  7184. }
  7185. #u140496 .text {
  7186. position:absolute;
  7187. align-self:flex-start;
  7188. padding:0px 0px 0px 0px;
  7189. box-sizing:border-box;
  7190. width:100%;
  7191. }
  7192. #u140496_text {
  7193. border-width:0px;
  7194. white-space:nowrap;
  7195. text-transform:none;
  7196. }
  7197. #u140497_div {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:0px;
  7201. top:0px;
  7202. width:320px;
  7203. height:40px;
  7204. background:inherit;
  7205. background-color:rgba(0, 137, 254, 1);
  7206. border:none;
  7207. border-radius:20px;
  7208. -moz-box-shadow:none;
  7209. -webkit-box-shadow:none;
  7210. box-shadow:none;
  7211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7212. font-weight:400;
  7213. font-style:normal;
  7214. font-size:18px;
  7215. color:#FFFFFF;
  7216. }
  7217. #u140497 {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:1473px;
  7221. top:450px;
  7222. width:320px;
  7223. height:40px;
  7224. display:flex;
  7225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7226. font-weight:400;
  7227. font-style:normal;
  7228. font-size:18px;
  7229. color:#FFFFFF;
  7230. }
  7231. #u140497 .text {
  7232. position:absolute;
  7233. align-self:center;
  7234. padding:2px 2px 2px 2px;
  7235. box-sizing:border-box;
  7236. width:100%;
  7237. }
  7238. #u140497_text {
  7239. border-width:0px;
  7240. word-wrap:break-word;
  7241. text-transform:none;
  7242. }
  7243. #u140498_img {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:0px;
  7247. top:0px;
  7248. width:375px;
  7249. height:44px;
  7250. }
  7251. #u140498 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:1912px;
  7255. top:24px;
  7256. width:375px;
  7257. height:44px;
  7258. display:flex;
  7259. }
  7260. #u140498 .text {
  7261. position:absolute;
  7262. align-self:center;
  7263. padding:2px 2px 2px 2px;
  7264. box-sizing:border-box;
  7265. width:100%;
  7266. }
  7267. #u140498_text {
  7268. border-width:0px;
  7269. word-wrap:break-word;
  7270. text-transform:none;
  7271. visibility:hidden;
  7272. }
  7273. #u140499 {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:0px;
  7277. top:0px;
  7278. width:0px;
  7279. height:0px;
  7280. }
  7281. #u140500_div {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:0px;
  7286. width:88px;
  7287. height:32px;
  7288. background:inherit;
  7289. background-color:rgba(255, 255, 255, 1);
  7290. box-sizing:border-box;
  7291. border-width:1px;
  7292. border-style:solid;
  7293. border-color:rgba(242, 242, 242, 1);
  7294. border-radius:33px;
  7295. -moz-box-shadow:none;
  7296. -webkit-box-shadow:none;
  7297. box-shadow:none;
  7298. }
  7299. #u140500 {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:2192px;
  7303. top:71px;
  7304. width:88px;
  7305. height:32px;
  7306. display:flex;
  7307. }
  7308. #u140500 .text {
  7309. position:absolute;
  7310. align-self:center;
  7311. padding:2px 2px 2px 2px;
  7312. box-sizing:border-box;
  7313. width:100%;
  7314. }
  7315. #u140500_text {
  7316. border-width:0px;
  7317. word-wrap:break-word;
  7318. text-transform:none;
  7319. visibility:hidden;
  7320. }
  7321. #u140501 {
  7322. border-width:0px;
  7323. position:absolute;
  7324. left:0px;
  7325. top:0px;
  7326. width:0px;
  7327. height:0px;
  7328. }
  7329. #u140502_img {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:18px;
  7335. height:18px;
  7336. }
  7337. #u140502 {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:2255px;
  7341. top:78px;
  7342. width:18px;
  7343. height:18px;
  7344. display:flex;
  7345. }
  7346. #u140502 .text {
  7347. position:absolute;
  7348. align-self:center;
  7349. padding:2px 2px 2px 2px;
  7350. box-sizing:border-box;
  7351. width:100%;
  7352. }
  7353. #u140502_text {
  7354. border-width:0px;
  7355. word-wrap:break-word;
  7356. text-transform:none;
  7357. visibility:hidden;
  7358. }
  7359. #u140503_img {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:0px;
  7363. top:0px;
  7364. width:6px;
  7365. height:6px;
  7366. }
  7367. #u140503 {
  7368. border-width:0px;
  7369. position:absolute;
  7370. left:2261px;
  7371. top:84px;
  7372. width:6px;
  7373. height:6px;
  7374. display:flex;
  7375. }
  7376. #u140503 .text {
  7377. position:absolute;
  7378. align-self:center;
  7379. padding:2px 2px 2px 2px;
  7380. box-sizing:border-box;
  7381. width:100%;
  7382. }
  7383. #u140503_text {
  7384. border-width:0px;
  7385. word-wrap:break-word;
  7386. text-transform:none;
  7387. visibility:hidden;
  7388. }
  7389. #u140504 {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:0px;
  7393. top:0px;
  7394. width:0px;
  7395. height:0px;
  7396. }
  7397. #u140505_img {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:0px;
  7401. top:0px;
  7402. width:5px;
  7403. height:5px;
  7404. }
  7405. #u140505 {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:2206px;
  7409. top:85px;
  7410. width:5px;
  7411. height:5px;
  7412. display:flex;
  7413. }
  7414. #u140505 .text {
  7415. position:absolute;
  7416. align-self:center;
  7417. padding:2px 2px 2px 2px;
  7418. box-sizing:border-box;
  7419. width:100%;
  7420. }
  7421. #u140505_text {
  7422. border-width:0px;
  7423. word-wrap:break-word;
  7424. text-transform:none;
  7425. visibility:hidden;
  7426. }
  7427. #u140506_img {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:0px;
  7431. top:0px;
  7432. width:5px;
  7433. height:5px;
  7434. }
  7435. #u140506 {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:2222px;
  7439. top:85px;
  7440. width:5px;
  7441. height:5px;
  7442. display:flex;
  7443. }
  7444. #u140506 .text {
  7445. position:absolute;
  7446. align-self:center;
  7447. padding:2px 2px 2px 2px;
  7448. box-sizing:border-box;
  7449. width:100%;
  7450. }
  7451. #u140506_text {
  7452. border-width:0px;
  7453. word-wrap:break-word;
  7454. text-transform:none;
  7455. visibility:hidden;
  7456. }
  7457. #u140507_img {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:0px;
  7461. top:0px;
  7462. width:7px;
  7463. height:7px;
  7464. }
  7465. #u140507 {
  7466. border-width:0px;
  7467. position:absolute;
  7468. left:2213px;
  7469. top:84px;
  7470. width:7px;
  7471. height:7px;
  7472. display:flex;
  7473. }
  7474. #u140507 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:2px 2px 2px 2px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u140507_text {
  7482. border-width:0px;
  7483. word-wrap:break-word;
  7484. text-transform:none;
  7485. visibility:hidden;
  7486. }
  7487. #u140508_img {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:0px;
  7491. top:0px;
  7492. width:19px;
  7493. height:2px;
  7494. }
  7495. #u140508 {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:2230px;
  7499. top:87px;
  7500. width:18px;
  7501. height:1px;
  7502. display:flex;
  7503. -webkit-transform:rotate(90deg);
  7504. -moz-transform:rotate(90deg);
  7505. -ms-transform:rotate(90deg);
  7506. transform:rotate(90deg);
  7507. }
  7508. #u140508 .text {
  7509. position:absolute;
  7510. align-self:center;
  7511. padding:2px 2px 2px 2px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u140508_text {
  7516. border-width:0px;
  7517. word-wrap:break-word;
  7518. text-transform:none;
  7519. visibility:hidden;
  7520. }
  7521. #u140509_div {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:65px;
  7527. height:22px;
  7528. background:inherit;
  7529. background-color:rgba(255, 255, 255, 0);
  7530. border:none;
  7531. border-radius:0px;
  7532. -moz-box-shadow:none;
  7533. -webkit-box-shadow:none;
  7534. box-shadow:none;
  7535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7536. font-weight:400;
  7537. font-style:normal;
  7538. font-size:16px;
  7539. color:#000000;
  7540. }
  7541. #u140509 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:1943px;
  7545. top:76px;
  7546. width:65px;
  7547. height:22px;
  7548. display:flex;
  7549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:16px;
  7553. color:#000000;
  7554. }
  7555. #u140509 .text {
  7556. position:absolute;
  7557. align-self:flex-start;
  7558. padding:0px 0px 0px 0px;
  7559. box-sizing:border-box;
  7560. width:100%;
  7561. }
  7562. #u140509_text {
  7563. border-width:0px;
  7564. white-space:nowrap;
  7565. text-transform:none;
  7566. }
  7567. #u140510_div {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:12px;
  7573. height:12px;
  7574. background:inherit;
  7575. background-color:rgba(255, 255, 255, 0);
  7576. box-sizing:border-box;
  7577. border-width:2px;
  7578. border-style:solid;
  7579. border-color:rgba(51, 51, 51, 1);
  7580. border-right:0px;
  7581. border-bottom:0px;
  7582. border-radius:0px;
  7583. border-top-right-radius:0px;
  7584. border-bottom-left-radius:0px;
  7585. -moz-box-shadow:none;
  7586. -webkit-box-shadow:none;
  7587. box-shadow:none;
  7588. }
  7589. #u140510 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:1929px;
  7593. top:81px;
  7594. width:12px;
  7595. height:12px;
  7596. display:flex;
  7597. -webkit-transform:rotate(315deg);
  7598. -moz-transform:rotate(315deg);
  7599. -ms-transform:rotate(315deg);
  7600. transform:rotate(315deg);
  7601. }
  7602. #u140510 .text {
  7603. position:absolute;
  7604. align-self:center;
  7605. padding:2px 2px 2px 2px;
  7606. box-sizing:border-box;
  7607. width:100%;
  7608. }
  7609. #u140510_text {
  7610. border-width:0px;
  7611. word-wrap:break-word;
  7612. text-transform:none;
  7613. visibility:hidden;
  7614. }
  7615. #u140511 {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:0px;
  7619. top:0px;
  7620. width:0px;
  7621. height:0px;
  7622. }
  7623. #u140512_div {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:0px;
  7627. top:0px;
  7628. width:375px;
  7629. height:87px;
  7630. background:inherit;
  7631. background-color:rgba(255, 255, 255, 1);
  7632. border:none;
  7633. border-radius:0px;
  7634. -moz-box-shadow:none;
  7635. -webkit-box-shadow:none;
  7636. box-shadow:none;
  7637. }
  7638. #u140512 {
  7639. border-width:0px;
  7640. position:absolute;
  7641. left:1912px;
  7642. top:106px;
  7643. width:375px;
  7644. height:87px;
  7645. display:flex;
  7646. }
  7647. #u140512 .text {
  7648. position:absolute;
  7649. align-self:center;
  7650. padding:2px 2px 2px 2px;
  7651. box-sizing:border-box;
  7652. width:100%;
  7653. }
  7654. #u140512_text {
  7655. border-width:0px;
  7656. word-wrap:break-word;
  7657. text-transform:none;
  7658. visibility:hidden;
  7659. }
  7660. #u140513_div {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:57px;
  7666. height:20px;
  7667. background:inherit;
  7668. background-color:rgba(255, 255, 255, 0);
  7669. border:none;
  7670. border-radius:0px;
  7671. -moz-box-shadow:none;
  7672. -webkit-box-shadow:none;
  7673. box-shadow:none;
  7674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7675. font-weight:400;
  7676. font-style:normal;
  7677. color:#000000;
  7678. }
  7679. #u140513 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:2020px;
  7683. top:120px;
  7684. width:57px;
  7685. height:20px;
  7686. display:flex;
  7687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. color:#000000;
  7691. }
  7692. #u140513 .text {
  7693. position:absolute;
  7694. align-self:flex-start;
  7695. padding:0px 0px 0px 0px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u140513_text {
  7700. border-width:0px;
  7701. white-space:nowrap;
  7702. text-transform:none;
  7703. }
  7704. #u140514_div {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:0px;
  7708. top:0px;
  7709. width:33px;
  7710. height:22px;
  7711. background:inherit;
  7712. background-color:rgba(255, 255, 255, 0);
  7713. border:none;
  7714. border-radius:0px;
  7715. -moz-box-shadow:none;
  7716. -webkit-box-shadow:none;
  7717. box-shadow:none;
  7718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7719. font-weight:400;
  7720. font-style:normal;
  7721. font-size:16px;
  7722. color:#000000;
  7723. }
  7724. #u140514 {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:2020px;
  7728. top:152px;
  7729. width:33px;
  7730. height:22px;
  7731. display:flex;
  7732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7733. font-weight:400;
  7734. font-style:normal;
  7735. font-size:16px;
  7736. color:#000000;
  7737. }
  7738. #u140514 .text {
  7739. position:absolute;
  7740. align-self:flex-start;
  7741. padding:0px 0px 0px 0px;
  7742. box-sizing:border-box;
  7743. width:100%;
  7744. }
  7745. #u140514_text {
  7746. border-width:0px;
  7747. white-space:nowrap;
  7748. text-transform:none;
  7749. }
  7750. #u140515_img {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:0px;
  7754. top:0px;
  7755. width:65px;
  7756. height:59px;
  7757. }
  7758. #u140515 {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:1935px;
  7762. top:120px;
  7763. width:65px;
  7764. height:59px;
  7765. display:flex;
  7766. }
  7767. #u140515 .text {
  7768. position:absolute;
  7769. align-self:center;
  7770. padding:2px 2px 2px 2px;
  7771. box-sizing:border-box;
  7772. width:100%;
  7773. }
  7774. #u140515_text {
  7775. border-width:0px;
  7776. word-wrap:break-word;
  7777. text-transform:none;
  7778. visibility:hidden;
  7779. }
  7780. #u140516_img {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:20px;
  7786. height:30px;
  7787. }
  7788. #u140516 {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:1980px;
  7792. top:280px;
  7793. width:20px;
  7794. height:30px;
  7795. display:flex;
  7796. }
  7797. #u140516 .text {
  7798. position:absolute;
  7799. align-self:center;
  7800. padding:2px 2px 2px 2px;
  7801. box-sizing:border-box;
  7802. width:100%;
  7803. }
  7804. #u140516_text {
  7805. border-width:0px;
  7806. word-wrap:break-word;
  7807. text-transform:none;
  7808. visibility:hidden;
  7809. }
  7810. #u140517_img {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:20px;
  7816. height:30px;
  7817. }
  7818. #u140517 {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:2157px;
  7822. top:350px;
  7823. width:20px;
  7824. height:30px;
  7825. display:flex;
  7826. }
  7827. #u140517 .text {
  7828. position:absolute;
  7829. align-self:center;
  7830. padding:2px 2px 2px 2px;
  7831. box-sizing:border-box;
  7832. width:100%;
  7833. }
  7834. #u140517_text {
  7835. border-width:0px;
  7836. word-wrap:break-word;
  7837. text-transform:none;
  7838. visibility:hidden;
  7839. }
  7840. #u140518_img {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:20px;
  7846. height:30px;
  7847. }
  7848. #u140518 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:2057px;
  7852. top:474px;
  7853. width:20px;
  7854. height:30px;
  7855. display:flex;
  7856. }
  7857. #u140518 .text {
  7858. position:absolute;
  7859. align-self:center;
  7860. padding:2px 2px 2px 2px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u140518_text {
  7865. border-width:0px;
  7866. word-wrap:break-word;
  7867. text-transform:none;
  7868. visibility:hidden;
  7869. }
  7870. #u140519_img {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:20px;
  7876. height:30px;
  7877. }
  7878. #u140519 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:2012px;
  7882. top:585px;
  7883. width:20px;
  7884. height:30px;
  7885. display:flex;
  7886. }
  7887. #u140519 .text {
  7888. position:absolute;
  7889. align-self:center;
  7890. padding:2px 2px 2px 2px;
  7891. box-sizing:border-box;
  7892. width:100%;
  7893. }
  7894. #u140519_text {
  7895. border-width:0px;
  7896. word-wrap:break-word;
  7897. text-transform:none;
  7898. visibility:hidden;
  7899. }
  7900. #u140520_img {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:0px;
  7904. top:0px;
  7905. width:20px;
  7906. height:30px;
  7907. }
  7908. #u140520 {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:1976px;
  7912. top:605px;
  7913. width:20px;
  7914. height:30px;
  7915. display:flex;
  7916. }
  7917. #u140520 .text {
  7918. position:absolute;
  7919. align-self:center;
  7920. padding:2px 2px 2px 2px;
  7921. box-sizing:border-box;
  7922. width:100%;
  7923. }
  7924. #u140520_text {
  7925. border-width:0px;
  7926. word-wrap:break-word;
  7927. text-transform:none;
  7928. visibility:hidden;
  7929. }
  7930. #u140521_img {
  7931. border-width:0px;
  7932. position:absolute;
  7933. left:0px;
  7934. top:0px;
  7935. width:20px;
  7936. height:30px;
  7937. }
  7938. #u140521 {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:2192px;
  7942. top:630px;
  7943. width:20px;
  7944. height:30px;
  7945. display:flex;
  7946. }
  7947. #u140521 .text {
  7948. position:absolute;
  7949. align-self:center;
  7950. padding:2px 2px 2px 2px;
  7951. box-sizing:border-box;
  7952. width:100%;
  7953. }
  7954. #u140521_text {
  7955. border-width:0px;
  7956. word-wrap:break-word;
  7957. text-transform:none;
  7958. visibility:hidden;
  7959. }
  7960. #u140522 {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:2000px;
  7964. top:295px;
  7965. width:0px;
  7966. height:0px;
  7967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:12px;
  7971. color:#333333;
  7972. }
  7973. #u140522_seg0 {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:-8px;
  7977. top:31px;
  7978. width:174px;
  7979. height:8px;
  7980. -webkit-transform:rotate(-155.969825552463deg);
  7981. -moz-transform:rotate(-155.969825552463deg);
  7982. -ms-transform:rotate(-155.969825552463deg);
  7983. transform:rotate(-155.969825552463deg);
  7984. }
  7985. #u140522_text {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:29px;
  7989. top:27px;
  7990. width:100px;
  7991. word-wrap:break-word;
  7992. text-transform:none;
  7993. visibility:hidden;
  7994. }
  7995. #u140523 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:2167px;
  7999. top:380px;
  8000. width:0px;
  8001. height:0px;
  8002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:12px;
  8006. color:#333333;
  8007. }
  8008. #u140523_seg0 {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:-119px;
  8012. top:44px;
  8013. width:138px;
  8014. height:6px;
  8015. -webkit-transform:rotate(-43.2285302599659deg);
  8016. -moz-transform:rotate(-43.2285302599659deg);
  8017. -ms-transform:rotate(-43.2285302599659deg);
  8018. transform:rotate(-43.2285302599659deg);
  8019. }
  8020. #u140523_text {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:-100px;
  8024. top:39px;
  8025. width:100px;
  8026. word-wrap:break-word;
  8027. text-transform:none;
  8028. visibility:hidden;
  8029. }
  8030. #u140524 {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:2057px;
  8034. top:489px;
  8035. width:0px;
  8036. height:0px;
  8037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8038. font-weight:400;
  8039. font-style:normal;
  8040. font-size:12px;
  8041. color:#333333;
  8042. }
  8043. #u140524_seg0 {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:-71px;
  8047. top:53px;
  8048. width:116px;
  8049. height:6px;
  8050. -webkit-transform:rotate(-77.3073344548821deg);
  8051. -moz-transform:rotate(-77.3073344548821deg);
  8052. -ms-transform:rotate(-77.3073344548821deg);
  8053. transform:rotate(-77.3073344548821deg);
  8054. }
  8055. #u140524_text {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:-62px;
  8059. top:48px;
  8060. width:100px;
  8061. word-wrap:break-word;
  8062. text-transform:none;
  8063. visibility:hidden;
  8064. }
  8065. #u140525 {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:2012px;
  8069. top:600px;
  8070. width:0px;
  8071. height:0px;
  8072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:12px;
  8076. color:#333333;
  8077. }
  8078. #u140525_seg0 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:-22px;
  8082. top:6px;
  8083. width:28px;
  8084. height:8px;
  8085. -webkit-transform:rotate(-51.3401917459099deg);
  8086. -moz-transform:rotate(-51.3401917459099deg);
  8087. -ms-transform:rotate(-51.3401917459099deg);
  8088. transform:rotate(-51.3401917459099deg);
  8089. }
  8090. #u140525_text {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:-58px;
  8094. top:2px;
  8095. width:100px;
  8096. word-wrap:break-word;
  8097. text-transform:none;
  8098. visibility:hidden;
  8099. }
  8100. #u140526 {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:1986px;
  8104. top:635px;
  8105. width:0px;
  8106. height:0px;
  8107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:12px;
  8111. color:#333333;
  8112. }
  8113. #u140526_seg0 {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:-2px;
  8117. top:1px;
  8118. width:210px;
  8119. height:8px;
  8120. -webkit-transform:rotate(-177.220833135928deg);
  8121. -moz-transform:rotate(-177.220833135928deg);
  8122. -ms-transform:rotate(-177.220833135928deg);
  8123. transform:rotate(-177.220833135928deg);
  8124. }
  8125. #u140526_text {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:53px;
  8129. top:-3px;
  8130. width:100px;
  8131. word-wrap:break-word;
  8132. text-transform:none;
  8133. visibility:hidden;
  8134. }
  8135. #u140527_img {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:0px;
  8139. top:0px;
  8140. width:44px;
  8141. height:44px;
  8142. }
  8143. #u140527 {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:1998px;
  8147. top:250px;
  8148. width:34px;
  8149. height:34px;
  8150. display:flex;
  8151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:12px;
  8155. }
  8156. #u140527 .text {
  8157. position:absolute;
  8158. align-self:center;
  8159. padding:2px 2px 2px 2px;
  8160. box-sizing:border-box;
  8161. width:100%;
  8162. }
  8163. #u140527_text {
  8164. border-width:0px;
  8165. word-wrap:break-word;
  8166. text-transform:none;
  8167. }
  8168. #u140528_img {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:0px;
  8172. top:0px;
  8173. width:44px;
  8174. height:44px;
  8175. }
  8176. #u140528 {
  8177. border-width:0px;
  8178. position:absolute;
  8179. left:2177px;
  8180. top:327px;
  8181. width:34px;
  8182. height:34px;
  8183. display:flex;
  8184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8185. font-weight:400;
  8186. font-style:normal;
  8187. font-size:12px;
  8188. color:#FFFFFF;
  8189. }
  8190. #u140528 .text {
  8191. position:absolute;
  8192. align-self:center;
  8193. padding:2px 2px 2px 2px;
  8194. box-sizing:border-box;
  8195. width:100%;
  8196. }
  8197. #u140528_text {
  8198. border-width:0px;
  8199. word-wrap:break-word;
  8200. text-transform:none;
  8201. }
  8202. #u140529_img {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:0px;
  8206. top:0px;
  8207. width:44px;
  8208. height:44px;
  8209. }
  8210. #u140529 {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:2083px;
  8214. top:465px;
  8215. width:34px;
  8216. height:34px;
  8217. display:flex;
  8218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8219. font-weight:400;
  8220. font-style:normal;
  8221. font-size:12px;
  8222. }
  8223. #u140529 .text {
  8224. position:absolute;
  8225. align-self:center;
  8226. padding:2px 2px 2px 2px;
  8227. box-sizing:border-box;
  8228. width:100%;
  8229. }
  8230. #u140529_text {
  8231. border-width:0px;
  8232. word-wrap:break-word;
  8233. text-transform:none;
  8234. }
  8235. #u140530_img {
  8236. border-width:0px;
  8237. position:absolute;
  8238. left:0px;
  8239. top:0px;
  8240. width:44px;
  8241. height:44px;
  8242. }
  8243. #u140530 {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:1986px;
  8247. top:546px;
  8248. width:34px;
  8249. height:34px;
  8250. display:flex;
  8251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8252. font-weight:400;
  8253. font-style:normal;
  8254. font-size:12px;
  8255. }
  8256. #u140530 .text {
  8257. position:absolute;
  8258. align-self:center;
  8259. padding:2px 2px 2px 2px;
  8260. box-sizing:border-box;
  8261. width:100%;
  8262. }
  8263. #u140530_text {
  8264. border-width:0px;
  8265. word-wrap:break-word;
  8266. text-transform:none;
  8267. }
  8268. #u140531_img {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:0px;
  8272. top:0px;
  8273. width:44px;
  8274. height:44px;
  8275. }
  8276. #u140531 {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:1934px;
  8280. top:593px;
  8281. width:34px;
  8282. height:34px;
  8283. display:flex;
  8284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8285. font-weight:400;
  8286. font-style:normal;
  8287. font-size:12px;
  8288. }
  8289. #u140531 .text {
  8290. position:absolute;
  8291. align-self:center;
  8292. padding:2px 2px 2px 2px;
  8293. box-sizing:border-box;
  8294. width:100%;
  8295. }
  8296. #u140531_text {
  8297. border-width:0px;
  8298. word-wrap:break-word;
  8299. text-transform:none;
  8300. }
  8301. #u140532_img {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:0px;
  8305. top:0px;
  8306. width:44px;
  8307. height:44px;
  8308. }
  8309. #u140532 {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:2209px;
  8313. top:603px;
  8314. width:34px;
  8315. height:34px;
  8316. display:flex;
  8317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8318. font-weight:400;
  8319. font-style:normal;
  8320. font-size:12px;
  8321. color:#0089FE;
  8322. }
  8323. #u140532 .text {
  8324. position:absolute;
  8325. align-self:center;
  8326. padding:2px 2px 2px 2px;
  8327. box-sizing:border-box;
  8328. width:100%;
  8329. }
  8330. #u140532_text {
  8331. border-width:0px;
  8332. word-wrap:break-word;
  8333. text-transform:none;
  8334. }
  8335. #u140534_img {
  8336. border-width:0px;
  8337. position:absolute;
  8338. left:0px;
  8339. top:0px;
  8340. width:433px;
  8341. height:865px;
  8342. }
  8343. #u140534 {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:2352px;
  8347. top:0px;
  8348. width:433px;
  8349. height:865px;
  8350. display:flex;
  8351. }
  8352. #u140534 .text {
  8353. position:absolute;
  8354. align-self:center;
  8355. padding:2px 2px 2px 2px;
  8356. box-sizing:border-box;
  8357. width:100%;
  8358. }
  8359. #u140534_text {
  8360. border-width:0px;
  8361. word-wrap:break-word;
  8362. text-transform:none;
  8363. visibility:hidden;
  8364. }
  8365. #u140535_div {
  8366. border-width:0px;
  8367. position:absolute;
  8368. left:0px;
  8369. top:0px;
  8370. width:375px;
  8371. height:40px;
  8372. background:inherit;
  8373. background-color:rgba(255, 255, 255, 1);
  8374. box-sizing:border-box;
  8375. border-width:1px;
  8376. border-style:solid;
  8377. border-color:rgba(215, 215, 215, 1);
  8378. border-left:0px;
  8379. border-top:0px;
  8380. border-right:0px;
  8381. border-radius:0px;
  8382. border-bottom-right-radius:0px;
  8383. border-bottom-left-radius:0px;
  8384. -moz-box-shadow:none;
  8385. -webkit-box-shadow:none;
  8386. box-shadow:none;
  8387. }
  8388. #u140535 {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:2381px;
  8392. top:67px;
  8393. width:375px;
  8394. height:40px;
  8395. display:flex;
  8396. }
  8397. #u140535 .text {
  8398. position:absolute;
  8399. align-self:center;
  8400. padding:2px 2px 2px 2px;
  8401. box-sizing:border-box;
  8402. width:100%;
  8403. }
  8404. #u140535_text {
  8405. border-width:0px;
  8406. word-wrap:break-word;
  8407. text-transform:none;
  8408. visibility:hidden;
  8409. }
  8410. #u140536 {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:0px;
  8414. top:0px;
  8415. width:0px;
  8416. height:0px;
  8417. }
  8418. #u140537_div {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:0px;
  8422. top:0px;
  8423. width:88px;
  8424. height:32px;
  8425. background:inherit;
  8426. background-color:rgba(255, 255, 255, 1);
  8427. box-sizing:border-box;
  8428. border-width:1px;
  8429. border-style:solid;
  8430. border-color:rgba(242, 242, 242, 1);
  8431. border-radius:33px;
  8432. -moz-box-shadow:none;
  8433. -webkit-box-shadow:none;
  8434. box-shadow:none;
  8435. }
  8436. #u140537 {
  8437. border-width:0px;
  8438. position:absolute;
  8439. left:2661px;
  8440. top:71px;
  8441. width:88px;
  8442. height:32px;
  8443. display:flex;
  8444. }
  8445. #u140537 .text {
  8446. position:absolute;
  8447. align-self:center;
  8448. padding:2px 2px 2px 2px;
  8449. box-sizing:border-box;
  8450. width:100%;
  8451. }
  8452. #u140537_text {
  8453. border-width:0px;
  8454. word-wrap:break-word;
  8455. text-transform:none;
  8456. visibility:hidden;
  8457. }
  8458. #u140538 {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:0px;
  8462. top:0px;
  8463. width:0px;
  8464. height:0px;
  8465. }
  8466. #u140539_img {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:0px;
  8470. top:0px;
  8471. width:18px;
  8472. height:18px;
  8473. }
  8474. #u140539 {
  8475. border-width:0px;
  8476. position:absolute;
  8477. left:2724px;
  8478. top:78px;
  8479. width:18px;
  8480. height:18px;
  8481. display:flex;
  8482. }
  8483. #u140539 .text {
  8484. position:absolute;
  8485. align-self:center;
  8486. padding:2px 2px 2px 2px;
  8487. box-sizing:border-box;
  8488. width:100%;
  8489. }
  8490. #u140539_text {
  8491. border-width:0px;
  8492. word-wrap:break-word;
  8493. text-transform:none;
  8494. visibility:hidden;
  8495. }
  8496. #u140540_img {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:0px;
  8500. top:0px;
  8501. width:6px;
  8502. height:6px;
  8503. }
  8504. #u140540 {
  8505. border-width:0px;
  8506. position:absolute;
  8507. left:2730px;
  8508. top:84px;
  8509. width:6px;
  8510. height:6px;
  8511. display:flex;
  8512. }
  8513. #u140540 .text {
  8514. position:absolute;
  8515. align-self:center;
  8516. padding:2px 2px 2px 2px;
  8517. box-sizing:border-box;
  8518. width:100%;
  8519. }
  8520. #u140540_text {
  8521. border-width:0px;
  8522. word-wrap:break-word;
  8523. text-transform:none;
  8524. visibility:hidden;
  8525. }
  8526. #u140541 {
  8527. border-width:0px;
  8528. position:absolute;
  8529. left:0px;
  8530. top:0px;
  8531. width:0px;
  8532. height:0px;
  8533. }
  8534. #u140542_img {
  8535. border-width:0px;
  8536. position:absolute;
  8537. left:0px;
  8538. top:0px;
  8539. width:5px;
  8540. height:5px;
  8541. }
  8542. #u140542 {
  8543. border-width:0px;
  8544. position:absolute;
  8545. left:2675px;
  8546. top:85px;
  8547. width:5px;
  8548. height:5px;
  8549. display:flex;
  8550. }
  8551. #u140542 .text {
  8552. position:absolute;
  8553. align-self:center;
  8554. padding:2px 2px 2px 2px;
  8555. box-sizing:border-box;
  8556. width:100%;
  8557. }
  8558. #u140542_text {
  8559. border-width:0px;
  8560. word-wrap:break-word;
  8561. text-transform:none;
  8562. visibility:hidden;
  8563. }
  8564. #u140543_img {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:0px;
  8568. top:0px;
  8569. width:5px;
  8570. height:5px;
  8571. }
  8572. #u140543 {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:2691px;
  8576. top:85px;
  8577. width:5px;
  8578. height:5px;
  8579. display:flex;
  8580. }
  8581. #u140543 .text {
  8582. position:absolute;
  8583. align-self:center;
  8584. padding:2px 2px 2px 2px;
  8585. box-sizing:border-box;
  8586. width:100%;
  8587. }
  8588. #u140543_text {
  8589. border-width:0px;
  8590. word-wrap:break-word;
  8591. text-transform:none;
  8592. visibility:hidden;
  8593. }
  8594. #u140544_img {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:0px;
  8598. top:0px;
  8599. width:7px;
  8600. height:7px;
  8601. }
  8602. #u140544 {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:2682px;
  8606. top:84px;
  8607. width:7px;
  8608. height:7px;
  8609. display:flex;
  8610. }
  8611. #u140544 .text {
  8612. position:absolute;
  8613. align-self:center;
  8614. padding:2px 2px 2px 2px;
  8615. box-sizing:border-box;
  8616. width:100%;
  8617. }
  8618. #u140544_text {
  8619. border-width:0px;
  8620. word-wrap:break-word;
  8621. text-transform:none;
  8622. visibility:hidden;
  8623. }
  8624. #u140545_img {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:0px;
  8628. top:0px;
  8629. width:19px;
  8630. height:2px;
  8631. }
  8632. #u140545 {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:2699px;
  8636. top:87px;
  8637. width:18px;
  8638. height:1px;
  8639. display:flex;
  8640. -webkit-transform:rotate(90deg);
  8641. -moz-transform:rotate(90deg);
  8642. -ms-transform:rotate(90deg);
  8643. transform:rotate(90deg);
  8644. }
  8645. #u140545 .text {
  8646. position:absolute;
  8647. align-self:center;
  8648. padding:2px 2px 2px 2px;
  8649. box-sizing:border-box;
  8650. width:100%;
  8651. }
  8652. #u140545_text {
  8653. border-width:0px;
  8654. word-wrap:break-word;
  8655. text-transform:none;
  8656. visibility:hidden;
  8657. }
  8658. #u140546_img {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:0px;
  8662. top:0px;
  8663. width:375px;
  8664. height:44px;
  8665. }
  8666. #u140546 {
  8667. border-width:0px;
  8668. position:absolute;
  8669. left:2381px;
  8670. top:24px;
  8671. width:375px;
  8672. height:44px;
  8673. display:flex;
  8674. }
  8675. #u140546 .text {
  8676. position:absolute;
  8677. align-self:center;
  8678. padding:2px 2px 2px 2px;
  8679. box-sizing:border-box;
  8680. width:100%;
  8681. }
  8682. #u140546_text {
  8683. border-width:0px;
  8684. word-wrap:break-word;
  8685. text-transform:none;
  8686. visibility:hidden;
  8687. }
  8688. #u140547_div {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:375px;
  8694. height:50px;
  8695. background:inherit;
  8696. background-color:rgba(255, 255, 255, 1);
  8697. box-sizing:border-box;
  8698. border-width:1px;
  8699. border-style:solid;
  8700. border-color:rgba(242, 242, 242, 1);
  8701. border-radius:26px;
  8702. border-top-left-radius:0px;
  8703. border-top-right-radius:0px;
  8704. -moz-box-shadow:none;
  8705. -webkit-box-shadow:none;
  8706. box-shadow:none;
  8707. }
  8708. #u140547 {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:2381px;
  8712. top:788px;
  8713. width:375px;
  8714. height:50px;
  8715. display:flex;
  8716. }
  8717. #u140547 .text {
  8718. position:absolute;
  8719. align-self:center;
  8720. padding:2px 2px 2px 2px;
  8721. box-sizing:border-box;
  8722. width:100%;
  8723. }
  8724. #u140547_text {
  8725. border-width:0px;
  8726. word-wrap:break-word;
  8727. text-transform:none;
  8728. visibility:hidden;
  8729. }
  8730. #u140548 {
  8731. border-width:0px;
  8732. position:absolute;
  8733. left:0px;
  8734. top:0px;
  8735. width:0px;
  8736. height:0px;
  8737. }
  8738. #u140549_img {
  8739. border-width:0px;
  8740. position:absolute;
  8741. left:0px;
  8742. top:0px;
  8743. width:24px;
  8744. height:24px;
  8745. }
  8746. #u140549 {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:2421px;
  8750. top:792px;
  8751. width:24px;
  8752. height:24px;
  8753. display:flex;
  8754. font-size:8px;
  8755. }
  8756. #u140549 .text {
  8757. position:absolute;
  8758. align-self:center;
  8759. padding:2px 2px 2px 2px;
  8760. box-sizing:border-box;
  8761. width:100%;
  8762. }
  8763. #u140549_text {
  8764. border-width:0px;
  8765. word-wrap:break-word;
  8766. text-transform:none;
  8767. }
  8768. #u140550_div {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:0px;
  8772. top:0px;
  8773. width:25px;
  8774. height:17px;
  8775. background:inherit;
  8776. background-color:rgba(255, 255, 255, 0);
  8777. border:none;
  8778. border-radius:0px;
  8779. -moz-box-shadow:none;
  8780. -webkit-box-shadow:none;
  8781. box-shadow:none;
  8782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8783. font-weight:400;
  8784. font-style:normal;
  8785. font-size:12px;
  8786. }
  8787. #u140550 {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:2421px;
  8791. top:817px;
  8792. width:25px;
  8793. height:17px;
  8794. display:flex;
  8795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8796. font-weight:400;
  8797. font-style:normal;
  8798. font-size:12px;
  8799. }
  8800. #u140550 .text {
  8801. position:absolute;
  8802. align-self:flex-start;
  8803. padding:0px 0px 0px 0px;
  8804. box-sizing:border-box;
  8805. width:100%;
  8806. }
  8807. #u140550_text {
  8808. border-width:0px;
  8809. white-space:nowrap;
  8810. text-transform:none;
  8811. }
  8812. #u140551 {
  8813. border-width:0px;
  8814. position:absolute;
  8815. left:0px;
  8816. top:0px;
  8817. width:0px;
  8818. height:0px;
  8819. }
  8820. #u140552_img {
  8821. border-width:0px;
  8822. position:absolute;
  8823. left:0px;
  8824. top:0px;
  8825. width:24px;
  8826. height:24px;
  8827. }
  8828. #u140552 {
  8829. border-width:0px;
  8830. position:absolute;
  8831. left:2691px;
  8832. top:794px;
  8833. width:24px;
  8834. height:24px;
  8835. display:flex;
  8836. font-size:8px;
  8837. }
  8838. #u140552 .text {
  8839. position:absolute;
  8840. align-self:center;
  8841. padding:2px 2px 2px 2px;
  8842. box-sizing:border-box;
  8843. width:100%;
  8844. }
  8845. #u140552_text {
  8846. border-width:0px;
  8847. word-wrap:break-word;
  8848. text-transform:none;
  8849. }
  8850. #u140553_div {
  8851. border-width:0px;
  8852. position:absolute;
  8853. left:0px;
  8854. top:0px;
  8855. width:25px;
  8856. height:17px;
  8857. background:inherit;
  8858. background-color:rgba(255, 255, 255, 0);
  8859. border:none;
  8860. border-radius:0px;
  8861. -moz-box-shadow:none;
  8862. -webkit-box-shadow:none;
  8863. box-shadow:none;
  8864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8865. font-weight:400;
  8866. font-style:normal;
  8867. font-size:12px;
  8868. }
  8869. #u140553 {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:2691px;
  8873. top:819px;
  8874. width:25px;
  8875. height:17px;
  8876. display:flex;
  8877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:12px;
  8881. }
  8882. #u140553 .text {
  8883. position:absolute;
  8884. align-self:flex-start;
  8885. padding:0px 0px 0px 0px;
  8886. box-sizing:border-box;
  8887. width:100%;
  8888. }
  8889. #u140553_text {
  8890. border-width:0px;
  8891. white-space:nowrap;
  8892. text-transform:none;
  8893. }
  8894. #u140554_div {
  8895. border-width:0px;
  8896. position:absolute;
  8897. left:0px;
  8898. top:0px;
  8899. width:375px;
  8900. height:681px;
  8901. background:inherit;
  8902. background-color:rgba(242, 242, 242, 0.462745098039216);
  8903. border:none;
  8904. border-radius:0px;
  8905. -moz-box-shadow:none;
  8906. -webkit-box-shadow:none;
  8907. box-shadow:none;
  8908. }
  8909. #u140554 {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:2381px;
  8913. top:107px;
  8914. width:375px;
  8915. height:681px;
  8916. display:flex;
  8917. }
  8918. #u140554 .text {
  8919. position:absolute;
  8920. align-self:center;
  8921. padding:2px 2px 2px 2px;
  8922. box-sizing:border-box;
  8923. width:100%;
  8924. }
  8925. #u140554_text {
  8926. border-width:0px;
  8927. word-wrap:break-word;
  8928. text-transform:none;
  8929. visibility:hidden;
  8930. }
  8931. #u140555 {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:0px;
  8935. top:0px;
  8936. width:0px;
  8937. height:0px;
  8938. }
  8939. #u140556_img {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:0px;
  8943. top:0px;
  8944. width:24px;
  8945. height:24px;
  8946. }
  8947. #u140556 {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:2603px;
  8951. top:792px;
  8952. width:24px;
  8953. height:24px;
  8954. display:flex;
  8955. font-size:8px;
  8956. }
  8957. #u140556 .text {
  8958. position:absolute;
  8959. align-self:center;
  8960. padding:2px 2px 2px 2px;
  8961. box-sizing:border-box;
  8962. width:100%;
  8963. }
  8964. #u140556_text {
  8965. border-width:0px;
  8966. word-wrap:break-word;
  8967. text-transform:none;
  8968. }
  8969. #u140557_div {
  8970. border-width:0px;
  8971. position:absolute;
  8972. left:0px;
  8973. top:0px;
  8974. width:37px;
  8975. height:17px;
  8976. background:inherit;
  8977. background-color:rgba(255, 255, 255, 0);
  8978. border:none;
  8979. border-radius:0px;
  8980. -moz-box-shadow:none;
  8981. -webkit-box-shadow:none;
  8982. box-shadow:none;
  8983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8984. font-weight:400;
  8985. font-style:normal;
  8986. font-size:12px;
  8987. }
  8988. #u140557 {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:2597px;
  8992. top:817px;
  8993. width:37px;
  8994. height:17px;
  8995. display:flex;
  8996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8997. font-weight:400;
  8998. font-style:normal;
  8999. font-size:12px;
  9000. }
  9001. #u140557 .text {
  9002. position:absolute;
  9003. align-self:flex-start;
  9004. padding:0px 0px 0px 0px;
  9005. box-sizing:border-box;
  9006. width:100%;
  9007. }
  9008. #u140557_text {
  9009. border-width:0px;
  9010. white-space:nowrap;
  9011. text-transform:none;
  9012. }
  9013. #u140558 {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:0px;
  9017. top:0px;
  9018. width:0px;
  9019. height:0px;
  9020. }
  9021. #u140559_img {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:0px;
  9025. top:0px;
  9026. width:24px;
  9027. height:24px;
  9028. }
  9029. #u140559 {
  9030. border-width:0px;
  9031. position:absolute;
  9032. left:2509px;
  9033. top:792px;
  9034. width:24px;
  9035. height:24px;
  9036. display:flex;
  9037. font-size:8px;
  9038. }
  9039. #u140559 .text {
  9040. position:absolute;
  9041. align-self:center;
  9042. padding:2px 2px 2px 2px;
  9043. box-sizing:border-box;
  9044. width:100%;
  9045. }
  9046. #u140559_text {
  9047. border-width:0px;
  9048. word-wrap:break-word;
  9049. text-transform:none;
  9050. }
  9051. #u140560_div {
  9052. border-width:0px;
  9053. position:absolute;
  9054. left:0px;
  9055. top:0px;
  9056. width:37px;
  9057. height:17px;
  9058. background:inherit;
  9059. background-color:rgba(255, 255, 255, 0);
  9060. border:none;
  9061. border-radius:0px;
  9062. -moz-box-shadow:none;
  9063. -webkit-box-shadow:none;
  9064. box-shadow:none;
  9065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9066. font-weight:400;
  9067. font-style:normal;
  9068. font-size:12px;
  9069. }
  9070. #u140560 {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:2503px;
  9074. top:817px;
  9075. width:37px;
  9076. height:17px;
  9077. display:flex;
  9078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9079. font-weight:400;
  9080. font-style:normal;
  9081. font-size:12px;
  9082. }
  9083. #u140560 .text {
  9084. position:absolute;
  9085. align-self:flex-start;
  9086. padding:0px 0px 0px 0px;
  9087. box-sizing:border-box;
  9088. width:100%;
  9089. }
  9090. #u140560_text {
  9091. border-width:0px;
  9092. white-space:nowrap;
  9093. text-transform:none;
  9094. }
  9095. #u140561_div {
  9096. border-width:0px;
  9097. position:absolute;
  9098. left:0px;
  9099. top:0px;
  9100. width:375px;
  9101. height:735px;
  9102. background:inherit;
  9103. background-color:rgba(242, 242, 242, 0.996078431372549);
  9104. border:none;
  9105. border-top:0px;
  9106. border-radius:35px;
  9107. border-top-left-radius:0px;
  9108. border-top-right-radius:0px;
  9109. -moz-box-shadow:none;
  9110. -webkit-box-shadow:none;
  9111. box-shadow:none;
  9112. }
  9113. #u140561 {
  9114. border-width:0px;
  9115. position:absolute;
  9116. left:2381px;
  9117. top:106px;
  9118. width:375px;
  9119. height:735px;
  9120. display:flex;
  9121. }
  9122. #u140561 .text {
  9123. position:absolute;
  9124. align-self:center;
  9125. padding:2px 2px 2px 2px;
  9126. box-sizing:border-box;
  9127. width:100%;
  9128. }
  9129. #u140561_text {
  9130. border-width:0px;
  9131. word-wrap:break-word;
  9132. text-transform:none;
  9133. visibility:hidden;
  9134. }
  9135. #u140562_img {
  9136. border-width:0px;
  9137. position:absolute;
  9138. left:0px;
  9139. top:0px;
  9140. width:375px;
  9141. height:44px;
  9142. }
  9143. #u140562 {
  9144. border-width:0px;
  9145. position:absolute;
  9146. left:2381px;
  9147. top:24px;
  9148. width:375px;
  9149. height:44px;
  9150. display:flex;
  9151. }
  9152. #u140562 .text {
  9153. position:absolute;
  9154. align-self:center;
  9155. padding:2px 2px 2px 2px;
  9156. box-sizing:border-box;
  9157. width:100%;
  9158. }
  9159. #u140562_text {
  9160. border-width:0px;
  9161. word-wrap:break-word;
  9162. text-transform:none;
  9163. visibility:hidden;
  9164. }
  9165. #u140563 {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:0px;
  9169. top:0px;
  9170. width:0px;
  9171. height:0px;
  9172. }
  9173. #u140564_div {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:88px;
  9179. height:32px;
  9180. background:inherit;
  9181. background-color:rgba(255, 255, 255, 1);
  9182. box-sizing:border-box;
  9183. border-width:1px;
  9184. border-style:solid;
  9185. border-color:rgba(242, 242, 242, 1);
  9186. border-radius:33px;
  9187. -moz-box-shadow:none;
  9188. -webkit-box-shadow:none;
  9189. box-shadow:none;
  9190. }
  9191. #u140564 {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:2661px;
  9195. top:71px;
  9196. width:88px;
  9197. height:32px;
  9198. display:flex;
  9199. }
  9200. #u140564 .text {
  9201. position:absolute;
  9202. align-self:center;
  9203. padding:2px 2px 2px 2px;
  9204. box-sizing:border-box;
  9205. width:100%;
  9206. }
  9207. #u140564_text {
  9208. border-width:0px;
  9209. word-wrap:break-word;
  9210. text-transform:none;
  9211. visibility:hidden;
  9212. }
  9213. #u140565 {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:0px;
  9217. top:0px;
  9218. width:0px;
  9219. height:0px;
  9220. }
  9221. #u140566_img {
  9222. border-width:0px;
  9223. position:absolute;
  9224. left:0px;
  9225. top:0px;
  9226. width:18px;
  9227. height:18px;
  9228. }
  9229. #u140566 {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:2724px;
  9233. top:78px;
  9234. width:18px;
  9235. height:18px;
  9236. display:flex;
  9237. }
  9238. #u140566 .text {
  9239. position:absolute;
  9240. align-self:center;
  9241. padding:2px 2px 2px 2px;
  9242. box-sizing:border-box;
  9243. width:100%;
  9244. }
  9245. #u140566_text {
  9246. border-width:0px;
  9247. word-wrap:break-word;
  9248. text-transform:none;
  9249. visibility:hidden;
  9250. }
  9251. #u140567_img {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:0px;
  9255. top:0px;
  9256. width:6px;
  9257. height:6px;
  9258. }
  9259. #u140567 {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:2730px;
  9263. top:84px;
  9264. width:6px;
  9265. height:6px;
  9266. display:flex;
  9267. }
  9268. #u140567 .text {
  9269. position:absolute;
  9270. align-self:center;
  9271. padding:2px 2px 2px 2px;
  9272. box-sizing:border-box;
  9273. width:100%;
  9274. }
  9275. #u140567_text {
  9276. border-width:0px;
  9277. word-wrap:break-word;
  9278. text-transform:none;
  9279. visibility:hidden;
  9280. }
  9281. #u140568 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:0px;
  9287. height:0px;
  9288. }
  9289. #u140569_img {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:0px;
  9293. top:0px;
  9294. width:5px;
  9295. height:5px;
  9296. }
  9297. #u140569 {
  9298. border-width:0px;
  9299. position:absolute;
  9300. left:2675px;
  9301. top:85px;
  9302. width:5px;
  9303. height:5px;
  9304. display:flex;
  9305. }
  9306. #u140569 .text {
  9307. position:absolute;
  9308. align-self:center;
  9309. padding:2px 2px 2px 2px;
  9310. box-sizing:border-box;
  9311. width:100%;
  9312. }
  9313. #u140569_text {
  9314. border-width:0px;
  9315. word-wrap:break-word;
  9316. text-transform:none;
  9317. visibility:hidden;
  9318. }
  9319. #u140570_img {
  9320. border-width:0px;
  9321. position:absolute;
  9322. left:0px;
  9323. top:0px;
  9324. width:5px;
  9325. height:5px;
  9326. }
  9327. #u140570 {
  9328. border-width:0px;
  9329. position:absolute;
  9330. left:2691px;
  9331. top:85px;
  9332. width:5px;
  9333. height:5px;
  9334. display:flex;
  9335. }
  9336. #u140570 .text {
  9337. position:absolute;
  9338. align-self:center;
  9339. padding:2px 2px 2px 2px;
  9340. box-sizing:border-box;
  9341. width:100%;
  9342. }
  9343. #u140570_text {
  9344. border-width:0px;
  9345. word-wrap:break-word;
  9346. text-transform:none;
  9347. visibility:hidden;
  9348. }
  9349. #u140571_img {
  9350. border-width:0px;
  9351. position:absolute;
  9352. left:0px;
  9353. top:0px;
  9354. width:7px;
  9355. height:7px;
  9356. }
  9357. #u140571 {
  9358. border-width:0px;
  9359. position:absolute;
  9360. left:2682px;
  9361. top:84px;
  9362. width:7px;
  9363. height:7px;
  9364. display:flex;
  9365. }
  9366. #u140571 .text {
  9367. position:absolute;
  9368. align-self:center;
  9369. padding:2px 2px 2px 2px;
  9370. box-sizing:border-box;
  9371. width:100%;
  9372. }
  9373. #u140571_text {
  9374. border-width:0px;
  9375. word-wrap:break-word;
  9376. text-transform:none;
  9377. visibility:hidden;
  9378. }
  9379. #u140572_img {
  9380. border-width:0px;
  9381. position:absolute;
  9382. left:0px;
  9383. top:0px;
  9384. width:19px;
  9385. height:2px;
  9386. }
  9387. #u140572 {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:2699px;
  9391. top:87px;
  9392. width:18px;
  9393. height:1px;
  9394. display:flex;
  9395. -webkit-transform:rotate(90deg);
  9396. -moz-transform:rotate(90deg);
  9397. -ms-transform:rotate(90deg);
  9398. transform:rotate(90deg);
  9399. }
  9400. #u140572 .text {
  9401. position:absolute;
  9402. align-self:center;
  9403. padding:2px 2px 2px 2px;
  9404. box-sizing:border-box;
  9405. width:100%;
  9406. }
  9407. #u140572_text {
  9408. border-width:0px;
  9409. word-wrap:break-word;
  9410. text-transform:none;
  9411. visibility:hidden;
  9412. }
  9413. #u140573_div {
  9414. border-width:0px;
  9415. position:absolute;
  9416. left:0px;
  9417. top:0px;
  9418. width:65px;
  9419. height:22px;
  9420. background:inherit;
  9421. background-color:rgba(255, 255, 255, 0);
  9422. border:none;
  9423. border-radius:0px;
  9424. -moz-box-shadow:none;
  9425. -webkit-box-shadow:none;
  9426. box-shadow:none;
  9427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9428. font-weight:400;
  9429. font-style:normal;
  9430. font-size:16px;
  9431. color:#000000;
  9432. }
  9433. #u140573 {
  9434. border-width:0px;
  9435. position:absolute;
  9436. left:2412px;
  9437. top:76px;
  9438. width:65px;
  9439. height:22px;
  9440. display:flex;
  9441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9442. font-weight:400;
  9443. font-style:normal;
  9444. font-size:16px;
  9445. color:#000000;
  9446. }
  9447. #u140573 .text {
  9448. position:absolute;
  9449. align-self:flex-start;
  9450. padding:0px 0px 0px 0px;
  9451. box-sizing:border-box;
  9452. width:100%;
  9453. }
  9454. #u140573_text {
  9455. border-width:0px;
  9456. white-space:nowrap;
  9457. text-transform:none;
  9458. }
  9459. #u140574_div {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:0px;
  9463. top:0px;
  9464. width:12px;
  9465. height:12px;
  9466. background:inherit;
  9467. background-color:rgba(255, 255, 255, 0);
  9468. box-sizing:border-box;
  9469. border-width:2px;
  9470. border-style:solid;
  9471. border-color:rgba(51, 51, 51, 1);
  9472. border-right:0px;
  9473. border-bottom:0px;
  9474. border-radius:0px;
  9475. border-top-right-radius:0px;
  9476. border-bottom-left-radius:0px;
  9477. -moz-box-shadow:none;
  9478. -webkit-box-shadow:none;
  9479. box-shadow:none;
  9480. }
  9481. #u140574 {
  9482. border-width:0px;
  9483. position:absolute;
  9484. left:2398px;
  9485. top:81px;
  9486. width:12px;
  9487. height:12px;
  9488. display:flex;
  9489. -webkit-transform:rotate(315deg);
  9490. -moz-transform:rotate(315deg);
  9491. -ms-transform:rotate(315deg);
  9492. transform:rotate(315deg);
  9493. }
  9494. #u140574 .text {
  9495. position:absolute;
  9496. align-self:center;
  9497. padding:2px 2px 2px 2px;
  9498. box-sizing:border-box;
  9499. width:100%;
  9500. }
  9501. #u140574_text {
  9502. border-width:0px;
  9503. word-wrap:break-word;
  9504. text-transform:none;
  9505. visibility:hidden;
  9506. }
  9507. #u140575_img {
  9508. border-width:0px;
  9509. position:absolute;
  9510. left:0px;
  9511. top:0px;
  9512. width:20px;
  9513. height:30px;
  9514. }
  9515. #u140575 {
  9516. border-width:0px;
  9517. position:absolute;
  9518. left:2449px;
  9519. top:280px;
  9520. width:20px;
  9521. height:30px;
  9522. display:flex;
  9523. }
  9524. #u140575 .text {
  9525. position:absolute;
  9526. align-self:center;
  9527. padding:2px 2px 2px 2px;
  9528. box-sizing:border-box;
  9529. width:100%;
  9530. }
  9531. #u140575_text {
  9532. border-width:0px;
  9533. word-wrap:break-word;
  9534. text-transform:none;
  9535. visibility:hidden;
  9536. }
  9537. #u140576_img {
  9538. border-width:0px;
  9539. position:absolute;
  9540. left:0px;
  9541. top:0px;
  9542. width:20px;
  9543. height:30px;
  9544. }
  9545. #u140576 {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:2626px;
  9549. top:350px;
  9550. width:20px;
  9551. height:30px;
  9552. display:flex;
  9553. }
  9554. #u140576 .text {
  9555. position:absolute;
  9556. align-self:center;
  9557. padding:2px 2px 2px 2px;
  9558. box-sizing:border-box;
  9559. width:100%;
  9560. }
  9561. #u140576_text {
  9562. border-width:0px;
  9563. word-wrap:break-word;
  9564. text-transform:none;
  9565. visibility:hidden;
  9566. }
  9567. #u140577_img {
  9568. border-width:0px;
  9569. position:absolute;
  9570. left:0px;
  9571. top:0px;
  9572. width:20px;
  9573. height:30px;
  9574. }
  9575. #u140577 {
  9576. border-width:0px;
  9577. position:absolute;
  9578. left:2526px;
  9579. top:474px;
  9580. width:20px;
  9581. height:30px;
  9582. display:flex;
  9583. }
  9584. #u140577 .text {
  9585. position:absolute;
  9586. align-self:center;
  9587. padding:2px 2px 2px 2px;
  9588. box-sizing:border-box;
  9589. width:100%;
  9590. }
  9591. #u140577_text {
  9592. border-width:0px;
  9593. word-wrap:break-word;
  9594. text-transform:none;
  9595. visibility:hidden;
  9596. }
  9597. #u140578_img {
  9598. border-width:0px;
  9599. position:absolute;
  9600. left:0px;
  9601. top:0px;
  9602. width:20px;
  9603. height:30px;
  9604. }
  9605. #u140578 {
  9606. border-width:0px;
  9607. position:absolute;
  9608. left:2481px;
  9609. top:585px;
  9610. width:20px;
  9611. height:30px;
  9612. display:flex;
  9613. }
  9614. #u140578 .text {
  9615. position:absolute;
  9616. align-self:center;
  9617. padding:2px 2px 2px 2px;
  9618. box-sizing:border-box;
  9619. width:100%;
  9620. }
  9621. #u140578_text {
  9622. border-width:0px;
  9623. word-wrap:break-word;
  9624. text-transform:none;
  9625. visibility:hidden;
  9626. }
  9627. #u140579_img {
  9628. border-width:0px;
  9629. position:absolute;
  9630. left:0px;
  9631. top:0px;
  9632. width:20px;
  9633. height:30px;
  9634. }
  9635. #u140579 {
  9636. border-width:0px;
  9637. position:absolute;
  9638. left:2445px;
  9639. top:605px;
  9640. width:20px;
  9641. height:30px;
  9642. display:flex;
  9643. }
  9644. #u140579 .text {
  9645. position:absolute;
  9646. align-self:center;
  9647. padding:2px 2px 2px 2px;
  9648. box-sizing:border-box;
  9649. width:100%;
  9650. }
  9651. #u140579_text {
  9652. border-width:0px;
  9653. word-wrap:break-word;
  9654. text-transform:none;
  9655. visibility:hidden;
  9656. }
  9657. #u140580_img {
  9658. border-width:0px;
  9659. position:absolute;
  9660. left:0px;
  9661. top:0px;
  9662. width:20px;
  9663. height:30px;
  9664. }
  9665. #u140580 {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:2661px;
  9669. top:630px;
  9670. width:20px;
  9671. height:30px;
  9672. display:flex;
  9673. }
  9674. #u140580 .text {
  9675. position:absolute;
  9676. align-self:center;
  9677. padding:2px 2px 2px 2px;
  9678. box-sizing:border-box;
  9679. width:100%;
  9680. }
  9681. #u140580_text {
  9682. border-width:0px;
  9683. word-wrap:break-word;
  9684. text-transform:none;
  9685. visibility:hidden;
  9686. }
  9687. #u140581 {
  9688. border-width:0px;
  9689. position:absolute;
  9690. left:2469px;
  9691. top:295px;
  9692. width:0px;
  9693. height:0px;
  9694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9695. font-weight:400;
  9696. font-style:normal;
  9697. font-size:12px;
  9698. color:#333333;
  9699. }
  9700. #u140581_seg0 {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:-9px;
  9704. top:31px;
  9705. width:174px;
  9706. height:8px;
  9707. -webkit-transform:rotate(-155.969825552463deg);
  9708. -moz-transform:rotate(-155.969825552463deg);
  9709. -ms-transform:rotate(-155.969825552463deg);
  9710. transform:rotate(-155.969825552463deg);
  9711. }
  9712. #u140581_text {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:29px;
  9716. top:27px;
  9717. width:100px;
  9718. word-wrap:break-word;
  9719. text-transform:none;
  9720. visibility:hidden;
  9721. }
  9722. #u140582 {
  9723. border-width:0px;
  9724. position:absolute;
  9725. left:2636px;
  9726. top:380px;
  9727. width:0px;
  9728. height:0px;
  9729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9730. font-weight:400;
  9731. font-style:normal;
  9732. font-size:12px;
  9733. color:#333333;
  9734. }
  9735. #u140582_seg0 {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:-120px;
  9739. top:44px;
  9740. width:140px;
  9741. height:6px;
  9742. -webkit-transform:rotate(-43.2285302599659deg);
  9743. -moz-transform:rotate(-43.2285302599659deg);
  9744. -ms-transform:rotate(-43.2285302599659deg);
  9745. transform:rotate(-43.2285302599659deg);
  9746. }
  9747. #u140582_text {
  9748. border-width:0px;
  9749. position:absolute;
  9750. left:-100px;
  9751. top:39px;
  9752. width:100px;
  9753. word-wrap:break-word;
  9754. text-transform:none;
  9755. visibility:hidden;
  9756. }
  9757. #u140583 {
  9758. border-width:0px;
  9759. position:absolute;
  9760. left:2526px;
  9761. top:489px;
  9762. width:0px;
  9763. height:0px;
  9764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9765. font-weight:400;
  9766. font-style:normal;
  9767. font-size:12px;
  9768. color:#333333;
  9769. }
  9770. #u140583_seg0 {
  9771. border-width:0px;
  9772. position:absolute;
  9773. left:-70px;
  9774. top:53px;
  9775. width:116px;
  9776. height:6px;
  9777. -webkit-transform:rotate(-77.3073344548821deg);
  9778. -moz-transform:rotate(-77.3073344548821deg);
  9779. -ms-transform:rotate(-77.3073344548821deg);
  9780. transform:rotate(-77.3073344548821deg);
  9781. }
  9782. #u140583_text {
  9783. border-width:0px;
  9784. position:absolute;
  9785. left:-62px;
  9786. top:48px;
  9787. width:100px;
  9788. word-wrap:break-word;
  9789. text-transform:none;
  9790. visibility:hidden;
  9791. }
  9792. #u140584 {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:2481px;
  9796. top:600px;
  9797. width:0px;
  9798. height:0px;
  9799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9800. font-weight:400;
  9801. font-style:normal;
  9802. font-size:12px;
  9803. color:#333333;
  9804. }
  9805. #u140584_seg0 {
  9806. border-width:0px;
  9807. position:absolute;
  9808. left:-21px;
  9809. top:6px;
  9810. width:26px;
  9811. height:8px;
  9812. -webkit-transform:rotate(-51.3401917459099deg);
  9813. -moz-transform:rotate(-51.3401917459099deg);
  9814. -ms-transform:rotate(-51.3401917459099deg);
  9815. transform:rotate(-51.3401917459099deg);
  9816. }
  9817. #u140584_text {
  9818. border-width:0px;
  9819. position:absolute;
  9820. left:-58px;
  9821. top:2px;
  9822. width:100px;
  9823. word-wrap:break-word;
  9824. text-transform:none;
  9825. visibility:hidden;
  9826. }
  9827. #u140585 {
  9828. border-width:0px;
  9829. position:absolute;
  9830. left:2455px;
  9831. top:635px;
  9832. width:0px;
  9833. height:0px;
  9834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9835. font-weight:400;
  9836. font-style:normal;
  9837. font-size:12px;
  9838. color:#333333;
  9839. }
  9840. #u140585_seg0 {
  9841. border-width:0px;
  9842. position:absolute;
  9843. left:-1px;
  9844. top:1px;
  9845. width:208px;
  9846. height:8px;
  9847. -webkit-transform:rotate(-177.220833135928deg);
  9848. -moz-transform:rotate(-177.220833135928deg);
  9849. -ms-transform:rotate(-177.220833135928deg);
  9850. transform:rotate(-177.220833135928deg);
  9851. }
  9852. #u140585_text {
  9853. border-width:0px;
  9854. position:absolute;
  9855. left:53px;
  9856. top:-3px;
  9857. width:100px;
  9858. word-wrap:break-word;
  9859. text-transform:none;
  9860. visibility:hidden;
  9861. }
  9862. #u140586_img {
  9863. border-width:0px;
  9864. position:absolute;
  9865. left:0px;
  9866. top:0px;
  9867. width:44px;
  9868. height:44px;
  9869. }
  9870. #u140586 {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:2467px;
  9874. top:250px;
  9875. width:34px;
  9876. height:34px;
  9877. display:flex;
  9878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9879. font-weight:400;
  9880. font-style:normal;
  9881. font-size:12px;
  9882. }
  9883. #u140586 .text {
  9884. position:absolute;
  9885. align-self:center;
  9886. padding:2px 2px 2px 2px;
  9887. box-sizing:border-box;
  9888. width:100%;
  9889. }
  9890. #u140586_text {
  9891. border-width:0px;
  9892. word-wrap:break-word;
  9893. text-transform:none;
  9894. }
  9895. #u140587_img {
  9896. border-width:0px;
  9897. position:absolute;
  9898. left:0px;
  9899. top:0px;
  9900. width:44px;
  9901. height:44px;
  9902. }
  9903. #u140587 {
  9904. border-width:0px;
  9905. position:absolute;
  9906. left:2646px;
  9907. top:327px;
  9908. width:34px;
  9909. height:34px;
  9910. display:flex;
  9911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9912. font-weight:400;
  9913. font-style:normal;
  9914. font-size:12px;
  9915. color:#FFFFFF;
  9916. }
  9917. #u140587 .text {
  9918. position:absolute;
  9919. align-self:center;
  9920. padding:2px 2px 2px 2px;
  9921. box-sizing:border-box;
  9922. width:100%;
  9923. }
  9924. #u140587_text {
  9925. border-width:0px;
  9926. word-wrap:break-word;
  9927. text-transform:none;
  9928. }
  9929. #u140588_img {
  9930. border-width:0px;
  9931. position:absolute;
  9932. left:0px;
  9933. top:0px;
  9934. width:44px;
  9935. height:44px;
  9936. }
  9937. #u140588 {
  9938. border-width:0px;
  9939. position:absolute;
  9940. left:2552px;
  9941. top:465px;
  9942. width:34px;
  9943. height:34px;
  9944. display:flex;
  9945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9946. font-weight:400;
  9947. font-style:normal;
  9948. font-size:12px;
  9949. }
  9950. #u140588 .text {
  9951. position:absolute;
  9952. align-self:center;
  9953. padding:2px 2px 2px 2px;
  9954. box-sizing:border-box;
  9955. width:100%;
  9956. }
  9957. #u140588_text {
  9958. border-width:0px;
  9959. word-wrap:break-word;
  9960. text-transform:none;
  9961. }
  9962. #u140589_img {
  9963. border-width:0px;
  9964. position:absolute;
  9965. left:0px;
  9966. top:0px;
  9967. width:44px;
  9968. height:44px;
  9969. }
  9970. #u140589 {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:2455px;
  9974. top:546px;
  9975. width:34px;
  9976. height:34px;
  9977. display:flex;
  9978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9979. font-weight:400;
  9980. font-style:normal;
  9981. font-size:12px;
  9982. }
  9983. #u140589 .text {
  9984. position:absolute;
  9985. align-self:center;
  9986. padding:2px 2px 2px 2px;
  9987. box-sizing:border-box;
  9988. width:100%;
  9989. }
  9990. #u140589_text {
  9991. border-width:0px;
  9992. word-wrap:break-word;
  9993. text-transform:none;
  9994. }
  9995. #u140590_img {
  9996. border-width:0px;
  9997. position:absolute;
  9998. left:0px;
  9999. top:0px;
  10000. width:44px;
  10001. height:44px;
  10002. }
  10003. #u140590 {
  10004. border-width:0px;
  10005. position:absolute;
  10006. left:2403px;
  10007. top:593px;
  10008. width:34px;
  10009. height:34px;
  10010. display:flex;
  10011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10012. font-weight:400;
  10013. font-style:normal;
  10014. font-size:12px;
  10015. }
  10016. #u140590 .text {
  10017. position:absolute;
  10018. align-self:center;
  10019. padding:2px 2px 2px 2px;
  10020. box-sizing:border-box;
  10021. width:100%;
  10022. }
  10023. #u140590_text {
  10024. border-width:0px;
  10025. word-wrap:break-word;
  10026. text-transform:none;
  10027. }
  10028. #u140591_img {
  10029. border-width:0px;
  10030. position:absolute;
  10031. left:0px;
  10032. top:0px;
  10033. width:44px;
  10034. height:44px;
  10035. }
  10036. #u140591 {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:2678px;
  10040. top:603px;
  10041. width:34px;
  10042. height:34px;
  10043. display:flex;
  10044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10045. font-weight:400;
  10046. font-style:normal;
  10047. font-size:12px;
  10048. color:#0089FE;
  10049. }
  10050. #u140591 .text {
  10051. position:absolute;
  10052. align-self:center;
  10053. padding:2px 2px 2px 2px;
  10054. box-sizing:border-box;
  10055. width:100%;
  10056. }
  10057. #u140591_text {
  10058. border-width:0px;
  10059. word-wrap:break-word;
  10060. text-transform:none;
  10061. }
  10062. #u140592 {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:0px;
  10066. top:0px;
  10067. width:0px;
  10068. height:0px;
  10069. }
  10070. #u140593_div {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:0px;
  10074. top:0px;
  10075. width:375px;
  10076. height:87px;
  10077. background:inherit;
  10078. background-color:rgba(255, 255, 255, 1);
  10079. border:none;
  10080. border-radius:0px;
  10081. -moz-box-shadow:none;
  10082. -webkit-box-shadow:none;
  10083. box-shadow:none;
  10084. }
  10085. #u140593 {
  10086. border-width:0px;
  10087. position:absolute;
  10088. left:2381px;
  10089. top:106px;
  10090. width:375px;
  10091. height:87px;
  10092. display:flex;
  10093. }
  10094. #u140593 .text {
  10095. position:absolute;
  10096. align-self:center;
  10097. padding:2px 2px 2px 2px;
  10098. box-sizing:border-box;
  10099. width:100%;
  10100. }
  10101. #u140593_text {
  10102. border-width:0px;
  10103. word-wrap:break-word;
  10104. text-transform:none;
  10105. visibility:hidden;
  10106. }
  10107. #u140594_div {
  10108. border-width:0px;
  10109. position:absolute;
  10110. left:0px;
  10111. top:0px;
  10112. width:57px;
  10113. height:20px;
  10114. background:inherit;
  10115. background-color:rgba(255, 255, 255, 0);
  10116. border:none;
  10117. border-radius:0px;
  10118. -moz-box-shadow:none;
  10119. -webkit-box-shadow:none;
  10120. box-shadow:none;
  10121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10122. font-weight:400;
  10123. font-style:normal;
  10124. color:#000000;
  10125. }
  10126. #u140594 {
  10127. border-width:0px;
  10128. position:absolute;
  10129. left:2489px;
  10130. top:120px;
  10131. width:57px;
  10132. height:20px;
  10133. display:flex;
  10134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10135. font-weight:400;
  10136. font-style:normal;
  10137. color:#000000;
  10138. }
  10139. #u140594 .text {
  10140. position:absolute;
  10141. align-self:flex-start;
  10142. padding:0px 0px 0px 0px;
  10143. box-sizing:border-box;
  10144. width:100%;
  10145. }
  10146. #u140594_text {
  10147. border-width:0px;
  10148. white-space:nowrap;
  10149. text-transform:none;
  10150. }
  10151. #u140595_div {
  10152. border-width:0px;
  10153. position:absolute;
  10154. left:0px;
  10155. top:0px;
  10156. width:33px;
  10157. height:22px;
  10158. background:inherit;
  10159. background-color:rgba(255, 255, 255, 0);
  10160. border:none;
  10161. border-radius:0px;
  10162. -moz-box-shadow:none;
  10163. -webkit-box-shadow:none;
  10164. box-shadow:none;
  10165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10166. font-weight:400;
  10167. font-style:normal;
  10168. font-size:16px;
  10169. color:#000000;
  10170. }
  10171. #u140595 {
  10172. border-width:0px;
  10173. position:absolute;
  10174. left:2489px;
  10175. top:152px;
  10176. width:33px;
  10177. height:22px;
  10178. display:flex;
  10179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10180. font-weight:400;
  10181. font-style:normal;
  10182. font-size:16px;
  10183. color:#000000;
  10184. }
  10185. #u140595 .text {
  10186. position:absolute;
  10187. align-self:flex-start;
  10188. padding:0px 0px 0px 0px;
  10189. box-sizing:border-box;
  10190. width:100%;
  10191. }
  10192. #u140595_text {
  10193. border-width:0px;
  10194. white-space:nowrap;
  10195. text-transform:none;
  10196. }
  10197. #u140596_div {
  10198. border-width:0px;
  10199. position:absolute;
  10200. left:0px;
  10201. top:0px;
  10202. width:60px;
  10203. height:60px;
  10204. background:inherit;
  10205. background-color:rgba(255, 255, 255, 1);
  10206. box-sizing:border-box;
  10207. border-width:1px;
  10208. border-style:solid;
  10209. border-color:rgba(215, 215, 215, 1);
  10210. border-radius:4px;
  10211. -moz-box-shadow:none;
  10212. -webkit-box-shadow:none;
  10213. box-shadow:none;
  10214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10215. font-weight:400;
  10216. font-style:normal;
  10217. color:#AAAAAA;
  10218. }
  10219. #u140596 {
  10220. border-width:0px;
  10221. position:absolute;
  10222. left:2404px;
  10223. top:120px;
  10224. width:60px;
  10225. height:60px;
  10226. display:flex;
  10227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10228. font-weight:400;
  10229. font-style:normal;
  10230. color:#AAAAAA;
  10231. }
  10232. #u140596 .text {
  10233. position:absolute;
  10234. align-self:center;
  10235. padding:2px 2px 2px 2px;
  10236. box-sizing:border-box;
  10237. width:100%;
  10238. }
  10239. #u140596_text {
  10240. border-width:0px;
  10241. word-wrap:break-word;
  10242. text-transform:none;
  10243. }
  10244. #u140597_div {
  10245. border-width:0px;
  10246. position:absolute;
  10247. left:0px;
  10248. top:0px;
  10249. width:65px;
  10250. height:22px;
  10251. background:inherit;
  10252. background-color:rgba(255, 255, 255, 0);
  10253. border:none;
  10254. border-radius:0px;
  10255. -moz-box-shadow:none;
  10256. -webkit-box-shadow:none;
  10257. box-shadow:none;
  10258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10259. font-weight:400;
  10260. font-style:normal;
  10261. font-size:16px;
  10262. color:#000000;
  10263. }
  10264. #u140597 {
  10265. border-width:0px;
  10266. position:absolute;
  10267. left:1473px;
  10268. top:139px;
  10269. width:65px;
  10270. height:22px;
  10271. display:flex;
  10272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10273. font-weight:400;
  10274. font-style:normal;
  10275. font-size:16px;
  10276. color:#000000;
  10277. }
  10278. #u140597 .text {
  10279. position:absolute;
  10280. align-self:flex-start;
  10281. padding:0px 0px 0px 0px;
  10282. box-sizing:border-box;
  10283. width:100%;
  10284. }
  10285. #u140597_text {
  10286. border-width:0px;
  10287. white-space:nowrap;
  10288. text-transform:none;
  10289. }
  10290. #u140598 {
  10291. border-width:0px;
  10292. position:absolute;
  10293. left:0px;
  10294. top:0px;
  10295. width:0px;
  10296. height:0px;
  10297. }
  10298. #u140599_div {
  10299. border-width:0px;
  10300. position:absolute;
  10301. left:0px;
  10302. top:0px;
  10303. width:320px;
  10304. height:40px;
  10305. background:inherit;
  10306. background-color:rgba(242, 242, 242, 1);
  10307. border:none;
  10308. border-radius:20px;
  10309. -moz-box-shadow:none;
  10310. -webkit-box-shadow:none;
  10311. box-shadow:none;
  10312. }
  10313. #u140599 {
  10314. border-width:0px;
  10315. position:absolute;
  10316. left:1473px;
  10317. top:173px;
  10318. width:320px;
  10319. height:40px;
  10320. display:flex;
  10321. }
  10322. #u140599 .text {
  10323. position:absolute;
  10324. align-self:center;
  10325. padding:2px 2px 2px 2px;
  10326. box-sizing:border-box;
  10327. width:100%;
  10328. }
  10329. #u140599_text {
  10330. border-width:0px;
  10331. word-wrap:break-word;
  10332. text-transform:none;
  10333. visibility:hidden;
  10334. }
  10335. #u140600_input {
  10336. position:absolute;
  10337. left:0px;
  10338. top:0px;
  10339. width:297px;
  10340. height:41px;
  10341. padding:2px 2px 2px 2px;
  10342. font-family:'ArialMT', 'Arial', sans-serif;
  10343. font-weight:400;
  10344. font-style:normal;
  10345. font-size:14px;
  10346. letter-spacing:normal;
  10347. color:#000000;
  10348. vertical-align:none;
  10349. text-align:left;
  10350. text-transform:none;
  10351. background-color:transparent;
  10352. border-color:transparent;
  10353. }
  10354. #u140600_input.disabled {
  10355. position:absolute;
  10356. left:0px;
  10357. top:0px;
  10358. width:297px;
  10359. height:41px;
  10360. padding:2px 2px 2px 2px;
  10361. font-family:'ArialMT', 'Arial', sans-serif;
  10362. font-weight:400;
  10363. font-style:normal;
  10364. font-size:14px;
  10365. letter-spacing:normal;
  10366. color:#000000;
  10367. vertical-align:none;
  10368. text-align:left;
  10369. text-transform:none;
  10370. background-color:transparent;
  10371. border-color:transparent;
  10372. }
  10373. #u140600_div {
  10374. border-width:0px;
  10375. position:absolute;
  10376. left:0px;
  10377. top:0px;
  10378. width:297px;
  10379. height:41px;
  10380. background:inherit;
  10381. background-color:rgba(255, 255, 255, 0);
  10382. border:none;
  10383. border-radius:0px;
  10384. -moz-box-shadow:none;
  10385. -webkit-box-shadow:none;
  10386. box-shadow:none;
  10387. font-size:14px;
  10388. }
  10389. #u140600 {
  10390. border-width:0px;
  10391. position:absolute;
  10392. left:1484px;
  10393. top:171px;
  10394. width:297px;
  10395. height:41px;
  10396. display:flex;
  10397. font-size:14px;
  10398. }
  10399. #u140600 .text {
  10400. position:absolute;
  10401. align-self:flex-start;
  10402. padding:2px 2px 2px 2px;
  10403. box-sizing:border-box;
  10404. width:100%;
  10405. }
  10406. #u140600_div.disabled {
  10407. border-width:0px;
  10408. position:absolute;
  10409. left:0px;
  10410. top:0px;
  10411. width:297px;
  10412. height:41px;
  10413. background:inherit;
  10414. background-color:rgba(240, 240, 240, 1);
  10415. border:none;
  10416. border-radius:0px;
  10417. -moz-box-shadow:none;
  10418. -webkit-box-shadow:none;
  10419. box-shadow:none;
  10420. font-size:14px;
  10421. }
  10422. #u140600.disabled {
  10423. }
  10424. .u140600_input_option {
  10425. font-size:14px;
  10426. }
  10427. #u140601 {
  10428. border-width:0px;
  10429. position:absolute;
  10430. left:0px;
  10431. top:0px;
  10432. width:0px;
  10433. height:0px;
  10434. }
  10435. #u140602_div {
  10436. border-width:0px;
  10437. position:absolute;
  10438. left:0px;
  10439. top:0px;
  10440. width:316px;
  10441. height:431px;
  10442. background:inherit;
  10443. background-color:rgba(255, 255, 255, 1);
  10444. border:none;
  10445. border-radius:10px;
  10446. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10447. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10448. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10449. }
  10450. #u140602 {
  10451. border-width:0px;
  10452. position:absolute;
  10453. left:2412px;
  10454. top:169px;
  10455. width:316px;
  10456. height:431px;
  10457. display:flex;
  10458. }
  10459. #u140602 .text {
  10460. position:absolute;
  10461. align-self:center;
  10462. padding:2px 2px 2px 2px;
  10463. box-sizing:border-box;
  10464. width:100%;
  10465. }
  10466. #u140602_text {
  10467. border-width:0px;
  10468. word-wrap:break-word;
  10469. text-transform:none;
  10470. visibility:hidden;
  10471. }
  10472. #u140603_div {
  10473. border-width:0px;
  10474. position:absolute;
  10475. left:0px;
  10476. top:0px;
  10477. width:71px;
  10478. height:90px;
  10479. background:inherit;
  10480. background-color:rgba(255, 255, 255, 0);
  10481. border:none;
  10482. border-radius:0px;
  10483. -moz-box-shadow:none;
  10484. -webkit-box-shadow:none;
  10485. box-shadow:none;
  10486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10487. font-weight:400;
  10488. font-style:normal;
  10489. color:#000000;
  10490. line-height:30px;
  10491. }
  10492. #u140603 {
  10493. border-width:0px;
  10494. position:absolute;
  10495. left:2435px;
  10496. top:444px;
  10497. width:71px;
  10498. height:90px;
  10499. display:flex;
  10500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10501. font-weight:400;
  10502. font-style:normal;
  10503. color:#000000;
  10504. line-height:30px;
  10505. }
  10506. #u140603 .text {
  10507. position:absolute;
  10508. align-self:flex-start;
  10509. padding:0px 0px 0px 0px;
  10510. box-sizing:border-box;
  10511. width:100%;
  10512. }
  10513. #u140603_text {
  10514. border-width:0px;
  10515. white-space:nowrap;
  10516. text-transform:none;
  10517. }
  10518. #u140604_img {
  10519. border-width:0px;
  10520. position:absolute;
  10521. left:0px;
  10522. top:0px;
  10523. width:275px;
  10524. height:243px;
  10525. }
  10526. #u140604 {
  10527. border-width:0px;
  10528. position:absolute;
  10529. left:2432px;
  10530. top:190px;
  10531. width:275px;
  10532. height:243px;
  10533. display:flex;
  10534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10535. font-weight:400;
  10536. font-style:normal;
  10537. }
  10538. #u140604 .text {
  10539. position:absolute;
  10540. align-self:center;
  10541. padding:2px 2px 2px 2px;
  10542. box-sizing:border-box;
  10543. width:100%;
  10544. }
  10545. #u140604_text {
  10546. border-width:0px;
  10547. word-wrap:break-word;
  10548. text-transform:none;
  10549. }
  10550. #u140605_div {
  10551. border-width:0px;
  10552. position:absolute;
  10553. left:0px;
  10554. top:0px;
  10555. width:147px;
  10556. height:90px;
  10557. background:inherit;
  10558. background-color:rgba(255, 255, 255, 0);
  10559. border:none;
  10560. border-radius:0px;
  10561. -moz-box-shadow:none;
  10562. -webkit-box-shadow:none;
  10563. box-shadow:none;
  10564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10565. font-weight:400;
  10566. font-style:normal;
  10567. color:#000000;
  10568. line-height:30px;
  10569. }
  10570. #u140605 {
  10571. border-width:0px;
  10572. position:absolute;
  10573. left:2523px;
  10574. top:444px;
  10575. width:147px;
  10576. height:90px;
  10577. display:flex;
  10578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10579. font-weight:400;
  10580. font-style:normal;
  10581. color:#000000;
  10582. line-height:30px;
  10583. }
  10584. #u140605 .text {
  10585. position:absolute;
  10586. align-self:flex-start;
  10587. padding:0px 0px 0px 0px;
  10588. box-sizing:border-box;
  10589. width:100%;
  10590. }
  10591. #u140605_text {
  10592. border-width:0px;
  10593. white-space:nowrap;
  10594. text-transform:none;
  10595. }
  10596. #u140606_div {
  10597. border-width:0px;
  10598. position:absolute;
  10599. left:0px;
  10600. top:0px;
  10601. width:37px;
  10602. height:25px;
  10603. background:inherit;
  10604. background-color:rgba(255, 255, 255, 0);
  10605. border:none;
  10606. border-radius:0px;
  10607. -moz-box-shadow:none;
  10608. -webkit-box-shadow:none;
  10609. box-shadow:none;
  10610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10611. font-weight:400;
  10612. font-style:normal;
  10613. font-size:18px;
  10614. color:#0089FE;
  10615. line-height:25px;
  10616. }
  10617. #u140606 {
  10618. border-width:0px;
  10619. position:absolute;
  10620. left:2551px;
  10621. top:555px;
  10622. width:37px;
  10623. height:25px;
  10624. display:flex;
  10625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10626. font-weight:400;
  10627. font-style:normal;
  10628. font-size:18px;
  10629. color:#0089FE;
  10630. line-height:25px;
  10631. }
  10632. #u140606 .text {
  10633. position:absolute;
  10634. align-self:flex-start;
  10635. padding:0px 0px 0px 0px;
  10636. box-sizing:border-box;
  10637. width:100%;
  10638. }
  10639. #u140606_text {
  10640. border-width:0px;
  10641. white-space:nowrap;
  10642. text-transform:none;
  10643. }