styles.css 133 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1362px;
  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. #u35656_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u35656 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u35656 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u35656_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u35657_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u35657 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u35657 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u35657_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u35658 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u35659_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u35659 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u35659 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u35659_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u35660 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u35661_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u35661 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u35661 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u35661_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u35662_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u35662 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u35662 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u35662_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u35663 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u35664_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u35664 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u35664 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u35664_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u35665_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u35665 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u35665 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u35665_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u35666_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u35666 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u35666 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u35666_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u35667_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u35667 {
  314. border-width:0px;
  315. position:absolute;
  316. left:347px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u35667 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u35667_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u35668_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u35668 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u35668 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u35668_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u35669_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u35669 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u35669 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u35669_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u35670 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u35671_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u35671 {
  428. border-width:0px;
  429. position:absolute;
  430. left:69px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u35671 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u35671_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u35672_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u35672 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u35672 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u35672_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u35673 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u35674_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u35674 {
  510. border-width:0px;
  511. position:absolute;
  512. left:339px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u35674 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u35674_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u35675_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u35675 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u35675 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u35675_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u35676_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u35676 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u35676 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u35676_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u35677 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u35678_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u35678 {
  629. border-width:0px;
  630. position:absolute;
  631. left:251px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u35678 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u35678_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u35679_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u35679 {
  670. border-width:0px;
  671. position:absolute;
  672. left:245px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u35679 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u35679_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u35680 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u35681_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u35681 {
  711. border-width:0px;
  712. position:absolute;
  713. left:157px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u35681 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u35681_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u35682_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u35682 {
  752. border-width:0px;
  753. position:absolute;
  754. left:151px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u35682 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u35682_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u35683_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:735px;
  783. background:inherit;
  784. background-color:rgba(242, 242, 242, 0.996078431372549);
  785. border:none;
  786. border-top:0px;
  787. border-radius:35px;
  788. border-top-left-radius:0px;
  789. border-top-right-radius:0px;
  790. -moz-box-shadow:none;
  791. -webkit-box-shadow:none;
  792. box-shadow:none;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. }
  797. #u35683 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:106px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  806. font-weight:400;
  807. font-style:normal;
  808. }
  809. #u35683 .text {
  810. position:absolute;
  811. align-self:center;
  812. padding:2px 2px 2px 2px;
  813. box-sizing:border-box;
  814. width:100%;
  815. }
  816. #u35683_text {
  817. border-width:0px;
  818. word-wrap:break-word;
  819. text-transform:none;
  820. visibility:hidden;
  821. }
  822. #u35684_div {
  823. border-width:0px;
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:375px;
  828. height:40px;
  829. background:inherit;
  830. background-color:rgba(255, 255, 255, 1);
  831. box-sizing:border-box;
  832. border-width:1px;
  833. border-style:solid;
  834. border-color:rgba(215, 215, 215, 1);
  835. border-left:0px;
  836. border-top:0px;
  837. border-right:0px;
  838. border-radius:0px;
  839. border-bottom-right-radius:0px;
  840. border-bottom-left-radius:0px;
  841. -moz-box-shadow:none;
  842. -webkit-box-shadow:none;
  843. box-shadow:none;
  844. }
  845. #u35684 {
  846. border-width:0px;
  847. position:absolute;
  848. left:29px;
  849. top:67px;
  850. width:375px;
  851. height:40px;
  852. display:flex;
  853. }
  854. #u35684 .text {
  855. position:absolute;
  856. align-self:center;
  857. padding:2px 2px 2px 2px;
  858. box-sizing:border-box;
  859. width:100%;
  860. }
  861. #u35684_text {
  862. border-width:0px;
  863. word-wrap:break-word;
  864. text-transform:none;
  865. visibility:hidden;
  866. }
  867. #u35685_img {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:375px;
  873. height:44px;
  874. }
  875. #u35685 {
  876. border-width:0px;
  877. position:absolute;
  878. left:29px;
  879. top:24px;
  880. width:375px;
  881. height:44px;
  882. display:flex;
  883. }
  884. #u35685 .text {
  885. position:absolute;
  886. align-self:center;
  887. padding:2px 2px 2px 2px;
  888. box-sizing:border-box;
  889. width:100%;
  890. }
  891. #u35685_text {
  892. border-width:0px;
  893. word-wrap:break-word;
  894. text-transform:none;
  895. visibility:hidden;
  896. }
  897. #u35686 {
  898. border-width:0px;
  899. position:absolute;
  900. left:0px;
  901. top:0px;
  902. width:0px;
  903. height:0px;
  904. }
  905. #u35687_div {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:88px;
  911. height:32px;
  912. background:inherit;
  913. background-color:rgba(255, 255, 255, 1);
  914. box-sizing:border-box;
  915. border-width:1px;
  916. border-style:solid;
  917. border-color:rgba(242, 242, 242, 1);
  918. border-radius:33px;
  919. -moz-box-shadow:none;
  920. -webkit-box-shadow:none;
  921. box-shadow:none;
  922. }
  923. #u35687 {
  924. border-width:0px;
  925. position:absolute;
  926. left:309px;
  927. top:71px;
  928. width:88px;
  929. height:32px;
  930. display:flex;
  931. }
  932. #u35687 .text {
  933. position:absolute;
  934. align-self:center;
  935. padding:2px 2px 2px 2px;
  936. box-sizing:border-box;
  937. width:100%;
  938. }
  939. #u35687_text {
  940. border-width:0px;
  941. word-wrap:break-word;
  942. text-transform:none;
  943. visibility:hidden;
  944. }
  945. #u35688 {
  946. border-width:0px;
  947. position:absolute;
  948. left:0px;
  949. top:0px;
  950. width:0px;
  951. height:0px;
  952. }
  953. #u35689_img {
  954. border-width:0px;
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:18px;
  959. height:18px;
  960. }
  961. #u35689 {
  962. border-width:0px;
  963. position:absolute;
  964. left:372px;
  965. top:78px;
  966. width:18px;
  967. height:18px;
  968. display:flex;
  969. }
  970. #u35689 .text {
  971. position:absolute;
  972. align-self:center;
  973. padding:2px 2px 2px 2px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u35689_text {
  978. border-width:0px;
  979. word-wrap:break-word;
  980. text-transform:none;
  981. visibility:hidden;
  982. }
  983. #u35690_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:6px;
  989. height:6px;
  990. }
  991. #u35690 {
  992. border-width:0px;
  993. position:absolute;
  994. left:378px;
  995. top:84px;
  996. width:6px;
  997. height:6px;
  998. display:flex;
  999. }
  1000. #u35690 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u35690_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u35691 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:0px;
  1019. height:0px;
  1020. }
  1021. #u35692_img {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:0px;
  1025. top:0px;
  1026. width:5px;
  1027. height:5px;
  1028. }
  1029. #u35692 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:323px;
  1033. top:85px;
  1034. width:5px;
  1035. height:5px;
  1036. display:flex;
  1037. }
  1038. #u35692 .text {
  1039. position:absolute;
  1040. align-self:center;
  1041. padding:2px 2px 2px 2px;
  1042. box-sizing:border-box;
  1043. width:100%;
  1044. }
  1045. #u35692_text {
  1046. border-width:0px;
  1047. word-wrap:break-word;
  1048. text-transform:none;
  1049. visibility:hidden;
  1050. }
  1051. #u35693_img {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:5px;
  1057. height:5px;
  1058. }
  1059. #u35693 {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:339px;
  1063. top:85px;
  1064. width:5px;
  1065. height:5px;
  1066. display:flex;
  1067. }
  1068. #u35693 .text {
  1069. position:absolute;
  1070. align-self:center;
  1071. padding:2px 2px 2px 2px;
  1072. box-sizing:border-box;
  1073. width:100%;
  1074. }
  1075. #u35693_text {
  1076. border-width:0px;
  1077. word-wrap:break-word;
  1078. text-transform:none;
  1079. visibility:hidden;
  1080. }
  1081. #u35694_img {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:0px;
  1085. top:0px;
  1086. width:7px;
  1087. height:7px;
  1088. }
  1089. #u35694 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:330px;
  1093. top:84px;
  1094. width:7px;
  1095. height:7px;
  1096. display:flex;
  1097. }
  1098. #u35694 .text {
  1099. position:absolute;
  1100. align-self:center;
  1101. padding:2px 2px 2px 2px;
  1102. box-sizing:border-box;
  1103. width:100%;
  1104. }
  1105. #u35694_text {
  1106. border-width:0px;
  1107. word-wrap:break-word;
  1108. text-transform:none;
  1109. visibility:hidden;
  1110. }
  1111. #u35695_img {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:19px;
  1117. height:2px;
  1118. }
  1119. #u35695 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:347px;
  1123. top:87px;
  1124. width:18px;
  1125. height:1px;
  1126. display:flex;
  1127. -webkit-transform:rotate(90deg);
  1128. -moz-transform:rotate(90deg);
  1129. -ms-transform:rotate(90deg);
  1130. transform:rotate(90deg);
  1131. }
  1132. #u35695 .text {
  1133. position:absolute;
  1134. align-self:center;
  1135. padding:2px 2px 2px 2px;
  1136. box-sizing:border-box;
  1137. width:100%;
  1138. }
  1139. #u35695_text {
  1140. border-width:0px;
  1141. word-wrap:break-word;
  1142. text-transform:none;
  1143. visibility:hidden;
  1144. }
  1145. #u35696_div {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:65px;
  1151. height:22px;
  1152. background:inherit;
  1153. background-color:rgba(255, 255, 255, 0);
  1154. border:none;
  1155. border-radius:0px;
  1156. -moz-box-shadow:none;
  1157. -webkit-box-shadow:none;
  1158. box-shadow:none;
  1159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1160. font-weight:400;
  1161. font-style:normal;
  1162. font-size:16px;
  1163. color:#000000;
  1164. }
  1165. #u35696 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:174px;
  1169. top:78px;
  1170. width:65px;
  1171. height:22px;
  1172. display:flex;
  1173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1174. font-weight:400;
  1175. font-style:normal;
  1176. font-size:16px;
  1177. color:#000000;
  1178. }
  1179. #u35696 .text {
  1180. position:absolute;
  1181. align-self:flex-start;
  1182. padding:0px 0px 0px 0px;
  1183. box-sizing:border-box;
  1184. width:100%;
  1185. }
  1186. #u35696_text {
  1187. border-width:0px;
  1188. white-space:nowrap;
  1189. text-transform:none;
  1190. }
  1191. #u35697_div {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:0px;
  1195. top:0px;
  1196. width:12px;
  1197. height:12px;
  1198. background:inherit;
  1199. background-color:rgba(255, 255, 255, 0);
  1200. box-sizing:border-box;
  1201. border-width:2px;
  1202. border-style:solid;
  1203. border-color:rgba(51, 51, 51, 1);
  1204. border-right:0px;
  1205. border-bottom:0px;
  1206. border-radius:0px;
  1207. border-top-right-radius:0px;
  1208. border-bottom-left-radius:0px;
  1209. -moz-box-shadow:none;
  1210. -webkit-box-shadow:none;
  1211. box-shadow:none;
  1212. }
  1213. #u35697 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:46px;
  1217. top:81px;
  1218. width:12px;
  1219. height:12px;
  1220. display:flex;
  1221. -webkit-transform:rotate(315deg);
  1222. -moz-transform:rotate(315deg);
  1223. -ms-transform:rotate(315deg);
  1224. transform:rotate(315deg);
  1225. }
  1226. #u35697 .text {
  1227. position:absolute;
  1228. align-self:center;
  1229. padding:2px 2px 2px 2px;
  1230. box-sizing:border-box;
  1231. width:100%;
  1232. }
  1233. #u35697_text {
  1234. border-width:0px;
  1235. word-wrap:break-word;
  1236. text-transform:none;
  1237. visibility:hidden;
  1238. }
  1239. #u35698_img {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:23px;
  1245. height:23px;
  1246. }
  1247. #u35698 {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:73px;
  1251. top:76px;
  1252. width:23px;
  1253. height:23px;
  1254. display:flex;
  1255. }
  1256. #u35698 .text {
  1257. position:absolute;
  1258. align-self:center;
  1259. padding:2px 2px 2px 2px;
  1260. box-sizing:border-box;
  1261. width:100%;
  1262. }
  1263. #u35698_text {
  1264. border-width:0px;
  1265. word-wrap:break-word;
  1266. text-transform:none;
  1267. visibility:hidden;
  1268. }
  1269. #u35699 {
  1270. border-width:0px;
  1271. position:absolute;
  1272. left:0px;
  1273. top:0px;
  1274. width:0px;
  1275. height:0px;
  1276. }
  1277. #u35700_div {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:375px;
  1283. height:50px;
  1284. background:inherit;
  1285. background-color:rgba(255, 255, 255, 1);
  1286. box-sizing:border-box;
  1287. border-width:1px;
  1288. border-style:solid;
  1289. border-color:rgba(242, 242, 242, 1);
  1290. border-radius:26px;
  1291. border-top-left-radius:0px;
  1292. border-top-right-radius:0px;
  1293. -moz-box-shadow:none;
  1294. -webkit-box-shadow:none;
  1295. box-shadow:none;
  1296. }
  1297. #u35700 {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:29px;
  1301. top:791px;
  1302. width:375px;
  1303. height:50px;
  1304. display:flex;
  1305. }
  1306. #u35700 .text {
  1307. position:absolute;
  1308. align-self:center;
  1309. padding:2px 2px 2px 2px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u35700_text {
  1314. border-width:0px;
  1315. word-wrap:break-word;
  1316. text-transform:none;
  1317. visibility:hidden;
  1318. }
  1319. #u35701 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:0px;
  1325. height:0px;
  1326. }
  1327. #u35702_img {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:24px;
  1333. height:24px;
  1334. }
  1335. #u35702 {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:340px;
  1339. top:795px;
  1340. width:24px;
  1341. height:24px;
  1342. display:flex;
  1343. font-size:8px;
  1344. }
  1345. #u35702 .text {
  1346. position:absolute;
  1347. align-self:center;
  1348. padding:2px 2px 2px 2px;
  1349. box-sizing:border-box;
  1350. width:100%;
  1351. }
  1352. #u35702_text {
  1353. border-width:0px;
  1354. word-wrap:break-word;
  1355. text-transform:none;
  1356. }
  1357. #u35703_div {
  1358. border-width:0px;
  1359. position:absolute;
  1360. left:0px;
  1361. top:0px;
  1362. width:25px;
  1363. height:17px;
  1364. background:inherit;
  1365. background-color:rgba(255, 255, 255, 0);
  1366. border:none;
  1367. border-radius:0px;
  1368. -moz-box-shadow:none;
  1369. -webkit-box-shadow:none;
  1370. box-shadow:none;
  1371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1372. font-weight:400;
  1373. font-style:normal;
  1374. font-size:12px;
  1375. }
  1376. #u35703 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:340px;
  1380. top:820px;
  1381. width:25px;
  1382. height:17px;
  1383. display:flex;
  1384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1385. font-weight:400;
  1386. font-style:normal;
  1387. font-size:12px;
  1388. }
  1389. #u35703 .text {
  1390. position:absolute;
  1391. align-self:flex-start;
  1392. padding:0px 0px 0px 0px;
  1393. box-sizing:border-box;
  1394. width:100%;
  1395. }
  1396. #u35703_text {
  1397. border-width:0px;
  1398. white-space:nowrap;
  1399. text-transform:none;
  1400. }
  1401. #u35704 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:0px;
  1405. top:0px;
  1406. width:0px;
  1407. height:0px;
  1408. }
  1409. #u35705_div {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:0px;
  1413. top:0px;
  1414. width:25px;
  1415. height:17px;
  1416. background:inherit;
  1417. background-color:rgba(255, 255, 255, 0);
  1418. border:none;
  1419. border-radius:0px;
  1420. -moz-box-shadow:none;
  1421. -webkit-box-shadow:none;
  1422. box-shadow:none;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. font-size:12px;
  1427. }
  1428. #u35705 {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:205px;
  1432. top:820px;
  1433. width:25px;
  1434. height:17px;
  1435. display:flex;
  1436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1437. font-weight:400;
  1438. font-style:normal;
  1439. font-size:12px;
  1440. }
  1441. #u35705 .text {
  1442. position:absolute;
  1443. align-self:flex-start;
  1444. padding:0px 0px 0px 0px;
  1445. box-sizing:border-box;
  1446. width:100%;
  1447. }
  1448. #u35705_text {
  1449. border-width:0px;
  1450. white-space:nowrap;
  1451. text-transform:none;
  1452. }
  1453. #u35706_img {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:0px;
  1457. top:0px;
  1458. width:24px;
  1459. height:24px;
  1460. }
  1461. #u35706 {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:206px;
  1465. top:795px;
  1466. width:24px;
  1467. height:24px;
  1468. display:flex;
  1469. font-size:8px;
  1470. color:#FFFFFF;
  1471. }
  1472. #u35706 .text {
  1473. position:absolute;
  1474. align-self:center;
  1475. padding:2px 2px 2px 2px;
  1476. box-sizing:border-box;
  1477. width:100%;
  1478. }
  1479. #u35706_text {
  1480. border-width:0px;
  1481. word-wrap:break-word;
  1482. text-transform:none;
  1483. }
  1484. #u35707 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:0px;
  1488. top:0px;
  1489. width:0px;
  1490. height:0px;
  1491. }
  1492. #u35708_img {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:0px;
  1496. top:0px;
  1497. width:24px;
  1498. height:24px;
  1499. }
  1500. #u35708 {
  1501. border-width:0px;
  1502. position:absolute;
  1503. left:69px;
  1504. top:795px;
  1505. width:24px;
  1506. height:24px;
  1507. display:flex;
  1508. font-size:8px;
  1509. }
  1510. #u35708 .text {
  1511. position:absolute;
  1512. align-self:center;
  1513. padding:2px 2px 2px 2px;
  1514. box-sizing:border-box;
  1515. width:100%;
  1516. }
  1517. #u35708_text {
  1518. border-width:0px;
  1519. word-wrap:break-word;
  1520. text-transform:none;
  1521. }
  1522. #u35709_div {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:0px;
  1526. top:0px;
  1527. width:25px;
  1528. height:17px;
  1529. background:inherit;
  1530. background-color:rgba(255, 255, 255, 0);
  1531. border:none;
  1532. border-radius:0px;
  1533. -moz-box-shadow:none;
  1534. -webkit-box-shadow:none;
  1535. box-shadow:none;
  1536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1537. font-weight:400;
  1538. font-style:normal;
  1539. font-size:12px;
  1540. }
  1541. #u35709 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:69px;
  1545. top:820px;
  1546. width:25px;
  1547. height:17px;
  1548. display:flex;
  1549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:12px;
  1553. }
  1554. #u35709 .text {
  1555. position:absolute;
  1556. align-self:flex-start;
  1557. padding:0px 0px 0px 0px;
  1558. box-sizing:border-box;
  1559. width:100%;
  1560. }
  1561. #u35709_text {
  1562. border-width:0px;
  1563. white-space:nowrap;
  1564. text-transform:none;
  1565. }
  1566. #u35710 {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:0px;
  1572. height:0px;
  1573. }
  1574. #u35711_img {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:355px;
  1580. height:180px;
  1581. }
  1582. #u35711 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:217px;
  1587. width:355px;
  1588. height:180px;
  1589. display:flex;
  1590. }
  1591. #u35711 .text {
  1592. position:absolute;
  1593. align-self:center;
  1594. padding:2px 2px 2px 2px;
  1595. box-sizing:border-box;
  1596. width:100%;
  1597. }
  1598. #u35711_text {
  1599. border-width:0px;
  1600. word-wrap:break-word;
  1601. text-transform:none;
  1602. visibility:hidden;
  1603. }
  1604. #u35712_div {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:0px;
  1608. top:0px;
  1609. width:57px;
  1610. height:30px;
  1611. background:inherit;
  1612. background-color:rgba(255, 255, 255, 0);
  1613. border:none;
  1614. border-left:0px;
  1615. border-top:0px;
  1616. border-right:0px;
  1617. border-radius:0px;
  1618. border-bottom-right-radius:0px;
  1619. border-bottom-left-radius:0px;
  1620. -moz-box-shadow:none;
  1621. -webkit-box-shadow:none;
  1622. box-shadow:none;
  1623. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1624. font-weight:500;
  1625. font-style:normal;
  1626. font-size:14px;
  1627. line-height:30px;
  1628. }
  1629. #u35712 {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:55px;
  1633. top:223px;
  1634. width:57px;
  1635. height:30px;
  1636. display:flex;
  1637. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1638. font-weight:500;
  1639. font-style:normal;
  1640. font-size:14px;
  1641. line-height:30px;
  1642. }
  1643. #u35712 .text {
  1644. position:absolute;
  1645. align-self:flex-start;
  1646. padding:0px 0px 0px 0px;
  1647. box-sizing:border-box;
  1648. width:100%;
  1649. }
  1650. #u35712_text {
  1651. border-width:0px;
  1652. white-space:nowrap;
  1653. text-transform:none;
  1654. }
  1655. #u35713_div {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:325px;
  1661. height:100px;
  1662. background:inherit;
  1663. background-color:rgba(255, 255, 255, 0);
  1664. border:none;
  1665. border-left:0px;
  1666. border-top:0px;
  1667. border-right:0px;
  1668. border-radius:0px;
  1669. border-bottom-right-radius:0px;
  1670. border-bottom-left-radius:0px;
  1671. -moz-box-shadow:none;
  1672. -webkit-box-shadow:none;
  1673. box-shadow:none;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:12px;
  1678. line-height:20px;
  1679. }
  1680. #u35713 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:55px;
  1684. top:253px;
  1685. width:325px;
  1686. height:100px;
  1687. display:flex;
  1688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1689. font-weight:400;
  1690. font-style:normal;
  1691. font-size:12px;
  1692. line-height:20px;
  1693. }
  1694. #u35713 .text {
  1695. position:absolute;
  1696. align-self:flex-start;
  1697. padding:0px 0px 0px 0px;
  1698. box-sizing:border-box;
  1699. width:100%;
  1700. }
  1701. #u35713_text {
  1702. border-width:0px;
  1703. word-wrap:break-word;
  1704. text-transform:none;
  1705. }
  1706. #u35714_div {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:0px;
  1710. top:0px;
  1711. width:9px;
  1712. height:9px;
  1713. background:inherit;
  1714. background-color:rgba(255, 255, 255, 0);
  1715. box-sizing:border-box;
  1716. border-width:1px;
  1717. border-style:solid;
  1718. border-color:rgba(127, 127, 127, 1);
  1719. border-right:0px;
  1720. border-bottom:0px;
  1721. border-radius:0px;
  1722. border-top-right-radius:0px;
  1723. border-bottom-left-radius:0px;
  1724. -moz-box-shadow:none;
  1725. -webkit-box-shadow:none;
  1726. box-shadow:none;
  1727. }
  1728. #u35714 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:370px;
  1732. top:231px;
  1733. width:9px;
  1734. height:9px;
  1735. display:flex;
  1736. -webkit-transform:rotate(135deg);
  1737. -moz-transform:rotate(135deg);
  1738. -ms-transform:rotate(135deg);
  1739. transform:rotate(135deg);
  1740. }
  1741. #u35714 .text {
  1742. position:absolute;
  1743. align-self:center;
  1744. padding:2px 2px 2px 2px;
  1745. box-sizing:border-box;
  1746. width:100%;
  1747. }
  1748. #u35714_text {
  1749. border-width:0px;
  1750. word-wrap:break-word;
  1751. text-transform:none;
  1752. visibility:hidden;
  1753. }
  1754. #u35715_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:60px;
  1760. height:30px;
  1761. background:inherit;
  1762. background-color:rgba(255, 255, 255, 1);
  1763. box-sizing:border-box;
  1764. border-width:1px;
  1765. border-style:solid;
  1766. border-color:rgba(215, 215, 215, 1);
  1767. border-radius:63px;
  1768. -moz-box-shadow:none;
  1769. -webkit-box-shadow:none;
  1770. box-shadow:none;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:14px;
  1775. color:#555555;
  1776. }
  1777. #u35715 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:321px;
  1781. top:357px;
  1782. width:60px;
  1783. height:30px;
  1784. display:flex;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. color:#555555;
  1790. }
  1791. #u35715 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:2px 2px 2px 2px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u35715_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. }
  1803. #u35717_img {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:433px;
  1809. height:865px;
  1810. }
  1811. #u35717 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:463px;
  1815. top:0px;
  1816. width:433px;
  1817. height:865px;
  1818. display:flex;
  1819. }
  1820. #u35717 .text {
  1821. position:absolute;
  1822. align-self:center;
  1823. padding:2px 2px 2px 2px;
  1824. box-sizing:border-box;
  1825. width:100%;
  1826. }
  1827. #u35717_text {
  1828. border-width:0px;
  1829. word-wrap:break-word;
  1830. text-transform:none;
  1831. visibility:hidden;
  1832. }
  1833. #u35718_div {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:375px;
  1839. height:40px;
  1840. background:inherit;
  1841. background-color:rgba(255, 255, 255, 1);
  1842. border:none;
  1843. border-left:0px;
  1844. border-top:0px;
  1845. border-right:0px;
  1846. border-radius:0px;
  1847. border-bottom-right-radius:0px;
  1848. border-bottom-left-radius:0px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. }
  1853. #u35718 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:492px;
  1857. top:67px;
  1858. width:375px;
  1859. height:40px;
  1860. display:flex;
  1861. }
  1862. #u35718 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:2px 2px 2px 2px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u35718_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. visibility:hidden;
  1874. }
  1875. #u35719 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:0px;
  1881. height:0px;
  1882. }
  1883. #u35720_div {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:88px;
  1889. height:32px;
  1890. background:inherit;
  1891. background-color:rgba(255, 255, 255, 1);
  1892. box-sizing:border-box;
  1893. border-width:1px;
  1894. border-style:solid;
  1895. border-color:rgba(242, 242, 242, 1);
  1896. border-radius:33px;
  1897. -moz-box-shadow:none;
  1898. -webkit-box-shadow:none;
  1899. box-shadow:none;
  1900. }
  1901. #u35720 {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:772px;
  1905. top:71px;
  1906. width:88px;
  1907. height:32px;
  1908. display:flex;
  1909. }
  1910. #u35720 .text {
  1911. position:absolute;
  1912. align-self:center;
  1913. padding:2px 2px 2px 2px;
  1914. box-sizing:border-box;
  1915. width:100%;
  1916. }
  1917. #u35720_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. visibility:hidden;
  1922. }
  1923. #u35721 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:0px;
  1929. height:0px;
  1930. }
  1931. #u35722_img {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:18px;
  1937. height:18px;
  1938. }
  1939. #u35722 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:835px;
  1943. top:78px;
  1944. width:18px;
  1945. height:18px;
  1946. display:flex;
  1947. }
  1948. #u35722 .text {
  1949. position:absolute;
  1950. align-self:center;
  1951. padding:2px 2px 2px 2px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u35722_text {
  1956. border-width:0px;
  1957. word-wrap:break-word;
  1958. text-transform:none;
  1959. visibility:hidden;
  1960. }
  1961. #u35723_img {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:6px;
  1967. height:6px;
  1968. }
  1969. #u35723 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:841px;
  1973. top:84px;
  1974. width:6px;
  1975. height:6px;
  1976. display:flex;
  1977. }
  1978. #u35723 .text {
  1979. position:absolute;
  1980. align-self:center;
  1981. padding:2px 2px 2px 2px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u35723_text {
  1986. border-width:0px;
  1987. word-wrap:break-word;
  1988. text-transform:none;
  1989. visibility:hidden;
  1990. }
  1991. #u35724 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:0px;
  1997. height:0px;
  1998. }
  1999. #u35725_img {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:5px;
  2005. height:5px;
  2006. }
  2007. #u35725 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:786px;
  2011. top:85px;
  2012. width:5px;
  2013. height:5px;
  2014. display:flex;
  2015. }
  2016. #u35725 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:2px 2px 2px 2px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u35725_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. visibility:hidden;
  2028. }
  2029. #u35726_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:5px;
  2035. height:5px;
  2036. }
  2037. #u35726 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:802px;
  2041. top:85px;
  2042. width:5px;
  2043. height:5px;
  2044. display:flex;
  2045. }
  2046. #u35726 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u35726_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. visibility:hidden;
  2058. }
  2059. #u35727_img {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:7px;
  2065. height:7px;
  2066. }
  2067. #u35727 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:793px;
  2071. top:84px;
  2072. width:7px;
  2073. height:7px;
  2074. display:flex;
  2075. }
  2076. #u35727 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:2px 2px 2px 2px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u35727_text {
  2084. border-width:0px;
  2085. word-wrap:break-word;
  2086. text-transform:none;
  2087. visibility:hidden;
  2088. }
  2089. #u35728_img {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:0px;
  2093. top:0px;
  2094. width:19px;
  2095. height:2px;
  2096. }
  2097. #u35728 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:810px;
  2101. top:87px;
  2102. width:18px;
  2103. height:1px;
  2104. display:flex;
  2105. -webkit-transform:rotate(90deg);
  2106. -moz-transform:rotate(90deg);
  2107. -ms-transform:rotate(90deg);
  2108. transform:rotate(90deg);
  2109. }
  2110. #u35728 .text {
  2111. position:absolute;
  2112. align-self:center;
  2113. padding:2px 2px 2px 2px;
  2114. box-sizing:border-box;
  2115. width:100%;
  2116. }
  2117. #u35728_text {
  2118. border-width:0px;
  2119. word-wrap:break-word;
  2120. text-transform:none;
  2121. visibility:hidden;
  2122. }
  2123. #u35729_img {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:375px;
  2129. height:44px;
  2130. }
  2131. #u35729 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:492px;
  2135. top:24px;
  2136. width:375px;
  2137. height:44px;
  2138. display:flex;
  2139. }
  2140. #u35729 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:2px 2px 2px 2px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u35729_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. visibility:hidden;
  2152. }
  2153. #u35730_div {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:375px;
  2159. height:50px;
  2160. background:inherit;
  2161. background-color:rgba(255, 255, 255, 1);
  2162. box-sizing:border-box;
  2163. border-width:1px;
  2164. border-style:solid;
  2165. border-color:rgba(242, 242, 242, 1);
  2166. border-radius:26px;
  2167. border-top-left-radius:0px;
  2168. border-top-right-radius:0px;
  2169. -moz-box-shadow:none;
  2170. -webkit-box-shadow:none;
  2171. box-shadow:none;
  2172. }
  2173. #u35730 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:492px;
  2177. top:788px;
  2178. width:375px;
  2179. height:50px;
  2180. display:flex;
  2181. }
  2182. #u35730 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 2px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u35730_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. visibility:hidden;
  2194. }
  2195. #u35731 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:0px;
  2201. height:0px;
  2202. }
  2203. #u35732_img {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:24px;
  2209. height:24px;
  2210. }
  2211. #u35732 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:532px;
  2215. top:792px;
  2216. width:24px;
  2217. height:24px;
  2218. display:flex;
  2219. font-size:8px;
  2220. }
  2221. #u35732 .text {
  2222. position:absolute;
  2223. align-self:center;
  2224. padding:2px 2px 2px 2px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u35732_text {
  2229. border-width:0px;
  2230. word-wrap:break-word;
  2231. text-transform:none;
  2232. }
  2233. #u35733_div {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:25px;
  2239. height:17px;
  2240. background:inherit;
  2241. background-color:rgba(255, 255, 255, 0);
  2242. border:none;
  2243. border-radius:0px;
  2244. -moz-box-shadow:none;
  2245. -webkit-box-shadow:none;
  2246. box-shadow:none;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. }
  2252. #u35733 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:532px;
  2256. top:817px;
  2257. width:25px;
  2258. height:17px;
  2259. display:flex;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:12px;
  2264. }
  2265. #u35733 .text {
  2266. position:absolute;
  2267. align-self:flex-start;
  2268. padding:0px 0px 0px 0px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u35733_text {
  2273. border-width:0px;
  2274. white-space:nowrap;
  2275. text-transform:none;
  2276. }
  2277. #u35734 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:0px;
  2283. height:0px;
  2284. }
  2285. #u35735_img {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:24px;
  2291. height:24px;
  2292. }
  2293. #u35735 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:802px;
  2297. top:794px;
  2298. width:24px;
  2299. height:24px;
  2300. display:flex;
  2301. font-size:8px;
  2302. }
  2303. #u35735 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 2px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u35735_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. }
  2315. #u35736_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:25px;
  2321. height:17px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 0);
  2324. border:none;
  2325. border-radius:0px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. }
  2334. #u35736 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:802px;
  2338. top:819px;
  2339. width:25px;
  2340. height:17px;
  2341. display:flex;
  2342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:12px;
  2346. }
  2347. #u35736 .text {
  2348. position:absolute;
  2349. align-self:flex-start;
  2350. padding:0px 0px 0px 0px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u35736_text {
  2355. border-width:0px;
  2356. white-space:nowrap;
  2357. text-transform:none;
  2358. }
  2359. #u35737_div {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:375px;
  2365. height:681px;
  2366. background:inherit;
  2367. background-color:rgba(242, 242, 242, 0.462745098039216);
  2368. border:none;
  2369. border-radius:0px;
  2370. -moz-box-shadow:none;
  2371. -webkit-box-shadow:none;
  2372. box-shadow:none;
  2373. }
  2374. #u35737 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:492px;
  2378. top:107px;
  2379. width:375px;
  2380. height:681px;
  2381. display:flex;
  2382. }
  2383. #u35737 .text {
  2384. position:absolute;
  2385. align-self:center;
  2386. padding:2px 2px 2px 2px;
  2387. box-sizing:border-box;
  2388. width:100%;
  2389. }
  2390. #u35737_text {
  2391. border-width:0px;
  2392. word-wrap:break-word;
  2393. text-transform:none;
  2394. visibility:hidden;
  2395. }
  2396. #u35738 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:0px;
  2402. height:0px;
  2403. }
  2404. #u35739_img {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:24px;
  2410. height:24px;
  2411. }
  2412. #u35739 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:714px;
  2416. top:792px;
  2417. width:24px;
  2418. height:24px;
  2419. display:flex;
  2420. font-size:8px;
  2421. }
  2422. #u35739 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u35739_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. }
  2434. #u35740_div {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:37px;
  2440. height:17px;
  2441. background:inherit;
  2442. background-color:rgba(255, 255, 255, 0);
  2443. border:none;
  2444. border-radius:0px;
  2445. -moz-box-shadow:none;
  2446. -webkit-box-shadow:none;
  2447. box-shadow:none;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:12px;
  2452. }
  2453. #u35740 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:708px;
  2457. top:817px;
  2458. width:37px;
  2459. height:17px;
  2460. display:flex;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:12px;
  2465. }
  2466. #u35740 .text {
  2467. position:absolute;
  2468. align-self:flex-start;
  2469. padding:0px 0px 0px 0px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u35740_text {
  2474. border-width:0px;
  2475. white-space:nowrap;
  2476. text-transform:none;
  2477. }
  2478. #u35741 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:0px;
  2484. height:0px;
  2485. }
  2486. #u35742_img {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:24px;
  2492. height:24px;
  2493. }
  2494. #u35742 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:620px;
  2498. top:792px;
  2499. width:24px;
  2500. height:24px;
  2501. display:flex;
  2502. font-size:8px;
  2503. }
  2504. #u35742 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 2px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u35742_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. }
  2516. #u35743_div {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:37px;
  2522. height:17px;
  2523. background:inherit;
  2524. background-color:rgba(255, 255, 255, 0);
  2525. border:none;
  2526. border-radius:0px;
  2527. -moz-box-shadow:none;
  2528. -webkit-box-shadow:none;
  2529. box-shadow:none;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. }
  2535. #u35743 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:614px;
  2539. top:817px;
  2540. width:37px;
  2541. height:17px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:12px;
  2547. }
  2548. #u35743 .text {
  2549. position:absolute;
  2550. align-self:flex-start;
  2551. padding:0px 0px 0px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u35743_text {
  2556. border-width:0px;
  2557. white-space:nowrap;
  2558. text-transform:none;
  2559. }
  2560. #u35744_div {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:375px;
  2566. height:735px;
  2567. background:inherit;
  2568. background-color:rgba(242, 242, 242, 0.996078431372549);
  2569. border:none;
  2570. border-top:0px;
  2571. border-radius:35px;
  2572. border-top-left-radius:0px;
  2573. border-top-right-radius:0px;
  2574. -moz-box-shadow:none;
  2575. -webkit-box-shadow:none;
  2576. box-shadow:none;
  2577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. }
  2581. #u35744 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:492px;
  2585. top:106px;
  2586. width:375px;
  2587. height:735px;
  2588. display:flex;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. }
  2593. #u35744 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 2px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u35744_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. visibility:hidden;
  2605. }
  2606. #u35745_div {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:375px;
  2612. height:40px;
  2613. background:inherit;
  2614. background-color:rgba(255, 255, 255, 1);
  2615. box-sizing:border-box;
  2616. border-width:1px;
  2617. border-style:solid;
  2618. border-color:rgba(215, 215, 215, 1);
  2619. border-left:0px;
  2620. border-top:0px;
  2621. border-right:0px;
  2622. border-radius:0px;
  2623. border-bottom-right-radius:0px;
  2624. border-bottom-left-radius:0px;
  2625. -moz-box-shadow:none;
  2626. -webkit-box-shadow:none;
  2627. box-shadow:none;
  2628. }
  2629. #u35745 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:492px;
  2633. top:67px;
  2634. width:375px;
  2635. height:40px;
  2636. display:flex;
  2637. }
  2638. #u35745 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 2px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u35745_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u35746_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:375px;
  2657. height:44px;
  2658. }
  2659. #u35746 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:492px;
  2663. top:24px;
  2664. width:375px;
  2665. height:44px;
  2666. display:flex;
  2667. }
  2668. #u35746 .text {
  2669. position:absolute;
  2670. align-self:center;
  2671. padding:2px 2px 2px 2px;
  2672. box-sizing:border-box;
  2673. width:100%;
  2674. }
  2675. #u35746_text {
  2676. border-width:0px;
  2677. word-wrap:break-word;
  2678. text-transform:none;
  2679. visibility:hidden;
  2680. }
  2681. #u35747 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:0px;
  2687. height:0px;
  2688. }
  2689. #u35748_div {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:88px;
  2695. height:32px;
  2696. background:inherit;
  2697. background-color:rgba(255, 255, 255, 1);
  2698. box-sizing:border-box;
  2699. border-width:1px;
  2700. border-style:solid;
  2701. border-color:rgba(242, 242, 242, 1);
  2702. border-radius:33px;
  2703. -moz-box-shadow:none;
  2704. -webkit-box-shadow:none;
  2705. box-shadow:none;
  2706. }
  2707. #u35748 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:772px;
  2711. top:71px;
  2712. width:88px;
  2713. height:32px;
  2714. display:flex;
  2715. }
  2716. #u35748 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:2px 2px 2px 2px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u35748_text {
  2724. border-width:0px;
  2725. word-wrap:break-word;
  2726. text-transform:none;
  2727. visibility:hidden;
  2728. }
  2729. #u35749 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:0px;
  2735. height:0px;
  2736. }
  2737. #u35750_img {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:18px;
  2743. height:18px;
  2744. }
  2745. #u35750 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:835px;
  2749. top:78px;
  2750. width:18px;
  2751. height:18px;
  2752. display:flex;
  2753. }
  2754. #u35750 .text {
  2755. position:absolute;
  2756. align-self:center;
  2757. padding:2px 2px 2px 2px;
  2758. box-sizing:border-box;
  2759. width:100%;
  2760. }
  2761. #u35750_text {
  2762. border-width:0px;
  2763. word-wrap:break-word;
  2764. text-transform:none;
  2765. visibility:hidden;
  2766. }
  2767. #u35751_img {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:6px;
  2773. height:6px;
  2774. }
  2775. #u35751 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:841px;
  2779. top:84px;
  2780. width:6px;
  2781. height:6px;
  2782. display:flex;
  2783. }
  2784. #u35751 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u35751_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u35752 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:0px;
  2803. height:0px;
  2804. }
  2805. #u35753_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:5px;
  2811. height:5px;
  2812. }
  2813. #u35753 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:786px;
  2817. top:85px;
  2818. width:5px;
  2819. height:5px;
  2820. display:flex;
  2821. }
  2822. #u35753 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 2px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u35753_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u35754_img {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:5px;
  2841. height:5px;
  2842. }
  2843. #u35754 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:802px;
  2847. top:85px;
  2848. width:5px;
  2849. height:5px;
  2850. display:flex;
  2851. }
  2852. #u35754 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 2px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u35754_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. visibility:hidden;
  2864. }
  2865. #u35755_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:7px;
  2871. height:7px;
  2872. }
  2873. #u35755 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:793px;
  2877. top:84px;
  2878. width:7px;
  2879. height:7px;
  2880. display:flex;
  2881. }
  2882. #u35755 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 2px 2px 2px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u35755_text {
  2890. border-width:0px;
  2891. word-wrap:break-word;
  2892. text-transform:none;
  2893. visibility:hidden;
  2894. }
  2895. #u35756_img {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:19px;
  2901. height:2px;
  2902. }
  2903. #u35756 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:810px;
  2907. top:87px;
  2908. width:18px;
  2909. height:1px;
  2910. display:flex;
  2911. -webkit-transform:rotate(90deg);
  2912. -moz-transform:rotate(90deg);
  2913. -ms-transform:rotate(90deg);
  2914. transform:rotate(90deg);
  2915. }
  2916. #u35756 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u35756_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u35757_div {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:65px;
  2935. height:22px;
  2936. background:inherit;
  2937. background-color:rgba(255, 255, 255, 0);
  2938. border:none;
  2939. border-radius:0px;
  2940. -moz-box-shadow:none;
  2941. -webkit-box-shadow:none;
  2942. box-shadow:none;
  2943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2944. font-weight:400;
  2945. font-style:normal;
  2946. font-size:16px;
  2947. color:#000000;
  2948. }
  2949. #u35757 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:637px;
  2953. top:78px;
  2954. width:65px;
  2955. height:22px;
  2956. display:flex;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:16px;
  2961. color:#000000;
  2962. }
  2963. #u35757 .text {
  2964. position:absolute;
  2965. align-self:flex-start;
  2966. padding:0px 0px 0px 0px;
  2967. box-sizing:border-box;
  2968. width:100%;
  2969. }
  2970. #u35757_text {
  2971. border-width:0px;
  2972. white-space:nowrap;
  2973. text-transform:none;
  2974. }
  2975. #u35758_div {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:12px;
  2981. height:12px;
  2982. background:inherit;
  2983. background-color:rgba(255, 255, 255, 0);
  2984. box-sizing:border-box;
  2985. border-width:2px;
  2986. border-style:solid;
  2987. border-color:rgba(51, 51, 51, 1);
  2988. border-right:0px;
  2989. border-bottom:0px;
  2990. border-radius:0px;
  2991. border-top-right-radius:0px;
  2992. border-bottom-left-radius:0px;
  2993. -moz-box-shadow:none;
  2994. -webkit-box-shadow:none;
  2995. box-shadow:none;
  2996. }
  2997. #u35758 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:509px;
  3001. top:81px;
  3002. width:12px;
  3003. height:12px;
  3004. display:flex;
  3005. -webkit-transform:rotate(315deg);
  3006. -moz-transform:rotate(315deg);
  3007. -ms-transform:rotate(315deg);
  3008. transform:rotate(315deg);
  3009. }
  3010. #u35758 .text {
  3011. position:absolute;
  3012. align-self:center;
  3013. padding:2px 2px 2px 2px;
  3014. box-sizing:border-box;
  3015. width:100%;
  3016. }
  3017. #u35758_text {
  3018. border-width:0px;
  3019. word-wrap:break-word;
  3020. text-transform:none;
  3021. visibility:hidden;
  3022. }
  3023. #u35759_img {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:23px;
  3029. height:23px;
  3030. }
  3031. #u35759 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:536px;
  3035. top:76px;
  3036. width:23px;
  3037. height:23px;
  3038. display:flex;
  3039. }
  3040. #u35759 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 2px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u35759_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. visibility:hidden;
  3052. }
  3053. #u35760 {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:0px;
  3059. height:0px;
  3060. }
  3061. #u35761_img {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:355px;
  3067. height:180px;
  3068. }
  3069. #u35761 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:502px;
  3073. top:217px;
  3074. width:355px;
  3075. height:180px;
  3076. display:flex;
  3077. }
  3078. #u35761 .text {
  3079. position:absolute;
  3080. align-self:center;
  3081. padding:2px 2px 2px 2px;
  3082. box-sizing:border-box;
  3083. width:100%;
  3084. }
  3085. #u35761_text {
  3086. border-width:0px;
  3087. word-wrap:break-word;
  3088. text-transform:none;
  3089. visibility:hidden;
  3090. }
  3091. #u35762_div {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:57px;
  3097. height:30px;
  3098. background:inherit;
  3099. background-color:rgba(255, 255, 255, 0);
  3100. border:none;
  3101. border-left:0px;
  3102. border-top:0px;
  3103. border-right:0px;
  3104. border-radius:0px;
  3105. border-bottom-right-radius:0px;
  3106. border-bottom-left-radius:0px;
  3107. -moz-box-shadow:none;
  3108. -webkit-box-shadow:none;
  3109. box-shadow:none;
  3110. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3111. font-weight:500;
  3112. font-style:normal;
  3113. font-size:14px;
  3114. line-height:30px;
  3115. }
  3116. #u35762 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:518px;
  3120. top:223px;
  3121. width:57px;
  3122. height:30px;
  3123. display:flex;
  3124. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3125. font-weight:500;
  3126. font-style:normal;
  3127. font-size:14px;
  3128. line-height:30px;
  3129. }
  3130. #u35762 .text {
  3131. position:absolute;
  3132. align-self:flex-start;
  3133. padding:0px 0px 0px 0px;
  3134. box-sizing:border-box;
  3135. width:100%;
  3136. }
  3137. #u35762_text {
  3138. border-width:0px;
  3139. white-space:nowrap;
  3140. text-transform:none;
  3141. }
  3142. #u35763_div {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:325px;
  3148. height:100px;
  3149. background:inherit;
  3150. background-color:rgba(255, 255, 255, 0);
  3151. border:none;
  3152. border-left:0px;
  3153. border-top:0px;
  3154. border-right:0px;
  3155. border-radius:0px;
  3156. border-bottom-right-radius:0px;
  3157. border-bottom-left-radius:0px;
  3158. -moz-box-shadow:none;
  3159. -webkit-box-shadow:none;
  3160. box-shadow:none;
  3161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3162. font-weight:400;
  3163. font-style:normal;
  3164. font-size:12px;
  3165. line-height:20px;
  3166. }
  3167. #u35763 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:518px;
  3171. top:253px;
  3172. width:325px;
  3173. height:100px;
  3174. display:flex;
  3175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:12px;
  3179. line-height:20px;
  3180. }
  3181. #u35763 .text {
  3182. position:absolute;
  3183. align-self:flex-start;
  3184. padding:0px 0px 0px 0px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u35763_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. }
  3193. #u35764_div {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:9px;
  3199. height:9px;
  3200. background:inherit;
  3201. background-color:rgba(255, 255, 255, 0);
  3202. box-sizing:border-box;
  3203. border-width:1px;
  3204. border-style:solid;
  3205. border-color:rgba(127, 127, 127, 1);
  3206. border-right:0px;
  3207. border-bottom:0px;
  3208. border-radius:0px;
  3209. border-top-right-radius:0px;
  3210. border-bottom-left-radius:0px;
  3211. -moz-box-shadow:none;
  3212. -webkit-box-shadow:none;
  3213. box-shadow:none;
  3214. }
  3215. #u35764 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:833px;
  3219. top:231px;
  3220. width:9px;
  3221. height:9px;
  3222. display:flex;
  3223. -webkit-transform:rotate(135deg);
  3224. -moz-transform:rotate(135deg);
  3225. -ms-transform:rotate(135deg);
  3226. transform:rotate(135deg);
  3227. }
  3228. #u35764 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 2px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u35764_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u35765_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:60px;
  3247. height:30px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 255, 1);
  3250. box-sizing:border-box;
  3251. border-width:1px;
  3252. border-style:solid;
  3253. border-color:rgba(215, 215, 215, 1);
  3254. border-radius:63px;
  3255. -moz-box-shadow:none;
  3256. -webkit-box-shadow:none;
  3257. box-shadow:none;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:14px;
  3262. color:#555555;
  3263. }
  3264. #u35765 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:784px;
  3268. top:357px;
  3269. width:60px;
  3270. height:30px;
  3271. display:flex;
  3272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3273. font-weight:400;
  3274. font-style:normal;
  3275. font-size:14px;
  3276. color:#555555;
  3277. }
  3278. #u35765 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 2px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u35765_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. }
  3290. #u35766_div {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:43px;
  3296. height:11px;
  3297. background:inherit;
  3298. background-color:rgba(217, 0, 27, 1);
  3299. border:none;
  3300. border-radius:7px;
  3301. -moz-box-shadow:none;
  3302. -webkit-box-shadow:none;
  3303. box-shadow:none;
  3304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3305. font-weight:400;
  3306. font-style:normal;
  3307. font-size:8px;
  3308. color:#FFFFFF;
  3309. text-align:center;
  3310. }
  3311. #u35766 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:582px;
  3315. top:233px;
  3316. width:43px;
  3317. height:11px;
  3318. display:flex;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:8px;
  3323. color:#FFFFFF;
  3324. text-align:center;
  3325. }
  3326. #u35766 .text {
  3327. position:absolute;
  3328. align-self:flex-start;
  3329. padding:0px 0px 0px 0px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u35766_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. }
  3338. #u35768_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:433px;
  3344. height:865px;
  3345. }
  3346. #u35768 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:929px;
  3350. top:0px;
  3351. width:433px;
  3352. height:865px;
  3353. display:flex;
  3354. }
  3355. #u35768 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 2px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u35768_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. visibility:hidden;
  3367. }
  3368. #u35769_div {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:375px;
  3374. height:40px;
  3375. background:inherit;
  3376. background-color:rgba(255, 255, 255, 1);
  3377. border:none;
  3378. border-left:0px;
  3379. border-top:0px;
  3380. border-right:0px;
  3381. border-radius:0px;
  3382. border-bottom-right-radius:0px;
  3383. border-bottom-left-radius:0px;
  3384. -moz-box-shadow:none;
  3385. -webkit-box-shadow:none;
  3386. box-shadow:none;
  3387. }
  3388. #u35769 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:958px;
  3392. top:67px;
  3393. width:375px;
  3394. height:40px;
  3395. display:flex;
  3396. }
  3397. #u35769 .text {
  3398. position:absolute;
  3399. align-self:center;
  3400. padding:2px 2px 2px 2px;
  3401. box-sizing:border-box;
  3402. width:100%;
  3403. }
  3404. #u35769_text {
  3405. border-width:0px;
  3406. word-wrap:break-word;
  3407. text-transform:none;
  3408. visibility:hidden;
  3409. }
  3410. #u35770 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:0px;
  3416. height:0px;
  3417. }
  3418. #u35771_div {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:88px;
  3424. height:32px;
  3425. background:inherit;
  3426. background-color:rgba(255, 255, 255, 1);
  3427. box-sizing:border-box;
  3428. border-width:1px;
  3429. border-style:solid;
  3430. border-color:rgba(242, 242, 242, 1);
  3431. border-radius:33px;
  3432. -moz-box-shadow:none;
  3433. -webkit-box-shadow:none;
  3434. box-shadow:none;
  3435. }
  3436. #u35771 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:1238px;
  3440. top:71px;
  3441. width:88px;
  3442. height:32px;
  3443. display:flex;
  3444. }
  3445. #u35771 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 2px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u35771_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u35772 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:0px;
  3464. height:0px;
  3465. }
  3466. #u35773_img {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:18px;
  3472. height:18px;
  3473. }
  3474. #u35773 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:1301px;
  3478. top:78px;
  3479. width:18px;
  3480. height:18px;
  3481. display:flex;
  3482. }
  3483. #u35773 .text {
  3484. position:absolute;
  3485. align-self:center;
  3486. padding:2px 2px 2px 2px;
  3487. box-sizing:border-box;
  3488. width:100%;
  3489. }
  3490. #u35773_text {
  3491. border-width:0px;
  3492. word-wrap:break-word;
  3493. text-transform:none;
  3494. visibility:hidden;
  3495. }
  3496. #u35774_img {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:0px;
  3501. width:6px;
  3502. height:6px;
  3503. }
  3504. #u35774 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:1307px;
  3508. top:84px;
  3509. width:6px;
  3510. height:6px;
  3511. display:flex;
  3512. }
  3513. #u35774 .text {
  3514. position:absolute;
  3515. align-self:center;
  3516. padding:2px 2px 2px 2px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u35774_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. visibility:hidden;
  3525. }
  3526. #u35775 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:0px;
  3532. height:0px;
  3533. }
  3534. #u35776_img {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:5px;
  3540. height:5px;
  3541. }
  3542. #u35776 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:1252px;
  3546. top:85px;
  3547. width:5px;
  3548. height:5px;
  3549. display:flex;
  3550. }
  3551. #u35776 .text {
  3552. position:absolute;
  3553. align-self:center;
  3554. padding:2px 2px 2px 2px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u35776_text {
  3559. border-width:0px;
  3560. word-wrap:break-word;
  3561. text-transform:none;
  3562. visibility:hidden;
  3563. }
  3564. #u35777_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:5px;
  3570. height:5px;
  3571. }
  3572. #u35777 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:1268px;
  3576. top:85px;
  3577. width:5px;
  3578. height:5px;
  3579. display:flex;
  3580. }
  3581. #u35777 .text {
  3582. position:absolute;
  3583. align-self:center;
  3584. padding:2px 2px 2px 2px;
  3585. box-sizing:border-box;
  3586. width:100%;
  3587. }
  3588. #u35777_text {
  3589. border-width:0px;
  3590. word-wrap:break-word;
  3591. text-transform:none;
  3592. visibility:hidden;
  3593. }
  3594. #u35778_img {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:7px;
  3600. height:7px;
  3601. }
  3602. #u35778 {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:1259px;
  3606. top:84px;
  3607. width:7px;
  3608. height:7px;
  3609. display:flex;
  3610. }
  3611. #u35778 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 2px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u35778_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u35779_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:19px;
  3630. height:2px;
  3631. }
  3632. #u35779 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:1276px;
  3636. top:87px;
  3637. width:18px;
  3638. height:1px;
  3639. display:flex;
  3640. -webkit-transform:rotate(90deg);
  3641. -moz-transform:rotate(90deg);
  3642. -ms-transform:rotate(90deg);
  3643. transform:rotate(90deg);
  3644. }
  3645. #u35779 .text {
  3646. position:absolute;
  3647. align-self:center;
  3648. padding:2px 2px 2px 2px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u35779_text {
  3653. border-width:0px;
  3654. word-wrap:break-word;
  3655. text-transform:none;
  3656. visibility:hidden;
  3657. }
  3658. #u35780_img {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:375px;
  3664. height:44px;
  3665. }
  3666. #u35780 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:958px;
  3670. top:24px;
  3671. width:375px;
  3672. height:44px;
  3673. display:flex;
  3674. }
  3675. #u35780 .text {
  3676. position:absolute;
  3677. align-self:center;
  3678. padding:2px 2px 2px 2px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u35780_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u35781_div {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:375px;
  3694. height:50px;
  3695. background:inherit;
  3696. background-color:rgba(255, 255, 255, 1);
  3697. box-sizing:border-box;
  3698. border-width:1px;
  3699. border-style:solid;
  3700. border-color:rgba(242, 242, 242, 1);
  3701. border-radius:26px;
  3702. border-top-left-radius:0px;
  3703. border-top-right-radius:0px;
  3704. -moz-box-shadow:none;
  3705. -webkit-box-shadow:none;
  3706. box-shadow:none;
  3707. }
  3708. #u35781 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:958px;
  3712. top:788px;
  3713. width:375px;
  3714. height:50px;
  3715. display:flex;
  3716. }
  3717. #u35781 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:2px 2px 2px 2px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u35781_text {
  3725. border-width:0px;
  3726. word-wrap:break-word;
  3727. text-transform:none;
  3728. visibility:hidden;
  3729. }
  3730. #u35782 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:0px;
  3736. height:0px;
  3737. }
  3738. #u35783_img {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:24px;
  3744. height:24px;
  3745. }
  3746. #u35783 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:998px;
  3750. top:792px;
  3751. width:24px;
  3752. height:24px;
  3753. display:flex;
  3754. font-size:8px;
  3755. }
  3756. #u35783 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 2px 2px 2px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u35783_text {
  3764. border-width:0px;
  3765. word-wrap:break-word;
  3766. text-transform:none;
  3767. }
  3768. #u35784_div {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:25px;
  3774. height:17px;
  3775. background:inherit;
  3776. background-color:rgba(255, 255, 255, 0);
  3777. border:none;
  3778. border-radius:0px;
  3779. -moz-box-shadow:none;
  3780. -webkit-box-shadow:none;
  3781. box-shadow:none;
  3782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3783. font-weight:400;
  3784. font-style:normal;
  3785. font-size:12px;
  3786. }
  3787. #u35784 {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:998px;
  3791. top:817px;
  3792. width:25px;
  3793. height:17px;
  3794. display:flex;
  3795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3796. font-weight:400;
  3797. font-style:normal;
  3798. font-size:12px;
  3799. }
  3800. #u35784 .text {
  3801. position:absolute;
  3802. align-self:flex-start;
  3803. padding:0px 0px 0px 0px;
  3804. box-sizing:border-box;
  3805. width:100%;
  3806. }
  3807. #u35784_text {
  3808. border-width:0px;
  3809. white-space:nowrap;
  3810. text-transform:none;
  3811. }
  3812. #u35785 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:0px;
  3818. height:0px;
  3819. }
  3820. #u35786_img {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:24px;
  3826. height:24px;
  3827. }
  3828. #u35786 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:1268px;
  3832. top:794px;
  3833. width:24px;
  3834. height:24px;
  3835. display:flex;
  3836. font-size:8px;
  3837. }
  3838. #u35786 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 2px 2px 2px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u35786_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. }
  3850. #u35787_div {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:25px;
  3856. height:17px;
  3857. background:inherit;
  3858. background-color:rgba(255, 255, 255, 0);
  3859. border:none;
  3860. border-radius:0px;
  3861. -moz-box-shadow:none;
  3862. -webkit-box-shadow:none;
  3863. box-shadow:none;
  3864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:12px;
  3868. }
  3869. #u35787 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:1268px;
  3873. top:819px;
  3874. width:25px;
  3875. height:17px;
  3876. display:flex;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:12px;
  3881. }
  3882. #u35787 .text {
  3883. position:absolute;
  3884. align-self:flex-start;
  3885. padding:0px 0px 0px 0px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u35787_text {
  3890. border-width:0px;
  3891. white-space:nowrap;
  3892. text-transform:none;
  3893. }
  3894. #u35788_div {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:375px;
  3900. height:681px;
  3901. background:inherit;
  3902. background-color:rgba(242, 242, 242, 0.462745098039216);
  3903. border:none;
  3904. border-radius:0px;
  3905. -moz-box-shadow:none;
  3906. -webkit-box-shadow:none;
  3907. box-shadow:none;
  3908. }
  3909. #u35788 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:958px;
  3913. top:107px;
  3914. width:375px;
  3915. height:681px;
  3916. display:flex;
  3917. }
  3918. #u35788 .text {
  3919. position:absolute;
  3920. align-self:center;
  3921. padding:2px 2px 2px 2px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u35788_text {
  3926. border-width:0px;
  3927. word-wrap:break-word;
  3928. text-transform:none;
  3929. visibility:hidden;
  3930. }
  3931. #u35789 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:0px;
  3937. height:0px;
  3938. }
  3939. #u35790_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:24px;
  3945. height:24px;
  3946. }
  3947. #u35790 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:1180px;
  3951. top:792px;
  3952. width:24px;
  3953. height:24px;
  3954. display:flex;
  3955. font-size:8px;
  3956. }
  3957. #u35790 .text {
  3958. position:absolute;
  3959. align-self:center;
  3960. padding:2px 2px 2px 2px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u35790_text {
  3965. border-width:0px;
  3966. word-wrap:break-word;
  3967. text-transform:none;
  3968. }
  3969. #u35791_div {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:37px;
  3975. height:17px;
  3976. background:inherit;
  3977. background-color:rgba(255, 255, 255, 0);
  3978. border:none;
  3979. border-radius:0px;
  3980. -moz-box-shadow:none;
  3981. -webkit-box-shadow:none;
  3982. box-shadow:none;
  3983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3984. font-weight:400;
  3985. font-style:normal;
  3986. font-size:12px;
  3987. }
  3988. #u35791 {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:1174px;
  3992. top:817px;
  3993. width:37px;
  3994. height:17px;
  3995. display:flex;
  3996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. font-size:12px;
  4000. }
  4001. #u35791 .text {
  4002. position:absolute;
  4003. align-self:flex-start;
  4004. padding:0px 0px 0px 0px;
  4005. box-sizing:border-box;
  4006. width:100%;
  4007. }
  4008. #u35791_text {
  4009. border-width:0px;
  4010. white-space:nowrap;
  4011. text-transform:none;
  4012. }
  4013. #u35792 {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:0px;
  4019. height:0px;
  4020. }
  4021. #u35793_img {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:24px;
  4027. height:24px;
  4028. }
  4029. #u35793 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:1086px;
  4033. top:792px;
  4034. width:24px;
  4035. height:24px;
  4036. display:flex;
  4037. font-size:8px;
  4038. }
  4039. #u35793 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 2px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u35793_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. }
  4051. #u35794_div {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:37px;
  4057. height:17px;
  4058. background:inherit;
  4059. background-color:rgba(255, 255, 255, 0);
  4060. border:none;
  4061. border-radius:0px;
  4062. -moz-box-shadow:none;
  4063. -webkit-box-shadow:none;
  4064. box-shadow:none;
  4065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4066. font-weight:400;
  4067. font-style:normal;
  4068. font-size:12px;
  4069. }
  4070. #u35794 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:1080px;
  4074. top:817px;
  4075. width:37px;
  4076. height:17px;
  4077. display:flex;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:12px;
  4082. }
  4083. #u35794 .text {
  4084. position:absolute;
  4085. align-self:flex-start;
  4086. padding:0px 0px 0px 0px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u35794_text {
  4091. border-width:0px;
  4092. white-space:nowrap;
  4093. text-transform:none;
  4094. }
  4095. #u35795_div {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:375px;
  4101. height:735px;
  4102. background:inherit;
  4103. background-color:rgba(242, 242, 242, 0.996078431372549);
  4104. border:none;
  4105. border-top:0px;
  4106. border-radius:35px;
  4107. border-top-left-radius:0px;
  4108. border-top-right-radius:0px;
  4109. -moz-box-shadow:none;
  4110. -webkit-box-shadow:none;
  4111. box-shadow:none;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. }
  4116. #u35795 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:958px;
  4120. top:106px;
  4121. width:375px;
  4122. height:735px;
  4123. display:flex;
  4124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. }
  4128. #u35795 .text {
  4129. position:absolute;
  4130. align-self:center;
  4131. padding:2px 2px 2px 2px;
  4132. box-sizing:border-box;
  4133. width:100%;
  4134. }
  4135. #u35795_text {
  4136. border-width:0px;
  4137. word-wrap:break-word;
  4138. text-transform:none;
  4139. visibility:hidden;
  4140. }
  4141. #u35796_div {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:375px;
  4147. height:40px;
  4148. background:inherit;
  4149. background-color:rgba(255, 255, 255, 1);
  4150. box-sizing:border-box;
  4151. border-width:1px;
  4152. border-style:solid;
  4153. border-color:rgba(215, 215, 215, 1);
  4154. border-left:0px;
  4155. border-top:0px;
  4156. border-right:0px;
  4157. border-radius:0px;
  4158. border-bottom-right-radius:0px;
  4159. border-bottom-left-radius:0px;
  4160. -moz-box-shadow:none;
  4161. -webkit-box-shadow:none;
  4162. box-shadow:none;
  4163. }
  4164. #u35796 {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:958px;
  4168. top:67px;
  4169. width:375px;
  4170. height:40px;
  4171. display:flex;
  4172. }
  4173. #u35796 .text {
  4174. position:absolute;
  4175. align-self:center;
  4176. padding:2px 2px 2px 2px;
  4177. box-sizing:border-box;
  4178. width:100%;
  4179. }
  4180. #u35796_text {
  4181. border-width:0px;
  4182. word-wrap:break-word;
  4183. text-transform:none;
  4184. visibility:hidden;
  4185. }
  4186. #u35797_img {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:375px;
  4192. height:44px;
  4193. }
  4194. #u35797 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:958px;
  4198. top:24px;
  4199. width:375px;
  4200. height:44px;
  4201. display:flex;
  4202. }
  4203. #u35797 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 2px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u35797_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u35798 {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:0px;
  4222. height:0px;
  4223. }
  4224. #u35799_div {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:88px;
  4230. height:32px;
  4231. background:inherit;
  4232. background-color:rgba(255, 255, 255, 1);
  4233. box-sizing:border-box;
  4234. border-width:1px;
  4235. border-style:solid;
  4236. border-color:rgba(242, 242, 242, 1);
  4237. border-radius:33px;
  4238. -moz-box-shadow:none;
  4239. -webkit-box-shadow:none;
  4240. box-shadow:none;
  4241. }
  4242. #u35799 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:1238px;
  4246. top:71px;
  4247. width:88px;
  4248. height:32px;
  4249. display:flex;
  4250. }
  4251. #u35799 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 2px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u35799_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u35800 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:0px;
  4270. height:0px;
  4271. }
  4272. #u35801_img {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:18px;
  4278. height:18px;
  4279. }
  4280. #u35801 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:1301px;
  4284. top:78px;
  4285. width:18px;
  4286. height:18px;
  4287. display:flex;
  4288. }
  4289. #u35801 .text {
  4290. position:absolute;
  4291. align-self:center;
  4292. padding:2px 2px 2px 2px;
  4293. box-sizing:border-box;
  4294. width:100%;
  4295. }
  4296. #u35801_text {
  4297. border-width:0px;
  4298. word-wrap:break-word;
  4299. text-transform:none;
  4300. visibility:hidden;
  4301. }
  4302. #u35802_img {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:0px;
  4306. top:0px;
  4307. width:6px;
  4308. height:6px;
  4309. }
  4310. #u35802 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:1307px;
  4314. top:84px;
  4315. width:6px;
  4316. height:6px;
  4317. display:flex;
  4318. }
  4319. #u35802 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 2px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u35802_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. visibility:hidden;
  4331. }
  4332. #u35803 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:0px;
  4338. height:0px;
  4339. }
  4340. #u35804_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:5px;
  4346. height:5px;
  4347. }
  4348. #u35804 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:1252px;
  4352. top:85px;
  4353. width:5px;
  4354. height:5px;
  4355. display:flex;
  4356. }
  4357. #u35804 .text {
  4358. position:absolute;
  4359. align-self:center;
  4360. padding:2px 2px 2px 2px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u35804_text {
  4365. border-width:0px;
  4366. word-wrap:break-word;
  4367. text-transform:none;
  4368. visibility:hidden;
  4369. }
  4370. #u35805_img {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:5px;
  4376. height:5px;
  4377. }
  4378. #u35805 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:1268px;
  4382. top:85px;
  4383. width:5px;
  4384. height:5px;
  4385. display:flex;
  4386. }
  4387. #u35805 .text {
  4388. position:absolute;
  4389. align-self:center;
  4390. padding:2px 2px 2px 2px;
  4391. box-sizing:border-box;
  4392. width:100%;
  4393. }
  4394. #u35805_text {
  4395. border-width:0px;
  4396. word-wrap:break-word;
  4397. text-transform:none;
  4398. visibility:hidden;
  4399. }
  4400. #u35806_img {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:0px;
  4404. top:0px;
  4405. width:7px;
  4406. height:7px;
  4407. }
  4408. #u35806 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:1259px;
  4412. top:84px;
  4413. width:7px;
  4414. height:7px;
  4415. display:flex;
  4416. }
  4417. #u35806 .text {
  4418. position:absolute;
  4419. align-self:center;
  4420. padding:2px 2px 2px 2px;
  4421. box-sizing:border-box;
  4422. width:100%;
  4423. }
  4424. #u35806_text {
  4425. border-width:0px;
  4426. word-wrap:break-word;
  4427. text-transform:none;
  4428. visibility:hidden;
  4429. }
  4430. #u35807_img {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:19px;
  4436. height:2px;
  4437. }
  4438. #u35807 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:1276px;
  4442. top:87px;
  4443. width:18px;
  4444. height:1px;
  4445. display:flex;
  4446. -webkit-transform:rotate(90deg);
  4447. -moz-transform:rotate(90deg);
  4448. -ms-transform:rotate(90deg);
  4449. transform:rotate(90deg);
  4450. }
  4451. #u35807 .text {
  4452. position:absolute;
  4453. align-self:center;
  4454. padding:2px 2px 2px 2px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u35807_text {
  4459. border-width:0px;
  4460. word-wrap:break-word;
  4461. text-transform:none;
  4462. visibility:hidden;
  4463. }
  4464. #u35808_div {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:65px;
  4470. height:22px;
  4471. background:inherit;
  4472. background-color:rgba(255, 255, 255, 0);
  4473. border:none;
  4474. border-radius:0px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:16px;
  4482. color:#000000;
  4483. }
  4484. #u35808 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:1103px;
  4488. top:78px;
  4489. width:65px;
  4490. height:22px;
  4491. display:flex;
  4492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4493. font-weight:400;
  4494. font-style:normal;
  4495. font-size:16px;
  4496. color:#000000;
  4497. }
  4498. #u35808 .text {
  4499. position:absolute;
  4500. align-self:flex-start;
  4501. padding:0px 0px 0px 0px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u35808_text {
  4506. border-width:0px;
  4507. white-space:nowrap;
  4508. text-transform:none;
  4509. }
  4510. #u35809_div {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:12px;
  4516. height:12px;
  4517. background:inherit;
  4518. background-color:rgba(255, 255, 255, 0);
  4519. box-sizing:border-box;
  4520. border-width:2px;
  4521. border-style:solid;
  4522. border-color:rgba(51, 51, 51, 1);
  4523. border-right:0px;
  4524. border-bottom:0px;
  4525. border-radius:0px;
  4526. border-top-right-radius:0px;
  4527. border-bottom-left-radius:0px;
  4528. -moz-box-shadow:none;
  4529. -webkit-box-shadow:none;
  4530. box-shadow:none;
  4531. }
  4532. #u35809 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:975px;
  4536. top:81px;
  4537. width:12px;
  4538. height:12px;
  4539. display:flex;
  4540. -webkit-transform:rotate(315deg);
  4541. -moz-transform:rotate(315deg);
  4542. -ms-transform:rotate(315deg);
  4543. transform:rotate(315deg);
  4544. }
  4545. #u35809 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:2px 2px 2px 2px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u35809_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. visibility:hidden;
  4557. }
  4558. #u35810_img {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:0px;
  4562. top:0px;
  4563. width:23px;
  4564. height:23px;
  4565. }
  4566. #u35810 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:1002px;
  4570. top:76px;
  4571. width:23px;
  4572. height:23px;
  4573. display:flex;
  4574. }
  4575. #u35810 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 2px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u35810_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u35811 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:0px;
  4594. height:0px;
  4595. }
  4596. #u35812_img {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:0px;
  4601. width:355px;
  4602. height:150px;
  4603. }
  4604. #u35812 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:968px;
  4608. top:217px;
  4609. width:355px;
  4610. height:150px;
  4611. display:flex;
  4612. }
  4613. #u35812 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 2px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u35812_text {
  4621. border-width:0px;
  4622. word-wrap:break-word;
  4623. text-transform:none;
  4624. visibility:hidden;
  4625. }
  4626. #u35813_div {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:57px;
  4632. height:30px;
  4633. background:inherit;
  4634. background-color:rgba(255, 255, 255, 0);
  4635. border:none;
  4636. border-left:0px;
  4637. border-top:0px;
  4638. border-right:0px;
  4639. border-radius:0px;
  4640. border-bottom-right-radius:0px;
  4641. border-bottom-left-radius:0px;
  4642. -moz-box-shadow:none;
  4643. -webkit-box-shadow:none;
  4644. box-shadow:none;
  4645. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4646. font-weight:500;
  4647. font-style:normal;
  4648. font-size:14px;
  4649. line-height:30px;
  4650. }
  4651. #u35813 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:984px;
  4655. top:223px;
  4656. width:57px;
  4657. height:30px;
  4658. display:flex;
  4659. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4660. font-weight:500;
  4661. font-style:normal;
  4662. font-size:14px;
  4663. line-height:30px;
  4664. }
  4665. #u35813 .text {
  4666. position:absolute;
  4667. align-self:flex-start;
  4668. padding:0px 0px 0px 0px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u35813_text {
  4673. border-width:0px;
  4674. white-space:nowrap;
  4675. text-transform:none;
  4676. }
  4677. #u35814_div {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:325px;
  4683. height:100px;
  4684. background:inherit;
  4685. background-color:rgba(255, 255, 255, 0);
  4686. border:none;
  4687. border-left:0px;
  4688. border-top:0px;
  4689. border-right:0px;
  4690. border-radius:0px;
  4691. border-bottom-right-radius:0px;
  4692. border-bottom-left-radius:0px;
  4693. -moz-box-shadow:none;
  4694. -webkit-box-shadow:none;
  4695. box-shadow:none;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:12px;
  4700. line-height:20px;
  4701. }
  4702. #u35814 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:984px;
  4706. top:253px;
  4707. width:325px;
  4708. height:100px;
  4709. display:flex;
  4710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4711. font-weight:400;
  4712. font-style:normal;
  4713. font-size:12px;
  4714. line-height:20px;
  4715. }
  4716. #u35814 .text {
  4717. position:absolute;
  4718. align-self:flex-start;
  4719. padding:0px 0px 0px 0px;
  4720. box-sizing:border-box;
  4721. width:100%;
  4722. }
  4723. #u35814_text {
  4724. border-width:0px;
  4725. word-wrap:break-word;
  4726. text-transform:none;
  4727. }
  4728. #u35815_div {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:9px;
  4734. height:9px;
  4735. background:inherit;
  4736. background-color:rgba(255, 255, 255, 0);
  4737. box-sizing:border-box;
  4738. border-width:1px;
  4739. border-style:solid;
  4740. border-color:rgba(127, 127, 127, 1);
  4741. border-right:0px;
  4742. border-bottom:0px;
  4743. border-radius:0px;
  4744. border-top-right-radius:0px;
  4745. border-bottom-left-radius:0px;
  4746. -moz-box-shadow:none;
  4747. -webkit-box-shadow:none;
  4748. box-shadow:none;
  4749. }
  4750. #u35815 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:1299px;
  4754. top:231px;
  4755. width:9px;
  4756. height:9px;
  4757. display:flex;
  4758. -webkit-transform:rotate(135deg);
  4759. -moz-transform:rotate(135deg);
  4760. -ms-transform:rotate(135deg);
  4761. transform:rotate(135deg);
  4762. }
  4763. #u35815 .text {
  4764. position:absolute;
  4765. align-self:center;
  4766. padding:2px 2px 2px 2px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u35815_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. visibility:hidden;
  4775. }
  4776. #u35816 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:0px;
  4782. height:0px;
  4783. }
  4784. #u35817_img {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:0px;
  4788. top:0px;
  4789. width:355px;
  4790. height:180px;
  4791. }
  4792. #u35817 {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:39px;
  4796. top:407px;
  4797. width:355px;
  4798. height:180px;
  4799. display:flex;
  4800. }
  4801. #u35817 .text {
  4802. position:absolute;
  4803. align-self:center;
  4804. padding:2px 2px 2px 2px;
  4805. box-sizing:border-box;
  4806. width:100%;
  4807. }
  4808. #u35817_text {
  4809. border-width:0px;
  4810. word-wrap:break-word;
  4811. text-transform:none;
  4812. visibility:hidden;
  4813. }
  4814. #u35818_div {
  4815. border-width:0px;
  4816. position:absolute;
  4817. left:0px;
  4818. top:0px;
  4819. width:57px;
  4820. height:30px;
  4821. background:inherit;
  4822. background-color:rgba(255, 255, 255, 0);
  4823. border:none;
  4824. border-left:0px;
  4825. border-top:0px;
  4826. border-right:0px;
  4827. border-radius:0px;
  4828. border-bottom-right-radius:0px;
  4829. border-bottom-left-radius:0px;
  4830. -moz-box-shadow:none;
  4831. -webkit-box-shadow:none;
  4832. box-shadow:none;
  4833. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4834. font-weight:500;
  4835. font-style:normal;
  4836. font-size:14px;
  4837. line-height:30px;
  4838. }
  4839. #u35818 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:55px;
  4843. top:413px;
  4844. width:57px;
  4845. height:30px;
  4846. display:flex;
  4847. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4848. font-weight:500;
  4849. font-style:normal;
  4850. font-size:14px;
  4851. line-height:30px;
  4852. }
  4853. #u35818 .text {
  4854. position:absolute;
  4855. align-self:flex-start;
  4856. padding:0px 0px 0px 0px;
  4857. box-sizing:border-box;
  4858. width:100%;
  4859. }
  4860. #u35818_text {
  4861. border-width:0px;
  4862. white-space:nowrap;
  4863. text-transform:none;
  4864. }
  4865. #u35819_div {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:325px;
  4871. height:100px;
  4872. background:inherit;
  4873. background-color:rgba(255, 255, 255, 0);
  4874. border:none;
  4875. border-left:0px;
  4876. border-top:0px;
  4877. border-right:0px;
  4878. border-radius:0px;
  4879. border-bottom-right-radius:0px;
  4880. border-bottom-left-radius:0px;
  4881. -moz-box-shadow:none;
  4882. -webkit-box-shadow:none;
  4883. box-shadow:none;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:12px;
  4888. line-height:20px;
  4889. }
  4890. #u35819 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:55px;
  4894. top:443px;
  4895. width:325px;
  4896. height:100px;
  4897. display:flex;
  4898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. font-size:12px;
  4902. line-height:20px;
  4903. }
  4904. #u35819 .text {
  4905. position:absolute;
  4906. align-self:flex-start;
  4907. padding:0px 0px 0px 0px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u35819_text {
  4912. border-width:0px;
  4913. word-wrap:break-word;
  4914. text-transform:none;
  4915. }
  4916. #u35820_div {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:9px;
  4922. height:9px;
  4923. background:inherit;
  4924. background-color:rgba(255, 255, 255, 0);
  4925. box-sizing:border-box;
  4926. border-width:1px;
  4927. border-style:solid;
  4928. border-color:rgba(127, 127, 127, 1);
  4929. border-right:0px;
  4930. border-bottom:0px;
  4931. border-radius:0px;
  4932. border-top-right-radius:0px;
  4933. border-bottom-left-radius:0px;
  4934. -moz-box-shadow:none;
  4935. -webkit-box-shadow:none;
  4936. box-shadow:none;
  4937. }
  4938. #u35820 {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:370px;
  4942. top:421px;
  4943. width:9px;
  4944. height:9px;
  4945. display:flex;
  4946. -webkit-transform:rotate(135deg);
  4947. -moz-transform:rotate(135deg);
  4948. -ms-transform:rotate(135deg);
  4949. transform:rotate(135deg);
  4950. }
  4951. #u35820 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 2px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u35820_text {
  4959. border-width:0px;
  4960. word-wrap:break-word;
  4961. text-transform:none;
  4962. visibility:hidden;
  4963. }
  4964. #u35821_div {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:0px;
  4968. top:0px;
  4969. width:60px;
  4970. height:30px;
  4971. background:inherit;
  4972. background-color:rgba(255, 255, 255, 1);
  4973. box-sizing:border-box;
  4974. border-width:1px;
  4975. border-style:solid;
  4976. border-color:rgba(215, 215, 215, 1);
  4977. border-radius:63px;
  4978. -moz-box-shadow:none;
  4979. -webkit-box-shadow:none;
  4980. box-shadow:none;
  4981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. font-size:14px;
  4985. color:#555555;
  4986. }
  4987. #u35821 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:321px;
  4991. top:547px;
  4992. width:60px;
  4993. height:30px;
  4994. display:flex;
  4995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4996. font-weight:400;
  4997. font-style:normal;
  4998. font-size:14px;
  4999. color:#555555;
  5000. }
  5001. #u35821 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:2px 2px 2px 2px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u35821_text {
  5009. border-width:0px;
  5010. word-wrap:break-word;
  5011. text-transform:none;
  5012. }
  5013. #u35822 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:0px;
  5019. height:0px;
  5020. }
  5021. #u35823_img {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:355px;
  5027. height:180px;
  5028. }
  5029. #u35823 {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:502px;
  5033. top:407px;
  5034. width:355px;
  5035. height:180px;
  5036. display:flex;
  5037. }
  5038. #u35823 .text {
  5039. position:absolute;
  5040. align-self:center;
  5041. padding:2px 2px 2px 2px;
  5042. box-sizing:border-box;
  5043. width:100%;
  5044. }
  5045. #u35823_text {
  5046. border-width:0px;
  5047. word-wrap:break-word;
  5048. text-transform:none;
  5049. visibility:hidden;
  5050. }
  5051. #u35824_div {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:0px;
  5055. top:0px;
  5056. width:57px;
  5057. height:30px;
  5058. background:inherit;
  5059. background-color:rgba(255, 255, 255, 0);
  5060. border:none;
  5061. border-left:0px;
  5062. border-top:0px;
  5063. border-right:0px;
  5064. border-radius:0px;
  5065. border-bottom-right-radius:0px;
  5066. border-bottom-left-radius:0px;
  5067. -moz-box-shadow:none;
  5068. -webkit-box-shadow:none;
  5069. box-shadow:none;
  5070. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5071. font-weight:500;
  5072. font-style:normal;
  5073. font-size:14px;
  5074. line-height:30px;
  5075. }
  5076. #u35824 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:518px;
  5080. top:413px;
  5081. width:57px;
  5082. height:30px;
  5083. display:flex;
  5084. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5085. font-weight:500;
  5086. font-style:normal;
  5087. font-size:14px;
  5088. line-height:30px;
  5089. }
  5090. #u35824 .text {
  5091. position:absolute;
  5092. align-self:flex-start;
  5093. padding:0px 0px 0px 0px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u35824_text {
  5098. border-width:0px;
  5099. white-space:nowrap;
  5100. text-transform:none;
  5101. }
  5102. #u35825_div {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:325px;
  5108. height:100px;
  5109. background:inherit;
  5110. background-color:rgba(255, 255, 255, 0);
  5111. border:none;
  5112. border-left:0px;
  5113. border-top:0px;
  5114. border-right:0px;
  5115. border-radius:0px;
  5116. border-bottom-right-radius:0px;
  5117. border-bottom-left-radius:0px;
  5118. -moz-box-shadow:none;
  5119. -webkit-box-shadow:none;
  5120. box-shadow:none;
  5121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:12px;
  5125. line-height:20px;
  5126. }
  5127. #u35825 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:518px;
  5131. top:443px;
  5132. width:325px;
  5133. height:100px;
  5134. display:flex;
  5135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5136. font-weight:400;
  5137. font-style:normal;
  5138. font-size:12px;
  5139. line-height:20px;
  5140. }
  5141. #u35825 .text {
  5142. position:absolute;
  5143. align-self:flex-start;
  5144. padding:0px 0px 0px 0px;
  5145. box-sizing:border-box;
  5146. width:100%;
  5147. }
  5148. #u35825_text {
  5149. border-width:0px;
  5150. word-wrap:break-word;
  5151. text-transform:none;
  5152. }
  5153. #u35826_div {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:9px;
  5159. height:9px;
  5160. background:inherit;
  5161. background-color:rgba(255, 255, 255, 0);
  5162. box-sizing:border-box;
  5163. border-width:1px;
  5164. border-style:solid;
  5165. border-color:rgba(127, 127, 127, 1);
  5166. border-right:0px;
  5167. border-bottom:0px;
  5168. border-radius:0px;
  5169. border-top-right-radius:0px;
  5170. border-bottom-left-radius:0px;
  5171. -moz-box-shadow:none;
  5172. -webkit-box-shadow:none;
  5173. box-shadow:none;
  5174. }
  5175. #u35826 {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:833px;
  5179. top:421px;
  5180. width:9px;
  5181. height:9px;
  5182. display:flex;
  5183. -webkit-transform:rotate(135deg);
  5184. -moz-transform:rotate(135deg);
  5185. -ms-transform:rotate(135deg);
  5186. transform:rotate(135deg);
  5187. }
  5188. #u35826 .text {
  5189. position:absolute;
  5190. align-self:center;
  5191. padding:2px 2px 2px 2px;
  5192. box-sizing:border-box;
  5193. width:100%;
  5194. }
  5195. #u35826_text {
  5196. border-width:0px;
  5197. word-wrap:break-word;
  5198. text-transform:none;
  5199. visibility:hidden;
  5200. }
  5201. #u35827_div {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:60px;
  5207. height:30px;
  5208. background:inherit;
  5209. background-color:rgba(255, 255, 255, 1);
  5210. box-sizing:border-box;
  5211. border-width:1px;
  5212. border-style:solid;
  5213. border-color:rgba(215, 215, 215, 1);
  5214. border-radius:63px;
  5215. -moz-box-shadow:none;
  5216. -webkit-box-shadow:none;
  5217. box-shadow:none;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:14px;
  5222. color:#555555;
  5223. }
  5224. #u35827 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:784px;
  5228. top:547px;
  5229. width:60px;
  5230. height:30px;
  5231. display:flex;
  5232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:14px;
  5236. color:#555555;
  5237. }
  5238. #u35827 .text {
  5239. position:absolute;
  5240. align-self:center;
  5241. padding:2px 2px 2px 2px;
  5242. box-sizing:border-box;
  5243. width:100%;
  5244. }
  5245. #u35827_text {
  5246. border-width:0px;
  5247. word-wrap:break-word;
  5248. text-transform:none;
  5249. }
  5250. #u35828 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:0px;
  5254. top:0px;
  5255. width:0px;
  5256. height:0px;
  5257. }
  5258. #u35829_img {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:355px;
  5264. height:150px;
  5265. }
  5266. #u35829 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:968px;
  5270. top:377px;
  5271. width:355px;
  5272. height:150px;
  5273. display:flex;
  5274. }
  5275. #u35829 .text {
  5276. position:absolute;
  5277. align-self:center;
  5278. padding:2px 2px 2px 2px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u35829_text {
  5283. border-width:0px;
  5284. word-wrap:break-word;
  5285. text-transform:none;
  5286. visibility:hidden;
  5287. }
  5288. #u35830_div {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:57px;
  5294. height:30px;
  5295. background:inherit;
  5296. background-color:rgba(255, 255, 255, 0);
  5297. border:none;
  5298. border-left:0px;
  5299. border-top:0px;
  5300. border-right:0px;
  5301. border-radius:0px;
  5302. border-bottom-right-radius:0px;
  5303. border-bottom-left-radius:0px;
  5304. -moz-box-shadow:none;
  5305. -webkit-box-shadow:none;
  5306. box-shadow:none;
  5307. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5308. font-weight:500;
  5309. font-style:normal;
  5310. font-size:14px;
  5311. line-height:30px;
  5312. }
  5313. #u35830 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:984px;
  5317. top:383px;
  5318. width:57px;
  5319. height:30px;
  5320. display:flex;
  5321. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5322. font-weight:500;
  5323. font-style:normal;
  5324. font-size:14px;
  5325. line-height:30px;
  5326. }
  5327. #u35830 .text {
  5328. position:absolute;
  5329. align-self:flex-start;
  5330. padding:0px 0px 0px 0px;
  5331. box-sizing:border-box;
  5332. width:100%;
  5333. }
  5334. #u35830_text {
  5335. border-width:0px;
  5336. white-space:nowrap;
  5337. text-transform:none;
  5338. }
  5339. #u35831_div {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:325px;
  5345. height:100px;
  5346. background:inherit;
  5347. background-color:rgba(255, 255, 255, 0);
  5348. border:none;
  5349. border-left:0px;
  5350. border-top:0px;
  5351. border-right:0px;
  5352. border-radius:0px;
  5353. border-bottom-right-radius:0px;
  5354. border-bottom-left-radius:0px;
  5355. -moz-box-shadow:none;
  5356. -webkit-box-shadow:none;
  5357. box-shadow:none;
  5358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5359. font-weight:400;
  5360. font-style:normal;
  5361. font-size:12px;
  5362. line-height:20px;
  5363. }
  5364. #u35831 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:984px;
  5368. top:413px;
  5369. width:325px;
  5370. height:100px;
  5371. display:flex;
  5372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:12px;
  5376. line-height:20px;
  5377. }
  5378. #u35831 .text {
  5379. position:absolute;
  5380. align-self:flex-start;
  5381. padding:0px 0px 0px 0px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u35831_text {
  5386. border-width:0px;
  5387. word-wrap:break-word;
  5388. text-transform:none;
  5389. }
  5390. #u35832_div {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:9px;
  5396. height:9px;
  5397. background:inherit;
  5398. background-color:rgba(255, 255, 255, 0);
  5399. box-sizing:border-box;
  5400. border-width:1px;
  5401. border-style:solid;
  5402. border-color:rgba(127, 127, 127, 1);
  5403. border-right:0px;
  5404. border-bottom:0px;
  5405. border-radius:0px;
  5406. border-top-right-radius:0px;
  5407. border-bottom-left-radius:0px;
  5408. -moz-box-shadow:none;
  5409. -webkit-box-shadow:none;
  5410. box-shadow:none;
  5411. }
  5412. #u35832 {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:1299px;
  5416. top:391px;
  5417. width:9px;
  5418. height:9px;
  5419. display:flex;
  5420. -webkit-transform:rotate(135deg);
  5421. -moz-transform:rotate(135deg);
  5422. -ms-transform:rotate(135deg);
  5423. transform:rotate(135deg);
  5424. }
  5425. #u35832 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:2px 2px 2px 2px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u35832_text {
  5433. border-width:0px;
  5434. word-wrap:break-word;
  5435. text-transform:none;
  5436. visibility:hidden;
  5437. }
  5438. #u35833 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:0px;
  5444. height:0px;
  5445. }
  5446. #u35834_div {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:375px;
  5452. height:50px;
  5453. background:inherit;
  5454. background-color:rgba(255, 255, 255, 1);
  5455. border:none;
  5456. border-radius:0px;
  5457. -moz-box-shadow:none;
  5458. -webkit-box-shadow:none;
  5459. box-shadow:none;
  5460. }
  5461. #u35834 {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:29px;
  5465. top:106px;
  5466. width:375px;
  5467. height:50px;
  5468. display:flex;
  5469. }
  5470. #u35834 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 2px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u35834_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u35835 {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:0px;
  5489. height:0px;
  5490. }
  5491. #u35836 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:0px;
  5497. height:0px;
  5498. }
  5499. #u35837_div {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:280px;
  5505. height:30px;
  5506. background:inherit;
  5507. background-color:rgba(242, 242, 242, 1);
  5508. border:none;
  5509. border-radius:20px;
  5510. -moz-box-shadow:none;
  5511. -webkit-box-shadow:none;
  5512. box-shadow:none;
  5513. }
  5514. #u35837 {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:42px;
  5518. top:116px;
  5519. width:280px;
  5520. height:30px;
  5521. display:flex;
  5522. }
  5523. #u35837 .text {
  5524. position:absolute;
  5525. align-self:center;
  5526. padding:2px 2px 2px 2px;
  5527. box-sizing:border-box;
  5528. width:100%;
  5529. }
  5530. #u35837_text {
  5531. border-width:0px;
  5532. word-wrap:break-word;
  5533. text-transform:none;
  5534. visibility:hidden;
  5535. }
  5536. #u35838_input {
  5537. position:absolute;
  5538. left:0px;
  5539. top:0px;
  5540. width:252px;
  5541. height:22px;
  5542. padding:2px 2px 2px 2px;
  5543. font-family:'ArialMT', 'Arial', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:12px;
  5547. letter-spacing:normal;
  5548. color:#7F7F7F;
  5549. vertical-align:none;
  5550. text-align:left;
  5551. text-transform:none;
  5552. background-color:transparent;
  5553. border-color:transparent;
  5554. }
  5555. #u35838_input.disabled {
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:252px;
  5560. height:22px;
  5561. padding:2px 2px 2px 2px;
  5562. font-family:'ArialMT', 'Arial', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:12px;
  5566. letter-spacing:normal;
  5567. color:#7F7F7F;
  5568. vertical-align:none;
  5569. text-align:left;
  5570. text-transform:none;
  5571. background-color:transparent;
  5572. border-color:transparent;
  5573. }
  5574. #u35838_div {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:252px;
  5580. height:22px;
  5581. background:inherit;
  5582. background-color:rgba(255, 255, 255, 0);
  5583. border:none;
  5584. border-radius:0px;
  5585. -moz-box-shadow:none;
  5586. -webkit-box-shadow:none;
  5587. box-shadow:none;
  5588. font-size:12px;
  5589. color:#7F7F7F;
  5590. }
  5591. #u35838 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:56px;
  5595. top:120px;
  5596. width:252px;
  5597. height:22px;
  5598. display:flex;
  5599. font-size:12px;
  5600. color:#7F7F7F;
  5601. }
  5602. #u35838 .text {
  5603. position:absolute;
  5604. align-self:flex-start;
  5605. padding:2px 2px 2px 2px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u35838_div.disabled {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:252px;
  5615. height:22px;
  5616. background:inherit;
  5617. background-color:rgba(240, 240, 240, 1);
  5618. border:none;
  5619. border-radius:0px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. font-size:12px;
  5624. color:#7F7F7F;
  5625. }
  5626. #u35838.disabled {
  5627. }
  5628. .u35838_input_option {
  5629. font-size:12px;
  5630. }
  5631. #u35839_div {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:64px;
  5637. height:30px;
  5638. background:inherit;
  5639. background-color:rgba(255, 255, 255, 0);
  5640. border:none;
  5641. border-left:0px;
  5642. border-top:0px;
  5643. border-right:0px;
  5644. border-radius:0px;
  5645. border-bottom-right-radius:0px;
  5646. border-bottom-left-radius:0px;
  5647. -moz-box-shadow:none;
  5648. -webkit-box-shadow:none;
  5649. box-shadow:none;
  5650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. font-size:12px;
  5654. color:#1890FF;
  5655. line-height:30px;
  5656. }
  5657. #u35839 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:332px;
  5661. top:116px;
  5662. width:64px;
  5663. height:30px;
  5664. display:flex;
  5665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5666. font-weight:400;
  5667. font-style:normal;
  5668. font-size:12px;
  5669. color:#1890FF;
  5670. line-height:30px;
  5671. }
  5672. #u35839 .text {
  5673. position:absolute;
  5674. align-self:flex-start;
  5675. padding:0px 0px 0px 0px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u35839_text {
  5680. border-width:0px;
  5681. white-space:nowrap;
  5682. text-transform:none;
  5683. }
  5684. #u35840 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:0px;
  5690. height:0px;
  5691. }
  5692. #u35841_div {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:375px;
  5698. height:41px;
  5699. background:inherit;
  5700. background-color:rgba(255, 255, 255, 1);
  5701. border:none;
  5702. border-radius:0px;
  5703. -moz-box-shadow:none;
  5704. -webkit-box-shadow:none;
  5705. box-shadow:none;
  5706. }
  5707. #u35841 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:29px;
  5711. top:156px;
  5712. width:375px;
  5713. height:41px;
  5714. display:flex;
  5715. }
  5716. #u35841 .text {
  5717. position:absolute;
  5718. align-self:center;
  5719. padding:2px 2px 2px 2px;
  5720. box-sizing:border-box;
  5721. width:100%;
  5722. }
  5723. #u35841_text {
  5724. border-width:0px;
  5725. word-wrap:break-word;
  5726. text-transform:none;
  5727. visibility:hidden;
  5728. }
  5729. #u35842_div {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:37px;
  5735. height:40px;
  5736. background:inherit;
  5737. background-color:rgba(255, 255, 255, 0);
  5738. border:none;
  5739. border-left:0px;
  5740. border-top:0px;
  5741. border-right:0px;
  5742. border-radius:0px;
  5743. border-bottom-right-radius:0px;
  5744. border-bottom-left-radius:0px;
  5745. -moz-box-shadow:none;
  5746. -webkit-box-shadow:none;
  5747. box-shadow:none;
  5748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5749. font-weight:400;
  5750. font-style:normal;
  5751. font-size:12px;
  5752. text-align:center;
  5753. }
  5754. #u35842 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:110px;
  5758. top:156px;
  5759. width:37px;
  5760. height:40px;
  5761. display:flex;
  5762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5763. font-weight:400;
  5764. font-style:normal;
  5765. font-size:12px;
  5766. text-align:center;
  5767. }
  5768. #u35842 .text {
  5769. position:absolute;
  5770. align-self:center;
  5771. padding:0px 0px 0px 0px;
  5772. box-sizing:border-box;
  5773. width:100%;
  5774. }
  5775. #u35842_text {
  5776. border-width:0px;
  5777. white-space:nowrap;
  5778. text-transform:none;
  5779. }
  5780. #u35843_div {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:37px;
  5786. height:40px;
  5787. background:inherit;
  5788. background-color:rgba(255, 255, 255, 0);
  5789. border:none;
  5790. border-radius:0px;
  5791. -moz-box-shadow:none;
  5792. -webkit-box-shadow:none;
  5793. box-shadow:none;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:12px;
  5798. color:#000000;
  5799. text-align:center;
  5800. }
  5801. #u35843 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:176px;
  5805. top:156px;
  5806. width:37px;
  5807. height:40px;
  5808. display:flex;
  5809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5810. font-weight:400;
  5811. font-style:normal;
  5812. font-size:12px;
  5813. color:#000000;
  5814. text-align:center;
  5815. }
  5816. #u35843 .text {
  5817. position:absolute;
  5818. align-self:center;
  5819. padding:0px 0px 0px 0px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u35843_text {
  5824. border-width:0px;
  5825. white-space:nowrap;
  5826. text-transform:none;
  5827. }
  5828. #u35844_div {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:37px;
  5834. height:40px;
  5835. background:inherit;
  5836. background-color:rgba(255, 255, 255, 0);
  5837. border:none;
  5838. border-radius:0px;
  5839. -moz-box-shadow:none;
  5840. -webkit-box-shadow:none;
  5841. box-shadow:none;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:12px;
  5846. color:#000000;
  5847. text-align:center;
  5848. }
  5849. #u35844 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:241px;
  5853. top:156px;
  5854. width:37px;
  5855. height:40px;
  5856. display:flex;
  5857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:12px;
  5861. color:#000000;
  5862. text-align:center;
  5863. }
  5864. #u35844 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:0px 0px 0px 0px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u35844_text {
  5872. border-width:0px;
  5873. white-space:nowrap;
  5874. text-transform:none;
  5875. }
  5876. #u35845_div {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:37px;
  5882. height:40px;
  5883. background:inherit;
  5884. background-color:rgba(255, 255, 255, 0);
  5885. box-sizing:border-box;
  5886. border-width:2px;
  5887. border-style:solid;
  5888. border-color:rgba(24, 144, 255, 1);
  5889. border-left:0px;
  5890. border-top:0px;
  5891. border-right:0px;
  5892. border-radius:0px;
  5893. border-bottom-right-radius:0px;
  5894. border-bottom-left-radius:0px;
  5895. -moz-box-shadow:none;
  5896. -webkit-box-shadow:none;
  5897. box-shadow:none;
  5898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5899. font-weight:400;
  5900. font-style:normal;
  5901. font-size:12px;
  5902. color:#1890FF;
  5903. text-align:center;
  5904. }
  5905. #u35845 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:45px;
  5909. top:156px;
  5910. width:37px;
  5911. height:40px;
  5912. display:flex;
  5913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5914. font-weight:400;
  5915. font-style:normal;
  5916. font-size:12px;
  5917. color:#1890FF;
  5918. text-align:center;
  5919. }
  5920. #u35845 .text {
  5921. position:absolute;
  5922. align-self:center;
  5923. padding:0px 0px 0px 0px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u35845_text {
  5928. border-width:0px;
  5929. white-space:nowrap;
  5930. text-transform:none;
  5931. }
  5932. #u35846_div {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:11px;
  5938. height:11px;
  5939. background:inherit;
  5940. background-color:rgba(217, 0, 27, 1);
  5941. border:none;
  5942. border-radius:7px;
  5943. -moz-box-shadow:none;
  5944. -webkit-box-shadow:none;
  5945. box-shadow:none;
  5946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5947. font-weight:400;
  5948. font-style:normal;
  5949. font-size:8px;
  5950. color:#FFFFFF;
  5951. text-align:center;
  5952. }
  5953. #u35846 {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:79px;
  5957. top:160px;
  5958. width:11px;
  5959. height:11px;
  5960. display:flex;
  5961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:8px;
  5965. color:#FFFFFF;
  5966. text-align:center;
  5967. }
  5968. #u35846 .text {
  5969. position:absolute;
  5970. align-self:flex-start;
  5971. padding:0px 0px 0px 0px;
  5972. box-sizing:border-box;
  5973. width:100%;
  5974. }
  5975. #u35846_text {
  5976. border-width:0px;
  5977. word-wrap:break-word;
  5978. text-transform:none;
  5979. }
  5980. #u35847 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:0px;
  5986. height:0px;
  5987. }
  5988. #u35848_div {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:375px;
  5994. height:50px;
  5995. background:inherit;
  5996. background-color:rgba(255, 255, 255, 1);
  5997. border:none;
  5998. border-radius:0px;
  5999. -moz-box-shadow:none;
  6000. -webkit-box-shadow:none;
  6001. box-shadow:none;
  6002. }
  6003. #u35848 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:492px;
  6007. top:106px;
  6008. width:375px;
  6009. height:50px;
  6010. display:flex;
  6011. }
  6012. #u35848 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:2px 2px 2px 2px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u35848_text {
  6020. border-width:0px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. visibility:hidden;
  6024. }
  6025. #u35849 {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:0px;
  6031. height:0px;
  6032. }
  6033. #u35850 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:0px;
  6039. height:0px;
  6040. }
  6041. #u35851_div {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:280px;
  6047. height:30px;
  6048. background:inherit;
  6049. background-color:rgba(242, 242, 242, 1);
  6050. border:none;
  6051. border-radius:20px;
  6052. -moz-box-shadow:none;
  6053. -webkit-box-shadow:none;
  6054. box-shadow:none;
  6055. }
  6056. #u35851 {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:505px;
  6060. top:116px;
  6061. width:280px;
  6062. height:30px;
  6063. display:flex;
  6064. }
  6065. #u35851 .text {
  6066. position:absolute;
  6067. align-self:center;
  6068. padding:2px 2px 2px 2px;
  6069. box-sizing:border-box;
  6070. width:100%;
  6071. }
  6072. #u35851_text {
  6073. border-width:0px;
  6074. word-wrap:break-word;
  6075. text-transform:none;
  6076. visibility:hidden;
  6077. }
  6078. #u35852_input {
  6079. position:absolute;
  6080. left:0px;
  6081. top:0px;
  6082. width:252px;
  6083. height:22px;
  6084. padding:2px 2px 2px 2px;
  6085. font-family:'ArialMT', 'Arial', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:12px;
  6089. letter-spacing:normal;
  6090. color:#7F7F7F;
  6091. vertical-align:none;
  6092. text-align:left;
  6093. text-transform:none;
  6094. background-color:transparent;
  6095. border-color:transparent;
  6096. }
  6097. #u35852_input.disabled {
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:252px;
  6102. height:22px;
  6103. padding:2px 2px 2px 2px;
  6104. font-family:'ArialMT', 'Arial', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:12px;
  6108. letter-spacing:normal;
  6109. color:#7F7F7F;
  6110. vertical-align:none;
  6111. text-align:left;
  6112. text-transform:none;
  6113. background-color:transparent;
  6114. border-color:transparent;
  6115. }
  6116. #u35852_div {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:252px;
  6122. height:22px;
  6123. background:inherit;
  6124. background-color:rgba(255, 255, 255, 0);
  6125. border:none;
  6126. border-radius:0px;
  6127. -moz-box-shadow:none;
  6128. -webkit-box-shadow:none;
  6129. box-shadow:none;
  6130. font-size:12px;
  6131. color:#7F7F7F;
  6132. }
  6133. #u35852 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:519px;
  6137. top:120px;
  6138. width:252px;
  6139. height:22px;
  6140. display:flex;
  6141. font-size:12px;
  6142. color:#7F7F7F;
  6143. }
  6144. #u35852 .text {
  6145. position:absolute;
  6146. align-self:flex-start;
  6147. padding:2px 2px 2px 2px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u35852_div.disabled {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:252px;
  6157. height:22px;
  6158. background:inherit;
  6159. background-color:rgba(240, 240, 240, 1);
  6160. border:none;
  6161. border-radius:0px;
  6162. -moz-box-shadow:none;
  6163. -webkit-box-shadow:none;
  6164. box-shadow:none;
  6165. font-size:12px;
  6166. color:#7F7F7F;
  6167. }
  6168. #u35852.disabled {
  6169. }
  6170. .u35852_input_option {
  6171. font-size:12px;
  6172. }
  6173. #u35853_div {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:64px;
  6179. height:30px;
  6180. background:inherit;
  6181. background-color:rgba(255, 255, 255, 0);
  6182. border:none;
  6183. border-left:0px;
  6184. border-top:0px;
  6185. border-right:0px;
  6186. border-radius:0px;
  6187. border-bottom-right-radius:0px;
  6188. border-bottom-left-radius:0px;
  6189. -moz-box-shadow:none;
  6190. -webkit-box-shadow:none;
  6191. box-shadow:none;
  6192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:12px;
  6196. color:#1890FF;
  6197. line-height:30px;
  6198. }
  6199. #u35853 {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:795px;
  6203. top:116px;
  6204. width:64px;
  6205. height:30px;
  6206. display:flex;
  6207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6208. font-weight:400;
  6209. font-style:normal;
  6210. font-size:12px;
  6211. color:#1890FF;
  6212. line-height:30px;
  6213. }
  6214. #u35853 .text {
  6215. position:absolute;
  6216. align-self:flex-start;
  6217. padding:0px 0px 0px 0px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u35853_text {
  6222. border-width:0px;
  6223. white-space:nowrap;
  6224. text-transform:none;
  6225. }
  6226. #u35854 {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:0px;
  6232. height:0px;
  6233. }
  6234. #u35855_div {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:375px;
  6240. height:41px;
  6241. background:inherit;
  6242. background-color:rgba(255, 255, 255, 1);
  6243. border:none;
  6244. border-radius:0px;
  6245. -moz-box-shadow:none;
  6246. -webkit-box-shadow:none;
  6247. box-shadow:none;
  6248. }
  6249. #u35855 {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:492px;
  6253. top:156px;
  6254. width:375px;
  6255. height:41px;
  6256. display:flex;
  6257. }
  6258. #u35855 .text {
  6259. position:absolute;
  6260. align-self:center;
  6261. padding:2px 2px 2px 2px;
  6262. box-sizing:border-box;
  6263. width:100%;
  6264. }
  6265. #u35855_text {
  6266. border-width:0px;
  6267. word-wrap:break-word;
  6268. text-transform:none;
  6269. visibility:hidden;
  6270. }
  6271. #u35856_div {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:37px;
  6277. height:40px;
  6278. background:inherit;
  6279. background-color:rgba(255, 255, 255, 0);
  6280. box-sizing:border-box;
  6281. border-width:2px;
  6282. border-style:solid;
  6283. border-color:rgba(77, 140, 252, 1);
  6284. border-left:0px;
  6285. border-top:0px;
  6286. border-right:0px;
  6287. border-radius:0px;
  6288. border-bottom-right-radius:0px;
  6289. border-bottom-left-radius:0px;
  6290. -moz-box-shadow:none;
  6291. -webkit-box-shadow:none;
  6292. box-shadow:none;
  6293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6294. font-weight:400;
  6295. font-style:normal;
  6296. font-size:12px;
  6297. color:#298FFF;
  6298. text-align:center;
  6299. }
  6300. #u35856 {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:573px;
  6304. top:156px;
  6305. width:37px;
  6306. height:40px;
  6307. display:flex;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:12px;
  6312. color:#298FFF;
  6313. text-align:center;
  6314. }
  6315. #u35856 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:0px 0px 0px 0px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u35856_text {
  6323. border-width:0px;
  6324. white-space:nowrap;
  6325. text-transform:none;
  6326. }
  6327. #u35857_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:37px;
  6333. height:40px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 0);
  6336. border:none;
  6337. border-radius:0px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:12px;
  6345. color:#000000;
  6346. text-align:center;
  6347. }
  6348. #u35857 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:639px;
  6352. top:156px;
  6353. width:37px;
  6354. height:40px;
  6355. display:flex;
  6356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:12px;
  6360. color:#000000;
  6361. text-align:center;
  6362. }
  6363. #u35857 .text {
  6364. position:absolute;
  6365. align-self:center;
  6366. padding:0px 0px 0px 0px;
  6367. box-sizing:border-box;
  6368. width:100%;
  6369. }
  6370. #u35857_text {
  6371. border-width:0px;
  6372. white-space:nowrap;
  6373. text-transform:none;
  6374. }
  6375. #u35858_div {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:37px;
  6381. height:40px;
  6382. background:inherit;
  6383. background-color:rgba(255, 255, 255, 0);
  6384. border:none;
  6385. border-radius:0px;
  6386. -moz-box-shadow:none;
  6387. -webkit-box-shadow:none;
  6388. box-shadow:none;
  6389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6390. font-weight:400;
  6391. font-style:normal;
  6392. font-size:12px;
  6393. color:#000000;
  6394. text-align:center;
  6395. }
  6396. #u35858 {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:704px;
  6400. top:156px;
  6401. width:37px;
  6402. height:40px;
  6403. display:flex;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:12px;
  6408. color:#000000;
  6409. text-align:center;
  6410. }
  6411. #u35858 .text {
  6412. position:absolute;
  6413. align-self:center;
  6414. padding:0px 0px 0px 0px;
  6415. box-sizing:border-box;
  6416. width:100%;
  6417. }
  6418. #u35858_text {
  6419. border-width:0px;
  6420. white-space:nowrap;
  6421. text-transform:none;
  6422. }
  6423. #u35859_div {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:37px;
  6429. height:40px;
  6430. background:inherit;
  6431. background-color:rgba(255, 255, 255, 0);
  6432. border:none;
  6433. border-left:0px;
  6434. border-top:0px;
  6435. border-right:0px;
  6436. border-radius:0px;
  6437. border-bottom-right-radius:0px;
  6438. border-bottom-left-radius:0px;
  6439. -moz-box-shadow:none;
  6440. -webkit-box-shadow:none;
  6441. box-shadow:none;
  6442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6443. font-weight:400;
  6444. font-style:normal;
  6445. font-size:12px;
  6446. text-align:center;
  6447. }
  6448. #u35859 {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:508px;
  6452. top:156px;
  6453. width:37px;
  6454. height:40px;
  6455. display:flex;
  6456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6457. font-weight:400;
  6458. font-style:normal;
  6459. font-size:12px;
  6460. text-align:center;
  6461. }
  6462. #u35859 .text {
  6463. position:absolute;
  6464. align-self:center;
  6465. padding:0px 0px 0px 0px;
  6466. box-sizing:border-box;
  6467. width:100%;
  6468. }
  6469. #u35859_text {
  6470. border-width:0px;
  6471. white-space:nowrap;
  6472. text-transform:none;
  6473. }
  6474. #u35860_div {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:11px;
  6480. height:11px;
  6481. background:inherit;
  6482. background-color:rgba(217, 0, 27, 1);
  6483. border:none;
  6484. border-radius:7px;
  6485. -moz-box-shadow:none;
  6486. -webkit-box-shadow:none;
  6487. box-shadow:none;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:8px;
  6492. color:#FFFFFF;
  6493. text-align:center;
  6494. }
  6495. #u35860 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:542px;
  6499. top:160px;
  6500. width:11px;
  6501. height:11px;
  6502. display:flex;
  6503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:8px;
  6507. color:#FFFFFF;
  6508. text-align:center;
  6509. }
  6510. #u35860 .text {
  6511. position:absolute;
  6512. align-self:flex-start;
  6513. padding:0px 0px 0px 0px;
  6514. box-sizing:border-box;
  6515. width:100%;
  6516. }
  6517. #u35860_text {
  6518. border-width:0px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. }
  6522. #u35861 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:0px;
  6528. height:0px;
  6529. }
  6530. #u35862_div {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:375px;
  6536. height:50px;
  6537. background:inherit;
  6538. background-color:rgba(255, 255, 255, 1);
  6539. border:none;
  6540. border-radius:0px;
  6541. -moz-box-shadow:none;
  6542. -webkit-box-shadow:none;
  6543. box-shadow:none;
  6544. }
  6545. #u35862 {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:958px;
  6549. top:106px;
  6550. width:375px;
  6551. height:50px;
  6552. display:flex;
  6553. }
  6554. #u35862 .text {
  6555. position:absolute;
  6556. align-self:center;
  6557. padding:2px 2px 2px 2px;
  6558. box-sizing:border-box;
  6559. width:100%;
  6560. }
  6561. #u35862_text {
  6562. border-width:0px;
  6563. word-wrap:break-word;
  6564. text-transform:none;
  6565. visibility:hidden;
  6566. }
  6567. #u35863 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:0px;
  6571. top:0px;
  6572. width:0px;
  6573. height:0px;
  6574. }
  6575. #u35864 {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:0px;
  6581. height:0px;
  6582. }
  6583. #u35865_div {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:280px;
  6589. height:30px;
  6590. background:inherit;
  6591. background-color:rgba(242, 242, 242, 1);
  6592. border:none;
  6593. border-radius:20px;
  6594. -moz-box-shadow:none;
  6595. -webkit-box-shadow:none;
  6596. box-shadow:none;
  6597. }
  6598. #u35865 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:971px;
  6602. top:116px;
  6603. width:280px;
  6604. height:30px;
  6605. display:flex;
  6606. }
  6607. #u35865 .text {
  6608. position:absolute;
  6609. align-self:center;
  6610. padding:2px 2px 2px 2px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u35865_text {
  6615. border-width:0px;
  6616. word-wrap:break-word;
  6617. text-transform:none;
  6618. visibility:hidden;
  6619. }
  6620. #u35866_input {
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:252px;
  6625. height:22px;
  6626. padding:2px 2px 2px 2px;
  6627. font-family:'ArialMT', 'Arial', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:12px;
  6631. letter-spacing:normal;
  6632. color:#7F7F7F;
  6633. vertical-align:none;
  6634. text-align:left;
  6635. text-transform:none;
  6636. background-color:transparent;
  6637. border-color:transparent;
  6638. }
  6639. #u35866_input.disabled {
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:252px;
  6644. height:22px;
  6645. padding:2px 2px 2px 2px;
  6646. font-family:'ArialMT', 'Arial', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:12px;
  6650. letter-spacing:normal;
  6651. color:#7F7F7F;
  6652. vertical-align:none;
  6653. text-align:left;
  6654. text-transform:none;
  6655. background-color:transparent;
  6656. border-color:transparent;
  6657. }
  6658. #u35866_div {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:252px;
  6664. height:22px;
  6665. background:inherit;
  6666. background-color:rgba(255, 255, 255, 0);
  6667. border:none;
  6668. border-radius:0px;
  6669. -moz-box-shadow:none;
  6670. -webkit-box-shadow:none;
  6671. box-shadow:none;
  6672. font-size:12px;
  6673. color:#7F7F7F;
  6674. }
  6675. #u35866 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:985px;
  6679. top:120px;
  6680. width:252px;
  6681. height:22px;
  6682. display:flex;
  6683. font-size:12px;
  6684. color:#7F7F7F;
  6685. }
  6686. #u35866 .text {
  6687. position:absolute;
  6688. align-self:flex-start;
  6689. padding:2px 2px 2px 2px;
  6690. box-sizing:border-box;
  6691. width:100%;
  6692. }
  6693. #u35866_div.disabled {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:252px;
  6699. height:22px;
  6700. background:inherit;
  6701. background-color:rgba(240, 240, 240, 1);
  6702. border:none;
  6703. border-radius:0px;
  6704. -moz-box-shadow:none;
  6705. -webkit-box-shadow:none;
  6706. box-shadow:none;
  6707. font-size:12px;
  6708. color:#7F7F7F;
  6709. }
  6710. #u35866.disabled {
  6711. }
  6712. .u35866_input_option {
  6713. font-size:12px;
  6714. }
  6715. #u35867_div {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:64px;
  6721. height:30px;
  6722. background:inherit;
  6723. background-color:rgba(255, 255, 255, 0);
  6724. border:none;
  6725. border-left:0px;
  6726. border-top:0px;
  6727. border-right:0px;
  6728. border-radius:0px;
  6729. border-bottom-right-radius:0px;
  6730. border-bottom-left-radius:0px;
  6731. -moz-box-shadow:none;
  6732. -webkit-box-shadow:none;
  6733. box-shadow:none;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:12px;
  6738. color:#1890FF;
  6739. line-height:30px;
  6740. }
  6741. #u35867 {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:1261px;
  6745. top:116px;
  6746. width:64px;
  6747. height:30px;
  6748. display:flex;
  6749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6750. font-weight:400;
  6751. font-style:normal;
  6752. font-size:12px;
  6753. color:#1890FF;
  6754. line-height:30px;
  6755. }
  6756. #u35867 .text {
  6757. position:absolute;
  6758. align-self:flex-start;
  6759. padding:0px 0px 0px 0px;
  6760. box-sizing:border-box;
  6761. width:100%;
  6762. }
  6763. #u35867_text {
  6764. border-width:0px;
  6765. white-space:nowrap;
  6766. text-transform:none;
  6767. }
  6768. #u35868 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:0px;
  6772. top:0px;
  6773. width:0px;
  6774. height:0px;
  6775. }
  6776. #u35869_div {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:0px;
  6780. top:0px;
  6781. width:375px;
  6782. height:41px;
  6783. background:inherit;
  6784. background-color:rgba(255, 255, 255, 1);
  6785. border:none;
  6786. border-radius:0px;
  6787. -moz-box-shadow:none;
  6788. -webkit-box-shadow:none;
  6789. box-shadow:none;
  6790. }
  6791. #u35869 {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:958px;
  6795. top:156px;
  6796. width:375px;
  6797. height:41px;
  6798. display:flex;
  6799. }
  6800. #u35869 .text {
  6801. position:absolute;
  6802. align-self:center;
  6803. padding:2px 2px 2px 2px;
  6804. box-sizing:border-box;
  6805. width:100%;
  6806. }
  6807. #u35869_text {
  6808. border-width:0px;
  6809. word-wrap:break-word;
  6810. text-transform:none;
  6811. visibility:hidden;
  6812. }
  6813. #u35870_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:37px;
  6819. height:40px;
  6820. background:inherit;
  6821. background-color:rgba(255, 255, 255, 0);
  6822. border:none;
  6823. border-left:0px;
  6824. border-top:0px;
  6825. border-right:0px;
  6826. border-radius:0px;
  6827. border-bottom-right-radius:0px;
  6828. border-bottom-left-radius:0px;
  6829. -moz-box-shadow:none;
  6830. -webkit-box-shadow:none;
  6831. box-shadow:none;
  6832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:12px;
  6836. text-align:center;
  6837. }
  6838. #u35870 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:1039px;
  6842. top:156px;
  6843. width:37px;
  6844. height:40px;
  6845. display:flex;
  6846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:12px;
  6850. text-align:center;
  6851. }
  6852. #u35870 .text {
  6853. position:absolute;
  6854. align-self:center;
  6855. padding:0px 0px 0px 0px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u35870_text {
  6860. border-width:0px;
  6861. white-space:nowrap;
  6862. text-transform:none;
  6863. }
  6864. #u35871_div {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:37px;
  6870. height:40px;
  6871. background:inherit;
  6872. background-color:rgba(255, 255, 255, 0);
  6873. box-sizing:border-box;
  6874. border-width:2px;
  6875. border-style:solid;
  6876. border-color:rgba(41, 143, 255, 1);
  6877. border-left:0px;
  6878. border-top:0px;
  6879. border-right:0px;
  6880. border-radius:0px;
  6881. border-bottom-right-radius:0px;
  6882. border-bottom-left-radius:0px;
  6883. -moz-box-shadow:none;
  6884. -webkit-box-shadow:none;
  6885. box-shadow:none;
  6886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6887. font-weight:400;
  6888. font-style:normal;
  6889. font-size:12px;
  6890. color:#298FFF;
  6891. text-align:center;
  6892. }
  6893. #u35871 {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:1105px;
  6897. top:156px;
  6898. width:37px;
  6899. height:40px;
  6900. display:flex;
  6901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6902. font-weight:400;
  6903. font-style:normal;
  6904. font-size:12px;
  6905. color:#298FFF;
  6906. text-align:center;
  6907. }
  6908. #u35871 .text {
  6909. position:absolute;
  6910. align-self:center;
  6911. padding:0px 0px 0px 0px;
  6912. box-sizing:border-box;
  6913. width:100%;
  6914. }
  6915. #u35871_text {
  6916. border-width:0px;
  6917. white-space:nowrap;
  6918. text-transform:none;
  6919. }
  6920. #u35872_div {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:0px;
  6924. top:0px;
  6925. width:37px;
  6926. height:40px;
  6927. background:inherit;
  6928. background-color:rgba(255, 255, 255, 0);
  6929. border:none;
  6930. border-radius:0px;
  6931. -moz-box-shadow:none;
  6932. -webkit-box-shadow:none;
  6933. box-shadow:none;
  6934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6935. font-weight:400;
  6936. font-style:normal;
  6937. font-size:12px;
  6938. color:#000000;
  6939. text-align:center;
  6940. }
  6941. #u35872 {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:1170px;
  6945. top:156px;
  6946. width:37px;
  6947. height:40px;
  6948. display:flex;
  6949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:12px;
  6953. color:#000000;
  6954. text-align:center;
  6955. }
  6956. #u35872 .text {
  6957. position:absolute;
  6958. align-self:center;
  6959. padding:0px 0px 0px 0px;
  6960. box-sizing:border-box;
  6961. width:100%;
  6962. }
  6963. #u35872_text {
  6964. border-width:0px;
  6965. white-space:nowrap;
  6966. text-transform:none;
  6967. }
  6968. #u35873_div {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:37px;
  6974. height:40px;
  6975. background:inherit;
  6976. background-color:rgba(255, 255, 255, 0);
  6977. border:none;
  6978. border-left:0px;
  6979. border-top:0px;
  6980. border-right:0px;
  6981. border-radius:0px;
  6982. border-bottom-right-radius:0px;
  6983. border-bottom-left-radius:0px;
  6984. -moz-box-shadow:none;
  6985. -webkit-box-shadow:none;
  6986. box-shadow:none;
  6987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6988. font-weight:400;
  6989. font-style:normal;
  6990. font-size:12px;
  6991. text-align:center;
  6992. }
  6993. #u35873 {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:974px;
  6997. top:156px;
  6998. width:37px;
  6999. height:40px;
  7000. display:flex;
  7001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. font-size:12px;
  7005. text-align:center;
  7006. }
  7007. #u35873 .text {
  7008. position:absolute;
  7009. align-self:center;
  7010. padding:0px 0px 0px 0px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u35873_text {
  7015. border-width:0px;
  7016. white-space:nowrap;
  7017. text-transform:none;
  7018. }
  7019. #u35874_div {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:11px;
  7025. height:11px;
  7026. background:inherit;
  7027. background-color:rgba(217, 0, 27, 1);
  7028. border:none;
  7029. border-radius:7px;
  7030. -moz-box-shadow:none;
  7031. -webkit-box-shadow:none;
  7032. box-shadow:none;
  7033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7034. font-weight:400;
  7035. font-style:normal;
  7036. font-size:8px;
  7037. color:#FFFFFF;
  7038. text-align:center;
  7039. }
  7040. #u35874 {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:1008px;
  7044. top:160px;
  7045. width:11px;
  7046. height:11px;
  7047. display:flex;
  7048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7049. font-weight:400;
  7050. font-style:normal;
  7051. font-size:8px;
  7052. color:#FFFFFF;
  7053. text-align:center;
  7054. }
  7055. #u35874 .text {
  7056. position:absolute;
  7057. align-self:flex-start;
  7058. padding:0px 0px 0px 0px;
  7059. box-sizing:border-box;
  7060. width:100%;
  7061. }
  7062. #u35874_text {
  7063. border-width:0px;
  7064. word-wrap:break-word;
  7065. text-transform:none;
  7066. }
  7067. #u35875 {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:0px;
  7073. height:0px;
  7074. }
  7075. #u35876_div {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:375px;
  7081. height:50px;
  7082. background:inherit;
  7083. background-color:rgba(255, 255, 255, 1);
  7084. box-sizing:border-box;
  7085. border-width:1px;
  7086. border-style:solid;
  7087. border-color:rgba(242, 242, 242, 1);
  7088. border-radius:26px;
  7089. border-top-left-radius:0px;
  7090. border-top-right-radius:0px;
  7091. -moz-box-shadow:none;
  7092. -webkit-box-shadow:none;
  7093. box-shadow:none;
  7094. }
  7095. #u35876 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:492px;
  7099. top:791px;
  7100. width:375px;
  7101. height:50px;
  7102. display:flex;
  7103. }
  7104. #u35876 .text {
  7105. position:absolute;
  7106. align-self:center;
  7107. padding:2px 2px 2px 2px;
  7108. box-sizing:border-box;
  7109. width:100%;
  7110. }
  7111. #u35876_text {
  7112. border-width:0px;
  7113. word-wrap:break-word;
  7114. text-transform:none;
  7115. visibility:hidden;
  7116. }
  7117. #u35877 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:0px;
  7123. height:0px;
  7124. }
  7125. #u35878_img {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:24px;
  7131. height:24px;
  7132. }
  7133. #u35878 {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:803px;
  7137. top:795px;
  7138. width:24px;
  7139. height:24px;
  7140. display:flex;
  7141. font-size:8px;
  7142. }
  7143. #u35878 .text {
  7144. position:absolute;
  7145. align-self:center;
  7146. padding:2px 2px 2px 2px;
  7147. box-sizing:border-box;
  7148. width:100%;
  7149. }
  7150. #u35878_text {
  7151. border-width:0px;
  7152. word-wrap:break-word;
  7153. text-transform:none;
  7154. }
  7155. #u35879_div {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:25px;
  7161. height:17px;
  7162. background:inherit;
  7163. background-color:rgba(255, 255, 255, 0);
  7164. border:none;
  7165. border-radius:0px;
  7166. -moz-box-shadow:none;
  7167. -webkit-box-shadow:none;
  7168. box-shadow:none;
  7169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:12px;
  7173. }
  7174. #u35879 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:803px;
  7178. top:820px;
  7179. width:25px;
  7180. height:17px;
  7181. display:flex;
  7182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:12px;
  7186. }
  7187. #u35879 .text {
  7188. position:absolute;
  7189. align-self:flex-start;
  7190. padding:0px 0px 0px 0px;
  7191. box-sizing:border-box;
  7192. width:100%;
  7193. }
  7194. #u35879_text {
  7195. border-width:0px;
  7196. white-space:nowrap;
  7197. text-transform:none;
  7198. }
  7199. #u35880 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:0px;
  7203. top:0px;
  7204. width:0px;
  7205. height:0px;
  7206. }
  7207. #u35881_div {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:0px;
  7211. top:0px;
  7212. width:25px;
  7213. height:17px;
  7214. background:inherit;
  7215. background-color:rgba(255, 255, 255, 0);
  7216. border:none;
  7217. border-radius:0px;
  7218. -moz-box-shadow:none;
  7219. -webkit-box-shadow:none;
  7220. box-shadow:none;
  7221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7222. font-weight:400;
  7223. font-style:normal;
  7224. font-size:12px;
  7225. }
  7226. #u35881 {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:668px;
  7230. top:820px;
  7231. width:25px;
  7232. height:17px;
  7233. display:flex;
  7234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7235. font-weight:400;
  7236. font-style:normal;
  7237. font-size:12px;
  7238. }
  7239. #u35881 .text {
  7240. position:absolute;
  7241. align-self:flex-start;
  7242. padding:0px 0px 0px 0px;
  7243. box-sizing:border-box;
  7244. width:100%;
  7245. }
  7246. #u35881_text {
  7247. border-width:0px;
  7248. white-space:nowrap;
  7249. text-transform:none;
  7250. }
  7251. #u35882_img {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:24px;
  7257. height:24px;
  7258. }
  7259. #u35882 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:669px;
  7263. top:795px;
  7264. width:24px;
  7265. height:24px;
  7266. display:flex;
  7267. font-size:8px;
  7268. color:#FFFFFF;
  7269. }
  7270. #u35882 .text {
  7271. position:absolute;
  7272. align-self:center;
  7273. padding:2px 2px 2px 2px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u35882_text {
  7278. border-width:0px;
  7279. word-wrap:break-word;
  7280. text-transform:none;
  7281. }
  7282. #u35883 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:0px;
  7286. top:0px;
  7287. width:0px;
  7288. height:0px;
  7289. }
  7290. #u35884_img {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:0px;
  7294. top:0px;
  7295. width:24px;
  7296. height:24px;
  7297. }
  7298. #u35884 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:532px;
  7302. top:795px;
  7303. width:24px;
  7304. height:24px;
  7305. display:flex;
  7306. font-size:8px;
  7307. }
  7308. #u35884 .text {
  7309. position:absolute;
  7310. align-self:center;
  7311. padding:2px 2px 2px 2px;
  7312. box-sizing:border-box;
  7313. width:100%;
  7314. }
  7315. #u35884_text {
  7316. border-width:0px;
  7317. word-wrap:break-word;
  7318. text-transform:none;
  7319. }
  7320. #u35885_div {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:25px;
  7326. height:17px;
  7327. background:inherit;
  7328. background-color:rgba(255, 255, 255, 0);
  7329. border:none;
  7330. border-radius:0px;
  7331. -moz-box-shadow:none;
  7332. -webkit-box-shadow:none;
  7333. box-shadow:none;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:12px;
  7338. }
  7339. #u35885 {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:532px;
  7343. top:820px;
  7344. width:25px;
  7345. height:17px;
  7346. display:flex;
  7347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:12px;
  7351. }
  7352. #u35885 .text {
  7353. position:absolute;
  7354. align-self:flex-start;
  7355. padding:0px 0px 0px 0px;
  7356. box-sizing:border-box;
  7357. width:100%;
  7358. }
  7359. #u35885_text {
  7360. border-width:0px;
  7361. white-space:nowrap;
  7362. text-transform:none;
  7363. }
  7364. #u35886 {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:0px;
  7368. top:0px;
  7369. width:0px;
  7370. height:0px;
  7371. }
  7372. #u35887_div {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:375px;
  7378. height:50px;
  7379. background:inherit;
  7380. background-color:rgba(255, 255, 255, 1);
  7381. box-sizing:border-box;
  7382. border-width:1px;
  7383. border-style:solid;
  7384. border-color:rgba(242, 242, 242, 1);
  7385. border-radius:26px;
  7386. border-top-left-radius:0px;
  7387. border-top-right-radius:0px;
  7388. -moz-box-shadow:none;
  7389. -webkit-box-shadow:none;
  7390. box-shadow:none;
  7391. }
  7392. #u35887 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:958px;
  7396. top:791px;
  7397. width:375px;
  7398. height:50px;
  7399. display:flex;
  7400. }
  7401. #u35887 .text {
  7402. position:absolute;
  7403. align-self:center;
  7404. padding:2px 2px 2px 2px;
  7405. box-sizing:border-box;
  7406. width:100%;
  7407. }
  7408. #u35887_text {
  7409. border-width:0px;
  7410. word-wrap:break-word;
  7411. text-transform:none;
  7412. visibility:hidden;
  7413. }
  7414. #u35888 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:0px;
  7420. height:0px;
  7421. }
  7422. #u35889_img {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:24px;
  7428. height:24px;
  7429. }
  7430. #u35889 {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:1269px;
  7434. top:795px;
  7435. width:24px;
  7436. height:24px;
  7437. display:flex;
  7438. font-size:8px;
  7439. }
  7440. #u35889 .text {
  7441. position:absolute;
  7442. align-self:center;
  7443. padding:2px 2px 2px 2px;
  7444. box-sizing:border-box;
  7445. width:100%;
  7446. }
  7447. #u35889_text {
  7448. border-width:0px;
  7449. word-wrap:break-word;
  7450. text-transform:none;
  7451. }
  7452. #u35890_div {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:0px;
  7456. top:0px;
  7457. width:25px;
  7458. height:17px;
  7459. background:inherit;
  7460. background-color:rgba(255, 255, 255, 0);
  7461. border:none;
  7462. border-radius:0px;
  7463. -moz-box-shadow:none;
  7464. -webkit-box-shadow:none;
  7465. box-shadow:none;
  7466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:12px;
  7470. }
  7471. #u35890 {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:1269px;
  7475. top:820px;
  7476. width:25px;
  7477. height:17px;
  7478. display:flex;
  7479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7480. font-weight:400;
  7481. font-style:normal;
  7482. font-size:12px;
  7483. }
  7484. #u35890 .text {
  7485. position:absolute;
  7486. align-self:flex-start;
  7487. padding:0px 0px 0px 0px;
  7488. box-sizing:border-box;
  7489. width:100%;
  7490. }
  7491. #u35890_text {
  7492. border-width:0px;
  7493. white-space:nowrap;
  7494. text-transform:none;
  7495. }
  7496. #u35891 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:0px;
  7502. height:0px;
  7503. }
  7504. #u35892_div {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:25px;
  7510. height:17px;
  7511. background:inherit;
  7512. background-color:rgba(255, 255, 255, 0);
  7513. border:none;
  7514. border-radius:0px;
  7515. -moz-box-shadow:none;
  7516. -webkit-box-shadow:none;
  7517. box-shadow:none;
  7518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7519. font-weight:400;
  7520. font-style:normal;
  7521. font-size:12px;
  7522. }
  7523. #u35892 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:1134px;
  7527. top:820px;
  7528. width:25px;
  7529. height:17px;
  7530. display:flex;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:12px;
  7535. }
  7536. #u35892 .text {
  7537. position:absolute;
  7538. align-self:flex-start;
  7539. padding:0px 0px 0px 0px;
  7540. box-sizing:border-box;
  7541. width:100%;
  7542. }
  7543. #u35892_text {
  7544. border-width:0px;
  7545. white-space:nowrap;
  7546. text-transform:none;
  7547. }
  7548. #u35893_img {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:0px;
  7552. top:0px;
  7553. width:24px;
  7554. height:24px;
  7555. }
  7556. #u35893 {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:1135px;
  7560. top:795px;
  7561. width:24px;
  7562. height:24px;
  7563. display:flex;
  7564. font-size:8px;
  7565. color:#FFFFFF;
  7566. }
  7567. #u35893 .text {
  7568. position:absolute;
  7569. align-self:center;
  7570. padding:2px 2px 2px 2px;
  7571. box-sizing:border-box;
  7572. width:100%;
  7573. }
  7574. #u35893_text {
  7575. border-width:0px;
  7576. word-wrap:break-word;
  7577. text-transform:none;
  7578. }
  7579. #u35894 {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:0px;
  7583. top:0px;
  7584. width:0px;
  7585. height:0px;
  7586. }
  7587. #u35895_img {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:24px;
  7593. height:24px;
  7594. }
  7595. #u35895 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:998px;
  7599. top:795px;
  7600. width:24px;
  7601. height:24px;
  7602. display:flex;
  7603. font-size:8px;
  7604. }
  7605. #u35895 .text {
  7606. position:absolute;
  7607. align-self:center;
  7608. padding:2px 2px 2px 2px;
  7609. box-sizing:border-box;
  7610. width:100%;
  7611. }
  7612. #u35895_text {
  7613. border-width:0px;
  7614. word-wrap:break-word;
  7615. text-transform:none;
  7616. }
  7617. #u35896_div {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:25px;
  7623. height:17px;
  7624. background:inherit;
  7625. background-color:rgba(255, 255, 255, 0);
  7626. border:none;
  7627. border-radius:0px;
  7628. -moz-box-shadow:none;
  7629. -webkit-box-shadow:none;
  7630. box-shadow:none;
  7631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7632. font-weight:400;
  7633. font-style:normal;
  7634. font-size:12px;
  7635. }
  7636. #u35896 {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:998px;
  7640. top:820px;
  7641. width:25px;
  7642. height:17px;
  7643. display:flex;
  7644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7645. font-weight:400;
  7646. font-style:normal;
  7647. font-size:12px;
  7648. }
  7649. #u35896 .text {
  7650. position:absolute;
  7651. align-self:flex-start;
  7652. padding:0px 0px 0px 0px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u35896_text {
  7657. border-width:0px;
  7658. white-space:nowrap;
  7659. text-transform:none;
  7660. }