styles.css 217 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2270px;
  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. #u34311_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u34311 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u34311 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u34311_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u34312_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u34312 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u34312 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u34312_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u34313 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u34314_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u34314 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u34314 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u34314_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u34315 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u34316_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u34316 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u34316 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u34316_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u34317_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u34317 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u34317 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u34317_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u34318 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u34319_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u34319 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u34319 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u34319_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u34320_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u34320 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u34320 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u34320_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u34321_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u34321 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u34321 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u34321_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u34322_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u34322 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u34322 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u34322_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u34323_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u34323 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u34323 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u34323_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u34324_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u34324 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u34324 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u34324_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u34325 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u34326_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u34326 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u34326 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u34326_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u34327_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u34327 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u34327 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u34327_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u34328 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u34329_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u34329 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u34329 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u34329_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u34330_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u34330 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u34330 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u34330_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u34331_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u34331 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u34331 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u34331_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u34332 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u34333_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u34333 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u34333 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u34333_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u34334_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u34334 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u34334 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u34334_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u34335 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u34336_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u34336 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u34336 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u34336_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u34337_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u34337 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u34337 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u34337_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u34338_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:740px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u34338 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:740px;
  804. display:flex;
  805. }
  806. #u34338 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u34338_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u34339 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u34340_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:11px;
  833. height:18px;
  834. }
  835. #u34340 {
  836. border-width:0px;
  837. position:absolute;
  838. left:40px;
  839. top:79px;
  840. width:11px;
  841. height:18px;
  842. display:flex;
  843. }
  844. #u34340 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u34340_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u34341_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:329px;
  863. height:40px;
  864. background:inherit;
  865. background-color:rgba(24, 144, 255, 1);
  866. box-sizing:border-box;
  867. border-width:1px;
  868. border-style:solid;
  869. border-color:rgba(24, 144, 255, 1);
  870. border-radius:19px;
  871. -moz-box-shadow:none;
  872. -webkit-box-shadow:none;
  873. box-shadow:none;
  874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  875. font-weight:400;
  876. font-style:normal;
  877. font-size:14px;
  878. color:#FFFFFF;
  879. text-align:center;
  880. line-height:30px;
  881. }
  882. #u34341 {
  883. border-width:0px;
  884. position:absolute;
  885. left:52px;
  886. top:795px;
  887. width:329px;
  888. height:40px;
  889. display:flex;
  890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  891. font-weight:400;
  892. font-style:normal;
  893. font-size:14px;
  894. color:#FFFFFF;
  895. text-align:center;
  896. line-height:30px;
  897. }
  898. #u34341 .text {
  899. position:absolute;
  900. align-self:center;
  901. padding:0px 0px 0px 0px;
  902. box-sizing:border-box;
  903. width:100%;
  904. }
  905. #u34341_text {
  906. border-width:0px;
  907. word-wrap:break-word;
  908. text-transform:none;
  909. }
  910. #u34342_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:375px;
  916. height:102px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 1);
  919. box-sizing:border-box;
  920. border-width:1px;
  921. border-style:solid;
  922. border-color:rgba(215, 215, 215, 1);
  923. border-left:0px;
  924. border-top:0px;
  925. border-right:0px;
  926. border-radius:0px;
  927. border-bottom-right-radius:0px;
  928. border-bottom-left-radius:0px;
  929. -moz-box-shadow:none;
  930. -webkit-box-shadow:none;
  931. box-shadow:none;
  932. }
  933. #u34342 {
  934. border-width:0px;
  935. position:absolute;
  936. left:29px;
  937. top:105px;
  938. width:375px;
  939. height:102px;
  940. display:flex;
  941. }
  942. #u34342 .text {
  943. position:absolute;
  944. align-self:center;
  945. padding:2px 2px 2px 2px;
  946. box-sizing:border-box;
  947. width:100%;
  948. }
  949. #u34342_text {
  950. border-width:0px;
  951. word-wrap:break-word;
  952. text-transform:none;
  953. visibility:hidden;
  954. }
  955. #u34343 {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:0px;
  961. height:0px;
  962. }
  963. #u34344_div {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:88px;
  969. height:32px;
  970. background:inherit;
  971. background-color:rgba(255, 255, 255, 1);
  972. box-sizing:border-box;
  973. border-width:1px;
  974. border-style:solid;
  975. border-color:rgba(242, 242, 242, 1);
  976. border-radius:33px;
  977. -moz-box-shadow:none;
  978. -webkit-box-shadow:none;
  979. box-shadow:none;
  980. }
  981. #u34344 {
  982. border-width:0px;
  983. position:absolute;
  984. left:309px;
  985. top:71px;
  986. width:88px;
  987. height:32px;
  988. display:flex;
  989. }
  990. #u34344 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:2px 2px 2px 2px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u34344_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. visibility:hidden;
  1002. }
  1003. #u34345 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:0px;
  1009. height:0px;
  1010. }
  1011. #u34346_img {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:18px;
  1017. height:18px;
  1018. }
  1019. #u34346 {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:372px;
  1023. top:78px;
  1024. width:18px;
  1025. height:18px;
  1026. display:flex;
  1027. }
  1028. #u34346 .text {
  1029. position:absolute;
  1030. align-self:center;
  1031. padding:2px 2px 2px 2px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u34346_text {
  1036. border-width:0px;
  1037. word-wrap:break-word;
  1038. text-transform:none;
  1039. visibility:hidden;
  1040. }
  1041. #u34347_img {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:0px;
  1045. top:0px;
  1046. width:6px;
  1047. height:6px;
  1048. }
  1049. #u34347 {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:378px;
  1053. top:84px;
  1054. width:6px;
  1055. height:6px;
  1056. display:flex;
  1057. }
  1058. #u34347 .text {
  1059. position:absolute;
  1060. align-self:center;
  1061. padding:2px 2px 2px 2px;
  1062. box-sizing:border-box;
  1063. width:100%;
  1064. }
  1065. #u34347_text {
  1066. border-width:0px;
  1067. word-wrap:break-word;
  1068. text-transform:none;
  1069. visibility:hidden;
  1070. }
  1071. #u34348 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:0px;
  1077. height:0px;
  1078. }
  1079. #u34349_img {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:0px;
  1083. top:0px;
  1084. width:5px;
  1085. height:5px;
  1086. }
  1087. #u34349 {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:323px;
  1091. top:85px;
  1092. width:5px;
  1093. height:5px;
  1094. display:flex;
  1095. }
  1096. #u34349 .text {
  1097. position:absolute;
  1098. align-self:center;
  1099. padding:2px 2px 2px 2px;
  1100. box-sizing:border-box;
  1101. width:100%;
  1102. }
  1103. #u34349_text {
  1104. border-width:0px;
  1105. word-wrap:break-word;
  1106. text-transform:none;
  1107. visibility:hidden;
  1108. }
  1109. #u34350_img {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:5px;
  1115. height:5px;
  1116. }
  1117. #u34350 {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:339px;
  1121. top:85px;
  1122. width:5px;
  1123. height:5px;
  1124. display:flex;
  1125. }
  1126. #u34350 .text {
  1127. position:absolute;
  1128. align-self:center;
  1129. padding:2px 2px 2px 2px;
  1130. box-sizing:border-box;
  1131. width:100%;
  1132. }
  1133. #u34350_text {
  1134. border-width:0px;
  1135. word-wrap:break-word;
  1136. text-transform:none;
  1137. visibility:hidden;
  1138. }
  1139. #u34351_img {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:0px;
  1143. top:0px;
  1144. width:7px;
  1145. height:7px;
  1146. }
  1147. #u34351 {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:330px;
  1151. top:84px;
  1152. width:7px;
  1153. height:7px;
  1154. display:flex;
  1155. }
  1156. #u34351 .text {
  1157. position:absolute;
  1158. align-self:center;
  1159. padding:2px 2px 2px 2px;
  1160. box-sizing:border-box;
  1161. width:100%;
  1162. }
  1163. #u34351_text {
  1164. border-width:0px;
  1165. word-wrap:break-word;
  1166. text-transform:none;
  1167. visibility:hidden;
  1168. }
  1169. #u34352_img {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:19px;
  1175. height:2px;
  1176. }
  1177. #u34352 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:347px;
  1181. top:87px;
  1182. width:18px;
  1183. height:1px;
  1184. display:flex;
  1185. -webkit-transform:rotate(90deg);
  1186. -moz-transform:rotate(90deg);
  1187. -ms-transform:rotate(90deg);
  1188. transform:rotate(90deg);
  1189. }
  1190. #u34352 .text {
  1191. position:absolute;
  1192. align-self:center;
  1193. padding:2px 2px 2px 2px;
  1194. box-sizing:border-box;
  1195. width:100%;
  1196. }
  1197. #u34352_text {
  1198. border-width:0px;
  1199. word-wrap:break-word;
  1200. text-transform:none;
  1201. visibility:hidden;
  1202. }
  1203. #u34353_div {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:12px;
  1209. height:12px;
  1210. background:inherit;
  1211. background-color:rgba(255, 255, 255, 0);
  1212. box-sizing:border-box;
  1213. border-width:2px;
  1214. border-style:solid;
  1215. border-color:rgba(51, 51, 51, 1);
  1216. border-right:0px;
  1217. border-bottom:0px;
  1218. border-radius:0px;
  1219. border-top-right-radius:0px;
  1220. border-bottom-left-radius:0px;
  1221. -moz-box-shadow:none;
  1222. -webkit-box-shadow:none;
  1223. box-shadow:none;
  1224. }
  1225. #u34353 {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:44px;
  1229. top:81px;
  1230. width:12px;
  1231. height:12px;
  1232. display:flex;
  1233. -webkit-transform:rotate(315deg);
  1234. -moz-transform:rotate(315deg);
  1235. -ms-transform:rotate(315deg);
  1236. transform:rotate(315deg);
  1237. }
  1238. #u34353 .text {
  1239. position:absolute;
  1240. align-self:center;
  1241. padding:2px 2px 2px 2px;
  1242. box-sizing:border-box;
  1243. width:100%;
  1244. }
  1245. #u34353_text {
  1246. border-width:0px;
  1247. word-wrap:break-word;
  1248. text-transform:none;
  1249. visibility:hidden;
  1250. }
  1251. #u34354_div {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:43px;
  1257. height:21px;
  1258. background:inherit;
  1259. background-color:rgba(24, 144, 255, 1);
  1260. border:none;
  1261. border-radius:17px;
  1262. -moz-box-shadow:none;
  1263. -webkit-box-shadow:none;
  1264. box-shadow:none;
  1265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1266. font-weight:400;
  1267. font-style:normal;
  1268. font-size:12px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u34354 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:42px;
  1275. top:155px;
  1276. width:43px;
  1277. height:21px;
  1278. display:flex;
  1279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1280. font-weight:400;
  1281. font-style:normal;
  1282. font-size:12px;
  1283. color:#FFFFFF;
  1284. }
  1285. #u34354 .text {
  1286. position:absolute;
  1287. align-self:center;
  1288. padding:2px 3px 2px 3px;
  1289. box-sizing:border-box;
  1290. width:100%;
  1291. }
  1292. #u34354_text {
  1293. border-width:0px;
  1294. white-space:nowrap;
  1295. text-transform:none;
  1296. }
  1297. #u34355_div {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:0px;
  1301. top:0px;
  1302. width:43px;
  1303. height:21px;
  1304. background:inherit;
  1305. background-color:rgba(242, 242, 242, 1);
  1306. border:none;
  1307. border-radius:17px;
  1308. -moz-box-shadow:none;
  1309. -webkit-box-shadow:none;
  1310. box-shadow:none;
  1311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1312. font-weight:400;
  1313. font-style:normal;
  1314. font-size:12px;
  1315. color:#555555;
  1316. }
  1317. #u34355 {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:103px;
  1321. top:155px;
  1322. width:43px;
  1323. height:21px;
  1324. display:flex;
  1325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1326. font-weight:400;
  1327. font-style:normal;
  1328. font-size:12px;
  1329. color:#555555;
  1330. }
  1331. #u34355 .text {
  1332. position:absolute;
  1333. align-self:center;
  1334. padding:2px 3px 2px 3px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u34355_text {
  1339. border-width:0px;
  1340. white-space:nowrap;
  1341. text-transform:none;
  1342. }
  1343. #u34356_div {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:43px;
  1349. height:21px;
  1350. background:inherit;
  1351. background-color:rgba(242, 242, 242, 1);
  1352. border:none;
  1353. border-radius:17px;
  1354. -moz-box-shadow:none;
  1355. -webkit-box-shadow:none;
  1356. box-shadow:none;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. font-size:12px;
  1361. color:#555555;
  1362. }
  1363. #u34356 {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:163px;
  1367. top:155px;
  1368. width:43px;
  1369. height:21px;
  1370. display:flex;
  1371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1372. font-weight:400;
  1373. font-style:normal;
  1374. font-size:12px;
  1375. color:#555555;
  1376. }
  1377. #u34356 .text {
  1378. position:absolute;
  1379. align-self:center;
  1380. padding:2px 3px 2px 3px;
  1381. box-sizing:border-box;
  1382. width:100%;
  1383. }
  1384. #u34356_text {
  1385. border-width:0px;
  1386. white-space:nowrap;
  1387. text-transform:none;
  1388. }
  1389. #u34357 {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:0px;
  1393. top:0px;
  1394. width:0px;
  1395. height:0px;
  1396. }
  1397. #u34358_div {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:280px;
  1403. height:30px;
  1404. background:inherit;
  1405. background-color:rgba(242, 242, 242, 1);
  1406. border:none;
  1407. border-radius:20px;
  1408. -moz-box-shadow:none;
  1409. -webkit-box-shadow:none;
  1410. box-shadow:none;
  1411. }
  1412. #u34358 {
  1413. border-width:0px;
  1414. position:absolute;
  1415. left:42px;
  1416. top:115px;
  1417. width:280px;
  1418. height:30px;
  1419. display:flex;
  1420. }
  1421. #u34358 .text {
  1422. position:absolute;
  1423. align-self:center;
  1424. padding:2px 2px 2px 2px;
  1425. box-sizing:border-box;
  1426. width:100%;
  1427. }
  1428. #u34358_text {
  1429. border-width:0px;
  1430. word-wrap:break-word;
  1431. text-transform:none;
  1432. visibility:hidden;
  1433. }
  1434. #u34359_input {
  1435. position:absolute;
  1436. left:0px;
  1437. top:0px;
  1438. width:260px;
  1439. height:25px;
  1440. padding:2px 2px 2px 2px;
  1441. font-family:'ArialMT', 'Arial', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. font-size:13px;
  1445. letter-spacing:normal;
  1446. color:#000000;
  1447. vertical-align:none;
  1448. text-align:left;
  1449. text-transform:none;
  1450. background-color:transparent;
  1451. border-color:transparent;
  1452. }
  1453. #u34359_input.disabled {
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:260px;
  1458. height:25px;
  1459. padding:2px 2px 2px 2px;
  1460. font-family:'ArialMT', 'Arial', sans-serif;
  1461. font-weight:400;
  1462. font-style:normal;
  1463. font-size:13px;
  1464. letter-spacing:normal;
  1465. color:#000000;
  1466. vertical-align:none;
  1467. text-align:left;
  1468. text-transform:none;
  1469. background-color:transparent;
  1470. border-color:transparent;
  1471. }
  1472. #u34359_div {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:260px;
  1478. height:25px;
  1479. background:inherit;
  1480. background-color:rgba(242, 242, 242, 1);
  1481. border:none;
  1482. border-radius:0px;
  1483. -moz-box-shadow:none;
  1484. -webkit-box-shadow:none;
  1485. box-shadow:none;
  1486. }
  1487. #u34359 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:51px;
  1491. top:116px;
  1492. width:260px;
  1493. height:25px;
  1494. display:flex;
  1495. }
  1496. #u34359 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:2px 2px 2px 2px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u34359_div.disabled {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:0px;
  1507. top:0px;
  1508. width:260px;
  1509. height:25px;
  1510. background:inherit;
  1511. background-color:rgba(240, 240, 240, 1);
  1512. border:none;
  1513. border-radius:0px;
  1514. -moz-box-shadow:none;
  1515. -webkit-box-shadow:none;
  1516. box-shadow:none;
  1517. }
  1518. #u34359.disabled {
  1519. }
  1520. #u34360_img {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:0px;
  1524. top:0px;
  1525. width:12px;
  1526. height:12px;
  1527. }
  1528. #u34360 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:303px;
  1532. top:124px;
  1533. width:12px;
  1534. height:12px;
  1535. display:flex;
  1536. }
  1537. #u34360 .text {
  1538. position:absolute;
  1539. align-self:center;
  1540. padding:2px 2px 2px 2px;
  1541. box-sizing:border-box;
  1542. width:100%;
  1543. }
  1544. #u34360_text {
  1545. border-width:0px;
  1546. word-wrap:break-word;
  1547. text-transform:none;
  1548. visibility:hidden;
  1549. }
  1550. #u34361_div {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:0px;
  1554. top:0px;
  1555. width:49px;
  1556. height:30px;
  1557. background:inherit;
  1558. background-color:rgba(255, 255, 255, 0);
  1559. border:none;
  1560. border-left:0px;
  1561. border-top:0px;
  1562. border-right:0px;
  1563. border-radius:0px;
  1564. border-bottom-right-radius:0px;
  1565. border-bottom-left-radius:0px;
  1566. -moz-box-shadow:none;
  1567. -webkit-box-shadow:none;
  1568. box-shadow:none;
  1569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1570. font-weight:400;
  1571. font-style:normal;
  1572. font-size:12px;
  1573. color:#1890FF;
  1574. line-height:30px;
  1575. }
  1576. #u34361 {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:341px;
  1580. top:115px;
  1581. width:49px;
  1582. height:30px;
  1583. display:flex;
  1584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1585. font-weight:400;
  1586. font-style:normal;
  1587. font-size:12px;
  1588. color:#1890FF;
  1589. line-height:30px;
  1590. }
  1591. #u34361 .text {
  1592. position:absolute;
  1593. align-self:flex-start;
  1594. padding:0px 0px 0px 0px;
  1595. box-sizing:border-box;
  1596. width:100%;
  1597. }
  1598. #u34361_text {
  1599. border-width:0px;
  1600. white-space:nowrap;
  1601. text-transform:none;
  1602. }
  1603. #u34362_div {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:0px;
  1608. width:63px;
  1609. height:14px;
  1610. background:inherit;
  1611. background-color:rgba(255, 255, 255, 0);
  1612. border:none;
  1613. border-left:0px;
  1614. border-top:0px;
  1615. border-right:0px;
  1616. border-radius:0px;
  1617. border-bottom-right-radius:0px;
  1618. border-bottom-left-radius:0px;
  1619. -moz-box-shadow:none;
  1620. -webkit-box-shadow:none;
  1621. box-shadow:none;
  1622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1623. font-weight:400;
  1624. font-style:normal;
  1625. font-size:10px;
  1626. color:#AAAAAA;
  1627. }
  1628. #u34362 {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:42px;
  1632. top:184px;
  1633. width:63px;
  1634. height:14px;
  1635. display:flex;
  1636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1637. font-weight:400;
  1638. font-style:normal;
  1639. font-size:10px;
  1640. color:#AAAAAA;
  1641. }
  1642. #u34362 .text {
  1643. position:absolute;
  1644. align-self:flex-start;
  1645. padding:0px 0px 0px 0px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u34362_text {
  1650. border-width:0px;
  1651. white-space:nowrap;
  1652. text-transform:none;
  1653. }
  1654. #u34363_div {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:65px;
  1660. height:22px;
  1661. background:inherit;
  1662. background-color:rgba(255, 255, 255, 0);
  1663. border:none;
  1664. border-radius:0px;
  1665. -moz-box-shadow:none;
  1666. -webkit-box-shadow:none;
  1667. box-shadow:none;
  1668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1669. font-weight:400;
  1670. font-style:normal;
  1671. font-size:16px;
  1672. color:#000000;
  1673. }
  1674. #u34363 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:181px;
  1678. top:76px;
  1679. width:65px;
  1680. height:22px;
  1681. display:flex;
  1682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1683. font-weight:400;
  1684. font-style:normal;
  1685. font-size:16px;
  1686. color:#000000;
  1687. }
  1688. #u34363 .text {
  1689. position:absolute;
  1690. align-self:flex-start;
  1691. padding:0px 0px 0px 0px;
  1692. box-sizing:border-box;
  1693. width:100%;
  1694. }
  1695. #u34363_text {
  1696. border-width:0px;
  1697. white-space:nowrap;
  1698. text-transform:none;
  1699. }
  1700. #u34364_div {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:11px;
  1706. height:11px;
  1707. background:inherit;
  1708. background-color:rgba(217, 0, 27, 1);
  1709. border:none;
  1710. border-radius:7px;
  1711. -moz-box-shadow:none;
  1712. -webkit-box-shadow:none;
  1713. box-shadow:none;
  1714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:8px;
  1718. color:#FFFFFF;
  1719. text-align:center;
  1720. }
  1721. #u34364 {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:80px;
  1725. top:150px;
  1726. width:11px;
  1727. height:11px;
  1728. display:flex;
  1729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1730. font-weight:400;
  1731. font-style:normal;
  1732. font-size:8px;
  1733. color:#FFFFFF;
  1734. text-align:center;
  1735. }
  1736. #u34364 .text {
  1737. position:absolute;
  1738. align-self:flex-start;
  1739. padding:0px 0px 0px 0px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u34364_text {
  1744. border-width:0px;
  1745. word-wrap:break-word;
  1746. text-transform:none;
  1747. }
  1748. #u34365_div {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:43px;
  1754. height:21px;
  1755. background:inherit;
  1756. background-color:rgba(242, 242, 242, 1);
  1757. border:none;
  1758. border-radius:17px;
  1759. -moz-box-shadow:none;
  1760. -webkit-box-shadow:none;
  1761. box-shadow:none;
  1762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:12px;
  1766. color:#555555;
  1767. }
  1768. #u34365 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:224px;
  1772. top:155px;
  1773. width:43px;
  1774. height:21px;
  1775. display:flex;
  1776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1777. font-weight:400;
  1778. font-style:normal;
  1779. font-size:12px;
  1780. color:#555555;
  1781. }
  1782. #u34365 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:2px 3px 2px 3px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u34365_text {
  1790. border-width:0px;
  1791. white-space:nowrap;
  1792. text-transform:none;
  1793. }
  1794. #u34366_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:43px;
  1800. height:21px;
  1801. background:inherit;
  1802. background-color:rgba(242, 242, 242, 1);
  1803. border:none;
  1804. border-radius:17px;
  1805. -moz-box-shadow:none;
  1806. -webkit-box-shadow:none;
  1807. box-shadow:none;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:12px;
  1812. color:#555555;
  1813. }
  1814. #u34366 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:287px;
  1818. top:155px;
  1819. width:43px;
  1820. height:21px;
  1821. display:flex;
  1822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1823. font-weight:400;
  1824. font-style:normal;
  1825. font-size:12px;
  1826. color:#555555;
  1827. }
  1828. #u34366 .text {
  1829. position:absolute;
  1830. align-self:center;
  1831. padding:2px 3px 2px 3px;
  1832. box-sizing:border-box;
  1833. width:100%;
  1834. }
  1835. #u34366_text {
  1836. border-width:0px;
  1837. white-space:nowrap;
  1838. text-transform:none;
  1839. }
  1840. #u34368_img {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:0px;
  1844. top:0px;
  1845. width:433px;
  1846. height:865px;
  1847. }
  1848. #u34368 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:453px;
  1852. top:0px;
  1853. width:433px;
  1854. height:865px;
  1855. display:flex;
  1856. }
  1857. #u34368 .text {
  1858. position:absolute;
  1859. align-self:center;
  1860. padding:2px 2px 2px 2px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u34368_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. visibility:hidden;
  1869. }
  1870. #u34369_div {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:375px;
  1876. height:40px;
  1877. background:inherit;
  1878. background-color:rgba(255, 255, 255, 1);
  1879. box-sizing:border-box;
  1880. border-width:1px;
  1881. border-style:solid;
  1882. border-color:rgba(215, 215, 215, 1);
  1883. border-left:0px;
  1884. border-top:0px;
  1885. border-right:0px;
  1886. border-radius:0px;
  1887. border-bottom-right-radius:0px;
  1888. border-bottom-left-radius:0px;
  1889. -moz-box-shadow:none;
  1890. -webkit-box-shadow:none;
  1891. box-shadow:none;
  1892. }
  1893. #u34369 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:482px;
  1897. top:67px;
  1898. width:375px;
  1899. height:40px;
  1900. display:flex;
  1901. }
  1902. #u34369 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 2px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u34369_text {
  1910. border-width:0px;
  1911. word-wrap:break-word;
  1912. text-transform:none;
  1913. visibility:hidden;
  1914. }
  1915. #u34370 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:0px;
  1921. height:0px;
  1922. }
  1923. #u34371_div {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:88px;
  1929. height:32px;
  1930. background:inherit;
  1931. background-color:rgba(255, 255, 255, 1);
  1932. box-sizing:border-box;
  1933. border-width:1px;
  1934. border-style:solid;
  1935. border-color:rgba(242, 242, 242, 1);
  1936. border-radius:33px;
  1937. -moz-box-shadow:none;
  1938. -webkit-box-shadow:none;
  1939. box-shadow:none;
  1940. }
  1941. #u34371 {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:762px;
  1945. top:71px;
  1946. width:88px;
  1947. height:32px;
  1948. display:flex;
  1949. }
  1950. #u34371 .text {
  1951. position:absolute;
  1952. align-self:center;
  1953. padding:2px 2px 2px 2px;
  1954. box-sizing:border-box;
  1955. width:100%;
  1956. }
  1957. #u34371_text {
  1958. border-width:0px;
  1959. word-wrap:break-word;
  1960. text-transform:none;
  1961. visibility:hidden;
  1962. }
  1963. #u34372 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:0px;
  1969. height:0px;
  1970. }
  1971. #u34373_img {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:18px;
  1977. height:18px;
  1978. }
  1979. #u34373 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:825px;
  1983. top:78px;
  1984. width:18px;
  1985. height:18px;
  1986. display:flex;
  1987. }
  1988. #u34373 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 2px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u34373_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. visibility:hidden;
  2000. }
  2001. #u34374_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:6px;
  2007. height:6px;
  2008. }
  2009. #u34374 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:831px;
  2013. top:84px;
  2014. width:6px;
  2015. height:6px;
  2016. display:flex;
  2017. }
  2018. #u34374 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u34374_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. visibility:hidden;
  2030. }
  2031. #u34375 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:0px;
  2037. height:0px;
  2038. }
  2039. #u34376_img {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:5px;
  2045. height:5px;
  2046. }
  2047. #u34376 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:776px;
  2051. top:85px;
  2052. width:5px;
  2053. height:5px;
  2054. display:flex;
  2055. }
  2056. #u34376 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 2px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u34376_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. visibility:hidden;
  2068. }
  2069. #u34377_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:5px;
  2075. height:5px;
  2076. }
  2077. #u34377 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:792px;
  2081. top:85px;
  2082. width:5px;
  2083. height:5px;
  2084. display:flex;
  2085. }
  2086. #u34377 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 2px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u34377_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u34378_img {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:7px;
  2105. height:7px;
  2106. }
  2107. #u34378 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:783px;
  2111. top:84px;
  2112. width:7px;
  2113. height:7px;
  2114. display:flex;
  2115. }
  2116. #u34378 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 2px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u34378_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. visibility:hidden;
  2128. }
  2129. #u34379_img {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:19px;
  2135. height:2px;
  2136. }
  2137. #u34379 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:800px;
  2141. top:87px;
  2142. width:18px;
  2143. height:1px;
  2144. display:flex;
  2145. -webkit-transform:rotate(90deg);
  2146. -moz-transform:rotate(90deg);
  2147. -ms-transform:rotate(90deg);
  2148. transform:rotate(90deg);
  2149. }
  2150. #u34379 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 2px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u34379_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. visibility:hidden;
  2162. }
  2163. #u34380_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:375px;
  2169. height:44px;
  2170. }
  2171. #u34380 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:482px;
  2175. top:24px;
  2176. width:375px;
  2177. height:44px;
  2178. display:flex;
  2179. }
  2180. #u34380 .text {
  2181. position:absolute;
  2182. align-self:center;
  2183. padding:2px 2px 2px 2px;
  2184. box-sizing:border-box;
  2185. width:100%;
  2186. }
  2187. #u34380_text {
  2188. border-width:0px;
  2189. word-wrap:break-word;
  2190. text-transform:none;
  2191. visibility:hidden;
  2192. }
  2193. #u34381_div {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:375px;
  2199. height:50px;
  2200. background:inherit;
  2201. background-color:rgba(255, 255, 255, 1);
  2202. box-sizing:border-box;
  2203. border-width:1px;
  2204. border-style:solid;
  2205. border-color:rgba(242, 242, 242, 1);
  2206. border-radius:26px;
  2207. border-top-left-radius:0px;
  2208. border-top-right-radius:0px;
  2209. -moz-box-shadow:none;
  2210. -webkit-box-shadow:none;
  2211. box-shadow:none;
  2212. }
  2213. #u34381 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:482px;
  2217. top:788px;
  2218. width:375px;
  2219. height:50px;
  2220. display:flex;
  2221. }
  2222. #u34381 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 2px 2px 2px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u34381_text {
  2230. border-width:0px;
  2231. word-wrap:break-word;
  2232. text-transform:none;
  2233. visibility:hidden;
  2234. }
  2235. #u34382 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:0px;
  2241. height:0px;
  2242. }
  2243. #u34383_img {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:24px;
  2249. height:24px;
  2250. }
  2251. #u34383 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:522px;
  2255. top:792px;
  2256. width:24px;
  2257. height:24px;
  2258. display:flex;
  2259. font-size:8px;
  2260. }
  2261. #u34383 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 2px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u34383_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u34384_div {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:25px;
  2279. height:17px;
  2280. background:inherit;
  2281. background-color:rgba(255, 255, 255, 0);
  2282. border:none;
  2283. border-radius:0px;
  2284. -moz-box-shadow:none;
  2285. -webkit-box-shadow:none;
  2286. box-shadow:none;
  2287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:12px;
  2291. }
  2292. #u34384 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:522px;
  2296. top:817px;
  2297. width:25px;
  2298. height:17px;
  2299. display:flex;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:12px;
  2304. }
  2305. #u34384 .text {
  2306. position:absolute;
  2307. align-self:flex-start;
  2308. padding:0px 0px 0px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u34384_text {
  2313. border-width:0px;
  2314. white-space:nowrap;
  2315. text-transform:none;
  2316. }
  2317. #u34385 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:0px;
  2323. height:0px;
  2324. }
  2325. #u34386_img {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:24px;
  2331. height:24px;
  2332. }
  2333. #u34386 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:792px;
  2337. top:794px;
  2338. width:24px;
  2339. height:24px;
  2340. display:flex;
  2341. font-size:8px;
  2342. }
  2343. #u34386 .text {
  2344. position:absolute;
  2345. align-self:center;
  2346. padding:2px 2px 2px 2px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u34386_text {
  2351. border-width:0px;
  2352. word-wrap:break-word;
  2353. text-transform:none;
  2354. }
  2355. #u34387_div {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:0px;
  2359. top:0px;
  2360. width:25px;
  2361. height:17px;
  2362. background:inherit;
  2363. background-color:rgba(255, 255, 255, 0);
  2364. border:none;
  2365. border-radius:0px;
  2366. -moz-box-shadow:none;
  2367. -webkit-box-shadow:none;
  2368. box-shadow:none;
  2369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. font-size:12px;
  2373. }
  2374. #u34387 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:792px;
  2378. top:819px;
  2379. width:25px;
  2380. height:17px;
  2381. display:flex;
  2382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:12px;
  2386. }
  2387. #u34387 .text {
  2388. position:absolute;
  2389. align-self:flex-start;
  2390. padding:0px 0px 0px 0px;
  2391. box-sizing:border-box;
  2392. width:100%;
  2393. }
  2394. #u34387_text {
  2395. border-width:0px;
  2396. white-space:nowrap;
  2397. text-transform:none;
  2398. }
  2399. #u34388_div {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:375px;
  2405. height:681px;
  2406. background:inherit;
  2407. background-color:rgba(242, 242, 242, 0.462745098039216);
  2408. border:none;
  2409. border-radius:0px;
  2410. -moz-box-shadow:none;
  2411. -webkit-box-shadow:none;
  2412. box-shadow:none;
  2413. }
  2414. #u34388 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:482px;
  2418. top:107px;
  2419. width:375px;
  2420. height:681px;
  2421. display:flex;
  2422. }
  2423. #u34388 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:2px 2px 2px 2px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u34388_text {
  2431. border-width:0px;
  2432. word-wrap:break-word;
  2433. text-transform:none;
  2434. visibility:hidden;
  2435. }
  2436. #u34389 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:0px;
  2442. height:0px;
  2443. }
  2444. #u34390_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:24px;
  2450. height:24px;
  2451. }
  2452. #u34390 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:704px;
  2456. top:792px;
  2457. width:24px;
  2458. height:24px;
  2459. display:flex;
  2460. font-size:8px;
  2461. }
  2462. #u34390 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 2px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u34390_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. }
  2474. #u34391_div {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:37px;
  2480. height:17px;
  2481. background:inherit;
  2482. background-color:rgba(255, 255, 255, 0);
  2483. border:none;
  2484. border-radius:0px;
  2485. -moz-box-shadow:none;
  2486. -webkit-box-shadow:none;
  2487. box-shadow:none;
  2488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2489. font-weight:400;
  2490. font-style:normal;
  2491. font-size:12px;
  2492. }
  2493. #u34391 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:698px;
  2497. top:817px;
  2498. width:37px;
  2499. height:17px;
  2500. display:flex;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:12px;
  2505. }
  2506. #u34391 .text {
  2507. position:absolute;
  2508. align-self:flex-start;
  2509. padding:0px 0px 0px 0px;
  2510. box-sizing:border-box;
  2511. width:100%;
  2512. }
  2513. #u34391_text {
  2514. border-width:0px;
  2515. white-space:nowrap;
  2516. text-transform:none;
  2517. }
  2518. #u34392 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:0px;
  2524. height:0px;
  2525. }
  2526. #u34393_img {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:24px;
  2532. height:24px;
  2533. }
  2534. #u34393 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:610px;
  2538. top:792px;
  2539. width:24px;
  2540. height:24px;
  2541. display:flex;
  2542. font-size:8px;
  2543. }
  2544. #u34393 .text {
  2545. position:absolute;
  2546. align-self:center;
  2547. padding:2px 2px 2px 2px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u34393_text {
  2552. border-width:0px;
  2553. word-wrap:break-word;
  2554. text-transform:none;
  2555. }
  2556. #u34394_div {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:0px;
  2560. top:0px;
  2561. width:37px;
  2562. height:17px;
  2563. background:inherit;
  2564. background-color:rgba(255, 255, 255, 0);
  2565. border:none;
  2566. border-radius:0px;
  2567. -moz-box-shadow:none;
  2568. -webkit-box-shadow:none;
  2569. box-shadow:none;
  2570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:12px;
  2574. }
  2575. #u34394 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:604px;
  2579. top:817px;
  2580. width:37px;
  2581. height:17px;
  2582. display:flex;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:12px;
  2587. }
  2588. #u34394 .text {
  2589. position:absolute;
  2590. align-self:flex-start;
  2591. padding:0px 0px 0px 0px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u34394_text {
  2596. border-width:0px;
  2597. white-space:nowrap;
  2598. text-transform:none;
  2599. }
  2600. #u34395_div {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:0px;
  2604. top:0px;
  2605. width:375px;
  2606. height:740px;
  2607. background:inherit;
  2608. background-color:rgba(242, 242, 242, 1);
  2609. border:none;
  2610. border-top:0px;
  2611. border-radius:25px;
  2612. border-top-left-radius:0px;
  2613. border-top-right-radius:0px;
  2614. -moz-box-shadow:none;
  2615. -webkit-box-shadow:none;
  2616. box-shadow:none;
  2617. }
  2618. #u34395 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:482px;
  2622. top:105px;
  2623. width:375px;
  2624. height:740px;
  2625. display:flex;
  2626. }
  2627. #u34395 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:2px 2px 2px 2px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u34395_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. visibility:hidden;
  2639. }
  2640. #u34396 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:0px;
  2646. height:0px;
  2647. }
  2648. #u34397_img {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:11px;
  2654. height:18px;
  2655. }
  2656. #u34397 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:493px;
  2660. top:79px;
  2661. width:11px;
  2662. height:18px;
  2663. display:flex;
  2664. }
  2665. #u34397 .text {
  2666. position:absolute;
  2667. align-self:center;
  2668. padding:2px 2px 2px 2px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u34397_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. visibility:hidden;
  2677. }
  2678. #u34398_div {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:375px;
  2684. height:140px;
  2685. background:inherit;
  2686. background-color:rgba(255, 255, 255, 1);
  2687. box-sizing:border-box;
  2688. border-width:1px;
  2689. border-style:solid;
  2690. border-color:rgba(215, 215, 215, 1);
  2691. border-left:0px;
  2692. border-top:0px;
  2693. border-right:0px;
  2694. border-radius:0px;
  2695. border-bottom-right-radius:0px;
  2696. border-bottom-left-radius:0px;
  2697. -moz-box-shadow:none;
  2698. -webkit-box-shadow:none;
  2699. box-shadow:none;
  2700. }
  2701. #u34398 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:482px;
  2705. top:67px;
  2706. width:375px;
  2707. height:140px;
  2708. display:flex;
  2709. }
  2710. #u34398 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 2px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u34398_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u34399 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:0px;
  2729. height:0px;
  2730. }
  2731. #u34400_div {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:88px;
  2737. height:32px;
  2738. background:inherit;
  2739. background-color:rgba(255, 255, 255, 1);
  2740. box-sizing:border-box;
  2741. border-width:1px;
  2742. border-style:solid;
  2743. border-color:rgba(242, 242, 242, 1);
  2744. border-radius:33px;
  2745. -moz-box-shadow:none;
  2746. -webkit-box-shadow:none;
  2747. box-shadow:none;
  2748. }
  2749. #u34400 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:762px;
  2753. top:71px;
  2754. width:88px;
  2755. height:32px;
  2756. display:flex;
  2757. }
  2758. #u34400 .text {
  2759. position:absolute;
  2760. align-self:center;
  2761. padding:2px 2px 2px 2px;
  2762. box-sizing:border-box;
  2763. width:100%;
  2764. }
  2765. #u34400_text {
  2766. border-width:0px;
  2767. word-wrap:break-word;
  2768. text-transform:none;
  2769. visibility:hidden;
  2770. }
  2771. #u34401 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:0px;
  2777. height:0px;
  2778. }
  2779. #u34402_img {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:18px;
  2785. height:18px;
  2786. }
  2787. #u34402 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:825px;
  2791. top:78px;
  2792. width:18px;
  2793. height:18px;
  2794. display:flex;
  2795. }
  2796. #u34402 .text {
  2797. position:absolute;
  2798. align-self:center;
  2799. padding:2px 2px 2px 2px;
  2800. box-sizing:border-box;
  2801. width:100%;
  2802. }
  2803. #u34402_text {
  2804. border-width:0px;
  2805. word-wrap:break-word;
  2806. text-transform:none;
  2807. visibility:hidden;
  2808. }
  2809. #u34403_img {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:6px;
  2815. height:6px;
  2816. }
  2817. #u34403 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:831px;
  2821. top:84px;
  2822. width:6px;
  2823. height:6px;
  2824. display:flex;
  2825. }
  2826. #u34403 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 2px 2px 2px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u34403_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. visibility:hidden;
  2838. }
  2839. #u34404 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:0px;
  2845. height:0px;
  2846. }
  2847. #u34405_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:5px;
  2853. height:5px;
  2854. }
  2855. #u34405 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:776px;
  2859. top:85px;
  2860. width:5px;
  2861. height:5px;
  2862. display:flex;
  2863. }
  2864. #u34405 .text {
  2865. position:absolute;
  2866. align-self:center;
  2867. padding:2px 2px 2px 2px;
  2868. box-sizing:border-box;
  2869. width:100%;
  2870. }
  2871. #u34405_text {
  2872. border-width:0px;
  2873. word-wrap:break-word;
  2874. text-transform:none;
  2875. visibility:hidden;
  2876. }
  2877. #u34406_img {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:5px;
  2883. height:5px;
  2884. }
  2885. #u34406 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:792px;
  2889. top:85px;
  2890. width:5px;
  2891. height:5px;
  2892. display:flex;
  2893. }
  2894. #u34406 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 2px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u34406_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u34407_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:7px;
  2913. height:7px;
  2914. }
  2915. #u34407 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:783px;
  2919. top:84px;
  2920. width:7px;
  2921. height:7px;
  2922. display:flex;
  2923. }
  2924. #u34407 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 2px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u34407_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u34408_img {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:19px;
  2943. height:2px;
  2944. }
  2945. #u34408 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:800px;
  2949. top:87px;
  2950. width:18px;
  2951. height:1px;
  2952. display:flex;
  2953. -webkit-transform:rotate(90deg);
  2954. -moz-transform:rotate(90deg);
  2955. -ms-transform:rotate(90deg);
  2956. transform:rotate(90deg);
  2957. }
  2958. #u34408 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u34408_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u34409_div {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:12px;
  2977. height:12px;
  2978. background:inherit;
  2979. background-color:rgba(255, 255, 255, 0);
  2980. box-sizing:border-box;
  2981. border-width:2px;
  2982. border-style:solid;
  2983. border-color:rgba(51, 51, 51, 1);
  2984. border-right:0px;
  2985. border-bottom:0px;
  2986. border-radius:0px;
  2987. border-top-right-radius:0px;
  2988. border-bottom-left-radius:0px;
  2989. -moz-box-shadow:none;
  2990. -webkit-box-shadow:none;
  2991. box-shadow:none;
  2992. }
  2993. #u34409 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:497px;
  2997. top:82px;
  2998. width:12px;
  2999. height:12px;
  3000. display:flex;
  3001. -webkit-transform:rotate(315deg);
  3002. -moz-transform:rotate(315deg);
  3003. -ms-transform:rotate(315deg);
  3004. transform:rotate(315deg);
  3005. }
  3006. #u34409 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 2px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u34409_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. visibility:hidden;
  3018. }
  3019. #u34410_div {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:43px;
  3025. height:21px;
  3026. background:inherit;
  3027. background-color:rgba(242, 242, 242, 1);
  3028. border:none;
  3029. border-radius:17px;
  3030. -moz-box-shadow:none;
  3031. -webkit-box-shadow:none;
  3032. box-shadow:none;
  3033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. font-size:12px;
  3037. color:#555555;
  3038. }
  3039. #u34410 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:495px;
  3043. top:155px;
  3044. width:43px;
  3045. height:21px;
  3046. display:flex;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:12px;
  3051. color:#555555;
  3052. }
  3053. #u34410 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 3px 2px 3px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u34410_text {
  3061. border-width:0px;
  3062. white-space:nowrap;
  3063. text-transform:none;
  3064. }
  3065. #u34411_div {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:43px;
  3071. height:21px;
  3072. background:inherit;
  3073. background-color:rgba(0, 137, 254, 1);
  3074. border:none;
  3075. border-radius:17px;
  3076. -moz-box-shadow:none;
  3077. -webkit-box-shadow:none;
  3078. box-shadow:none;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:12px;
  3083. color:#FFFFFF;
  3084. }
  3085. #u34411 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:556px;
  3089. top:155px;
  3090. width:43px;
  3091. height:21px;
  3092. display:flex;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:12px;
  3097. color:#FFFFFF;
  3098. }
  3099. #u34411 .text {
  3100. position:absolute;
  3101. align-self:center;
  3102. padding:2px 3px 2px 3px;
  3103. box-sizing:border-box;
  3104. width:100%;
  3105. }
  3106. #u34411_text {
  3107. border-width:0px;
  3108. white-space:nowrap;
  3109. text-transform:none;
  3110. }
  3111. #u34412_div {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:0px;
  3116. width:43px;
  3117. height:21px;
  3118. background:inherit;
  3119. background-color:rgba(242, 242, 242, 1);
  3120. border:none;
  3121. border-radius:17px;
  3122. -moz-box-shadow:none;
  3123. -webkit-box-shadow:none;
  3124. box-shadow:none;
  3125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3126. font-weight:400;
  3127. font-style:normal;
  3128. font-size:12px;
  3129. color:#555555;
  3130. }
  3131. #u34412 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:616px;
  3135. top:155px;
  3136. width:43px;
  3137. height:21px;
  3138. display:flex;
  3139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:12px;
  3143. color:#555555;
  3144. }
  3145. #u34412 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 3px 2px 3px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u34412_text {
  3153. border-width:0px;
  3154. white-space:nowrap;
  3155. text-transform:none;
  3156. }
  3157. #u34413 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:0px;
  3163. height:0px;
  3164. }
  3165. #u34414_div {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:280px;
  3171. height:30px;
  3172. background:inherit;
  3173. background-color:rgba(242, 242, 242, 1);
  3174. border:none;
  3175. border-radius:20px;
  3176. -moz-box-shadow:none;
  3177. -webkit-box-shadow:none;
  3178. box-shadow:none;
  3179. }
  3180. #u34414 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:495px;
  3184. top:115px;
  3185. width:280px;
  3186. height:30px;
  3187. display:flex;
  3188. }
  3189. #u34414 .text {
  3190. position:absolute;
  3191. align-self:center;
  3192. padding:2px 2px 2px 2px;
  3193. box-sizing:border-box;
  3194. width:100%;
  3195. }
  3196. #u34414_text {
  3197. border-width:0px;
  3198. word-wrap:break-word;
  3199. text-transform:none;
  3200. visibility:hidden;
  3201. }
  3202. #u34415_input {
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:260px;
  3207. height:25px;
  3208. padding:2px 2px 2px 2px;
  3209. font-family:'ArialMT', 'Arial', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:13px;
  3213. letter-spacing:normal;
  3214. color:#000000;
  3215. vertical-align:none;
  3216. text-align:left;
  3217. text-transform:none;
  3218. background-color:transparent;
  3219. border-color:transparent;
  3220. }
  3221. #u34415_input.disabled {
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:260px;
  3226. height:25px;
  3227. padding:2px 2px 2px 2px;
  3228. font-family:'ArialMT', 'Arial', sans-serif;
  3229. font-weight:400;
  3230. font-style:normal;
  3231. font-size:13px;
  3232. letter-spacing:normal;
  3233. color:#000000;
  3234. vertical-align:none;
  3235. text-align:left;
  3236. text-transform:none;
  3237. background-color:transparent;
  3238. border-color:transparent;
  3239. }
  3240. #u34415_div {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:260px;
  3246. height:25px;
  3247. background:inherit;
  3248. background-color:rgba(242, 242, 242, 1);
  3249. border:none;
  3250. border-radius:0px;
  3251. -moz-box-shadow:none;
  3252. -webkit-box-shadow:none;
  3253. box-shadow:none;
  3254. }
  3255. #u34415 {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:504px;
  3259. top:116px;
  3260. width:260px;
  3261. height:25px;
  3262. display:flex;
  3263. }
  3264. #u34415 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 2px 2px 2px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u34415_div.disabled {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:260px;
  3277. height:25px;
  3278. background:inherit;
  3279. background-color:rgba(240, 240, 240, 1);
  3280. border:none;
  3281. border-radius:0px;
  3282. -moz-box-shadow:none;
  3283. -webkit-box-shadow:none;
  3284. box-shadow:none;
  3285. }
  3286. #u34415.disabled {
  3287. }
  3288. #u34416_img {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:0px;
  3293. width:12px;
  3294. height:12px;
  3295. }
  3296. #u34416 {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:756px;
  3300. top:124px;
  3301. width:12px;
  3302. height:12px;
  3303. display:flex;
  3304. }
  3305. #u34416 .text {
  3306. position:absolute;
  3307. align-self:center;
  3308. padding:2px 2px 2px 2px;
  3309. box-sizing:border-box;
  3310. width:100%;
  3311. }
  3312. #u34416_text {
  3313. border-width:0px;
  3314. word-wrap:break-word;
  3315. text-transform:none;
  3316. visibility:hidden;
  3317. }
  3318. #u34417_div {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:49px;
  3324. height:30px;
  3325. background:inherit;
  3326. background-color:rgba(255, 255, 255, 0);
  3327. border:none;
  3328. border-left:0px;
  3329. border-top:0px;
  3330. border-right:0px;
  3331. border-radius:0px;
  3332. border-bottom-right-radius:0px;
  3333. border-bottom-left-radius:0px;
  3334. -moz-box-shadow:none;
  3335. -webkit-box-shadow:none;
  3336. box-shadow:none;
  3337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3338. font-weight:400;
  3339. font-style:normal;
  3340. font-size:12px;
  3341. color:#1890FF;
  3342. line-height:30px;
  3343. }
  3344. #u34417 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:794px;
  3348. top:115px;
  3349. width:49px;
  3350. height:30px;
  3351. display:flex;
  3352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:12px;
  3356. color:#1890FF;
  3357. line-height:30px;
  3358. }
  3359. #u34417 .text {
  3360. position:absolute;
  3361. align-self:flex-start;
  3362. padding:0px 0px 0px 0px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u34417_text {
  3367. border-width:0px;
  3368. white-space:nowrap;
  3369. text-transform:none;
  3370. }
  3371. #u34418_div {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:63px;
  3377. height:14px;
  3378. background:inherit;
  3379. background-color:rgba(255, 255, 255, 0);
  3380. border:none;
  3381. border-left:0px;
  3382. border-top:0px;
  3383. border-right:0px;
  3384. border-radius:0px;
  3385. border-bottom-right-radius:0px;
  3386. border-bottom-left-radius:0px;
  3387. -moz-box-shadow:none;
  3388. -webkit-box-shadow:none;
  3389. box-shadow:none;
  3390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:10px;
  3394. color:#AAAAAA;
  3395. }
  3396. #u34418 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:495px;
  3400. top:184px;
  3401. width:63px;
  3402. height:14px;
  3403. display:flex;
  3404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:10px;
  3408. color:#AAAAAA;
  3409. }
  3410. #u34418 .text {
  3411. position:absolute;
  3412. align-self:flex-start;
  3413. padding:0px 0px 0px 0px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u34418_text {
  3418. border-width:0px;
  3419. white-space:nowrap;
  3420. text-transform:none;
  3421. }
  3422. #u34419_div {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:65px;
  3428. height:22px;
  3429. background:inherit;
  3430. background-color:rgba(255, 255, 255, 0);
  3431. border:none;
  3432. border-radius:0px;
  3433. -moz-box-shadow:none;
  3434. -webkit-box-shadow:none;
  3435. box-shadow:none;
  3436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:16px;
  3440. color:#000000;
  3441. }
  3442. #u34419 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:634px;
  3446. top:77px;
  3447. width:65px;
  3448. height:22px;
  3449. display:flex;
  3450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:16px;
  3454. color:#000000;
  3455. }
  3456. #u34419 .text {
  3457. position:absolute;
  3458. align-self:flex-start;
  3459. padding:0px 0px 0px 0px;
  3460. box-sizing:border-box;
  3461. width:100%;
  3462. }
  3463. #u34419_text {
  3464. border-width:0px;
  3465. white-space:nowrap;
  3466. text-transform:none;
  3467. }
  3468. #u34420_div {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:11px;
  3474. height:11px;
  3475. background:inherit;
  3476. background-color:rgba(217, 0, 27, 1);
  3477. border:none;
  3478. border-radius:7px;
  3479. -moz-box-shadow:none;
  3480. -webkit-box-shadow:none;
  3481. box-shadow:none;
  3482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3483. font-weight:400;
  3484. font-style:normal;
  3485. font-size:8px;
  3486. color:#FFFFFF;
  3487. text-align:center;
  3488. }
  3489. #u34420 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:533px;
  3493. top:150px;
  3494. width:11px;
  3495. height:11px;
  3496. display:flex;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:8px;
  3501. color:#FFFFFF;
  3502. text-align:center;
  3503. }
  3504. #u34420 .text {
  3505. position:absolute;
  3506. align-self:flex-start;
  3507. padding:0px 0px 0px 0px;
  3508. box-sizing:border-box;
  3509. width:100%;
  3510. }
  3511. #u34420_text {
  3512. border-width:0px;
  3513. word-wrap:break-word;
  3514. text-transform:none;
  3515. }
  3516. #u34421_div {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:43px;
  3522. height:21px;
  3523. background:inherit;
  3524. background-color:rgba(242, 242, 242, 1);
  3525. border:none;
  3526. border-radius:17px;
  3527. -moz-box-shadow:none;
  3528. -webkit-box-shadow:none;
  3529. box-shadow:none;
  3530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3531. font-weight:400;
  3532. font-style:normal;
  3533. font-size:12px;
  3534. color:#555555;
  3535. }
  3536. #u34421 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:677px;
  3540. top:155px;
  3541. width:43px;
  3542. height:21px;
  3543. display:flex;
  3544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. color:#555555;
  3549. }
  3550. #u34421 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 3px 2px 3px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u34421_text {
  3558. border-width:0px;
  3559. white-space:nowrap;
  3560. text-transform:none;
  3561. }
  3562. #u34422_div {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:43px;
  3568. height:21px;
  3569. background:inherit;
  3570. background-color:rgba(242, 242, 242, 1);
  3571. border:none;
  3572. border-radius:17px;
  3573. -moz-box-shadow:none;
  3574. -webkit-box-shadow:none;
  3575. box-shadow:none;
  3576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:12px;
  3580. color:#555555;
  3581. }
  3582. #u34422 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:740px;
  3586. top:155px;
  3587. width:43px;
  3588. height:21px;
  3589. display:flex;
  3590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:12px;
  3594. color:#555555;
  3595. }
  3596. #u34422 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 3px 2px 3px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u34422_text {
  3604. border-width:0px;
  3605. white-space:nowrap;
  3606. text-transform:none;
  3607. }
  3608. #u34424_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:433px;
  3614. height:865px;
  3615. }
  3616. #u34424 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:914px;
  3620. top:0px;
  3621. width:433px;
  3622. height:865px;
  3623. display:flex;
  3624. }
  3625. #u34424 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 2px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u34424_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. visibility:hidden;
  3637. }
  3638. #u34425_div {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:375px;
  3644. height:40px;
  3645. background:inherit;
  3646. background-color:rgba(255, 255, 255, 1);
  3647. box-sizing:border-box;
  3648. border-width:1px;
  3649. border-style:solid;
  3650. border-color:rgba(215, 215, 215, 1);
  3651. border-left:0px;
  3652. border-top:0px;
  3653. border-right:0px;
  3654. border-radius:0px;
  3655. border-bottom-right-radius:0px;
  3656. border-bottom-left-radius:0px;
  3657. -moz-box-shadow:none;
  3658. -webkit-box-shadow:none;
  3659. box-shadow:none;
  3660. }
  3661. #u34425 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:943px;
  3665. top:67px;
  3666. width:375px;
  3667. height:40px;
  3668. display:flex;
  3669. }
  3670. #u34425 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 2px 2px 2px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u34425_text {
  3678. border-width:0px;
  3679. word-wrap:break-word;
  3680. text-transform:none;
  3681. visibility:hidden;
  3682. }
  3683. #u34426 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:0px;
  3687. top:0px;
  3688. width:0px;
  3689. height:0px;
  3690. }
  3691. #u34427_div {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:88px;
  3697. height:32px;
  3698. background:inherit;
  3699. background-color:rgba(255, 255, 255, 1);
  3700. box-sizing:border-box;
  3701. border-width:1px;
  3702. border-style:solid;
  3703. border-color:rgba(242, 242, 242, 1);
  3704. border-radius:33px;
  3705. -moz-box-shadow:none;
  3706. -webkit-box-shadow:none;
  3707. box-shadow:none;
  3708. }
  3709. #u34427 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:1223px;
  3713. top:71px;
  3714. width:88px;
  3715. height:32px;
  3716. display:flex;
  3717. }
  3718. #u34427 .text {
  3719. position:absolute;
  3720. align-self:center;
  3721. padding:2px 2px 2px 2px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u34427_text {
  3726. border-width:0px;
  3727. word-wrap:break-word;
  3728. text-transform:none;
  3729. visibility:hidden;
  3730. }
  3731. #u34428 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:0px;
  3737. height:0px;
  3738. }
  3739. #u34429_img {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:0px;
  3743. top:0px;
  3744. width:18px;
  3745. height:18px;
  3746. }
  3747. #u34429 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:1286px;
  3751. top:78px;
  3752. width:18px;
  3753. height:18px;
  3754. display:flex;
  3755. }
  3756. #u34429 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 2px 2px 2px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u34429_text {
  3764. border-width:0px;
  3765. word-wrap:break-word;
  3766. text-transform:none;
  3767. visibility:hidden;
  3768. }
  3769. #u34430_img {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:6px;
  3775. height:6px;
  3776. }
  3777. #u34430 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:1292px;
  3781. top:84px;
  3782. width:6px;
  3783. height:6px;
  3784. display:flex;
  3785. }
  3786. #u34430 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 2px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u34430_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u34431 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:0px;
  3805. height:0px;
  3806. }
  3807. #u34432_img {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:0px;
  3812. width:5px;
  3813. height:5px;
  3814. }
  3815. #u34432 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:1237px;
  3819. top:85px;
  3820. width:5px;
  3821. height:5px;
  3822. display:flex;
  3823. }
  3824. #u34432 .text {
  3825. position:absolute;
  3826. align-self:center;
  3827. padding:2px 2px 2px 2px;
  3828. box-sizing:border-box;
  3829. width:100%;
  3830. }
  3831. #u34432_text {
  3832. border-width:0px;
  3833. word-wrap:break-word;
  3834. text-transform:none;
  3835. visibility:hidden;
  3836. }
  3837. #u34433_img {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:0px;
  3841. top:0px;
  3842. width:5px;
  3843. height:5px;
  3844. }
  3845. #u34433 {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:1253px;
  3849. top:85px;
  3850. width:5px;
  3851. height:5px;
  3852. display:flex;
  3853. }
  3854. #u34433 .text {
  3855. position:absolute;
  3856. align-self:center;
  3857. padding:2px 2px 2px 2px;
  3858. box-sizing:border-box;
  3859. width:100%;
  3860. }
  3861. #u34433_text {
  3862. border-width:0px;
  3863. word-wrap:break-word;
  3864. text-transform:none;
  3865. visibility:hidden;
  3866. }
  3867. #u34434_img {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:7px;
  3873. height:7px;
  3874. }
  3875. #u34434 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:1244px;
  3879. top:84px;
  3880. width:7px;
  3881. height:7px;
  3882. display:flex;
  3883. }
  3884. #u34434 .text {
  3885. position:absolute;
  3886. align-self:center;
  3887. padding:2px 2px 2px 2px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u34434_text {
  3892. border-width:0px;
  3893. word-wrap:break-word;
  3894. text-transform:none;
  3895. visibility:hidden;
  3896. }
  3897. #u34435_img {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:0px;
  3901. top:0px;
  3902. width:19px;
  3903. height:2px;
  3904. }
  3905. #u34435 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:1261px;
  3909. top:87px;
  3910. width:18px;
  3911. height:1px;
  3912. display:flex;
  3913. -webkit-transform:rotate(90deg);
  3914. -moz-transform:rotate(90deg);
  3915. -ms-transform:rotate(90deg);
  3916. transform:rotate(90deg);
  3917. }
  3918. #u34435 .text {
  3919. position:absolute;
  3920. align-self:center;
  3921. padding:2px 2px 2px 2px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u34435_text {
  3926. border-width:0px;
  3927. word-wrap:break-word;
  3928. text-transform:none;
  3929. visibility:hidden;
  3930. }
  3931. #u34436_img {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:375px;
  3937. height:44px;
  3938. }
  3939. #u34436 {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:943px;
  3943. top:24px;
  3944. width:375px;
  3945. height:44px;
  3946. display:flex;
  3947. }
  3948. #u34436 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:2px 2px 2px 2px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u34436_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. visibility:hidden;
  3960. }
  3961. #u34437_div {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:375px;
  3967. height:50px;
  3968. background:inherit;
  3969. background-color:rgba(255, 255, 255, 1);
  3970. box-sizing:border-box;
  3971. border-width:1px;
  3972. border-style:solid;
  3973. border-color:rgba(242, 242, 242, 1);
  3974. border-radius:26px;
  3975. border-top-left-radius:0px;
  3976. border-top-right-radius:0px;
  3977. -moz-box-shadow:none;
  3978. -webkit-box-shadow:none;
  3979. box-shadow:none;
  3980. }
  3981. #u34437 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:943px;
  3985. top:788px;
  3986. width:375px;
  3987. height:50px;
  3988. display:flex;
  3989. }
  3990. #u34437 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 2px 2px 2px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u34437_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. visibility:hidden;
  4002. }
  4003. #u34438 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:0px;
  4009. height:0px;
  4010. }
  4011. #u34439_img {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:24px;
  4017. height:24px;
  4018. }
  4019. #u34439 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:983px;
  4023. top:792px;
  4024. width:24px;
  4025. height:24px;
  4026. display:flex;
  4027. font-size:8px;
  4028. }
  4029. #u34439 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:2px 2px 2px 2px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u34439_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. }
  4041. #u34440_div {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:25px;
  4047. height:17px;
  4048. background:inherit;
  4049. background-color:rgba(255, 255, 255, 0);
  4050. border:none;
  4051. border-radius:0px;
  4052. -moz-box-shadow:none;
  4053. -webkit-box-shadow:none;
  4054. box-shadow:none;
  4055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4056. font-weight:400;
  4057. font-style:normal;
  4058. font-size:12px;
  4059. }
  4060. #u34440 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:983px;
  4064. top:817px;
  4065. width:25px;
  4066. height:17px;
  4067. display:flex;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:12px;
  4072. }
  4073. #u34440 .text {
  4074. position:absolute;
  4075. align-self:flex-start;
  4076. padding:0px 0px 0px 0px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u34440_text {
  4081. border-width:0px;
  4082. white-space:nowrap;
  4083. text-transform:none;
  4084. }
  4085. #u34441 {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:0px;
  4091. height:0px;
  4092. }
  4093. #u34442_img {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:24px;
  4099. height:24px;
  4100. }
  4101. #u34442 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:1253px;
  4105. top:794px;
  4106. width:24px;
  4107. height:24px;
  4108. display:flex;
  4109. font-size:8px;
  4110. }
  4111. #u34442 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:2px 2px 2px 2px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u34442_text {
  4119. border-width:0px;
  4120. word-wrap:break-word;
  4121. text-transform:none;
  4122. }
  4123. #u34443_div {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:25px;
  4129. height:17px;
  4130. background:inherit;
  4131. background-color:rgba(255, 255, 255, 0);
  4132. border:none;
  4133. border-radius:0px;
  4134. -moz-box-shadow:none;
  4135. -webkit-box-shadow:none;
  4136. box-shadow:none;
  4137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4138. font-weight:400;
  4139. font-style:normal;
  4140. font-size:12px;
  4141. }
  4142. #u34443 {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:1253px;
  4146. top:819px;
  4147. width:25px;
  4148. height:17px;
  4149. display:flex;
  4150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4151. font-weight:400;
  4152. font-style:normal;
  4153. font-size:12px;
  4154. }
  4155. #u34443 .text {
  4156. position:absolute;
  4157. align-self:flex-start;
  4158. padding:0px 0px 0px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u34443_text {
  4163. border-width:0px;
  4164. white-space:nowrap;
  4165. text-transform:none;
  4166. }
  4167. #u34444_div {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:375px;
  4173. height:681px;
  4174. background:inherit;
  4175. background-color:rgba(242, 242, 242, 0.462745098039216);
  4176. border:none;
  4177. border-radius:0px;
  4178. -moz-box-shadow:none;
  4179. -webkit-box-shadow:none;
  4180. box-shadow:none;
  4181. }
  4182. #u34444 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:943px;
  4186. top:107px;
  4187. width:375px;
  4188. height:681px;
  4189. display:flex;
  4190. }
  4191. #u34444 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 2px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u34444_text {
  4199. border-width:0px;
  4200. word-wrap:break-word;
  4201. text-transform:none;
  4202. visibility:hidden;
  4203. }
  4204. #u34445 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:0px;
  4210. height:0px;
  4211. }
  4212. #u34446_img {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:24px;
  4218. height:24px;
  4219. }
  4220. #u34446 {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:1165px;
  4224. top:792px;
  4225. width:24px;
  4226. height:24px;
  4227. display:flex;
  4228. font-size:8px;
  4229. }
  4230. #u34446 .text {
  4231. position:absolute;
  4232. align-self:center;
  4233. padding:2px 2px 2px 2px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u34446_text {
  4238. border-width:0px;
  4239. word-wrap:break-word;
  4240. text-transform:none;
  4241. }
  4242. #u34447_div {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:0px;
  4246. top:0px;
  4247. width:37px;
  4248. height:17px;
  4249. background:inherit;
  4250. background-color:rgba(255, 255, 255, 0);
  4251. border:none;
  4252. border-radius:0px;
  4253. -moz-box-shadow:none;
  4254. -webkit-box-shadow:none;
  4255. box-shadow:none;
  4256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4257. font-weight:400;
  4258. font-style:normal;
  4259. font-size:12px;
  4260. }
  4261. #u34447 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:1159px;
  4265. top:817px;
  4266. width:37px;
  4267. height:17px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:12px;
  4273. }
  4274. #u34447 .text {
  4275. position:absolute;
  4276. align-self:flex-start;
  4277. padding:0px 0px 0px 0px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u34447_text {
  4282. border-width:0px;
  4283. white-space:nowrap;
  4284. text-transform:none;
  4285. }
  4286. #u34448 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:0px;
  4292. height:0px;
  4293. }
  4294. #u34449_img {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:24px;
  4300. height:24px;
  4301. }
  4302. #u34449 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:1071px;
  4306. top:792px;
  4307. width:24px;
  4308. height:24px;
  4309. display:flex;
  4310. font-size:8px;
  4311. }
  4312. #u34449 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 2px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u34449_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. }
  4324. #u34450_div {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:37px;
  4330. height:17px;
  4331. background:inherit;
  4332. background-color:rgba(255, 255, 255, 0);
  4333. border:none;
  4334. border-radius:0px;
  4335. -moz-box-shadow:none;
  4336. -webkit-box-shadow:none;
  4337. box-shadow:none;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:12px;
  4342. }
  4343. #u34450 {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:1065px;
  4347. top:817px;
  4348. width:37px;
  4349. height:17px;
  4350. display:flex;
  4351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4352. font-weight:400;
  4353. font-style:normal;
  4354. font-size:12px;
  4355. }
  4356. #u34450 .text {
  4357. position:absolute;
  4358. align-self:flex-start;
  4359. padding:0px 0px 0px 0px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u34450_text {
  4364. border-width:0px;
  4365. white-space:nowrap;
  4366. text-transform:none;
  4367. }
  4368. #u34451_div {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:375px;
  4374. height:740px;
  4375. background:inherit;
  4376. background-color:rgba(242, 242, 242, 1);
  4377. border:none;
  4378. border-top:0px;
  4379. border-radius:25px;
  4380. border-top-left-radius:0px;
  4381. border-top-right-radius:0px;
  4382. -moz-box-shadow:none;
  4383. -webkit-box-shadow:none;
  4384. box-shadow:none;
  4385. }
  4386. #u34451 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:943px;
  4390. top:105px;
  4391. width:375px;
  4392. height:740px;
  4393. display:flex;
  4394. }
  4395. #u34451 .text {
  4396. position:absolute;
  4397. align-self:center;
  4398. padding:2px 2px 2px 2px;
  4399. box-sizing:border-box;
  4400. width:100%;
  4401. }
  4402. #u34451_text {
  4403. border-width:0px;
  4404. word-wrap:break-word;
  4405. text-transform:none;
  4406. visibility:hidden;
  4407. }
  4408. #u34452 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:0px;
  4414. height:0px;
  4415. }
  4416. #u34453_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:11px;
  4422. height:18px;
  4423. }
  4424. #u34453 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:954px;
  4428. top:79px;
  4429. width:11px;
  4430. height:18px;
  4431. display:flex;
  4432. }
  4433. #u34453 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 2px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u34453_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u34454_div {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:375px;
  4452. height:140px;
  4453. background:inherit;
  4454. background-color:rgba(255, 255, 255, 1);
  4455. box-sizing:border-box;
  4456. border-width:1px;
  4457. border-style:solid;
  4458. border-color:rgba(215, 215, 215, 1);
  4459. border-left:0px;
  4460. border-top:0px;
  4461. border-right:0px;
  4462. border-radius:0px;
  4463. border-bottom-right-radius:0px;
  4464. border-bottom-left-radius:0px;
  4465. -moz-box-shadow:none;
  4466. -webkit-box-shadow:none;
  4467. box-shadow:none;
  4468. }
  4469. #u34454 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:943px;
  4473. top:67px;
  4474. width:375px;
  4475. height:140px;
  4476. display:flex;
  4477. }
  4478. #u34454 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 2px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u34454_text {
  4486. border-width:0px;
  4487. word-wrap:break-word;
  4488. text-transform:none;
  4489. visibility:hidden;
  4490. }
  4491. #u34455 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:0px;
  4497. height:0px;
  4498. }
  4499. #u34456_div {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:88px;
  4505. height:32px;
  4506. background:inherit;
  4507. background-color:rgba(255, 255, 255, 1);
  4508. box-sizing:border-box;
  4509. border-width:1px;
  4510. border-style:solid;
  4511. border-color:rgba(242, 242, 242, 1);
  4512. border-radius:33px;
  4513. -moz-box-shadow:none;
  4514. -webkit-box-shadow:none;
  4515. box-shadow:none;
  4516. }
  4517. #u34456 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:1223px;
  4521. top:71px;
  4522. width:88px;
  4523. height:32px;
  4524. display:flex;
  4525. }
  4526. #u34456 .text {
  4527. position:absolute;
  4528. align-self:center;
  4529. padding:2px 2px 2px 2px;
  4530. box-sizing:border-box;
  4531. width:100%;
  4532. }
  4533. #u34456_text {
  4534. border-width:0px;
  4535. word-wrap:break-word;
  4536. text-transform:none;
  4537. visibility:hidden;
  4538. }
  4539. #u34457 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:0px;
  4545. height:0px;
  4546. }
  4547. #u34458_img {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:18px;
  4553. height:18px;
  4554. }
  4555. #u34458 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:1286px;
  4559. top:78px;
  4560. width:18px;
  4561. height:18px;
  4562. display:flex;
  4563. }
  4564. #u34458 .text {
  4565. position:absolute;
  4566. align-self:center;
  4567. padding:2px 2px 2px 2px;
  4568. box-sizing:border-box;
  4569. width:100%;
  4570. }
  4571. #u34458_text {
  4572. border-width:0px;
  4573. word-wrap:break-word;
  4574. text-transform:none;
  4575. visibility:hidden;
  4576. }
  4577. #u34459_img {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:6px;
  4583. height:6px;
  4584. }
  4585. #u34459 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:1292px;
  4589. top:84px;
  4590. width:6px;
  4591. height:6px;
  4592. display:flex;
  4593. }
  4594. #u34459 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:2px 2px 2px 2px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u34459_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. visibility:hidden;
  4606. }
  4607. #u34460 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:0px;
  4613. height:0px;
  4614. }
  4615. #u34461_img {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:5px;
  4621. height:5px;
  4622. }
  4623. #u34461 {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:1237px;
  4627. top:85px;
  4628. width:5px;
  4629. height:5px;
  4630. display:flex;
  4631. }
  4632. #u34461 .text {
  4633. position:absolute;
  4634. align-self:center;
  4635. padding:2px 2px 2px 2px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u34461_text {
  4640. border-width:0px;
  4641. word-wrap:break-word;
  4642. text-transform:none;
  4643. visibility:hidden;
  4644. }
  4645. #u34462_img {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:0px;
  4649. top:0px;
  4650. width:5px;
  4651. height:5px;
  4652. }
  4653. #u34462 {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:1253px;
  4657. top:85px;
  4658. width:5px;
  4659. height:5px;
  4660. display:flex;
  4661. }
  4662. #u34462 .text {
  4663. position:absolute;
  4664. align-self:center;
  4665. padding:2px 2px 2px 2px;
  4666. box-sizing:border-box;
  4667. width:100%;
  4668. }
  4669. #u34462_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. visibility:hidden;
  4674. }
  4675. #u34463_img {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:7px;
  4681. height:7px;
  4682. }
  4683. #u34463 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:1244px;
  4687. top:84px;
  4688. width:7px;
  4689. height:7px;
  4690. display:flex;
  4691. }
  4692. #u34463 .text {
  4693. position:absolute;
  4694. align-self:center;
  4695. padding:2px 2px 2px 2px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u34463_text {
  4700. border-width:0px;
  4701. word-wrap:break-word;
  4702. text-transform:none;
  4703. visibility:hidden;
  4704. }
  4705. #u34464_img {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:0px;
  4709. top:0px;
  4710. width:19px;
  4711. height:2px;
  4712. }
  4713. #u34464 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:1261px;
  4717. top:87px;
  4718. width:18px;
  4719. height:1px;
  4720. display:flex;
  4721. -webkit-transform:rotate(90deg);
  4722. -moz-transform:rotate(90deg);
  4723. -ms-transform:rotate(90deg);
  4724. transform:rotate(90deg);
  4725. }
  4726. #u34464 .text {
  4727. position:absolute;
  4728. align-self:center;
  4729. padding:2px 2px 2px 2px;
  4730. box-sizing:border-box;
  4731. width:100%;
  4732. }
  4733. #u34464_text {
  4734. border-width:0px;
  4735. word-wrap:break-word;
  4736. text-transform:none;
  4737. visibility:hidden;
  4738. }
  4739. #u34465_div {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:12px;
  4745. height:12px;
  4746. background:inherit;
  4747. background-color:rgba(255, 255, 255, 0);
  4748. box-sizing:border-box;
  4749. border-width:2px;
  4750. border-style:solid;
  4751. border-color:rgba(51, 51, 51, 1);
  4752. border-right:0px;
  4753. border-bottom:0px;
  4754. border-radius:0px;
  4755. border-top-right-radius:0px;
  4756. border-bottom-left-radius:0px;
  4757. -moz-box-shadow:none;
  4758. -webkit-box-shadow:none;
  4759. box-shadow:none;
  4760. }
  4761. #u34465 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:958px;
  4765. top:81px;
  4766. width:12px;
  4767. height:12px;
  4768. display:flex;
  4769. -webkit-transform:rotate(315deg);
  4770. -moz-transform:rotate(315deg);
  4771. -ms-transform:rotate(315deg);
  4772. transform:rotate(315deg);
  4773. }
  4774. #u34465 .text {
  4775. position:absolute;
  4776. align-self:center;
  4777. padding:2px 2px 2px 2px;
  4778. box-sizing:border-box;
  4779. width:100%;
  4780. }
  4781. #u34465_text {
  4782. border-width:0px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. visibility:hidden;
  4786. }
  4787. #u34466_div {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:43px;
  4793. height:21px;
  4794. background:inherit;
  4795. background-color:rgba(242, 242, 242, 1);
  4796. border:none;
  4797. border-radius:17px;
  4798. -moz-box-shadow:none;
  4799. -webkit-box-shadow:none;
  4800. box-shadow:none;
  4801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:12px;
  4805. color:#555555;
  4806. }
  4807. #u34466 {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:956px;
  4811. top:155px;
  4812. width:43px;
  4813. height:21px;
  4814. display:flex;
  4815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4816. font-weight:400;
  4817. font-style:normal;
  4818. font-size:12px;
  4819. color:#555555;
  4820. }
  4821. #u34466 .text {
  4822. position:absolute;
  4823. align-self:center;
  4824. padding:2px 3px 2px 3px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u34466_text {
  4829. border-width:0px;
  4830. white-space:nowrap;
  4831. text-transform:none;
  4832. }
  4833. #u34467_div {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:43px;
  4839. height:21px;
  4840. background:inherit;
  4841. background-color:rgba(242, 242, 242, 1);
  4842. border:none;
  4843. border-radius:17px;
  4844. -moz-box-shadow:none;
  4845. -webkit-box-shadow:none;
  4846. box-shadow:none;
  4847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:12px;
  4851. color:#555555;
  4852. }
  4853. #u34467 {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:1017px;
  4857. top:155px;
  4858. width:43px;
  4859. height:21px;
  4860. display:flex;
  4861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4862. font-weight:400;
  4863. font-style:normal;
  4864. font-size:12px;
  4865. color:#555555;
  4866. }
  4867. #u34467 .text {
  4868. position:absolute;
  4869. align-self:center;
  4870. padding:2px 3px 2px 3px;
  4871. box-sizing:border-box;
  4872. width:100%;
  4873. }
  4874. #u34467_text {
  4875. border-width:0px;
  4876. white-space:nowrap;
  4877. text-transform:none;
  4878. }
  4879. #u34468_div {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:43px;
  4885. height:21px;
  4886. background:inherit;
  4887. background-color:rgba(0, 137, 254, 1);
  4888. border:none;
  4889. border-radius:17px;
  4890. -moz-box-shadow:none;
  4891. -webkit-box-shadow:none;
  4892. box-shadow:none;
  4893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4894. font-weight:400;
  4895. font-style:normal;
  4896. font-size:12px;
  4897. color:#FFFFFF;
  4898. }
  4899. #u34468 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:1077px;
  4903. top:155px;
  4904. width:43px;
  4905. height:21px;
  4906. display:flex;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:12px;
  4911. color:#FFFFFF;
  4912. }
  4913. #u34468 .text {
  4914. position:absolute;
  4915. align-self:center;
  4916. padding:2px 3px 2px 3px;
  4917. box-sizing:border-box;
  4918. width:100%;
  4919. }
  4920. #u34468_text {
  4921. border-width:0px;
  4922. white-space:nowrap;
  4923. text-transform:none;
  4924. }
  4925. #u34469 {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:0px;
  4929. top:0px;
  4930. width:0px;
  4931. height:0px;
  4932. }
  4933. #u34470_div {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:280px;
  4939. height:30px;
  4940. background:inherit;
  4941. background-color:rgba(242, 242, 242, 1);
  4942. border:none;
  4943. border-radius:20px;
  4944. -moz-box-shadow:none;
  4945. -webkit-box-shadow:none;
  4946. box-shadow:none;
  4947. }
  4948. #u34470 {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:956px;
  4952. top:115px;
  4953. width:280px;
  4954. height:30px;
  4955. display:flex;
  4956. }
  4957. #u34470 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 2px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u34470_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u34471_input {
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:260px;
  4975. height:25px;
  4976. padding:2px 2px 2px 2px;
  4977. font-family:'ArialMT', 'Arial', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:13px;
  4981. letter-spacing:normal;
  4982. color:#000000;
  4983. vertical-align:none;
  4984. text-align:left;
  4985. text-transform:none;
  4986. background-color:transparent;
  4987. border-color:transparent;
  4988. }
  4989. #u34471_input.disabled {
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:260px;
  4994. height:25px;
  4995. padding:2px 2px 2px 2px;
  4996. font-family:'ArialMT', 'Arial', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:13px;
  5000. letter-spacing:normal;
  5001. color:#000000;
  5002. vertical-align:none;
  5003. text-align:left;
  5004. text-transform:none;
  5005. background-color:transparent;
  5006. border-color:transparent;
  5007. }
  5008. #u34471_div {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:260px;
  5014. height:25px;
  5015. background:inherit;
  5016. background-color:rgba(242, 242, 242, 1);
  5017. border:none;
  5018. border-radius:0px;
  5019. -moz-box-shadow:none;
  5020. -webkit-box-shadow:none;
  5021. box-shadow:none;
  5022. }
  5023. #u34471 {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:965px;
  5027. top:116px;
  5028. width:260px;
  5029. height:25px;
  5030. display:flex;
  5031. }
  5032. #u34471 .text {
  5033. position:absolute;
  5034. align-self:center;
  5035. padding:2px 2px 2px 2px;
  5036. box-sizing:border-box;
  5037. width:100%;
  5038. }
  5039. #u34471_div.disabled {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:260px;
  5045. height:25px;
  5046. background:inherit;
  5047. background-color:rgba(240, 240, 240, 1);
  5048. border:none;
  5049. border-radius:0px;
  5050. -moz-box-shadow:none;
  5051. -webkit-box-shadow:none;
  5052. box-shadow:none;
  5053. }
  5054. #u34471.disabled {
  5055. }
  5056. #u34472_img {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:12px;
  5062. height:12px;
  5063. }
  5064. #u34472 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:1217px;
  5068. top:124px;
  5069. width:12px;
  5070. height:12px;
  5071. display:flex;
  5072. }
  5073. #u34472 .text {
  5074. position:absolute;
  5075. align-self:center;
  5076. padding:2px 2px 2px 2px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u34472_text {
  5081. border-width:0px;
  5082. word-wrap:break-word;
  5083. text-transform:none;
  5084. visibility:hidden;
  5085. }
  5086. #u34473_div {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:49px;
  5092. height:30px;
  5093. background:inherit;
  5094. background-color:rgba(255, 255, 255, 0);
  5095. border:none;
  5096. border-left:0px;
  5097. border-top:0px;
  5098. border-right:0px;
  5099. border-radius:0px;
  5100. border-bottom-right-radius:0px;
  5101. border-bottom-left-radius:0px;
  5102. -moz-box-shadow:none;
  5103. -webkit-box-shadow:none;
  5104. box-shadow:none;
  5105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5106. font-weight:400;
  5107. font-style:normal;
  5108. font-size:12px;
  5109. color:#1890FF;
  5110. line-height:30px;
  5111. }
  5112. #u34473 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:1255px;
  5116. top:115px;
  5117. width:49px;
  5118. height:30px;
  5119. display:flex;
  5120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:12px;
  5124. color:#1890FF;
  5125. line-height:30px;
  5126. }
  5127. #u34473 .text {
  5128. position:absolute;
  5129. align-self:flex-start;
  5130. padding:0px 0px 0px 0px;
  5131. box-sizing:border-box;
  5132. width:100%;
  5133. }
  5134. #u34473_text {
  5135. border-width:0px;
  5136. white-space:nowrap;
  5137. text-transform:none;
  5138. }
  5139. #u34474_div {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:63px;
  5145. height:14px;
  5146. background:inherit;
  5147. background-color:rgba(255, 255, 255, 0);
  5148. border:none;
  5149. border-left:0px;
  5150. border-top:0px;
  5151. border-right:0px;
  5152. border-radius:0px;
  5153. border-bottom-right-radius:0px;
  5154. border-bottom-left-radius:0px;
  5155. -moz-box-shadow:none;
  5156. -webkit-box-shadow:none;
  5157. box-shadow:none;
  5158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5159. font-weight:400;
  5160. font-style:normal;
  5161. font-size:10px;
  5162. color:#AAAAAA;
  5163. }
  5164. #u34474 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:956px;
  5168. top:184px;
  5169. width:63px;
  5170. height:14px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:10px;
  5176. color:#AAAAAA;
  5177. }
  5178. #u34474 .text {
  5179. position:absolute;
  5180. align-self:flex-start;
  5181. padding:0px 0px 0px 0px;
  5182. box-sizing:border-box;
  5183. width:100%;
  5184. }
  5185. #u34474_text {
  5186. border-width:0px;
  5187. white-space:nowrap;
  5188. text-transform:none;
  5189. }
  5190. #u34475_div {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:65px;
  5196. height:22px;
  5197. background:inherit;
  5198. background-color:rgba(255, 255, 255, 0);
  5199. border:none;
  5200. border-radius:0px;
  5201. -moz-box-shadow:none;
  5202. -webkit-box-shadow:none;
  5203. box-shadow:none;
  5204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5205. font-weight:400;
  5206. font-style:normal;
  5207. font-size:16px;
  5208. color:#000000;
  5209. }
  5210. #u34475 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:1095px;
  5214. top:76px;
  5215. width:65px;
  5216. height:22px;
  5217. display:flex;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:16px;
  5222. color:#000000;
  5223. }
  5224. #u34475 .text {
  5225. position:absolute;
  5226. align-self:flex-start;
  5227. padding:0px 0px 0px 0px;
  5228. box-sizing:border-box;
  5229. width:100%;
  5230. }
  5231. #u34475_text {
  5232. border-width:0px;
  5233. white-space:nowrap;
  5234. text-transform:none;
  5235. }
  5236. #u34476_div {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:11px;
  5242. height:11px;
  5243. background:inherit;
  5244. background-color:rgba(217, 0, 27, 1);
  5245. border:none;
  5246. border-radius:7px;
  5247. -moz-box-shadow:none;
  5248. -webkit-box-shadow:none;
  5249. box-shadow:none;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:8px;
  5254. color:#FFFFFF;
  5255. text-align:center;
  5256. }
  5257. #u34476 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:994px;
  5261. top:150px;
  5262. width:11px;
  5263. height:11px;
  5264. display:flex;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:8px;
  5269. color:#FFFFFF;
  5270. text-align:center;
  5271. }
  5272. #u34476 .text {
  5273. position:absolute;
  5274. align-self:flex-start;
  5275. padding:0px 0px 0px 0px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u34476_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. }
  5284. #u34477_div {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:43px;
  5290. height:21px;
  5291. background:inherit;
  5292. background-color:rgba(242, 242, 242, 1);
  5293. border:none;
  5294. border-radius:17px;
  5295. -moz-box-shadow:none;
  5296. -webkit-box-shadow:none;
  5297. box-shadow:none;
  5298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5299. font-weight:400;
  5300. font-style:normal;
  5301. font-size:12px;
  5302. color:#555555;
  5303. }
  5304. #u34477 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:1138px;
  5308. top:155px;
  5309. width:43px;
  5310. height:21px;
  5311. display:flex;
  5312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5313. font-weight:400;
  5314. font-style:normal;
  5315. font-size:12px;
  5316. color:#555555;
  5317. }
  5318. #u34477 .text {
  5319. position:absolute;
  5320. align-self:center;
  5321. padding:2px 3px 2px 3px;
  5322. box-sizing:border-box;
  5323. width:100%;
  5324. }
  5325. #u34477_text {
  5326. border-width:0px;
  5327. white-space:nowrap;
  5328. text-transform:none;
  5329. }
  5330. #u34478_div {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:43px;
  5336. height:21px;
  5337. background:inherit;
  5338. background-color:rgba(242, 242, 242, 1);
  5339. border:none;
  5340. border-radius:17px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. font-size:12px;
  5348. color:#555555;
  5349. }
  5350. #u34478 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:1201px;
  5354. top:155px;
  5355. width:43px;
  5356. height:21px;
  5357. display:flex;
  5358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5359. font-weight:400;
  5360. font-style:normal;
  5361. font-size:12px;
  5362. color:#555555;
  5363. }
  5364. #u34478 .text {
  5365. position:absolute;
  5366. align-self:center;
  5367. padding:2px 3px 2px 3px;
  5368. box-sizing:border-box;
  5369. width:100%;
  5370. }
  5371. #u34478_text {
  5372. border-width:0px;
  5373. white-space:nowrap;
  5374. text-transform:none;
  5375. }
  5376. #u34480_img {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:433px;
  5382. height:865px;
  5383. }
  5384. #u34480 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:1372px;
  5388. top:0px;
  5389. width:433px;
  5390. height:865px;
  5391. display:flex;
  5392. }
  5393. #u34480 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:2px 2px 2px 2px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u34480_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. visibility:hidden;
  5405. }
  5406. #u34481_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:375px;
  5412. height:40px;
  5413. background:inherit;
  5414. background-color:rgba(255, 255, 255, 1);
  5415. box-sizing:border-box;
  5416. border-width:1px;
  5417. border-style:solid;
  5418. border-color:rgba(215, 215, 215, 1);
  5419. border-left:0px;
  5420. border-top:0px;
  5421. border-right:0px;
  5422. border-radius:0px;
  5423. border-bottom-right-radius:0px;
  5424. border-bottom-left-radius:0px;
  5425. -moz-box-shadow:none;
  5426. -webkit-box-shadow:none;
  5427. box-shadow:none;
  5428. }
  5429. #u34481 {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:1401px;
  5433. top:67px;
  5434. width:375px;
  5435. height:40px;
  5436. display:flex;
  5437. }
  5438. #u34481 .text {
  5439. position:absolute;
  5440. align-self:center;
  5441. padding:2px 2px 2px 2px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u34481_text {
  5446. border-width:0px;
  5447. word-wrap:break-word;
  5448. text-transform:none;
  5449. visibility:hidden;
  5450. }
  5451. #u34482 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:0px;
  5457. height:0px;
  5458. }
  5459. #u34483_div {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:88px;
  5465. height:32px;
  5466. background:inherit;
  5467. background-color:rgba(255, 255, 255, 1);
  5468. box-sizing:border-box;
  5469. border-width:1px;
  5470. border-style:solid;
  5471. border-color:rgba(242, 242, 242, 1);
  5472. border-radius:33px;
  5473. -moz-box-shadow:none;
  5474. -webkit-box-shadow:none;
  5475. box-shadow:none;
  5476. }
  5477. #u34483 {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:1681px;
  5481. top:71px;
  5482. width:88px;
  5483. height:32px;
  5484. display:flex;
  5485. }
  5486. #u34483 .text {
  5487. position:absolute;
  5488. align-self:center;
  5489. padding:2px 2px 2px 2px;
  5490. box-sizing:border-box;
  5491. width:100%;
  5492. }
  5493. #u34483_text {
  5494. border-width:0px;
  5495. word-wrap:break-word;
  5496. text-transform:none;
  5497. visibility:hidden;
  5498. }
  5499. #u34484 {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:0px;
  5505. height:0px;
  5506. }
  5507. #u34485_img {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:18px;
  5513. height:18px;
  5514. }
  5515. #u34485 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:1744px;
  5519. top:78px;
  5520. width:18px;
  5521. height:18px;
  5522. display:flex;
  5523. }
  5524. #u34485 .text {
  5525. position:absolute;
  5526. align-self:center;
  5527. padding:2px 2px 2px 2px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u34485_text {
  5532. border-width:0px;
  5533. word-wrap:break-word;
  5534. text-transform:none;
  5535. visibility:hidden;
  5536. }
  5537. #u34486_img {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:6px;
  5543. height:6px;
  5544. }
  5545. #u34486 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:1750px;
  5549. top:84px;
  5550. width:6px;
  5551. height:6px;
  5552. display:flex;
  5553. }
  5554. #u34486 .text {
  5555. position:absolute;
  5556. align-self:center;
  5557. padding:2px 2px 2px 2px;
  5558. box-sizing:border-box;
  5559. width:100%;
  5560. }
  5561. #u34486_text {
  5562. border-width:0px;
  5563. word-wrap:break-word;
  5564. text-transform:none;
  5565. visibility:hidden;
  5566. }
  5567. #u34487 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:0px;
  5573. height:0px;
  5574. }
  5575. #u34488_img {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:0px;
  5579. top:0px;
  5580. width:5px;
  5581. height:5px;
  5582. }
  5583. #u34488 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:1695px;
  5587. top:85px;
  5588. width:5px;
  5589. height:5px;
  5590. display:flex;
  5591. }
  5592. #u34488 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:2px 2px 2px 2px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u34488_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. visibility:hidden;
  5604. }
  5605. #u34489_img {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:5px;
  5611. height:5px;
  5612. }
  5613. #u34489 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:1711px;
  5617. top:85px;
  5618. width:5px;
  5619. height:5px;
  5620. display:flex;
  5621. }
  5622. #u34489 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:2px 2px 2px 2px;
  5626. box-sizing:border-box;
  5627. width:100%;
  5628. }
  5629. #u34489_text {
  5630. border-width:0px;
  5631. word-wrap:break-word;
  5632. text-transform:none;
  5633. visibility:hidden;
  5634. }
  5635. #u34490_img {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:0px;
  5640. width:7px;
  5641. height:7px;
  5642. }
  5643. #u34490 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:1702px;
  5647. top:84px;
  5648. width:7px;
  5649. height:7px;
  5650. display:flex;
  5651. }
  5652. #u34490 .text {
  5653. position:absolute;
  5654. align-self:center;
  5655. padding:2px 2px 2px 2px;
  5656. box-sizing:border-box;
  5657. width:100%;
  5658. }
  5659. #u34490_text {
  5660. border-width:0px;
  5661. word-wrap:break-word;
  5662. text-transform:none;
  5663. visibility:hidden;
  5664. }
  5665. #u34491_img {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:0px;
  5669. top:0px;
  5670. width:19px;
  5671. height:2px;
  5672. }
  5673. #u34491 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:1719px;
  5677. top:87px;
  5678. width:18px;
  5679. height:1px;
  5680. display:flex;
  5681. -webkit-transform:rotate(90deg);
  5682. -moz-transform:rotate(90deg);
  5683. -ms-transform:rotate(90deg);
  5684. transform:rotate(90deg);
  5685. }
  5686. #u34491 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 2px 2px 2px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u34491_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u34492_img {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:375px;
  5705. height:44px;
  5706. }
  5707. #u34492 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:1401px;
  5711. top:24px;
  5712. width:375px;
  5713. height:44px;
  5714. display:flex;
  5715. }
  5716. #u34492 .text {
  5717. position:absolute;
  5718. align-self:center;
  5719. padding:2px 2px 2px 2px;
  5720. box-sizing:border-box;
  5721. width:100%;
  5722. }
  5723. #u34492_text {
  5724. border-width:0px;
  5725. word-wrap:break-word;
  5726. text-transform:none;
  5727. visibility:hidden;
  5728. }
  5729. #u34493_div {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:375px;
  5735. height:50px;
  5736. background:inherit;
  5737. background-color:rgba(255, 255, 255, 1);
  5738. box-sizing:border-box;
  5739. border-width:1px;
  5740. border-style:solid;
  5741. border-color:rgba(242, 242, 242, 1);
  5742. border-radius:26px;
  5743. border-top-left-radius:0px;
  5744. border-top-right-radius:0px;
  5745. -moz-box-shadow:none;
  5746. -webkit-box-shadow:none;
  5747. box-shadow:none;
  5748. }
  5749. #u34493 {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:1401px;
  5753. top:788px;
  5754. width:375px;
  5755. height:50px;
  5756. display:flex;
  5757. }
  5758. #u34493 .text {
  5759. position:absolute;
  5760. align-self:center;
  5761. padding:2px 2px 2px 2px;
  5762. box-sizing:border-box;
  5763. width:100%;
  5764. }
  5765. #u34493_text {
  5766. border-width:0px;
  5767. word-wrap:break-word;
  5768. text-transform:none;
  5769. visibility:hidden;
  5770. }
  5771. #u34494 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:0px;
  5777. height:0px;
  5778. }
  5779. #u34495_img {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:24px;
  5785. height:24px;
  5786. }
  5787. #u34495 {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:1441px;
  5791. top:792px;
  5792. width:24px;
  5793. height:24px;
  5794. display:flex;
  5795. font-size:8px;
  5796. }
  5797. #u34495 .text {
  5798. position:absolute;
  5799. align-self:center;
  5800. padding:2px 2px 2px 2px;
  5801. box-sizing:border-box;
  5802. width:100%;
  5803. }
  5804. #u34495_text {
  5805. border-width:0px;
  5806. word-wrap:break-word;
  5807. text-transform:none;
  5808. }
  5809. #u34496_div {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:25px;
  5815. height:17px;
  5816. background:inherit;
  5817. background-color:rgba(255, 255, 255, 0);
  5818. border:none;
  5819. border-radius:0px;
  5820. -moz-box-shadow:none;
  5821. -webkit-box-shadow:none;
  5822. box-shadow:none;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:12px;
  5827. }
  5828. #u34496 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:1441px;
  5832. top:817px;
  5833. width:25px;
  5834. height:17px;
  5835. display:flex;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:12px;
  5840. }
  5841. #u34496 .text {
  5842. position:absolute;
  5843. align-self:flex-start;
  5844. padding:0px 0px 0px 0px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u34496_text {
  5849. border-width:0px;
  5850. white-space:nowrap;
  5851. text-transform:none;
  5852. }
  5853. #u34497 {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:0px;
  5859. height:0px;
  5860. }
  5861. #u34498_img {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:24px;
  5867. height:24px;
  5868. }
  5869. #u34498 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:1711px;
  5873. top:794px;
  5874. width:24px;
  5875. height:24px;
  5876. display:flex;
  5877. font-size:8px;
  5878. }
  5879. #u34498 .text {
  5880. position:absolute;
  5881. align-self:center;
  5882. padding:2px 2px 2px 2px;
  5883. box-sizing:border-box;
  5884. width:100%;
  5885. }
  5886. #u34498_text {
  5887. border-width:0px;
  5888. word-wrap:break-word;
  5889. text-transform:none;
  5890. }
  5891. #u34499_div {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:25px;
  5897. height:17px;
  5898. background:inherit;
  5899. background-color:rgba(255, 255, 255, 0);
  5900. border:none;
  5901. border-radius:0px;
  5902. -moz-box-shadow:none;
  5903. -webkit-box-shadow:none;
  5904. box-shadow:none;
  5905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5906. font-weight:400;
  5907. font-style:normal;
  5908. font-size:12px;
  5909. }
  5910. #u34499 {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:1711px;
  5914. top:819px;
  5915. width:25px;
  5916. height:17px;
  5917. display:flex;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:12px;
  5922. }
  5923. #u34499 .text {
  5924. position:absolute;
  5925. align-self:flex-start;
  5926. padding:0px 0px 0px 0px;
  5927. box-sizing:border-box;
  5928. width:100%;
  5929. }
  5930. #u34499_text {
  5931. border-width:0px;
  5932. white-space:nowrap;
  5933. text-transform:none;
  5934. }
  5935. #u34500_div {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:375px;
  5941. height:681px;
  5942. background:inherit;
  5943. background-color:rgba(242, 242, 242, 0.462745098039216);
  5944. border:none;
  5945. border-radius:0px;
  5946. -moz-box-shadow:none;
  5947. -webkit-box-shadow:none;
  5948. box-shadow:none;
  5949. }
  5950. #u34500 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:1401px;
  5954. top:107px;
  5955. width:375px;
  5956. height:681px;
  5957. display:flex;
  5958. }
  5959. #u34500 .text {
  5960. position:absolute;
  5961. align-self:center;
  5962. padding:2px 2px 2px 2px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u34500_text {
  5967. border-width:0px;
  5968. word-wrap:break-word;
  5969. text-transform:none;
  5970. visibility:hidden;
  5971. }
  5972. #u34501 {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:0px;
  5978. height:0px;
  5979. }
  5980. #u34502_img {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:24px;
  5986. height:24px;
  5987. }
  5988. #u34502 {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:1623px;
  5992. top:792px;
  5993. width:24px;
  5994. height:24px;
  5995. display:flex;
  5996. font-size:8px;
  5997. }
  5998. #u34502 .text {
  5999. position:absolute;
  6000. align-self:center;
  6001. padding:2px 2px 2px 2px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u34502_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. }
  6010. #u34503_div {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:37px;
  6016. height:17px;
  6017. background:inherit;
  6018. background-color:rgba(255, 255, 255, 0);
  6019. border:none;
  6020. border-radius:0px;
  6021. -moz-box-shadow:none;
  6022. -webkit-box-shadow:none;
  6023. box-shadow:none;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:12px;
  6028. }
  6029. #u34503 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:1617px;
  6033. top:817px;
  6034. width:37px;
  6035. height:17px;
  6036. display:flex;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:12px;
  6041. }
  6042. #u34503 .text {
  6043. position:absolute;
  6044. align-self:flex-start;
  6045. padding:0px 0px 0px 0px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u34503_text {
  6050. border-width:0px;
  6051. white-space:nowrap;
  6052. text-transform:none;
  6053. }
  6054. #u34504 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:0px;
  6060. height:0px;
  6061. }
  6062. #u34505_img {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:24px;
  6068. height:24px;
  6069. }
  6070. #u34505 {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:1529px;
  6074. top:792px;
  6075. width:24px;
  6076. height:24px;
  6077. display:flex;
  6078. font-size:8px;
  6079. }
  6080. #u34505 .text {
  6081. position:absolute;
  6082. align-self:center;
  6083. padding:2px 2px 2px 2px;
  6084. box-sizing:border-box;
  6085. width:100%;
  6086. }
  6087. #u34505_text {
  6088. border-width:0px;
  6089. word-wrap:break-word;
  6090. text-transform:none;
  6091. }
  6092. #u34506_div {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:0px;
  6096. top:0px;
  6097. width:37px;
  6098. height:17px;
  6099. background:inherit;
  6100. background-color:rgba(255, 255, 255, 0);
  6101. border:none;
  6102. border-radius:0px;
  6103. -moz-box-shadow:none;
  6104. -webkit-box-shadow:none;
  6105. box-shadow:none;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:12px;
  6110. }
  6111. #u34506 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:1523px;
  6115. top:817px;
  6116. width:37px;
  6117. height:17px;
  6118. display:flex;
  6119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:12px;
  6123. }
  6124. #u34506 .text {
  6125. position:absolute;
  6126. align-self:flex-start;
  6127. padding:0px 0px 0px 0px;
  6128. box-sizing:border-box;
  6129. width:100%;
  6130. }
  6131. #u34506_text {
  6132. border-width:0px;
  6133. white-space:nowrap;
  6134. text-transform:none;
  6135. }
  6136. #u34507_div {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:375px;
  6142. height:740px;
  6143. background:inherit;
  6144. background-color:rgba(242, 242, 242, 1);
  6145. border:none;
  6146. border-top:0px;
  6147. border-radius:25px;
  6148. border-top-left-radius:0px;
  6149. border-top-right-radius:0px;
  6150. -moz-box-shadow:none;
  6151. -webkit-box-shadow:none;
  6152. box-shadow:none;
  6153. }
  6154. #u34507 {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:1401px;
  6158. top:105px;
  6159. width:375px;
  6160. height:740px;
  6161. display:flex;
  6162. }
  6163. #u34507 .text {
  6164. position:absolute;
  6165. align-self:center;
  6166. padding:2px 2px 2px 2px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u34507_text {
  6171. border-width:0px;
  6172. word-wrap:break-word;
  6173. text-transform:none;
  6174. visibility:hidden;
  6175. }
  6176. #u34508 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:0px;
  6182. height:0px;
  6183. }
  6184. #u34509_img {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:11px;
  6190. height:18px;
  6191. }
  6192. #u34509 {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:1412px;
  6196. top:79px;
  6197. width:11px;
  6198. height:18px;
  6199. display:flex;
  6200. }
  6201. #u34509 .text {
  6202. position:absolute;
  6203. align-self:center;
  6204. padding:2px 2px 2px 2px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u34509_text {
  6209. border-width:0px;
  6210. word-wrap:break-word;
  6211. text-transform:none;
  6212. visibility:hidden;
  6213. }
  6214. #u34510_div {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:375px;
  6220. height:140px;
  6221. background:inherit;
  6222. background-color:rgba(255, 255, 255, 1);
  6223. box-sizing:border-box;
  6224. border-width:1px;
  6225. border-style:solid;
  6226. border-color:rgba(215, 215, 215, 1);
  6227. border-left:0px;
  6228. border-top:0px;
  6229. border-right:0px;
  6230. border-radius:0px;
  6231. border-bottom-right-radius:0px;
  6232. border-bottom-left-radius:0px;
  6233. -moz-box-shadow:none;
  6234. -webkit-box-shadow:none;
  6235. box-shadow:none;
  6236. }
  6237. #u34510 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:1401px;
  6241. top:67px;
  6242. width:375px;
  6243. height:140px;
  6244. display:flex;
  6245. }
  6246. #u34510 .text {
  6247. position:absolute;
  6248. align-self:center;
  6249. padding:2px 2px 2px 2px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u34510_text {
  6254. border-width:0px;
  6255. word-wrap:break-word;
  6256. text-transform:none;
  6257. visibility:hidden;
  6258. }
  6259. #u34511 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:0px;
  6265. height:0px;
  6266. }
  6267. #u34512_div {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:88px;
  6273. height:32px;
  6274. background:inherit;
  6275. background-color:rgba(255, 255, 255, 1);
  6276. box-sizing:border-box;
  6277. border-width:1px;
  6278. border-style:solid;
  6279. border-color:rgba(242, 242, 242, 1);
  6280. border-radius:33px;
  6281. -moz-box-shadow:none;
  6282. -webkit-box-shadow:none;
  6283. box-shadow:none;
  6284. }
  6285. #u34512 {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:1681px;
  6289. top:71px;
  6290. width:88px;
  6291. height:32px;
  6292. display:flex;
  6293. }
  6294. #u34512 .text {
  6295. position:absolute;
  6296. align-self:center;
  6297. padding:2px 2px 2px 2px;
  6298. box-sizing:border-box;
  6299. width:100%;
  6300. }
  6301. #u34512_text {
  6302. border-width:0px;
  6303. word-wrap:break-word;
  6304. text-transform:none;
  6305. visibility:hidden;
  6306. }
  6307. #u34513 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:0px;
  6311. top:0px;
  6312. width:0px;
  6313. height:0px;
  6314. }
  6315. #u34514_img {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:0px;
  6319. top:0px;
  6320. width:18px;
  6321. height:18px;
  6322. }
  6323. #u34514 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:1744px;
  6327. top:78px;
  6328. width:18px;
  6329. height:18px;
  6330. display:flex;
  6331. }
  6332. #u34514 .text {
  6333. position:absolute;
  6334. align-self:center;
  6335. padding:2px 2px 2px 2px;
  6336. box-sizing:border-box;
  6337. width:100%;
  6338. }
  6339. #u34514_text {
  6340. border-width:0px;
  6341. word-wrap:break-word;
  6342. text-transform:none;
  6343. visibility:hidden;
  6344. }
  6345. #u34515_img {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:0px;
  6349. top:0px;
  6350. width:6px;
  6351. height:6px;
  6352. }
  6353. #u34515 {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:1750px;
  6357. top:84px;
  6358. width:6px;
  6359. height:6px;
  6360. display:flex;
  6361. }
  6362. #u34515 .text {
  6363. position:absolute;
  6364. align-self:center;
  6365. padding:2px 2px 2px 2px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u34515_text {
  6370. border-width:0px;
  6371. word-wrap:break-word;
  6372. text-transform:none;
  6373. visibility:hidden;
  6374. }
  6375. #u34516 {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:0px;
  6381. height:0px;
  6382. }
  6383. #u34517_img {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:0px;
  6387. top:0px;
  6388. width:5px;
  6389. height:5px;
  6390. }
  6391. #u34517 {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:1695px;
  6395. top:85px;
  6396. width:5px;
  6397. height:5px;
  6398. display:flex;
  6399. }
  6400. #u34517 .text {
  6401. position:absolute;
  6402. align-self:center;
  6403. padding:2px 2px 2px 2px;
  6404. box-sizing:border-box;
  6405. width:100%;
  6406. }
  6407. #u34517_text {
  6408. border-width:0px;
  6409. word-wrap:break-word;
  6410. text-transform:none;
  6411. visibility:hidden;
  6412. }
  6413. #u34518_img {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:5px;
  6419. height:5px;
  6420. }
  6421. #u34518 {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:1711px;
  6425. top:85px;
  6426. width:5px;
  6427. height:5px;
  6428. display:flex;
  6429. }
  6430. #u34518 .text {
  6431. position:absolute;
  6432. align-self:center;
  6433. padding:2px 2px 2px 2px;
  6434. box-sizing:border-box;
  6435. width:100%;
  6436. }
  6437. #u34518_text {
  6438. border-width:0px;
  6439. word-wrap:break-word;
  6440. text-transform:none;
  6441. visibility:hidden;
  6442. }
  6443. #u34519_img {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:7px;
  6449. height:7px;
  6450. }
  6451. #u34519 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:1702px;
  6455. top:84px;
  6456. width:7px;
  6457. height:7px;
  6458. display:flex;
  6459. }
  6460. #u34519 .text {
  6461. position:absolute;
  6462. align-self:center;
  6463. padding:2px 2px 2px 2px;
  6464. box-sizing:border-box;
  6465. width:100%;
  6466. }
  6467. #u34519_text {
  6468. border-width:0px;
  6469. word-wrap:break-word;
  6470. text-transform:none;
  6471. visibility:hidden;
  6472. }
  6473. #u34520_img {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:19px;
  6479. height:2px;
  6480. }
  6481. #u34520 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:1719px;
  6485. top:87px;
  6486. width:18px;
  6487. height:1px;
  6488. display:flex;
  6489. -webkit-transform:rotate(90deg);
  6490. -moz-transform:rotate(90deg);
  6491. -ms-transform:rotate(90deg);
  6492. transform:rotate(90deg);
  6493. }
  6494. #u34520 .text {
  6495. position:absolute;
  6496. align-self:center;
  6497. padding:2px 2px 2px 2px;
  6498. box-sizing:border-box;
  6499. width:100%;
  6500. }
  6501. #u34520_text {
  6502. border-width:0px;
  6503. word-wrap:break-word;
  6504. text-transform:none;
  6505. visibility:hidden;
  6506. }
  6507. #u34521_div {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:12px;
  6513. height:12px;
  6514. background:inherit;
  6515. background-color:rgba(255, 255, 255, 0);
  6516. box-sizing:border-box;
  6517. border-width:2px;
  6518. border-style:solid;
  6519. border-color:rgba(51, 51, 51, 1);
  6520. border-right:0px;
  6521. border-bottom:0px;
  6522. border-radius:0px;
  6523. border-top-right-radius:0px;
  6524. border-bottom-left-radius:0px;
  6525. -moz-box-shadow:none;
  6526. -webkit-box-shadow:none;
  6527. box-shadow:none;
  6528. }
  6529. #u34521 {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:1416px;
  6533. top:81px;
  6534. width:12px;
  6535. height:12px;
  6536. display:flex;
  6537. -webkit-transform:rotate(315deg);
  6538. -moz-transform:rotate(315deg);
  6539. -ms-transform:rotate(315deg);
  6540. transform:rotate(315deg);
  6541. }
  6542. #u34521 .text {
  6543. position:absolute;
  6544. align-self:center;
  6545. padding:2px 2px 2px 2px;
  6546. box-sizing:border-box;
  6547. width:100%;
  6548. }
  6549. #u34521_text {
  6550. border-width:0px;
  6551. word-wrap:break-word;
  6552. text-transform:none;
  6553. visibility:hidden;
  6554. }
  6555. #u34522_div {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:43px;
  6561. height:21px;
  6562. background:inherit;
  6563. background-color:rgba(242, 242, 242, 1);
  6564. border:none;
  6565. border-radius:17px;
  6566. -moz-box-shadow:none;
  6567. -webkit-box-shadow:none;
  6568. box-shadow:none;
  6569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:12px;
  6573. color:#555555;
  6574. }
  6575. #u34522 {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:1414px;
  6579. top:155px;
  6580. width:43px;
  6581. height:21px;
  6582. display:flex;
  6583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6584. font-weight:400;
  6585. font-style:normal;
  6586. font-size:12px;
  6587. color:#555555;
  6588. }
  6589. #u34522 .text {
  6590. position:absolute;
  6591. align-self:center;
  6592. padding:2px 3px 2px 3px;
  6593. box-sizing:border-box;
  6594. width:100%;
  6595. }
  6596. #u34522_text {
  6597. border-width:0px;
  6598. white-space:nowrap;
  6599. text-transform:none;
  6600. }
  6601. #u34523_div {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:0px;
  6605. top:0px;
  6606. width:43px;
  6607. height:21px;
  6608. background:inherit;
  6609. background-color:rgba(242, 242, 242, 1);
  6610. border:none;
  6611. border-radius:17px;
  6612. -moz-box-shadow:none;
  6613. -webkit-box-shadow:none;
  6614. box-shadow:none;
  6615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. font-size:12px;
  6619. color:#555555;
  6620. }
  6621. #u34523 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:1475px;
  6625. top:155px;
  6626. width:43px;
  6627. height:21px;
  6628. display:flex;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:12px;
  6633. color:#555555;
  6634. }
  6635. #u34523 .text {
  6636. position:absolute;
  6637. align-self:center;
  6638. padding:2px 3px 2px 3px;
  6639. box-sizing:border-box;
  6640. width:100%;
  6641. }
  6642. #u34523_text {
  6643. border-width:0px;
  6644. white-space:nowrap;
  6645. text-transform:none;
  6646. }
  6647. #u34524_div {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:43px;
  6653. height:21px;
  6654. background:inherit;
  6655. background-color:rgba(242, 242, 242, 1);
  6656. border:none;
  6657. border-radius:17px;
  6658. -moz-box-shadow:none;
  6659. -webkit-box-shadow:none;
  6660. box-shadow:none;
  6661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. font-size:12px;
  6665. color:#7F7F7F;
  6666. }
  6667. #u34524 {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:1535px;
  6671. top:155px;
  6672. width:43px;
  6673. height:21px;
  6674. display:flex;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:12px;
  6679. color:#7F7F7F;
  6680. }
  6681. #u34524 .text {
  6682. position:absolute;
  6683. align-self:center;
  6684. padding:2px 3px 2px 3px;
  6685. box-sizing:border-box;
  6686. width:100%;
  6687. }
  6688. #u34524_text {
  6689. border-width:0px;
  6690. white-space:nowrap;
  6691. text-transform:none;
  6692. }
  6693. #u34525 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:0px;
  6699. height:0px;
  6700. }
  6701. #u34526_div {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:280px;
  6707. height:30px;
  6708. background:inherit;
  6709. background-color:rgba(242, 242, 242, 1);
  6710. border:none;
  6711. border-radius:20px;
  6712. -moz-box-shadow:none;
  6713. -webkit-box-shadow:none;
  6714. box-shadow:none;
  6715. }
  6716. #u34526 {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:1414px;
  6720. top:115px;
  6721. width:280px;
  6722. height:30px;
  6723. display:flex;
  6724. }
  6725. #u34526 .text {
  6726. position:absolute;
  6727. align-self:center;
  6728. padding:2px 2px 2px 2px;
  6729. box-sizing:border-box;
  6730. width:100%;
  6731. }
  6732. #u34526_text {
  6733. border-width:0px;
  6734. word-wrap:break-word;
  6735. text-transform:none;
  6736. visibility:hidden;
  6737. }
  6738. #u34527_input {
  6739. position:absolute;
  6740. left:0px;
  6741. top:0px;
  6742. width:260px;
  6743. height:25px;
  6744. padding:2px 2px 2px 2px;
  6745. font-family:'ArialMT', 'Arial', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:13px;
  6749. letter-spacing:normal;
  6750. color:#000000;
  6751. vertical-align:none;
  6752. text-align:left;
  6753. text-transform:none;
  6754. background-color:transparent;
  6755. border-color:transparent;
  6756. }
  6757. #u34527_input.disabled {
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:260px;
  6762. height:25px;
  6763. padding:2px 2px 2px 2px;
  6764. font-family:'ArialMT', 'Arial', sans-serif;
  6765. font-weight:400;
  6766. font-style:normal;
  6767. font-size:13px;
  6768. letter-spacing:normal;
  6769. color:#000000;
  6770. vertical-align:none;
  6771. text-align:left;
  6772. text-transform:none;
  6773. background-color:transparent;
  6774. border-color:transparent;
  6775. }
  6776. #u34527_div {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:0px;
  6780. top:0px;
  6781. width:260px;
  6782. height:25px;
  6783. background:inherit;
  6784. background-color:rgba(242, 242, 242, 1);
  6785. border:none;
  6786. border-radius:0px;
  6787. -moz-box-shadow:none;
  6788. -webkit-box-shadow:none;
  6789. box-shadow:none;
  6790. }
  6791. #u34527 {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:1423px;
  6795. top:116px;
  6796. width:260px;
  6797. height:25px;
  6798. display:flex;
  6799. }
  6800. #u34527 .text {
  6801. position:absolute;
  6802. align-self:center;
  6803. padding:2px 2px 2px 2px;
  6804. box-sizing:border-box;
  6805. width:100%;
  6806. }
  6807. #u34527_div.disabled {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:260px;
  6813. height:25px;
  6814. background:inherit;
  6815. background-color:rgba(240, 240, 240, 1);
  6816. border:none;
  6817. border-radius:0px;
  6818. -moz-box-shadow:none;
  6819. -webkit-box-shadow:none;
  6820. box-shadow:none;
  6821. }
  6822. #u34527.disabled {
  6823. }
  6824. #u34528_img {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:0px;
  6828. top:0px;
  6829. width:12px;
  6830. height:12px;
  6831. }
  6832. #u34528 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:1675px;
  6836. top:124px;
  6837. width:12px;
  6838. height:12px;
  6839. display:flex;
  6840. }
  6841. #u34528 .text {
  6842. position:absolute;
  6843. align-self:center;
  6844. padding:2px 2px 2px 2px;
  6845. box-sizing:border-box;
  6846. width:100%;
  6847. }
  6848. #u34528_text {
  6849. border-width:0px;
  6850. word-wrap:break-word;
  6851. text-transform:none;
  6852. visibility:hidden;
  6853. }
  6854. #u34529_div {
  6855. border-width:0px;
  6856. position:absolute;
  6857. left:0px;
  6858. top:0px;
  6859. width:49px;
  6860. height:30px;
  6861. background:inherit;
  6862. background-color:rgba(255, 255, 255, 0);
  6863. border:none;
  6864. border-left:0px;
  6865. border-top:0px;
  6866. border-right:0px;
  6867. border-radius:0px;
  6868. border-bottom-right-radius:0px;
  6869. border-bottom-left-radius:0px;
  6870. -moz-box-shadow:none;
  6871. -webkit-box-shadow:none;
  6872. box-shadow:none;
  6873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6874. font-weight:400;
  6875. font-style:normal;
  6876. font-size:12px;
  6877. color:#1890FF;
  6878. line-height:30px;
  6879. }
  6880. #u34529 {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:1713px;
  6884. top:115px;
  6885. width:49px;
  6886. height:30px;
  6887. display:flex;
  6888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. font-size:12px;
  6892. color:#1890FF;
  6893. line-height:30px;
  6894. }
  6895. #u34529 .text {
  6896. position:absolute;
  6897. align-self:flex-start;
  6898. padding:0px 0px 0px 0px;
  6899. box-sizing:border-box;
  6900. width:100%;
  6901. }
  6902. #u34529_text {
  6903. border-width:0px;
  6904. white-space:nowrap;
  6905. text-transform:none;
  6906. }
  6907. #u34530_div {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:63px;
  6913. height:14px;
  6914. background:inherit;
  6915. background-color:rgba(255, 255, 255, 0);
  6916. border:none;
  6917. border-left:0px;
  6918. border-top:0px;
  6919. border-right:0px;
  6920. border-radius:0px;
  6921. border-bottom-right-radius:0px;
  6922. border-bottom-left-radius:0px;
  6923. -moz-box-shadow:none;
  6924. -webkit-box-shadow:none;
  6925. box-shadow:none;
  6926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:10px;
  6930. color:#AAAAAA;
  6931. }
  6932. #u34530 {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:1414px;
  6936. top:184px;
  6937. width:63px;
  6938. height:14px;
  6939. display:flex;
  6940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6941. font-weight:400;
  6942. font-style:normal;
  6943. font-size:10px;
  6944. color:#AAAAAA;
  6945. }
  6946. #u34530 .text {
  6947. position:absolute;
  6948. align-self:flex-start;
  6949. padding:0px 0px 0px 0px;
  6950. box-sizing:border-box;
  6951. width:100%;
  6952. }
  6953. #u34530_text {
  6954. border-width:0px;
  6955. white-space:nowrap;
  6956. text-transform:none;
  6957. }
  6958. #u34531_div {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:65px;
  6964. height:22px;
  6965. background:inherit;
  6966. background-color:rgba(255, 255, 255, 0);
  6967. border:none;
  6968. border-radius:0px;
  6969. -moz-box-shadow:none;
  6970. -webkit-box-shadow:none;
  6971. box-shadow:none;
  6972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6973. font-weight:400;
  6974. font-style:normal;
  6975. font-size:16px;
  6976. color:#000000;
  6977. }
  6978. #u34531 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:1553px;
  6982. top:76px;
  6983. width:65px;
  6984. height:22px;
  6985. display:flex;
  6986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. font-size:16px;
  6990. color:#000000;
  6991. }
  6992. #u34531 .text {
  6993. position:absolute;
  6994. align-self:flex-start;
  6995. padding:0px 0px 0px 0px;
  6996. box-sizing:border-box;
  6997. width:100%;
  6998. }
  6999. #u34531_text {
  7000. border-width:0px;
  7001. white-space:nowrap;
  7002. text-transform:none;
  7003. }
  7004. #u34532_div {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:0px;
  7008. top:0px;
  7009. width:11px;
  7010. height:11px;
  7011. background:inherit;
  7012. background-color:rgba(217, 0, 27, 1);
  7013. border:none;
  7014. border-radius:7px;
  7015. -moz-box-shadow:none;
  7016. -webkit-box-shadow:none;
  7017. box-shadow:none;
  7018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:8px;
  7022. color:#FFFFFF;
  7023. text-align:center;
  7024. }
  7025. #u34532 {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:1452px;
  7029. top:150px;
  7030. width:11px;
  7031. height:11px;
  7032. display:flex;
  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. #u34532 .text {
  7041. position:absolute;
  7042. align-self:flex-start;
  7043. padding:0px 0px 0px 0px;
  7044. box-sizing:border-box;
  7045. width:100%;
  7046. }
  7047. #u34532_text {
  7048. border-width:0px;
  7049. word-wrap:break-word;
  7050. text-transform:none;
  7051. }
  7052. #u34533_div {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:43px;
  7058. height:21px;
  7059. background:inherit;
  7060. background-color:rgba(0, 137, 254, 1);
  7061. border:none;
  7062. border-radius:17px;
  7063. -moz-box-shadow:none;
  7064. -webkit-box-shadow:none;
  7065. box-shadow:none;
  7066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:12px;
  7070. color:#FFFFFF;
  7071. }
  7072. #u34533 {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:1596px;
  7076. top:155px;
  7077. width:43px;
  7078. height:21px;
  7079. display:flex;
  7080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7081. font-weight:400;
  7082. font-style:normal;
  7083. font-size:12px;
  7084. color:#FFFFFF;
  7085. }
  7086. #u34533 .text {
  7087. position:absolute;
  7088. align-self:center;
  7089. padding:2px 3px 2px 3px;
  7090. box-sizing:border-box;
  7091. width:100%;
  7092. }
  7093. #u34533_text {
  7094. border-width:0px;
  7095. white-space:nowrap;
  7096. text-transform:none;
  7097. }
  7098. #u34534_div {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:0px;
  7102. top:0px;
  7103. width:43px;
  7104. height:21px;
  7105. background:inherit;
  7106. background-color:rgba(242, 242, 242, 1);
  7107. border:none;
  7108. border-radius:17px;
  7109. -moz-box-shadow:none;
  7110. -webkit-box-shadow:none;
  7111. box-shadow:none;
  7112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7113. font-weight:400;
  7114. font-style:normal;
  7115. font-size:12px;
  7116. color:#555555;
  7117. }
  7118. #u34534 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:1659px;
  7122. top:155px;
  7123. width:43px;
  7124. height:21px;
  7125. display:flex;
  7126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7127. font-weight:400;
  7128. font-style:normal;
  7129. font-size:12px;
  7130. color:#555555;
  7131. }
  7132. #u34534 .text {
  7133. position:absolute;
  7134. align-self:center;
  7135. padding:2px 3px 2px 3px;
  7136. box-sizing:border-box;
  7137. width:100%;
  7138. }
  7139. #u34534_text {
  7140. border-width:0px;
  7141. white-space:nowrap;
  7142. text-transform:none;
  7143. }
  7144. #u34536_img {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:0px;
  7148. top:0px;
  7149. width:433px;
  7150. height:865px;
  7151. }
  7152. #u34536 {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:1837px;
  7156. top:0px;
  7157. width:433px;
  7158. height:865px;
  7159. display:flex;
  7160. }
  7161. #u34536 .text {
  7162. position:absolute;
  7163. align-self:center;
  7164. padding:2px 2px 2px 2px;
  7165. box-sizing:border-box;
  7166. width:100%;
  7167. }
  7168. #u34536_text {
  7169. border-width:0px;
  7170. word-wrap:break-word;
  7171. text-transform:none;
  7172. visibility:hidden;
  7173. }
  7174. #u34537_div {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:375px;
  7180. height:40px;
  7181. background:inherit;
  7182. background-color:rgba(255, 255, 255, 1);
  7183. box-sizing:border-box;
  7184. border-width:1px;
  7185. border-style:solid;
  7186. border-color:rgba(215, 215, 215, 1);
  7187. border-left:0px;
  7188. border-top:0px;
  7189. border-right:0px;
  7190. border-radius:0px;
  7191. border-bottom-right-radius:0px;
  7192. border-bottom-left-radius:0px;
  7193. -moz-box-shadow:none;
  7194. -webkit-box-shadow:none;
  7195. box-shadow:none;
  7196. }
  7197. #u34537 {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:1866px;
  7201. top:67px;
  7202. width:375px;
  7203. height:40px;
  7204. display:flex;
  7205. }
  7206. #u34537 .text {
  7207. position:absolute;
  7208. align-self:center;
  7209. padding:2px 2px 2px 2px;
  7210. box-sizing:border-box;
  7211. width:100%;
  7212. }
  7213. #u34537_text {
  7214. border-width:0px;
  7215. word-wrap:break-word;
  7216. text-transform:none;
  7217. visibility:hidden;
  7218. }
  7219. #u34538 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:0px;
  7225. height:0px;
  7226. }
  7227. #u34539_div {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:88px;
  7233. height:32px;
  7234. background:inherit;
  7235. background-color:rgba(255, 255, 255, 1);
  7236. box-sizing:border-box;
  7237. border-width:1px;
  7238. border-style:solid;
  7239. border-color:rgba(242, 242, 242, 1);
  7240. border-radius:33px;
  7241. -moz-box-shadow:none;
  7242. -webkit-box-shadow:none;
  7243. box-shadow:none;
  7244. }
  7245. #u34539 {
  7246. border-width:0px;
  7247. position:absolute;
  7248. left:2146px;
  7249. top:71px;
  7250. width:88px;
  7251. height:32px;
  7252. display:flex;
  7253. }
  7254. #u34539 .text {
  7255. position:absolute;
  7256. align-self:center;
  7257. padding:2px 2px 2px 2px;
  7258. box-sizing:border-box;
  7259. width:100%;
  7260. }
  7261. #u34539_text {
  7262. border-width:0px;
  7263. word-wrap:break-word;
  7264. text-transform:none;
  7265. visibility:hidden;
  7266. }
  7267. #u34540 {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:0px;
  7273. height:0px;
  7274. }
  7275. #u34541_img {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:18px;
  7281. height:18px;
  7282. }
  7283. #u34541 {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:2209px;
  7287. top:78px;
  7288. width:18px;
  7289. height:18px;
  7290. display:flex;
  7291. }
  7292. #u34541 .text {
  7293. position:absolute;
  7294. align-self:center;
  7295. padding:2px 2px 2px 2px;
  7296. box-sizing:border-box;
  7297. width:100%;
  7298. }
  7299. #u34541_text {
  7300. border-width:0px;
  7301. word-wrap:break-word;
  7302. text-transform:none;
  7303. visibility:hidden;
  7304. }
  7305. #u34542_img {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:0px;
  7309. top:0px;
  7310. width:6px;
  7311. height:6px;
  7312. }
  7313. #u34542 {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:2215px;
  7317. top:84px;
  7318. width:6px;
  7319. height:6px;
  7320. display:flex;
  7321. }
  7322. #u34542 .text {
  7323. position:absolute;
  7324. align-self:center;
  7325. padding:2px 2px 2px 2px;
  7326. box-sizing:border-box;
  7327. width:100%;
  7328. }
  7329. #u34542_text {
  7330. border-width:0px;
  7331. word-wrap:break-word;
  7332. text-transform:none;
  7333. visibility:hidden;
  7334. }
  7335. #u34543 {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:0px;
  7341. height:0px;
  7342. }
  7343. #u34544_img {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:0px;
  7347. top:0px;
  7348. width:5px;
  7349. height:5px;
  7350. }
  7351. #u34544 {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:2160px;
  7355. top:85px;
  7356. width:5px;
  7357. height:5px;
  7358. display:flex;
  7359. }
  7360. #u34544 .text {
  7361. position:absolute;
  7362. align-self:center;
  7363. padding:2px 2px 2px 2px;
  7364. box-sizing:border-box;
  7365. width:100%;
  7366. }
  7367. #u34544_text {
  7368. border-width:0px;
  7369. word-wrap:break-word;
  7370. text-transform:none;
  7371. visibility:hidden;
  7372. }
  7373. #u34545_img {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:0px;
  7377. top:0px;
  7378. width:5px;
  7379. height:5px;
  7380. }
  7381. #u34545 {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:2176px;
  7385. top:85px;
  7386. width:5px;
  7387. height:5px;
  7388. display:flex;
  7389. }
  7390. #u34545 .text {
  7391. position:absolute;
  7392. align-self:center;
  7393. padding:2px 2px 2px 2px;
  7394. box-sizing:border-box;
  7395. width:100%;
  7396. }
  7397. #u34545_text {
  7398. border-width:0px;
  7399. word-wrap:break-word;
  7400. text-transform:none;
  7401. visibility:hidden;
  7402. }
  7403. #u34546_img {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:0px;
  7407. top:0px;
  7408. width:7px;
  7409. height:7px;
  7410. }
  7411. #u34546 {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:2167px;
  7415. top:84px;
  7416. width:7px;
  7417. height:7px;
  7418. display:flex;
  7419. }
  7420. #u34546 .text {
  7421. position:absolute;
  7422. align-self:center;
  7423. padding:2px 2px 2px 2px;
  7424. box-sizing:border-box;
  7425. width:100%;
  7426. }
  7427. #u34546_text {
  7428. border-width:0px;
  7429. word-wrap:break-word;
  7430. text-transform:none;
  7431. visibility:hidden;
  7432. }
  7433. #u34547_img {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:0px;
  7437. top:0px;
  7438. width:19px;
  7439. height:2px;
  7440. }
  7441. #u34547 {
  7442. border-width:0px;
  7443. position:absolute;
  7444. left:2184px;
  7445. top:87px;
  7446. width:18px;
  7447. height:1px;
  7448. display:flex;
  7449. -webkit-transform:rotate(90deg);
  7450. -moz-transform:rotate(90deg);
  7451. -ms-transform:rotate(90deg);
  7452. transform:rotate(90deg);
  7453. }
  7454. #u34547 .text {
  7455. position:absolute;
  7456. align-self:center;
  7457. padding:2px 2px 2px 2px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u34547_text {
  7462. border-width:0px;
  7463. word-wrap:break-word;
  7464. text-transform:none;
  7465. visibility:hidden;
  7466. }
  7467. #u34548_img {
  7468. border-width:0px;
  7469. position:absolute;
  7470. left:0px;
  7471. top:0px;
  7472. width:375px;
  7473. height:44px;
  7474. }
  7475. #u34548 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:1866px;
  7479. top:24px;
  7480. width:375px;
  7481. height:44px;
  7482. display:flex;
  7483. }
  7484. #u34548 .text {
  7485. position:absolute;
  7486. align-self:center;
  7487. padding:2px 2px 2px 2px;
  7488. box-sizing:border-box;
  7489. width:100%;
  7490. }
  7491. #u34548_text {
  7492. border-width:0px;
  7493. word-wrap:break-word;
  7494. text-transform:none;
  7495. visibility:hidden;
  7496. }
  7497. #u34549_div {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:375px;
  7503. height:50px;
  7504. background:inherit;
  7505. background-color:rgba(255, 255, 255, 1);
  7506. box-sizing:border-box;
  7507. border-width:1px;
  7508. border-style:solid;
  7509. border-color:rgba(242, 242, 242, 1);
  7510. border-radius:26px;
  7511. border-top-left-radius:0px;
  7512. border-top-right-radius:0px;
  7513. -moz-box-shadow:none;
  7514. -webkit-box-shadow:none;
  7515. box-shadow:none;
  7516. }
  7517. #u34549 {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:1866px;
  7521. top:788px;
  7522. width:375px;
  7523. height:50px;
  7524. display:flex;
  7525. }
  7526. #u34549 .text {
  7527. position:absolute;
  7528. align-self:center;
  7529. padding:2px 2px 2px 2px;
  7530. box-sizing:border-box;
  7531. width:100%;
  7532. }
  7533. #u34549_text {
  7534. border-width:0px;
  7535. word-wrap:break-word;
  7536. text-transform:none;
  7537. visibility:hidden;
  7538. }
  7539. #u34550 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:0px;
  7543. top:0px;
  7544. width:0px;
  7545. height:0px;
  7546. }
  7547. #u34551_img {
  7548. border-width:0px;
  7549. position:absolute;
  7550. left:0px;
  7551. top:0px;
  7552. width:24px;
  7553. height:24px;
  7554. }
  7555. #u34551 {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:1906px;
  7559. top:792px;
  7560. width:24px;
  7561. height:24px;
  7562. display:flex;
  7563. font-size:8px;
  7564. }
  7565. #u34551 .text {
  7566. position:absolute;
  7567. align-self:center;
  7568. padding:2px 2px 2px 2px;
  7569. box-sizing:border-box;
  7570. width:100%;
  7571. }
  7572. #u34551_text {
  7573. border-width:0px;
  7574. word-wrap:break-word;
  7575. text-transform:none;
  7576. }
  7577. #u34552_div {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:0px;
  7581. top:0px;
  7582. width:25px;
  7583. height:17px;
  7584. background:inherit;
  7585. background-color:rgba(255, 255, 255, 0);
  7586. border:none;
  7587. border-radius:0px;
  7588. -moz-box-shadow:none;
  7589. -webkit-box-shadow:none;
  7590. box-shadow:none;
  7591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7592. font-weight:400;
  7593. font-style:normal;
  7594. font-size:12px;
  7595. }
  7596. #u34552 {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:1906px;
  7600. top:817px;
  7601. width:25px;
  7602. height:17px;
  7603. display:flex;
  7604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7605. font-weight:400;
  7606. font-style:normal;
  7607. font-size:12px;
  7608. }
  7609. #u34552 .text {
  7610. position:absolute;
  7611. align-self:flex-start;
  7612. padding:0px 0px 0px 0px;
  7613. box-sizing:border-box;
  7614. width:100%;
  7615. }
  7616. #u34552_text {
  7617. border-width:0px;
  7618. white-space:nowrap;
  7619. text-transform:none;
  7620. }
  7621. #u34553 {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:0px;
  7627. height:0px;
  7628. }
  7629. #u34554_img {
  7630. border-width:0px;
  7631. position:absolute;
  7632. left:0px;
  7633. top:0px;
  7634. width:24px;
  7635. height:24px;
  7636. }
  7637. #u34554 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:2176px;
  7641. top:794px;
  7642. width:24px;
  7643. height:24px;
  7644. display:flex;
  7645. font-size:8px;
  7646. }
  7647. #u34554 .text {
  7648. position:absolute;
  7649. align-self:center;
  7650. padding:2px 2px 2px 2px;
  7651. box-sizing:border-box;
  7652. width:100%;
  7653. }
  7654. #u34554_text {
  7655. border-width:0px;
  7656. word-wrap:break-word;
  7657. text-transform:none;
  7658. }
  7659. #u34555_div {
  7660. border-width:0px;
  7661. position:absolute;
  7662. left:0px;
  7663. top:0px;
  7664. width:25px;
  7665. height:17px;
  7666. background:inherit;
  7667. background-color:rgba(255, 255, 255, 0);
  7668. border:none;
  7669. border-radius:0px;
  7670. -moz-box-shadow:none;
  7671. -webkit-box-shadow:none;
  7672. box-shadow:none;
  7673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7674. font-weight:400;
  7675. font-style:normal;
  7676. font-size:12px;
  7677. }
  7678. #u34555 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:2176px;
  7682. top:819px;
  7683. width:25px;
  7684. height:17px;
  7685. display:flex;
  7686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:12px;
  7690. }
  7691. #u34555 .text {
  7692. position:absolute;
  7693. align-self:flex-start;
  7694. padding:0px 0px 0px 0px;
  7695. box-sizing:border-box;
  7696. width:100%;
  7697. }
  7698. #u34555_text {
  7699. border-width:0px;
  7700. white-space:nowrap;
  7701. text-transform:none;
  7702. }
  7703. #u34556_div {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:375px;
  7709. height:681px;
  7710. background:inherit;
  7711. background-color:rgba(242, 242, 242, 0.462745098039216);
  7712. border:none;
  7713. border-radius:0px;
  7714. -moz-box-shadow:none;
  7715. -webkit-box-shadow:none;
  7716. box-shadow:none;
  7717. }
  7718. #u34556 {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:1866px;
  7722. top:107px;
  7723. width:375px;
  7724. height:681px;
  7725. display:flex;
  7726. }
  7727. #u34556 .text {
  7728. position:absolute;
  7729. align-self:center;
  7730. padding:2px 2px 2px 2px;
  7731. box-sizing:border-box;
  7732. width:100%;
  7733. }
  7734. #u34556_text {
  7735. border-width:0px;
  7736. word-wrap:break-word;
  7737. text-transform:none;
  7738. visibility:hidden;
  7739. }
  7740. #u34557 {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:0px;
  7744. top:0px;
  7745. width:0px;
  7746. height:0px;
  7747. }
  7748. #u34558_img {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:0px;
  7752. top:0px;
  7753. width:24px;
  7754. height:24px;
  7755. }
  7756. #u34558 {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:2088px;
  7760. top:792px;
  7761. width:24px;
  7762. height:24px;
  7763. display:flex;
  7764. font-size:8px;
  7765. }
  7766. #u34558 .text {
  7767. position:absolute;
  7768. align-self:center;
  7769. padding:2px 2px 2px 2px;
  7770. box-sizing:border-box;
  7771. width:100%;
  7772. }
  7773. #u34558_text {
  7774. border-width:0px;
  7775. word-wrap:break-word;
  7776. text-transform:none;
  7777. }
  7778. #u34559_div {
  7779. border-width:0px;
  7780. position:absolute;
  7781. left:0px;
  7782. top:0px;
  7783. width:37px;
  7784. height:17px;
  7785. background:inherit;
  7786. background-color:rgba(255, 255, 255, 0);
  7787. border:none;
  7788. border-radius:0px;
  7789. -moz-box-shadow:none;
  7790. -webkit-box-shadow:none;
  7791. box-shadow:none;
  7792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:12px;
  7796. }
  7797. #u34559 {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:2082px;
  7801. top:817px;
  7802. width:37px;
  7803. height:17px;
  7804. display:flex;
  7805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:12px;
  7809. }
  7810. #u34559 .text {
  7811. position:absolute;
  7812. align-self:flex-start;
  7813. padding:0px 0px 0px 0px;
  7814. box-sizing:border-box;
  7815. width:100%;
  7816. }
  7817. #u34559_text {
  7818. border-width:0px;
  7819. white-space:nowrap;
  7820. text-transform:none;
  7821. }
  7822. #u34560 {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:0px;
  7826. top:0px;
  7827. width:0px;
  7828. height:0px;
  7829. }
  7830. #u34561_img {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:0px;
  7834. top:0px;
  7835. width:24px;
  7836. height:24px;
  7837. }
  7838. #u34561 {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:1994px;
  7842. top:792px;
  7843. width:24px;
  7844. height:24px;
  7845. display:flex;
  7846. font-size:8px;
  7847. }
  7848. #u34561 .text {
  7849. position:absolute;
  7850. align-self:center;
  7851. padding:2px 2px 2px 2px;
  7852. box-sizing:border-box;
  7853. width:100%;
  7854. }
  7855. #u34561_text {
  7856. border-width:0px;
  7857. word-wrap:break-word;
  7858. text-transform:none;
  7859. }
  7860. #u34562_div {
  7861. border-width:0px;
  7862. position:absolute;
  7863. left:0px;
  7864. top:0px;
  7865. width:37px;
  7866. height:17px;
  7867. background:inherit;
  7868. background-color:rgba(255, 255, 255, 0);
  7869. border:none;
  7870. border-radius:0px;
  7871. -moz-box-shadow:none;
  7872. -webkit-box-shadow:none;
  7873. box-shadow:none;
  7874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7875. font-weight:400;
  7876. font-style:normal;
  7877. font-size:12px;
  7878. }
  7879. #u34562 {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:1988px;
  7883. top:817px;
  7884. width:37px;
  7885. height:17px;
  7886. display:flex;
  7887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7888. font-weight:400;
  7889. font-style:normal;
  7890. font-size:12px;
  7891. }
  7892. #u34562 .text {
  7893. position:absolute;
  7894. align-self:flex-start;
  7895. padding:0px 0px 0px 0px;
  7896. box-sizing:border-box;
  7897. width:100%;
  7898. }
  7899. #u34562_text {
  7900. border-width:0px;
  7901. white-space:nowrap;
  7902. text-transform:none;
  7903. }
  7904. #u34563_div {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:0px;
  7908. top:0px;
  7909. width:375px;
  7910. height:740px;
  7911. background:inherit;
  7912. background-color:rgba(242, 242, 242, 1);
  7913. border:none;
  7914. border-top:0px;
  7915. border-radius:25px;
  7916. border-top-left-radius:0px;
  7917. border-top-right-radius:0px;
  7918. -moz-box-shadow:none;
  7919. -webkit-box-shadow:none;
  7920. box-shadow:none;
  7921. }
  7922. #u34563 {
  7923. border-width:0px;
  7924. position:absolute;
  7925. left:1866px;
  7926. top:105px;
  7927. width:375px;
  7928. height:740px;
  7929. display:flex;
  7930. }
  7931. #u34563 .text {
  7932. position:absolute;
  7933. align-self:center;
  7934. padding:2px 2px 2px 2px;
  7935. box-sizing:border-box;
  7936. width:100%;
  7937. }
  7938. #u34563_text {
  7939. border-width:0px;
  7940. word-wrap:break-word;
  7941. text-transform:none;
  7942. visibility:hidden;
  7943. }
  7944. #u34564 {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:0px;
  7950. height:0px;
  7951. }
  7952. #u34565_img {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:11px;
  7958. height:18px;
  7959. }
  7960. #u34565 {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:1877px;
  7964. top:79px;
  7965. width:11px;
  7966. height:18px;
  7967. display:flex;
  7968. }
  7969. #u34565 .text {
  7970. position:absolute;
  7971. align-self:center;
  7972. padding:2px 2px 2px 2px;
  7973. box-sizing:border-box;
  7974. width:100%;
  7975. }
  7976. #u34565_text {
  7977. border-width:0px;
  7978. word-wrap:break-word;
  7979. text-transform:none;
  7980. visibility:hidden;
  7981. }
  7982. #u34566_div {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:0px;
  7986. top:0px;
  7987. width:375px;
  7988. height:140px;
  7989. background:inherit;
  7990. background-color:rgba(255, 255, 255, 1);
  7991. box-sizing:border-box;
  7992. border-width:1px;
  7993. border-style:solid;
  7994. border-color:rgba(215, 215, 215, 1);
  7995. border-left:0px;
  7996. border-top:0px;
  7997. border-right:0px;
  7998. border-radius:0px;
  7999. border-bottom-right-radius:0px;
  8000. border-bottom-left-radius:0px;
  8001. -moz-box-shadow:none;
  8002. -webkit-box-shadow:none;
  8003. box-shadow:none;
  8004. }
  8005. #u34566 {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:1866px;
  8009. top:67px;
  8010. width:375px;
  8011. height:140px;
  8012. display:flex;
  8013. }
  8014. #u34566 .text {
  8015. position:absolute;
  8016. align-self:center;
  8017. padding:2px 2px 2px 2px;
  8018. box-sizing:border-box;
  8019. width:100%;
  8020. }
  8021. #u34566_text {
  8022. border-width:0px;
  8023. word-wrap:break-word;
  8024. text-transform:none;
  8025. visibility:hidden;
  8026. }
  8027. #u34567 {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:0px;
  8033. height:0px;
  8034. }
  8035. #u34568_div {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:88px;
  8041. height:32px;
  8042. background:inherit;
  8043. background-color:rgba(255, 255, 255, 1);
  8044. box-sizing:border-box;
  8045. border-width:1px;
  8046. border-style:solid;
  8047. border-color:rgba(242, 242, 242, 1);
  8048. border-radius:33px;
  8049. -moz-box-shadow:none;
  8050. -webkit-box-shadow:none;
  8051. box-shadow:none;
  8052. }
  8053. #u34568 {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:2146px;
  8057. top:71px;
  8058. width:88px;
  8059. height:32px;
  8060. display:flex;
  8061. }
  8062. #u34568 .text {
  8063. position:absolute;
  8064. align-self:center;
  8065. padding:2px 2px 2px 2px;
  8066. box-sizing:border-box;
  8067. width:100%;
  8068. }
  8069. #u34568_text {
  8070. border-width:0px;
  8071. word-wrap:break-word;
  8072. text-transform:none;
  8073. visibility:hidden;
  8074. }
  8075. #u34569 {
  8076. border-width:0px;
  8077. position:absolute;
  8078. left:0px;
  8079. top:0px;
  8080. width:0px;
  8081. height:0px;
  8082. }
  8083. #u34570_img {
  8084. border-width:0px;
  8085. position:absolute;
  8086. left:0px;
  8087. top:0px;
  8088. width:18px;
  8089. height:18px;
  8090. }
  8091. #u34570 {
  8092. border-width:0px;
  8093. position:absolute;
  8094. left:2209px;
  8095. top:78px;
  8096. width:18px;
  8097. height:18px;
  8098. display:flex;
  8099. }
  8100. #u34570 .text {
  8101. position:absolute;
  8102. align-self:center;
  8103. padding:2px 2px 2px 2px;
  8104. box-sizing:border-box;
  8105. width:100%;
  8106. }
  8107. #u34570_text {
  8108. border-width:0px;
  8109. word-wrap:break-word;
  8110. text-transform:none;
  8111. visibility:hidden;
  8112. }
  8113. #u34571_img {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:0px;
  8117. top:0px;
  8118. width:6px;
  8119. height:6px;
  8120. }
  8121. #u34571 {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:2215px;
  8125. top:84px;
  8126. width:6px;
  8127. height:6px;
  8128. display:flex;
  8129. }
  8130. #u34571 .text {
  8131. position:absolute;
  8132. align-self:center;
  8133. padding:2px 2px 2px 2px;
  8134. box-sizing:border-box;
  8135. width:100%;
  8136. }
  8137. #u34571_text {
  8138. border-width:0px;
  8139. word-wrap:break-word;
  8140. text-transform:none;
  8141. visibility:hidden;
  8142. }
  8143. #u34572 {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:0px;
  8147. top:0px;
  8148. width:0px;
  8149. height:0px;
  8150. }
  8151. #u34573_img {
  8152. border-width:0px;
  8153. position:absolute;
  8154. left:0px;
  8155. top:0px;
  8156. width:5px;
  8157. height:5px;
  8158. }
  8159. #u34573 {
  8160. border-width:0px;
  8161. position:absolute;
  8162. left:2160px;
  8163. top:85px;
  8164. width:5px;
  8165. height:5px;
  8166. display:flex;
  8167. }
  8168. #u34573 .text {
  8169. position:absolute;
  8170. align-self:center;
  8171. padding:2px 2px 2px 2px;
  8172. box-sizing:border-box;
  8173. width:100%;
  8174. }
  8175. #u34573_text {
  8176. border-width:0px;
  8177. word-wrap:break-word;
  8178. text-transform:none;
  8179. visibility:hidden;
  8180. }
  8181. #u34574_img {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:0px;
  8185. top:0px;
  8186. width:5px;
  8187. height:5px;
  8188. }
  8189. #u34574 {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:2176px;
  8193. top:85px;
  8194. width:5px;
  8195. height:5px;
  8196. display:flex;
  8197. }
  8198. #u34574 .text {
  8199. position:absolute;
  8200. align-self:center;
  8201. padding:2px 2px 2px 2px;
  8202. box-sizing:border-box;
  8203. width:100%;
  8204. }
  8205. #u34574_text {
  8206. border-width:0px;
  8207. word-wrap:break-word;
  8208. text-transform:none;
  8209. visibility:hidden;
  8210. }
  8211. #u34575_img {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:7px;
  8217. height:7px;
  8218. }
  8219. #u34575 {
  8220. border-width:0px;
  8221. position:absolute;
  8222. left:2167px;
  8223. top:84px;
  8224. width:7px;
  8225. height:7px;
  8226. display:flex;
  8227. }
  8228. #u34575 .text {
  8229. position:absolute;
  8230. align-self:center;
  8231. padding:2px 2px 2px 2px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u34575_text {
  8236. border-width:0px;
  8237. word-wrap:break-word;
  8238. text-transform:none;
  8239. visibility:hidden;
  8240. }
  8241. #u34576_img {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:19px;
  8247. height:2px;
  8248. }
  8249. #u34576 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:2184px;
  8253. top:87px;
  8254. width:18px;
  8255. height:1px;
  8256. display:flex;
  8257. -webkit-transform:rotate(90deg);
  8258. -moz-transform:rotate(90deg);
  8259. -ms-transform:rotate(90deg);
  8260. transform:rotate(90deg);
  8261. }
  8262. #u34576 .text {
  8263. position:absolute;
  8264. align-self:center;
  8265. padding:2px 2px 2px 2px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u34576_text {
  8270. border-width:0px;
  8271. word-wrap:break-word;
  8272. text-transform:none;
  8273. visibility:hidden;
  8274. }
  8275. #u34577_div {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:12px;
  8281. height:12px;
  8282. background:inherit;
  8283. background-color:rgba(255, 255, 255, 0);
  8284. box-sizing:border-box;
  8285. border-width:2px;
  8286. border-style:solid;
  8287. border-color:rgba(51, 51, 51, 1);
  8288. border-right:0px;
  8289. border-bottom:0px;
  8290. border-radius:0px;
  8291. border-top-right-radius:0px;
  8292. border-bottom-left-radius:0px;
  8293. -moz-box-shadow:none;
  8294. -webkit-box-shadow:none;
  8295. box-shadow:none;
  8296. }
  8297. #u34577 {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:1881px;
  8301. top:82px;
  8302. width:12px;
  8303. height:12px;
  8304. display:flex;
  8305. -webkit-transform:rotate(315deg);
  8306. -moz-transform:rotate(315deg);
  8307. -ms-transform:rotate(315deg);
  8308. transform:rotate(315deg);
  8309. }
  8310. #u34577 .text {
  8311. position:absolute;
  8312. align-self:center;
  8313. padding:2px 2px 2px 2px;
  8314. box-sizing:border-box;
  8315. width:100%;
  8316. }
  8317. #u34577_text {
  8318. border-width:0px;
  8319. word-wrap:break-word;
  8320. text-transform:none;
  8321. visibility:hidden;
  8322. }
  8323. #u34578_div {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:0px;
  8327. top:0px;
  8328. width:43px;
  8329. height:21px;
  8330. background:inherit;
  8331. background-color:rgba(242, 242, 242, 1);
  8332. border:none;
  8333. border-radius:17px;
  8334. -moz-box-shadow:none;
  8335. -webkit-box-shadow:none;
  8336. box-shadow:none;
  8337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8338. font-weight:400;
  8339. font-style:normal;
  8340. font-size:12px;
  8341. color:#555555;
  8342. }
  8343. #u34578 {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:1879px;
  8347. top:155px;
  8348. width:43px;
  8349. height:21px;
  8350. display:flex;
  8351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8352. font-weight:400;
  8353. font-style:normal;
  8354. font-size:12px;
  8355. color:#555555;
  8356. }
  8357. #u34578 .text {
  8358. position:absolute;
  8359. align-self:center;
  8360. padding:2px 3px 2px 3px;
  8361. box-sizing:border-box;
  8362. width:100%;
  8363. }
  8364. #u34578_text {
  8365. border-width:0px;
  8366. white-space:nowrap;
  8367. text-transform:none;
  8368. }
  8369. #u34579_div {
  8370. border-width:0px;
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:43px;
  8375. height:21px;
  8376. background:inherit;
  8377. background-color:rgba(242, 242, 242, 1);
  8378. border:none;
  8379. border-radius:17px;
  8380. -moz-box-shadow:none;
  8381. -webkit-box-shadow:none;
  8382. box-shadow:none;
  8383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8384. font-weight:400;
  8385. font-style:normal;
  8386. font-size:12px;
  8387. color:#555555;
  8388. }
  8389. #u34579 {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:1940px;
  8393. top:155px;
  8394. width:43px;
  8395. height:21px;
  8396. display:flex;
  8397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8398. font-weight:400;
  8399. font-style:normal;
  8400. font-size:12px;
  8401. color:#555555;
  8402. }
  8403. #u34579 .text {
  8404. position:absolute;
  8405. align-self:center;
  8406. padding:2px 3px 2px 3px;
  8407. box-sizing:border-box;
  8408. width:100%;
  8409. }
  8410. #u34579_text {
  8411. border-width:0px;
  8412. white-space:nowrap;
  8413. text-transform:none;
  8414. }
  8415. #u34580_div {
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:0px;
  8419. top:0px;
  8420. width:43px;
  8421. height:21px;
  8422. background:inherit;
  8423. background-color:rgba(242, 242, 242, 1);
  8424. border:none;
  8425. border-radius:17px;
  8426. -moz-box-shadow:none;
  8427. -webkit-box-shadow:none;
  8428. box-shadow:none;
  8429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8430. font-weight:400;
  8431. font-style:normal;
  8432. font-size:12px;
  8433. color:#7F7F7F;
  8434. }
  8435. #u34580 {
  8436. border-width:0px;
  8437. position:absolute;
  8438. left:2000px;
  8439. top:155px;
  8440. width:43px;
  8441. height:21px;
  8442. display:flex;
  8443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8444. font-weight:400;
  8445. font-style:normal;
  8446. font-size:12px;
  8447. color:#7F7F7F;
  8448. }
  8449. #u34580 .text {
  8450. position:absolute;
  8451. align-self:center;
  8452. padding:2px 3px 2px 3px;
  8453. box-sizing:border-box;
  8454. width:100%;
  8455. }
  8456. #u34580_text {
  8457. border-width:0px;
  8458. white-space:nowrap;
  8459. text-transform:none;
  8460. }
  8461. #u34581 {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:0px;
  8465. top:0px;
  8466. width:0px;
  8467. height:0px;
  8468. }
  8469. #u34582_div {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:280px;
  8475. height:30px;
  8476. background:inherit;
  8477. background-color:rgba(242, 242, 242, 1);
  8478. border:none;
  8479. border-radius:20px;
  8480. -moz-box-shadow:none;
  8481. -webkit-box-shadow:none;
  8482. box-shadow:none;
  8483. }
  8484. #u34582 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:1879px;
  8488. top:115px;
  8489. width:280px;
  8490. height:30px;
  8491. display:flex;
  8492. }
  8493. #u34582 .text {
  8494. position:absolute;
  8495. align-self:center;
  8496. padding:2px 2px 2px 2px;
  8497. box-sizing:border-box;
  8498. width:100%;
  8499. }
  8500. #u34582_text {
  8501. border-width:0px;
  8502. word-wrap:break-word;
  8503. text-transform:none;
  8504. visibility:hidden;
  8505. }
  8506. #u34583_input {
  8507. position:absolute;
  8508. left:0px;
  8509. top:0px;
  8510. width:260px;
  8511. height:25px;
  8512. padding:2px 2px 2px 2px;
  8513. font-family:'ArialMT', 'Arial', sans-serif;
  8514. font-weight:400;
  8515. font-style:normal;
  8516. font-size:13px;
  8517. letter-spacing:normal;
  8518. color:#000000;
  8519. vertical-align:none;
  8520. text-align:left;
  8521. text-transform:none;
  8522. background-color:transparent;
  8523. border-color:transparent;
  8524. }
  8525. #u34583_input.disabled {
  8526. position:absolute;
  8527. left:0px;
  8528. top:0px;
  8529. width:260px;
  8530. height:25px;
  8531. padding:2px 2px 2px 2px;
  8532. font-family:'ArialMT', 'Arial', sans-serif;
  8533. font-weight:400;
  8534. font-style:normal;
  8535. font-size:13px;
  8536. letter-spacing:normal;
  8537. color:#000000;
  8538. vertical-align:none;
  8539. text-align:left;
  8540. text-transform:none;
  8541. background-color:transparent;
  8542. border-color:transparent;
  8543. }
  8544. #u34583_div {
  8545. border-width:0px;
  8546. position:absolute;
  8547. left:0px;
  8548. top:0px;
  8549. width:260px;
  8550. height:25px;
  8551. background:inherit;
  8552. background-color:rgba(242, 242, 242, 1);
  8553. border:none;
  8554. border-radius:0px;
  8555. -moz-box-shadow:none;
  8556. -webkit-box-shadow:none;
  8557. box-shadow:none;
  8558. }
  8559. #u34583 {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:1888px;
  8563. top:116px;
  8564. width:260px;
  8565. height:25px;
  8566. display:flex;
  8567. }
  8568. #u34583 .text {
  8569. position:absolute;
  8570. align-self:center;
  8571. padding:2px 2px 2px 2px;
  8572. box-sizing:border-box;
  8573. width:100%;
  8574. }
  8575. #u34583_div.disabled {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:0px;
  8579. top:0px;
  8580. width:260px;
  8581. height:25px;
  8582. background:inherit;
  8583. background-color:rgba(240, 240, 240, 1);
  8584. border:none;
  8585. border-radius:0px;
  8586. -moz-box-shadow:none;
  8587. -webkit-box-shadow:none;
  8588. box-shadow:none;
  8589. }
  8590. #u34583.disabled {
  8591. }
  8592. #u34584_img {
  8593. border-width:0px;
  8594. position:absolute;
  8595. left:0px;
  8596. top:0px;
  8597. width:12px;
  8598. height:12px;
  8599. }
  8600. #u34584 {
  8601. border-width:0px;
  8602. position:absolute;
  8603. left:2140px;
  8604. top:124px;
  8605. width:12px;
  8606. height:12px;
  8607. display:flex;
  8608. }
  8609. #u34584 .text {
  8610. position:absolute;
  8611. align-self:center;
  8612. padding:2px 2px 2px 2px;
  8613. box-sizing:border-box;
  8614. width:100%;
  8615. }
  8616. #u34584_text {
  8617. border-width:0px;
  8618. word-wrap:break-word;
  8619. text-transform:none;
  8620. visibility:hidden;
  8621. }
  8622. #u34585_div {
  8623. border-width:0px;
  8624. position:absolute;
  8625. left:0px;
  8626. top:0px;
  8627. width:49px;
  8628. height:30px;
  8629. background:inherit;
  8630. background-color:rgba(255, 255, 255, 0);
  8631. border:none;
  8632. border-left:0px;
  8633. border-top:0px;
  8634. border-right:0px;
  8635. border-radius:0px;
  8636. border-bottom-right-radius:0px;
  8637. border-bottom-left-radius:0px;
  8638. -moz-box-shadow:none;
  8639. -webkit-box-shadow:none;
  8640. box-shadow:none;
  8641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8642. font-weight:400;
  8643. font-style:normal;
  8644. font-size:12px;
  8645. color:#1890FF;
  8646. line-height:30px;
  8647. }
  8648. #u34585 {
  8649. border-width:0px;
  8650. position:absolute;
  8651. left:2178px;
  8652. top:115px;
  8653. width:49px;
  8654. height:30px;
  8655. display:flex;
  8656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8657. font-weight:400;
  8658. font-style:normal;
  8659. font-size:12px;
  8660. color:#1890FF;
  8661. line-height:30px;
  8662. }
  8663. #u34585 .text {
  8664. position:absolute;
  8665. align-self:flex-start;
  8666. padding:0px 0px 0px 0px;
  8667. box-sizing:border-box;
  8668. width:100%;
  8669. }
  8670. #u34585_text {
  8671. border-width:0px;
  8672. white-space:nowrap;
  8673. text-transform:none;
  8674. }
  8675. #u34586_div {
  8676. border-width:0px;
  8677. position:absolute;
  8678. left:0px;
  8679. top:0px;
  8680. width:63px;
  8681. height:14px;
  8682. background:inherit;
  8683. background-color:rgba(255, 255, 255, 0);
  8684. border:none;
  8685. border-left:0px;
  8686. border-top:0px;
  8687. border-right:0px;
  8688. border-radius:0px;
  8689. border-bottom-right-radius:0px;
  8690. border-bottom-left-radius:0px;
  8691. -moz-box-shadow:none;
  8692. -webkit-box-shadow:none;
  8693. box-shadow:none;
  8694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8695. font-weight:400;
  8696. font-style:normal;
  8697. font-size:10px;
  8698. color:#AAAAAA;
  8699. }
  8700. #u34586 {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:1879px;
  8704. top:184px;
  8705. width:63px;
  8706. height:14px;
  8707. display:flex;
  8708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8709. font-weight:400;
  8710. font-style:normal;
  8711. font-size:10px;
  8712. color:#AAAAAA;
  8713. }
  8714. #u34586 .text {
  8715. position:absolute;
  8716. align-self:flex-start;
  8717. padding:0px 0px 0px 0px;
  8718. box-sizing:border-box;
  8719. width:100%;
  8720. }
  8721. #u34586_text {
  8722. border-width:0px;
  8723. white-space:nowrap;
  8724. text-transform:none;
  8725. }
  8726. #u34587_div {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:65px;
  8732. height:22px;
  8733. background:inherit;
  8734. background-color:rgba(255, 255, 255, 0);
  8735. border:none;
  8736. border-radius:0px;
  8737. -moz-box-shadow:none;
  8738. -webkit-box-shadow:none;
  8739. box-shadow:none;
  8740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8741. font-weight:400;
  8742. font-style:normal;
  8743. font-size:16px;
  8744. color:#000000;
  8745. }
  8746. #u34587 {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:2018px;
  8750. top:77px;
  8751. width:65px;
  8752. height:22px;
  8753. display:flex;
  8754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8755. font-weight:400;
  8756. font-style:normal;
  8757. font-size:16px;
  8758. color:#000000;
  8759. }
  8760. #u34587 .text {
  8761. position:absolute;
  8762. align-self:flex-start;
  8763. padding:0px 0px 0px 0px;
  8764. box-sizing:border-box;
  8765. width:100%;
  8766. }
  8767. #u34587_text {
  8768. border-width:0px;
  8769. white-space:nowrap;
  8770. text-transform:none;
  8771. }
  8772. #u34588_div {
  8773. border-width:0px;
  8774. position:absolute;
  8775. left:0px;
  8776. top:0px;
  8777. width:11px;
  8778. height:11px;
  8779. background:inherit;
  8780. background-color:rgba(217, 0, 27, 1);
  8781. border:none;
  8782. border-radius:7px;
  8783. -moz-box-shadow:none;
  8784. -webkit-box-shadow:none;
  8785. box-shadow:none;
  8786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8787. font-weight:400;
  8788. font-style:normal;
  8789. font-size:8px;
  8790. color:#FFFFFF;
  8791. text-align:center;
  8792. }
  8793. #u34588 {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:1917px;
  8797. top:150px;
  8798. width:11px;
  8799. height:11px;
  8800. display:flex;
  8801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8802. font-weight:400;
  8803. font-style:normal;
  8804. font-size:8px;
  8805. color:#FFFFFF;
  8806. text-align:center;
  8807. }
  8808. #u34588 .text {
  8809. position:absolute;
  8810. align-self:flex-start;
  8811. padding:0px 0px 0px 0px;
  8812. box-sizing:border-box;
  8813. width:100%;
  8814. }
  8815. #u34588_text {
  8816. border-width:0px;
  8817. word-wrap:break-word;
  8818. text-transform:none;
  8819. }
  8820. #u34589_div {
  8821. border-width:0px;
  8822. position:absolute;
  8823. left:0px;
  8824. top:0px;
  8825. width:43px;
  8826. height:21px;
  8827. background:inherit;
  8828. background-color:rgba(242, 242, 242, 1);
  8829. border:none;
  8830. border-radius:17px;
  8831. -moz-box-shadow:none;
  8832. -webkit-box-shadow:none;
  8833. box-shadow:none;
  8834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8835. font-weight:400;
  8836. font-style:normal;
  8837. font-size:12px;
  8838. color:#7F7F7F;
  8839. }
  8840. #u34589 {
  8841. border-width:0px;
  8842. position:absolute;
  8843. left:2061px;
  8844. top:155px;
  8845. width:43px;
  8846. height:21px;
  8847. display:flex;
  8848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8849. font-weight:400;
  8850. font-style:normal;
  8851. font-size:12px;
  8852. color:#7F7F7F;
  8853. }
  8854. #u34589 .text {
  8855. position:absolute;
  8856. align-self:center;
  8857. padding:2px 3px 2px 3px;
  8858. box-sizing:border-box;
  8859. width:100%;
  8860. }
  8861. #u34589_text {
  8862. border-width:0px;
  8863. white-space:nowrap;
  8864. text-transform:none;
  8865. }
  8866. #u34590_div {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:0px;
  8870. top:0px;
  8871. width:43px;
  8872. height:21px;
  8873. background:inherit;
  8874. background-color:rgba(0, 137, 254, 1);
  8875. border:none;
  8876. border-radius:17px;
  8877. -moz-box-shadow:none;
  8878. -webkit-box-shadow:none;
  8879. box-shadow:none;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. font-size:12px;
  8884. color:#FFFFFF;
  8885. }
  8886. #u34590 {
  8887. border-width:0px;
  8888. position:absolute;
  8889. left:2124px;
  8890. top:155px;
  8891. width:43px;
  8892. height:21px;
  8893. display:flex;
  8894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8895. font-weight:400;
  8896. font-style:normal;
  8897. font-size:12px;
  8898. color:#FFFFFF;
  8899. }
  8900. #u34590 .text {
  8901. position:absolute;
  8902. align-self:center;
  8903. padding:2px 3px 2px 3px;
  8904. box-sizing:border-box;
  8905. width:100%;
  8906. }
  8907. #u34590_text {
  8908. border-width:0px;
  8909. white-space:nowrap;
  8910. text-transform:none;
  8911. }
  8912. #u34591 {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:0px;
  8916. top:0px;
  8917. width:0px;
  8918. height:0px;
  8919. }
  8920. #u34592_img {
  8921. border-width:0px;
  8922. position:absolute;
  8923. left:0px;
  8924. top:0px;
  8925. width:355px;
  8926. height:220px;
  8927. }
  8928. #u34592 {
  8929. border-width:0px;
  8930. position:absolute;
  8931. left:39px;
  8932. top:217px;
  8933. width:355px;
  8934. height:220px;
  8935. display:flex;
  8936. }
  8937. #u34592 .text {
  8938. position:absolute;
  8939. align-self:center;
  8940. padding:2px 2px 2px 2px;
  8941. box-sizing:border-box;
  8942. width:100%;
  8943. }
  8944. #u34592_text {
  8945. border-width:0px;
  8946. word-wrap:break-word;
  8947. text-transform:none;
  8948. visibility:hidden;
  8949. }
  8950. #u34593_div {
  8951. border-width:0px;
  8952. position:absolute;
  8953. left:0px;
  8954. top:0px;
  8955. width:206px;
  8956. height:30px;
  8957. background:inherit;
  8958. background-color:rgba(255, 255, 255, 0);
  8959. border:none;
  8960. border-left:0px;
  8961. border-top:0px;
  8962. border-right:0px;
  8963. border-radius:0px;
  8964. border-bottom-right-radius:0px;
  8965. border-bottom-left-radius:0px;
  8966. -moz-box-shadow:none;
  8967. -webkit-box-shadow:none;
  8968. box-shadow:none;
  8969. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8970. font-weight:500;
  8971. font-style:normal;
  8972. font-size:14px;
  8973. line-height:30px;
  8974. }
  8975. #u34593 {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:54px;
  8979. top:227px;
  8980. width:206px;
  8981. height:30px;
  8982. display:flex;
  8983. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8984. font-weight:500;
  8985. font-style:normal;
  8986. font-size:14px;
  8987. line-height:30px;
  8988. }
  8989. #u34593 .text {
  8990. position:absolute;
  8991. align-self:flex-start;
  8992. padding:0px 0px 0px 0px;
  8993. box-sizing:border-box;
  8994. width:100%;
  8995. }
  8996. #u34593_text {
  8997. border-width:0px;
  8998. white-space:nowrap;
  8999. text-transform:none;
  9000. }
  9001. #u34594_div {
  9002. border-width:0px;
  9003. position:absolute;
  9004. left:0px;
  9005. top:0px;
  9006. width:123px;
  9007. height:17px;
  9008. background:inherit;
  9009. background-color:rgba(255, 255, 255, 0);
  9010. border:none;
  9011. border-left:0px;
  9012. border-top:0px;
  9013. border-right:0px;
  9014. border-radius:0px;
  9015. border-bottom-right-radius:0px;
  9016. border-bottom-left-radius:0px;
  9017. -moz-box-shadow:none;
  9018. -webkit-box-shadow:none;
  9019. box-shadow:none;
  9020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9021. font-weight:400;
  9022. font-style:normal;
  9023. font-size:12px;
  9024. color:#7F7F7F;
  9025. }
  9026. #u34594 {
  9027. border-width:0px;
  9028. position:absolute;
  9029. left:54px;
  9030. top:257px;
  9031. width:123px;
  9032. height:17px;
  9033. display:flex;
  9034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9035. font-weight:400;
  9036. font-style:normal;
  9037. font-size:12px;
  9038. color:#7F7F7F;
  9039. }
  9040. #u34594 .text {
  9041. position:absolute;
  9042. align-self:flex-start;
  9043. padding:0px 0px 0px 0px;
  9044. box-sizing:border-box;
  9045. width:100%;
  9046. }
  9047. #u34594_text {
  9048. border-width:0px;
  9049. white-space:nowrap;
  9050. text-transform:none;
  9051. }
  9052. #u34595 {
  9053. border-width:0px;
  9054. position:absolute;
  9055. left:0px;
  9056. top:0px;
  9057. width:0px;
  9058. height:0px;
  9059. }
  9060. #u34596_div {
  9061. border-width:0px;
  9062. position:absolute;
  9063. left:0px;
  9064. top:0px;
  9065. width:85px;
  9066. height:30px;
  9067. background:inherit;
  9068. background-color:rgba(255, 255, 255, 0);
  9069. border:none;
  9070. border-left:0px;
  9071. border-top:0px;
  9072. border-right:0px;
  9073. border-radius:0px;
  9074. border-bottom-right-radius:0px;
  9075. border-bottom-left-radius:0px;
  9076. -moz-box-shadow:none;
  9077. -webkit-box-shadow:none;
  9078. box-shadow:none;
  9079. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9080. font-weight:500;
  9081. font-style:normal;
  9082. font-size:12px;
  9083. line-height:30px;
  9084. }
  9085. #u34596 {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:74px;
  9089. top:284px;
  9090. width:85px;
  9091. height:30px;
  9092. display:flex;
  9093. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9094. font-weight:500;
  9095. font-style:normal;
  9096. font-size:12px;
  9097. line-height:30px;
  9098. }
  9099. #u34596 .text {
  9100. position:absolute;
  9101. align-self:center;
  9102. padding:0px 0px 0px 0px;
  9103. box-sizing:border-box;
  9104. width:100%;
  9105. }
  9106. #u34596_text {
  9107. border-width:0px;
  9108. white-space:nowrap;
  9109. text-transform:none;
  9110. }
  9111. #u34597_div {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:0px;
  9115. top:0px;
  9116. width:92px;
  9117. height:30px;
  9118. background:inherit;
  9119. background-color:rgba(255, 255, 255, 0);
  9120. border:none;
  9121. border-left:0px;
  9122. border-top:0px;
  9123. border-right:0px;
  9124. border-radius:0px;
  9125. border-bottom-right-radius:0px;
  9126. border-bottom-left-radius:0px;
  9127. -moz-box-shadow:none;
  9128. -webkit-box-shadow:none;
  9129. box-shadow:none;
  9130. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9131. font-weight:500;
  9132. font-style:normal;
  9133. font-size:12px;
  9134. line-height:30px;
  9135. }
  9136. #u34597 {
  9137. border-width:0px;
  9138. position:absolute;
  9139. left:74px;
  9140. top:325px;
  9141. width:92px;
  9142. height:30px;
  9143. display:flex;
  9144. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9145. font-weight:500;
  9146. font-style:normal;
  9147. font-size:12px;
  9148. line-height:30px;
  9149. }
  9150. #u34597 .text {
  9151. position:absolute;
  9152. align-self:center;
  9153. padding:0px 0px 0px 0px;
  9154. box-sizing:border-box;
  9155. width:100%;
  9156. }
  9157. #u34597_text {
  9158. border-width:0px;
  9159. white-space:nowrap;
  9160. text-transform:none;
  9161. }
  9162. #u34598_div {
  9163. border-width:0px;
  9164. position:absolute;
  9165. left:0px;
  9166. top:0px;
  9167. width:188px;
  9168. height:17px;
  9169. background:inherit;
  9170. background-color:rgba(255, 255, 255, 0);
  9171. border:none;
  9172. border-left:0px;
  9173. border-top:0px;
  9174. border-right:0px;
  9175. border-radius:0px;
  9176. border-bottom-right-radius:0px;
  9177. border-bottom-left-radius:0px;
  9178. -moz-box-shadow:none;
  9179. -webkit-box-shadow:none;
  9180. box-shadow:none;
  9181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9182. font-weight:400;
  9183. font-style:normal;
  9184. font-size:12px;
  9185. color:#7F7F7F;
  9186. }
  9187. #u34598 {
  9188. border-width:0px;
  9189. position:absolute;
  9190. left:74px;
  9191. top:353px;
  9192. width:188px;
  9193. height:17px;
  9194. display:flex;
  9195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9196. font-weight:400;
  9197. font-style:normal;
  9198. font-size:12px;
  9199. color:#7F7F7F;
  9200. }
  9201. #u34598 .text {
  9202. position:absolute;
  9203. align-self:flex-start;
  9204. padding:0px 0px 0px 0px;
  9205. box-sizing:border-box;
  9206. width:100%;
  9207. }
  9208. #u34598_text {
  9209. border-width:0px;
  9210. white-space:nowrap;
  9211. text-transform:none;
  9212. }
  9213. #u34599 {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:0px;
  9217. top:0px;
  9218. width:0px;
  9219. height:0px;
  9220. }
  9221. #u34600_img {
  9222. border-width:0px;
  9223. position:absolute;
  9224. left:0px;
  9225. top:0px;
  9226. width:11px;
  9227. height:11px;
  9228. }
  9229. #u34600 {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:59px;
  9233. top:293px;
  9234. width:11px;
  9235. height:11px;
  9236. display:flex;
  9237. }
  9238. #u34600 .text {
  9239. position:absolute;
  9240. align-self:center;
  9241. padding:2px 2px 2px 2px;
  9242. box-sizing:border-box;
  9243. width:100%;
  9244. }
  9245. #u34600_text {
  9246. border-width:0px;
  9247. word-wrap:break-word;
  9248. text-transform:none;
  9249. visibility:hidden;
  9250. }
  9251. #u34601_img {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:0px;
  9255. top:0px;
  9256. width:11px;
  9257. height:11px;
  9258. }
  9259. #u34601 {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:59px;
  9263. top:334px;
  9264. width:11px;
  9265. height:11px;
  9266. display:flex;
  9267. }
  9268. #u34601 .text {
  9269. position:absolute;
  9270. align-self:center;
  9271. padding:2px 2px 2px 2px;
  9272. box-sizing:border-box;
  9273. width:100%;
  9274. }
  9275. #u34601_text {
  9276. border-width:0px;
  9277. word-wrap:break-word;
  9278. text-transform:none;
  9279. visibility:hidden;
  9280. }
  9281. #u34602_img {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:2px;
  9287. height:40px;
  9288. }
  9289. #u34602 {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:64px;
  9293. top:304px;
  9294. width:1px;
  9295. height:39px;
  9296. display:flex;
  9297. }
  9298. #u34602 .text {
  9299. position:absolute;
  9300. align-self:center;
  9301. padding:2px 2px 2px 2px;
  9302. box-sizing:border-box;
  9303. width:100%;
  9304. }
  9305. #u34602_text {
  9306. border-width:0px;
  9307. word-wrap:break-word;
  9308. text-transform:none;
  9309. visibility:hidden;
  9310. }
  9311. #u34603_div {
  9312. border-width:0px;
  9313. position:absolute;
  9314. left:0px;
  9315. top:0px;
  9316. width:60px;
  9317. height:30px;
  9318. background:inherit;
  9319. background-color:rgba(255, 255, 255, 1);
  9320. box-sizing:border-box;
  9321. border-width:1px;
  9322. border-style:solid;
  9323. border-color:rgba(127, 127, 127, 1);
  9324. border-radius:81px;
  9325. -moz-box-shadow:none;
  9326. -webkit-box-shadow:none;
  9327. box-shadow:none;
  9328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9329. font-weight:400;
  9330. font-style:normal;
  9331. font-size:12px;
  9332. color:#555555;
  9333. }
  9334. #u34603 {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:325px;
  9338. top:394px;
  9339. width:60px;
  9340. height:30px;
  9341. display:flex;
  9342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9343. font-weight:400;
  9344. font-style:normal;
  9345. font-size:12px;
  9346. color:#555555;
  9347. }
  9348. #u34603 .text {
  9349. position:absolute;
  9350. align-self:center;
  9351. padding:2px 2px 2px 2px;
  9352. box-sizing:border-box;
  9353. width:100%;
  9354. }
  9355. #u34603_text {
  9356. border-width:0px;
  9357. word-wrap:break-word;
  9358. text-transform:none;
  9359. }
  9360. #u34604_img {
  9361. border-width:0px;
  9362. position:absolute;
  9363. left:0px;
  9364. top:0px;
  9365. width:337px;
  9366. height:2px;
  9367. }
  9368. #u34604 {
  9369. border-width:0px;
  9370. position:absolute;
  9371. left:49px;
  9372. top:384px;
  9373. width:336px;
  9374. height:1px;
  9375. display:flex;
  9376. }
  9377. #u34604 .text {
  9378. position:absolute;
  9379. align-self:center;
  9380. padding:2px 2px 2px 2px;
  9381. box-sizing:border-box;
  9382. width:100%;
  9383. }
  9384. #u34604_text {
  9385. border-width:0px;
  9386. word-wrap:break-word;
  9387. text-transform:none;
  9388. visibility:hidden;
  9389. }
  9390. #u34605_div {
  9391. border-width:0px;
  9392. position:absolute;
  9393. left:0px;
  9394. top:0px;
  9395. width:108px;
  9396. height:30px;
  9397. background:inherit;
  9398. background-color:rgba(255, 255, 255, 0);
  9399. border:none;
  9400. border-left:0px;
  9401. border-top:0px;
  9402. border-right:0px;
  9403. border-radius:0px;
  9404. border-bottom-right-radius:0px;
  9405. border-bottom-left-radius:0px;
  9406. -moz-box-shadow:none;
  9407. -webkit-box-shadow:none;
  9408. box-shadow:none;
  9409. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9410. font-weight:500;
  9411. font-style:normal;
  9412. font-size:14px;
  9413. line-height:30px;
  9414. }
  9415. #u34605 {
  9416. border-width:0px;
  9417. position:absolute;
  9418. left:53px;
  9419. top:395px;
  9420. width:108px;
  9421. height:30px;
  9422. display:flex;
  9423. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9424. font-weight:500;
  9425. font-style:normal;
  9426. font-size:14px;
  9427. line-height:30px;
  9428. }
  9429. #u34605 .text {
  9430. position:absolute;
  9431. align-self:flex-start;
  9432. padding:0px 0px 0px 0px;
  9433. box-sizing:border-box;
  9434. width:100%;
  9435. }
  9436. #u34605_text {
  9437. border-width:0px;
  9438. white-space:nowrap;
  9439. text-transform:none;
  9440. }
  9441. #u34606 {
  9442. border-width:0px;
  9443. position:absolute;
  9444. left:0px;
  9445. top:0px;
  9446. width:0px;
  9447. height:0px;
  9448. }
  9449. #u34607_img {
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:0px;
  9453. top:0px;
  9454. width:355px;
  9455. height:220px;
  9456. }
  9457. #u34607 {
  9458. border-width:0px;
  9459. position:absolute;
  9460. left:495px;
  9461. top:217px;
  9462. width:355px;
  9463. height:220px;
  9464. display:flex;
  9465. }
  9466. #u34607 .text {
  9467. position:absolute;
  9468. align-self:center;
  9469. padding:2px 2px 2px 2px;
  9470. box-sizing:border-box;
  9471. width:100%;
  9472. }
  9473. #u34607_text {
  9474. border-width:0px;
  9475. word-wrap:break-word;
  9476. text-transform:none;
  9477. visibility:hidden;
  9478. }
  9479. #u34608_div {
  9480. border-width:0px;
  9481. position:absolute;
  9482. left:0px;
  9483. top:0px;
  9484. width:206px;
  9485. height:30px;
  9486. background:inherit;
  9487. background-color:rgba(255, 255, 255, 0);
  9488. border:none;
  9489. border-left:0px;
  9490. border-top:0px;
  9491. border-right:0px;
  9492. border-radius:0px;
  9493. border-bottom-right-radius:0px;
  9494. border-bottom-left-radius:0px;
  9495. -moz-box-shadow:none;
  9496. -webkit-box-shadow:none;
  9497. box-shadow:none;
  9498. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9499. font-weight:500;
  9500. font-style:normal;
  9501. font-size:14px;
  9502. line-height:30px;
  9503. }
  9504. #u34608 {
  9505. border-width:0px;
  9506. position:absolute;
  9507. left:510px;
  9508. top:227px;
  9509. width:206px;
  9510. height:30px;
  9511. display:flex;
  9512. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9513. font-weight:500;
  9514. font-style:normal;
  9515. font-size:14px;
  9516. line-height:30px;
  9517. }
  9518. #u34608 .text {
  9519. position:absolute;
  9520. align-self:flex-start;
  9521. padding:0px 0px 0px 0px;
  9522. box-sizing:border-box;
  9523. width:100%;
  9524. }
  9525. #u34608_text {
  9526. border-width:0px;
  9527. white-space:nowrap;
  9528. text-transform:none;
  9529. }
  9530. #u34609_div {
  9531. border-width:0px;
  9532. position:absolute;
  9533. left:0px;
  9534. top:0px;
  9535. width:123px;
  9536. height:17px;
  9537. background:inherit;
  9538. background-color:rgba(255, 255, 255, 0);
  9539. border:none;
  9540. border-left:0px;
  9541. border-top:0px;
  9542. border-right:0px;
  9543. border-radius:0px;
  9544. border-bottom-right-radius:0px;
  9545. border-bottom-left-radius:0px;
  9546. -moz-box-shadow:none;
  9547. -webkit-box-shadow:none;
  9548. box-shadow:none;
  9549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9550. font-weight:400;
  9551. font-style:normal;
  9552. font-size:12px;
  9553. color:#7F7F7F;
  9554. }
  9555. #u34609 {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:510px;
  9559. top:257px;
  9560. width:123px;
  9561. height:17px;
  9562. display:flex;
  9563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9564. font-weight:400;
  9565. font-style:normal;
  9566. font-size:12px;
  9567. color:#7F7F7F;
  9568. }
  9569. #u34609 .text {
  9570. position:absolute;
  9571. align-self:flex-start;
  9572. padding:0px 0px 0px 0px;
  9573. box-sizing:border-box;
  9574. width:100%;
  9575. }
  9576. #u34609_text {
  9577. border-width:0px;
  9578. white-space:nowrap;
  9579. text-transform:none;
  9580. }
  9581. #u34610_div {
  9582. border-width:0px;
  9583. position:absolute;
  9584. left:0px;
  9585. top:0px;
  9586. width:78px;
  9587. height:24px;
  9588. background:inherit;
  9589. background-color:rgba(255, 255, 255, 0);
  9590. border:none;
  9591. border-left:0px;
  9592. border-top:0px;
  9593. border-right:0px;
  9594. border-radius:0px;
  9595. border-bottom-right-radius:0px;
  9596. border-bottom-left-radius:0px;
  9597. -moz-box-shadow:none;
  9598. -webkit-box-shadow:none;
  9599. box-shadow:none;
  9600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9601. font-weight:400;
  9602. font-style:normal;
  9603. font-size:12px;
  9604. color:#F59A23;
  9605. text-align:right;
  9606. line-height:24px;
  9607. }
  9608. #u34610 {
  9609. border-width:0px;
  9610. position:absolute;
  9611. left:630px;
  9612. top:287px;
  9613. width:78px;
  9614. height:24px;
  9615. display:flex;
  9616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9617. font-weight:400;
  9618. font-style:normal;
  9619. font-size:12px;
  9620. color:#F59A23;
  9621. text-align:right;
  9622. line-height:24px;
  9623. }
  9624. #u34610 .text {
  9625. position:absolute;
  9626. align-self:center;
  9627. padding:0px 0px 0px 0px;
  9628. box-sizing:border-box;
  9629. width:100%;
  9630. }
  9631. #u34610_text {
  9632. border-width:0px;
  9633. white-space:nowrap;
  9634. text-transform:none;
  9635. }
  9636. #u34611_div {
  9637. border-width:0px;
  9638. position:absolute;
  9639. left:0px;
  9640. top:0px;
  9641. width:60px;
  9642. height:30px;
  9643. background:inherit;
  9644. background-color:rgba(255, 255, 255, 1);
  9645. box-sizing:border-box;
  9646. border-width:1px;
  9647. border-style:solid;
  9648. border-color:rgba(127, 127, 127, 1);
  9649. border-radius:81px;
  9650. -moz-box-shadow:none;
  9651. -webkit-box-shadow:none;
  9652. box-shadow:none;
  9653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9654. font-weight:400;
  9655. font-style:normal;
  9656. font-size:12px;
  9657. color:#555555;
  9658. }
  9659. #u34611 {
  9660. border-width:0px;
  9661. position:absolute;
  9662. left:781px;
  9663. top:394px;
  9664. width:60px;
  9665. height:30px;
  9666. display:flex;
  9667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9668. font-weight:400;
  9669. font-style:normal;
  9670. font-size:12px;
  9671. color:#555555;
  9672. }
  9673. #u34611 .text {
  9674. position:absolute;
  9675. align-self:center;
  9676. padding:2px 2px 2px 2px;
  9677. box-sizing:border-box;
  9678. width:100%;
  9679. }
  9680. #u34611_text {
  9681. border-width:0px;
  9682. word-wrap:break-word;
  9683. text-transform:none;
  9684. }
  9685. #u34612_img {
  9686. border-width:0px;
  9687. position:absolute;
  9688. left:0px;
  9689. top:0px;
  9690. width:337px;
  9691. height:2px;
  9692. }
  9693. #u34612 {
  9694. border-width:0px;
  9695. position:absolute;
  9696. left:505px;
  9697. top:384px;
  9698. width:336px;
  9699. height:1px;
  9700. display:flex;
  9701. }
  9702. #u34612 .text {
  9703. position:absolute;
  9704. align-self:center;
  9705. padding:2px 2px 2px 2px;
  9706. box-sizing:border-box;
  9707. width:100%;
  9708. }
  9709. #u34612_text {
  9710. border-width:0px;
  9711. word-wrap:break-word;
  9712. text-transform:none;
  9713. visibility:hidden;
  9714. }
  9715. #u34613_div {
  9716. border-width:0px;
  9717. position:absolute;
  9718. left:0px;
  9719. top:0px;
  9720. width:100px;
  9721. height:30px;
  9722. background:inherit;
  9723. background-color:rgba(255, 255, 255, 0);
  9724. border:none;
  9725. border-left:0px;
  9726. border-top:0px;
  9727. border-right:0px;
  9728. border-radius:0px;
  9729. border-bottom-right-radius:0px;
  9730. border-bottom-left-radius:0px;
  9731. -moz-box-shadow:none;
  9732. -webkit-box-shadow:none;
  9733. box-shadow:none;
  9734. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9735. font-weight:500;
  9736. font-style:normal;
  9737. font-size:14px;
  9738. line-height:30px;
  9739. }
  9740. #u34613 {
  9741. border-width:0px;
  9742. position:absolute;
  9743. left:509px;
  9744. top:395px;
  9745. width:100px;
  9746. height:30px;
  9747. display:flex;
  9748. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9749. font-weight:500;
  9750. font-style:normal;
  9751. font-size:14px;
  9752. line-height:30px;
  9753. }
  9754. #u34613 .text {
  9755. position:absolute;
  9756. align-self:flex-start;
  9757. padding:0px 0px 0px 0px;
  9758. box-sizing:border-box;
  9759. width:100%;
  9760. }
  9761. #u34613_text {
  9762. border-width:0px;
  9763. white-space:nowrap;
  9764. text-transform:none;
  9765. }
  9766. #u34614 {
  9767. border-width:0px;
  9768. position:absolute;
  9769. left:0px;
  9770. top:0px;
  9771. width:0px;
  9772. height:0px;
  9773. }
  9774. #u34615_div {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:0px;
  9778. top:0px;
  9779. width:85px;
  9780. height:30px;
  9781. background:inherit;
  9782. background-color:rgba(255, 255, 255, 0);
  9783. border:none;
  9784. border-left:0px;
  9785. border-top:0px;
  9786. border-right:0px;
  9787. border-radius:0px;
  9788. border-bottom-right-radius:0px;
  9789. border-bottom-left-radius:0px;
  9790. -moz-box-shadow:none;
  9791. -webkit-box-shadow:none;
  9792. box-shadow:none;
  9793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9794. font-weight:500;
  9795. font-style:normal;
  9796. font-size:12px;
  9797. line-height:30px;
  9798. }
  9799. #u34615 {
  9800. border-width:0px;
  9801. position:absolute;
  9802. left:525px;
  9803. top:284px;
  9804. width:85px;
  9805. height:30px;
  9806. display:flex;
  9807. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9808. font-weight:500;
  9809. font-style:normal;
  9810. font-size:12px;
  9811. line-height:30px;
  9812. }
  9813. #u34615 .text {
  9814. position:absolute;
  9815. align-self:center;
  9816. padding:0px 0px 0px 0px;
  9817. box-sizing:border-box;
  9818. width:100%;
  9819. }
  9820. #u34615_text {
  9821. border-width:0px;
  9822. white-space:nowrap;
  9823. text-transform:none;
  9824. }
  9825. #u34616_div {
  9826. border-width:0px;
  9827. position:absolute;
  9828. left:0px;
  9829. top:0px;
  9830. width:92px;
  9831. height:30px;
  9832. background:inherit;
  9833. background-color:rgba(255, 255, 255, 0);
  9834. border:none;
  9835. border-left:0px;
  9836. border-top:0px;
  9837. border-right:0px;
  9838. border-radius:0px;
  9839. border-bottom-right-radius:0px;
  9840. border-bottom-left-radius:0px;
  9841. -moz-box-shadow:none;
  9842. -webkit-box-shadow:none;
  9843. box-shadow:none;
  9844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9845. font-weight:500;
  9846. font-style:normal;
  9847. font-size:12px;
  9848. line-height:30px;
  9849. }
  9850. #u34616 {
  9851. border-width:0px;
  9852. position:absolute;
  9853. left:525px;
  9854. top:325px;
  9855. width:92px;
  9856. height:30px;
  9857. display:flex;
  9858. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9859. font-weight:500;
  9860. font-style:normal;
  9861. font-size:12px;
  9862. line-height:30px;
  9863. }
  9864. #u34616 .text {
  9865. position:absolute;
  9866. align-self:center;
  9867. padding:0px 0px 0px 0px;
  9868. box-sizing:border-box;
  9869. width:100%;
  9870. }
  9871. #u34616_text {
  9872. border-width:0px;
  9873. white-space:nowrap;
  9874. text-transform:none;
  9875. }
  9876. #u34617_div {
  9877. border-width:0px;
  9878. position:absolute;
  9879. left:0px;
  9880. top:0px;
  9881. width:188px;
  9882. height:17px;
  9883. background:inherit;
  9884. background-color:rgba(255, 255, 255, 0);
  9885. border:none;
  9886. border-left:0px;
  9887. border-top:0px;
  9888. border-right:0px;
  9889. border-radius:0px;
  9890. border-bottom-right-radius:0px;
  9891. border-bottom-left-radius:0px;
  9892. -moz-box-shadow:none;
  9893. -webkit-box-shadow:none;
  9894. box-shadow:none;
  9895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9896. font-weight:400;
  9897. font-style:normal;
  9898. font-size:12px;
  9899. color:#7F7F7F;
  9900. }
  9901. #u34617 {
  9902. border-width:0px;
  9903. position:absolute;
  9904. left:525px;
  9905. top:353px;
  9906. width:188px;
  9907. height:17px;
  9908. display:flex;
  9909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9910. font-weight:400;
  9911. font-style:normal;
  9912. font-size:12px;
  9913. color:#7F7F7F;
  9914. }
  9915. #u34617 .text {
  9916. position:absolute;
  9917. align-self:flex-start;
  9918. padding:0px 0px 0px 0px;
  9919. box-sizing:border-box;
  9920. width:100%;
  9921. }
  9922. #u34617_text {
  9923. border-width:0px;
  9924. white-space:nowrap;
  9925. text-transform:none;
  9926. }
  9927. #u34618 {
  9928. border-width:0px;
  9929. position:absolute;
  9930. left:0px;
  9931. top:0px;
  9932. width:0px;
  9933. height:0px;
  9934. }
  9935. #u34619_img {
  9936. border-width:0px;
  9937. position:absolute;
  9938. left:0px;
  9939. top:0px;
  9940. width:11px;
  9941. height:11px;
  9942. }
  9943. #u34619 {
  9944. border-width:0px;
  9945. position:absolute;
  9946. left:510px;
  9947. top:293px;
  9948. width:11px;
  9949. height:11px;
  9950. display:flex;
  9951. }
  9952. #u34619 .text {
  9953. position:absolute;
  9954. align-self:center;
  9955. padding:2px 2px 2px 2px;
  9956. box-sizing:border-box;
  9957. width:100%;
  9958. }
  9959. #u34619_text {
  9960. border-width:0px;
  9961. word-wrap:break-word;
  9962. text-transform:none;
  9963. visibility:hidden;
  9964. }
  9965. #u34620_img {
  9966. border-width:0px;
  9967. position:absolute;
  9968. left:0px;
  9969. top:0px;
  9970. width:11px;
  9971. height:11px;
  9972. }
  9973. #u34620 {
  9974. border-width:0px;
  9975. position:absolute;
  9976. left:510px;
  9977. top:334px;
  9978. width:11px;
  9979. height:11px;
  9980. display:flex;
  9981. }
  9982. #u34620 .text {
  9983. position:absolute;
  9984. align-self:center;
  9985. padding:2px 2px 2px 2px;
  9986. box-sizing:border-box;
  9987. width:100%;
  9988. }
  9989. #u34620_text {
  9990. border-width:0px;
  9991. word-wrap:break-word;
  9992. text-transform:none;
  9993. visibility:hidden;
  9994. }
  9995. #u34621_img {
  9996. border-width:0px;
  9997. position:absolute;
  9998. left:0px;
  9999. top:0px;
  10000. width:2px;
  10001. height:40px;
  10002. }
  10003. #u34621 {
  10004. border-width:0px;
  10005. position:absolute;
  10006. left:515px;
  10007. top:304px;
  10008. width:1px;
  10009. height:39px;
  10010. display:flex;
  10011. }
  10012. #u34621 .text {
  10013. position:absolute;
  10014. align-self:center;
  10015. padding:2px 2px 2px 2px;
  10016. box-sizing:border-box;
  10017. width:100%;
  10018. }
  10019. #u34621_text {
  10020. border-width:0px;
  10021. word-wrap:break-word;
  10022. text-transform:none;
  10023. visibility:hidden;
  10024. }
  10025. #u34622 {
  10026. border-width:0px;
  10027. position:absolute;
  10028. left:0px;
  10029. top:0px;
  10030. width:0px;
  10031. height:0px;
  10032. }
  10033. #u34623_img {
  10034. border-width:0px;
  10035. position:absolute;
  10036. left:0px;
  10037. top:0px;
  10038. width:355px;
  10039. height:220px;
  10040. }
  10041. #u34623 {
  10042. border-width:0px;
  10043. position:absolute;
  10044. left:953px;
  10045. top:217px;
  10046. width:355px;
  10047. height:220px;
  10048. display:flex;
  10049. }
  10050. #u34623 .text {
  10051. position:absolute;
  10052. align-self:center;
  10053. padding:2px 2px 2px 2px;
  10054. box-sizing:border-box;
  10055. width:100%;
  10056. }
  10057. #u34623_text {
  10058. border-width:0px;
  10059. word-wrap:break-word;
  10060. text-transform:none;
  10061. visibility:hidden;
  10062. }
  10063. #u34624_div {
  10064. border-width:0px;
  10065. position:absolute;
  10066. left:0px;
  10067. top:0px;
  10068. width:206px;
  10069. height:30px;
  10070. background:inherit;
  10071. background-color:rgba(255, 255, 255, 0);
  10072. border:none;
  10073. border-left:0px;
  10074. border-top:0px;
  10075. border-right:0px;
  10076. border-radius:0px;
  10077. border-bottom-right-radius:0px;
  10078. border-bottom-left-radius:0px;
  10079. -moz-box-shadow:none;
  10080. -webkit-box-shadow:none;
  10081. box-shadow:none;
  10082. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10083. font-weight:500;
  10084. font-style:normal;
  10085. font-size:14px;
  10086. line-height:30px;
  10087. }
  10088. #u34624 {
  10089. border-width:0px;
  10090. position:absolute;
  10091. left:968px;
  10092. top:227px;
  10093. width:206px;
  10094. height:30px;
  10095. display:flex;
  10096. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10097. font-weight:500;
  10098. font-style:normal;
  10099. font-size:14px;
  10100. line-height:30px;
  10101. }
  10102. #u34624 .text {
  10103. position:absolute;
  10104. align-self:flex-start;
  10105. padding:0px 0px 0px 0px;
  10106. box-sizing:border-box;
  10107. width:100%;
  10108. }
  10109. #u34624_text {
  10110. border-width:0px;
  10111. white-space:nowrap;
  10112. text-transform:none;
  10113. }
  10114. #u34625_div {
  10115. border-width:0px;
  10116. position:absolute;
  10117. left:0px;
  10118. top:0px;
  10119. width:123px;
  10120. height:17px;
  10121. background:inherit;
  10122. background-color:rgba(255, 255, 255, 0);
  10123. border:none;
  10124. border-left:0px;
  10125. border-top:0px;
  10126. border-right:0px;
  10127. border-radius:0px;
  10128. border-bottom-right-radius:0px;
  10129. border-bottom-left-radius:0px;
  10130. -moz-box-shadow:none;
  10131. -webkit-box-shadow:none;
  10132. box-shadow:none;
  10133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10134. font-weight:400;
  10135. font-style:normal;
  10136. font-size:12px;
  10137. color:#7F7F7F;
  10138. }
  10139. #u34625 {
  10140. border-width:0px;
  10141. position:absolute;
  10142. left:968px;
  10143. top:257px;
  10144. width:123px;
  10145. height:17px;
  10146. display:flex;
  10147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10148. font-weight:400;
  10149. font-style:normal;
  10150. font-size:12px;
  10151. color:#7F7F7F;
  10152. }
  10153. #u34625 .text {
  10154. position:absolute;
  10155. align-self:flex-start;
  10156. padding:0px 0px 0px 0px;
  10157. box-sizing:border-box;
  10158. width:100%;
  10159. }
  10160. #u34625_text {
  10161. border-width:0px;
  10162. white-space:nowrap;
  10163. text-transform:none;
  10164. }
  10165. #u34626_div {
  10166. border-width:0px;
  10167. position:absolute;
  10168. left:0px;
  10169. top:0px;
  10170. width:78px;
  10171. height:24px;
  10172. background:inherit;
  10173. background-color:rgba(255, 255, 255, 0);
  10174. border:none;
  10175. border-left:0px;
  10176. border-top:0px;
  10177. border-right:0px;
  10178. border-radius:0px;
  10179. border-bottom-right-radius:0px;
  10180. border-bottom-left-radius:0px;
  10181. -moz-box-shadow:none;
  10182. -webkit-box-shadow:none;
  10183. box-shadow:none;
  10184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10185. font-weight:400;
  10186. font-style:normal;
  10187. font-size:12px;
  10188. color:#F59A23;
  10189. text-align:right;
  10190. line-height:24px;
  10191. }
  10192. #u34626 {
  10193. border-width:0px;
  10194. position:absolute;
  10195. left:1087px;
  10196. top:288px;
  10197. width:78px;
  10198. height:24px;
  10199. display:flex;
  10200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10201. font-weight:400;
  10202. font-style:normal;
  10203. font-size:12px;
  10204. color:#F59A23;
  10205. text-align:right;
  10206. line-height:24px;
  10207. }
  10208. #u34626 .text {
  10209. position:absolute;
  10210. align-self:center;
  10211. padding:0px 0px 0px 0px;
  10212. box-sizing:border-box;
  10213. width:100%;
  10214. }
  10215. #u34626_text {
  10216. border-width:0px;
  10217. white-space:nowrap;
  10218. text-transform:none;
  10219. }
  10220. #u34627_div {
  10221. border-width:0px;
  10222. position:absolute;
  10223. left:0px;
  10224. top:0px;
  10225. width:78px;
  10226. height:24px;
  10227. background:inherit;
  10228. background-color:rgba(255, 255, 255, 0);
  10229. border:none;
  10230. border-left:0px;
  10231. border-top:0px;
  10232. border-right:0px;
  10233. border-radius:0px;
  10234. border-bottom-right-radius:0px;
  10235. border-bottom-left-radius:0px;
  10236. -moz-box-shadow:none;
  10237. -webkit-box-shadow:none;
  10238. box-shadow:none;
  10239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10240. font-weight:400;
  10241. font-style:normal;
  10242. font-size:12px;
  10243. color:#F59A23;
  10244. text-align:right;
  10245. line-height:24px;
  10246. }
  10247. #u34627 {
  10248. border-width:0px;
  10249. position:absolute;
  10250. left:1087px;
  10251. top:326px;
  10252. width:78px;
  10253. height:24px;
  10254. display:flex;
  10255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10256. font-weight:400;
  10257. font-style:normal;
  10258. font-size:12px;
  10259. color:#F59A23;
  10260. text-align:right;
  10261. line-height:24px;
  10262. }
  10263. #u34627 .text {
  10264. position:absolute;
  10265. align-self:center;
  10266. padding:0px 0px 0px 0px;
  10267. box-sizing:border-box;
  10268. width:100%;
  10269. }
  10270. #u34627_text {
  10271. border-width:0px;
  10272. white-space:nowrap;
  10273. text-transform:none;
  10274. }
  10275. #u34628_div {
  10276. border-width:0px;
  10277. position:absolute;
  10278. left:0px;
  10279. top:0px;
  10280. width:60px;
  10281. height:30px;
  10282. background:inherit;
  10283. background-color:rgba(255, 255, 255, 1);
  10284. box-sizing:border-box;
  10285. border-width:1px;
  10286. border-style:solid;
  10287. border-color:rgba(127, 127, 127, 1);
  10288. border-radius:81px;
  10289. -moz-box-shadow:none;
  10290. -webkit-box-shadow:none;
  10291. box-shadow:none;
  10292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10293. font-weight:400;
  10294. font-style:normal;
  10295. font-size:12px;
  10296. color:#555555;
  10297. }
  10298. #u34628 {
  10299. border-width:0px;
  10300. position:absolute;
  10301. left:1239px;
  10302. top:394px;
  10303. width:60px;
  10304. height:30px;
  10305. display:flex;
  10306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10307. font-weight:400;
  10308. font-style:normal;
  10309. font-size:12px;
  10310. color:#555555;
  10311. }
  10312. #u34628 .text {
  10313. position:absolute;
  10314. align-self:center;
  10315. padding:2px 2px 2px 2px;
  10316. box-sizing:border-box;
  10317. width:100%;
  10318. }
  10319. #u34628_text {
  10320. border-width:0px;
  10321. word-wrap:break-word;
  10322. text-transform:none;
  10323. }
  10324. #u34629_img {
  10325. border-width:0px;
  10326. position:absolute;
  10327. left:0px;
  10328. top:0px;
  10329. width:337px;
  10330. height:2px;
  10331. }
  10332. #u34629 {
  10333. border-width:0px;
  10334. position:absolute;
  10335. left:963px;
  10336. top:384px;
  10337. width:336px;
  10338. height:1px;
  10339. display:flex;
  10340. }
  10341. #u34629 .text {
  10342. position:absolute;
  10343. align-self:center;
  10344. padding:2px 2px 2px 2px;
  10345. box-sizing:border-box;
  10346. width:100%;
  10347. }
  10348. #u34629_text {
  10349. border-width:0px;
  10350. word-wrap:break-word;
  10351. text-transform:none;
  10352. visibility:hidden;
  10353. }
  10354. #u34630_div {
  10355. border-width:0px;
  10356. position:absolute;
  10357. left:0px;
  10358. top:0px;
  10359. width:108px;
  10360. height:30px;
  10361. background:inherit;
  10362. background-color:rgba(255, 255, 255, 0);
  10363. border:none;
  10364. border-left:0px;
  10365. border-top:0px;
  10366. border-right:0px;
  10367. border-radius:0px;
  10368. border-bottom-right-radius:0px;
  10369. border-bottom-left-radius:0px;
  10370. -moz-box-shadow:none;
  10371. -webkit-box-shadow:none;
  10372. box-shadow:none;
  10373. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10374. font-weight:500;
  10375. font-style:normal;
  10376. font-size:14px;
  10377. line-height:30px;
  10378. }
  10379. #u34630 {
  10380. border-width:0px;
  10381. position:absolute;
  10382. left:967px;
  10383. top:395px;
  10384. width:108px;
  10385. height:30px;
  10386. display:flex;
  10387. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10388. font-weight:500;
  10389. font-style:normal;
  10390. font-size:14px;
  10391. line-height:30px;
  10392. }
  10393. #u34630 .text {
  10394. position:absolute;
  10395. align-self:flex-start;
  10396. padding:0px 0px 0px 0px;
  10397. box-sizing:border-box;
  10398. width:100%;
  10399. }
  10400. #u34630_text {
  10401. border-width:0px;
  10402. white-space:nowrap;
  10403. text-transform:none;
  10404. }
  10405. #u34631 {
  10406. border-width:0px;
  10407. position:absolute;
  10408. left:0px;
  10409. top:0px;
  10410. width:0px;
  10411. height:0px;
  10412. }
  10413. #u34632_div {
  10414. border-width:0px;
  10415. position:absolute;
  10416. left:0px;
  10417. top:0px;
  10418. width:85px;
  10419. height:30px;
  10420. background:inherit;
  10421. background-color:rgba(255, 255, 255, 0);
  10422. border:none;
  10423. border-left:0px;
  10424. border-top:0px;
  10425. border-right:0px;
  10426. border-radius:0px;
  10427. border-bottom-right-radius:0px;
  10428. border-bottom-left-radius:0px;
  10429. -moz-box-shadow:none;
  10430. -webkit-box-shadow:none;
  10431. box-shadow:none;
  10432. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10433. font-weight:500;
  10434. font-style:normal;
  10435. font-size:12px;
  10436. line-height:30px;
  10437. }
  10438. #u34632 {
  10439. border-width:0px;
  10440. position:absolute;
  10441. left:985px;
  10442. top:285px;
  10443. width:85px;
  10444. height:30px;
  10445. display:flex;
  10446. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10447. font-weight:500;
  10448. font-style:normal;
  10449. font-size:12px;
  10450. line-height:30px;
  10451. }
  10452. #u34632 .text {
  10453. position:absolute;
  10454. align-self:center;
  10455. padding:0px 0px 0px 0px;
  10456. box-sizing:border-box;
  10457. width:100%;
  10458. }
  10459. #u34632_text {
  10460. border-width:0px;
  10461. white-space:nowrap;
  10462. text-transform:none;
  10463. }
  10464. #u34633_div {
  10465. border-width:0px;
  10466. position:absolute;
  10467. left:0px;
  10468. top:0px;
  10469. width:92px;
  10470. height:30px;
  10471. background:inherit;
  10472. background-color:rgba(255, 255, 255, 0);
  10473. border:none;
  10474. border-left:0px;
  10475. border-top:0px;
  10476. border-right:0px;
  10477. border-radius:0px;
  10478. border-bottom-right-radius:0px;
  10479. border-bottom-left-radius:0px;
  10480. -moz-box-shadow:none;
  10481. -webkit-box-shadow:none;
  10482. box-shadow:none;
  10483. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10484. font-weight:500;
  10485. font-style:normal;
  10486. font-size:12px;
  10487. line-height:30px;
  10488. }
  10489. #u34633 {
  10490. border-width:0px;
  10491. position:absolute;
  10492. left:985px;
  10493. top:326px;
  10494. width:92px;
  10495. height:30px;
  10496. display:flex;
  10497. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10498. font-weight:500;
  10499. font-style:normal;
  10500. font-size:12px;
  10501. line-height:30px;
  10502. }
  10503. #u34633 .text {
  10504. position:absolute;
  10505. align-self:center;
  10506. padding:0px 0px 0px 0px;
  10507. box-sizing:border-box;
  10508. width:100%;
  10509. }
  10510. #u34633_text {
  10511. border-width:0px;
  10512. white-space:nowrap;
  10513. text-transform:none;
  10514. }
  10515. #u34634_div {
  10516. border-width:0px;
  10517. position:absolute;
  10518. left:0px;
  10519. top:0px;
  10520. width:188px;
  10521. height:17px;
  10522. background:inherit;
  10523. background-color:rgba(255, 255, 255, 0);
  10524. border:none;
  10525. border-left:0px;
  10526. border-top:0px;
  10527. border-right:0px;
  10528. border-radius:0px;
  10529. border-bottom-right-radius:0px;
  10530. border-bottom-left-radius:0px;
  10531. -moz-box-shadow:none;
  10532. -webkit-box-shadow:none;
  10533. box-shadow:none;
  10534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10535. font-weight:400;
  10536. font-style:normal;
  10537. font-size:12px;
  10538. color:#7F7F7F;
  10539. }
  10540. #u34634 {
  10541. border-width:0px;
  10542. position:absolute;
  10543. left:985px;
  10544. top:354px;
  10545. width:188px;
  10546. height:17px;
  10547. display:flex;
  10548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10549. font-weight:400;
  10550. font-style:normal;
  10551. font-size:12px;
  10552. color:#7F7F7F;
  10553. }
  10554. #u34634 .text {
  10555. position:absolute;
  10556. align-self:flex-start;
  10557. padding:0px 0px 0px 0px;
  10558. box-sizing:border-box;
  10559. width:100%;
  10560. }
  10561. #u34634_text {
  10562. border-width:0px;
  10563. white-space:nowrap;
  10564. text-transform:none;
  10565. }
  10566. #u34635 {
  10567. border-width:0px;
  10568. position:absolute;
  10569. left:0px;
  10570. top:0px;
  10571. width:0px;
  10572. height:0px;
  10573. }
  10574. #u34636_img {
  10575. border-width:0px;
  10576. position:absolute;
  10577. left:0px;
  10578. top:0px;
  10579. width:11px;
  10580. height:11px;
  10581. }
  10582. #u34636 {
  10583. border-width:0px;
  10584. position:absolute;
  10585. left:970px;
  10586. top:294px;
  10587. width:11px;
  10588. height:11px;
  10589. display:flex;
  10590. }
  10591. #u34636 .text {
  10592. position:absolute;
  10593. align-self:center;
  10594. padding:2px 2px 2px 2px;
  10595. box-sizing:border-box;
  10596. width:100%;
  10597. }
  10598. #u34636_text {
  10599. border-width:0px;
  10600. word-wrap:break-word;
  10601. text-transform:none;
  10602. visibility:hidden;
  10603. }
  10604. #u34637_img {
  10605. border-width:0px;
  10606. position:absolute;
  10607. left:0px;
  10608. top:0px;
  10609. width:11px;
  10610. height:11px;
  10611. }
  10612. #u34637 {
  10613. border-width:0px;
  10614. position:absolute;
  10615. left:970px;
  10616. top:335px;
  10617. width:11px;
  10618. height:11px;
  10619. display:flex;
  10620. }
  10621. #u34637 .text {
  10622. position:absolute;
  10623. align-self:center;
  10624. padding:2px 2px 2px 2px;
  10625. box-sizing:border-box;
  10626. width:100%;
  10627. }
  10628. #u34637_text {
  10629. border-width:0px;
  10630. word-wrap:break-word;
  10631. text-transform:none;
  10632. visibility:hidden;
  10633. }
  10634. #u34638_img {
  10635. border-width:0px;
  10636. position:absolute;
  10637. left:0px;
  10638. top:0px;
  10639. width:2px;
  10640. height:40px;
  10641. }
  10642. #u34638 {
  10643. border-width:0px;
  10644. position:absolute;
  10645. left:975px;
  10646. top:305px;
  10647. width:1px;
  10648. height:39px;
  10649. display:flex;
  10650. }
  10651. #u34638 .text {
  10652. position:absolute;
  10653. align-self:center;
  10654. padding:2px 2px 2px 2px;
  10655. box-sizing:border-box;
  10656. width:100%;
  10657. }
  10658. #u34638_text {
  10659. border-width:0px;
  10660. word-wrap:break-word;
  10661. text-transform:none;
  10662. visibility:hidden;
  10663. }
  10664. #u34639 {
  10665. border-width:0px;
  10666. position:absolute;
  10667. left:0px;
  10668. top:0px;
  10669. width:0px;
  10670. height:0px;
  10671. }
  10672. #u34640_img {
  10673. border-width:0px;
  10674. position:absolute;
  10675. left:0px;
  10676. top:0px;
  10677. width:355px;
  10678. height:220px;
  10679. }
  10680. #u34640 {
  10681. border-width:0px;
  10682. position:absolute;
  10683. left:1412px;
  10684. top:217px;
  10685. width:355px;
  10686. height:220px;
  10687. display:flex;
  10688. }
  10689. #u34640 .text {
  10690. position:absolute;
  10691. align-self:center;
  10692. padding:2px 2px 2px 2px;
  10693. box-sizing:border-box;
  10694. width:100%;
  10695. }
  10696. #u34640_text {
  10697. border-width:0px;
  10698. word-wrap:break-word;
  10699. text-transform:none;
  10700. visibility:hidden;
  10701. }
  10702. #u34641_div {
  10703. border-width:0px;
  10704. position:absolute;
  10705. left:0px;
  10706. top:0px;
  10707. width:206px;
  10708. height:30px;
  10709. background:inherit;
  10710. background-color:rgba(255, 255, 255, 0);
  10711. border:none;
  10712. border-left:0px;
  10713. border-top:0px;
  10714. border-right:0px;
  10715. border-radius:0px;
  10716. border-bottom-right-radius:0px;
  10717. border-bottom-left-radius:0px;
  10718. -moz-box-shadow:none;
  10719. -webkit-box-shadow:none;
  10720. box-shadow:none;
  10721. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10722. font-weight:500;
  10723. font-style:normal;
  10724. font-size:14px;
  10725. line-height:30px;
  10726. }
  10727. #u34641 {
  10728. border-width:0px;
  10729. position:absolute;
  10730. left:1427px;
  10731. top:227px;
  10732. width:206px;
  10733. height:30px;
  10734. display:flex;
  10735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10736. font-weight:500;
  10737. font-style:normal;
  10738. font-size:14px;
  10739. line-height:30px;
  10740. }
  10741. #u34641 .text {
  10742. position:absolute;
  10743. align-self:flex-start;
  10744. padding:0px 0px 0px 0px;
  10745. box-sizing:border-box;
  10746. width:100%;
  10747. }
  10748. #u34641_text {
  10749. border-width:0px;
  10750. white-space:nowrap;
  10751. text-transform:none;
  10752. }
  10753. #u34642_div {
  10754. border-width:0px;
  10755. position:absolute;
  10756. left:0px;
  10757. top:0px;
  10758. width:123px;
  10759. height:17px;
  10760. background:inherit;
  10761. background-color:rgba(255, 255, 255, 0);
  10762. border:none;
  10763. border-left:0px;
  10764. border-top:0px;
  10765. border-right:0px;
  10766. border-radius:0px;
  10767. border-bottom-right-radius:0px;
  10768. border-bottom-left-radius:0px;
  10769. -moz-box-shadow:none;
  10770. -webkit-box-shadow:none;
  10771. box-shadow:none;
  10772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10773. font-weight:400;
  10774. font-style:normal;
  10775. font-size:12px;
  10776. color:#7F7F7F;
  10777. }
  10778. #u34642 {
  10779. border-width:0px;
  10780. position:absolute;
  10781. left:1427px;
  10782. top:257px;
  10783. width:123px;
  10784. height:17px;
  10785. display:flex;
  10786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10787. font-weight:400;
  10788. font-style:normal;
  10789. font-size:12px;
  10790. color:#7F7F7F;
  10791. }
  10792. #u34642 .text {
  10793. position:absolute;
  10794. align-self:flex-start;
  10795. padding:0px 0px 0px 0px;
  10796. box-sizing:border-box;
  10797. width:100%;
  10798. }
  10799. #u34642_text {
  10800. border-width:0px;
  10801. white-space:nowrap;
  10802. text-transform:none;
  10803. }
  10804. #u34643_div {
  10805. border-width:0px;
  10806. position:absolute;
  10807. left:0px;
  10808. top:0px;
  10809. width:78px;
  10810. height:24px;
  10811. background:inherit;
  10812. background-color:rgba(255, 255, 255, 0);
  10813. border:none;
  10814. border-left:0px;
  10815. border-top:0px;
  10816. border-right:0px;
  10817. border-radius:0px;
  10818. border-bottom-right-radius:0px;
  10819. border-bottom-left-radius:0px;
  10820. -moz-box-shadow:none;
  10821. -webkit-box-shadow:none;
  10822. box-shadow:none;
  10823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10824. font-weight:400;
  10825. font-style:normal;
  10826. font-size:12px;
  10827. color:#F59A23;
  10828. text-align:right;
  10829. line-height:24px;
  10830. }
  10831. #u34643 {
  10832. border-width:0px;
  10833. position:absolute;
  10834. left:1548px;
  10835. top:287px;
  10836. width:78px;
  10837. height:24px;
  10838. display:flex;
  10839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10840. font-weight:400;
  10841. font-style:normal;
  10842. font-size:12px;
  10843. color:#F59A23;
  10844. text-align:right;
  10845. line-height:24px;
  10846. }
  10847. #u34643 .text {
  10848. position:absolute;
  10849. align-self:center;
  10850. padding:0px 0px 0px 0px;
  10851. box-sizing:border-box;
  10852. width:100%;
  10853. }
  10854. #u34643_text {
  10855. border-width:0px;
  10856. white-space:nowrap;
  10857. text-transform:none;
  10858. }
  10859. #u34644_div {
  10860. border-width:0px;
  10861. position:absolute;
  10862. left:0px;
  10863. top:0px;
  10864. width:85px;
  10865. height:30px;
  10866. background:inherit;
  10867. background-color:rgba(255, 255, 255, 0);
  10868. border:none;
  10869. border-left:0px;
  10870. border-top:0px;
  10871. border-right:0px;
  10872. border-radius:0px;
  10873. border-bottom-right-radius:0px;
  10874. border-bottom-left-radius:0px;
  10875. -moz-box-shadow:none;
  10876. -webkit-box-shadow:none;
  10877. box-shadow:none;
  10878. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10879. font-weight:500;
  10880. font-style:normal;
  10881. font-size:12px;
  10882. line-height:30px;
  10883. }
  10884. #u34644 {
  10885. border-width:0px;
  10886. position:absolute;
  10887. left:1447px;
  10888. top:284px;
  10889. width:85px;
  10890. height:30px;
  10891. display:flex;
  10892. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10893. font-weight:500;
  10894. font-style:normal;
  10895. font-size:12px;
  10896. line-height:30px;
  10897. }
  10898. #u34644 .text {
  10899. position:absolute;
  10900. align-self:center;
  10901. padding:0px 0px 0px 0px;
  10902. box-sizing:border-box;
  10903. width:100%;
  10904. }
  10905. #u34644_text {
  10906. border-width:0px;
  10907. white-space:nowrap;
  10908. text-transform:none;
  10909. }
  10910. #u34645_div {
  10911. border-width:0px;
  10912. position:absolute;
  10913. left:0px;
  10914. top:0px;
  10915. width:92px;
  10916. height:30px;
  10917. background:inherit;
  10918. background-color:rgba(255, 255, 255, 0);
  10919. border:none;
  10920. border-left:0px;
  10921. border-top:0px;
  10922. border-right:0px;
  10923. border-radius:0px;
  10924. border-bottom-right-radius:0px;
  10925. border-bottom-left-radius:0px;
  10926. -moz-box-shadow:none;
  10927. -webkit-box-shadow:none;
  10928. box-shadow:none;
  10929. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10930. font-weight:500;
  10931. font-style:normal;
  10932. font-size:12px;
  10933. line-height:30px;
  10934. }
  10935. #u34645 {
  10936. border-width:0px;
  10937. position:absolute;
  10938. left:1447px;
  10939. top:324px;
  10940. width:92px;
  10941. height:30px;
  10942. display:flex;
  10943. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10944. font-weight:500;
  10945. font-style:normal;
  10946. font-size:12px;
  10947. line-height:30px;
  10948. }
  10949. #u34645 .text {
  10950. position:absolute;
  10951. align-self:center;
  10952. padding:0px 0px 0px 0px;
  10953. box-sizing:border-box;
  10954. width:100%;
  10955. }
  10956. #u34645_text {
  10957. border-width:0px;
  10958. white-space:nowrap;
  10959. text-transform:none;
  10960. }
  10961. #u34646_div {
  10962. border-width:0px;
  10963. position:absolute;
  10964. left:0px;
  10965. top:0px;
  10966. width:188px;
  10967. height:17px;
  10968. background:inherit;
  10969. background-color:rgba(255, 255, 255, 0);
  10970. border:none;
  10971. border-left:0px;
  10972. border-top:0px;
  10973. border-right:0px;
  10974. border-radius:0px;
  10975. border-bottom-right-radius:0px;
  10976. border-bottom-left-radius:0px;
  10977. -moz-box-shadow:none;
  10978. -webkit-box-shadow:none;
  10979. box-shadow:none;
  10980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10981. font-weight:400;
  10982. font-style:normal;
  10983. font-size:12px;
  10984. color:#7F7F7F;
  10985. }
  10986. #u34646 {
  10987. border-width:0px;
  10988. position:absolute;
  10989. left:1447px;
  10990. top:354px;
  10991. width:188px;
  10992. height:17px;
  10993. display:flex;
  10994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10995. font-weight:400;
  10996. font-style:normal;
  10997. font-size:12px;
  10998. color:#7F7F7F;
  10999. }
  11000. #u34646 .text {
  11001. position:absolute;
  11002. align-self:flex-start;
  11003. padding:0px 0px 0px 0px;
  11004. box-sizing:border-box;
  11005. width:100%;
  11006. }
  11007. #u34646_text {
  11008. border-width:0px;
  11009. white-space:nowrap;
  11010. text-transform:none;
  11011. }
  11012. #u34647_div {
  11013. border-width:0px;
  11014. position:absolute;
  11015. left:0px;
  11016. top:0px;
  11017. width:78px;
  11018. height:24px;
  11019. background:inherit;
  11020. background-color:rgba(255, 255, 255, 0);
  11021. border:none;
  11022. border-left:0px;
  11023. border-top:0px;
  11024. border-right:0px;
  11025. border-radius:0px;
  11026. border-bottom-right-radius:0px;
  11027. border-bottom-left-radius:0px;
  11028. -moz-box-shadow:none;
  11029. -webkit-box-shadow:none;
  11030. box-shadow:none;
  11031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11032. font-weight:400;
  11033. font-style:normal;
  11034. font-size:12px;
  11035. color:#F59A23;
  11036. text-align:right;
  11037. line-height:24px;
  11038. }
  11039. #u34647 {
  11040. border-width:0px;
  11041. position:absolute;
  11042. left:1548px;
  11043. top:327px;
  11044. width:78px;
  11045. height:24px;
  11046. display:flex;
  11047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11048. font-weight:400;
  11049. font-style:normal;
  11050. font-size:12px;
  11051. color:#F59A23;
  11052. text-align:right;
  11053. line-height:24px;
  11054. }
  11055. #u34647 .text {
  11056. position:absolute;
  11057. align-self:center;
  11058. padding:0px 0px 0px 0px;
  11059. box-sizing:border-box;
  11060. width:100%;
  11061. }
  11062. #u34647_text {
  11063. border-width:0px;
  11064. white-space:nowrap;
  11065. text-transform:none;
  11066. }
  11067. #u34648 {
  11068. border-width:0px;
  11069. position:absolute;
  11070. left:0px;
  11071. top:0px;
  11072. width:0px;
  11073. height:0px;
  11074. }
  11075. #u34649_img {
  11076. border-width:0px;
  11077. position:absolute;
  11078. left:0px;
  11079. top:0px;
  11080. width:11px;
  11081. height:11px;
  11082. }
  11083. #u34649 {
  11084. border-width:0px;
  11085. position:absolute;
  11086. left:1432px;
  11087. top:293px;
  11088. width:11px;
  11089. height:11px;
  11090. display:flex;
  11091. }
  11092. #u34649 .text {
  11093. position:absolute;
  11094. align-self:center;
  11095. padding:2px 2px 2px 2px;
  11096. box-sizing:border-box;
  11097. width:100%;
  11098. }
  11099. #u34649_text {
  11100. border-width:0px;
  11101. word-wrap:break-word;
  11102. text-transform:none;
  11103. visibility:hidden;
  11104. }
  11105. #u34650_img {
  11106. border-width:0px;
  11107. position:absolute;
  11108. left:0px;
  11109. top:0px;
  11110. width:2px;
  11111. height:40px;
  11112. }
  11113. #u34650 {
  11114. border-width:0px;
  11115. position:absolute;
  11116. left:1437px;
  11117. top:304px;
  11118. width:1px;
  11119. height:39px;
  11120. display:flex;
  11121. }
  11122. #u34650 .text {
  11123. position:absolute;
  11124. align-self:center;
  11125. padding:2px 2px 2px 2px;
  11126. box-sizing:border-box;
  11127. width:100%;
  11128. }
  11129. #u34650_text {
  11130. border-width:0px;
  11131. word-wrap:break-word;
  11132. text-transform:none;
  11133. visibility:hidden;
  11134. }
  11135. #u34651_img {
  11136. border-width:0px;
  11137. position:absolute;
  11138. left:0px;
  11139. top:0px;
  11140. width:11px;
  11141. height:11px;
  11142. }
  11143. #u34651 {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:1432px;
  11147. top:334px;
  11148. width:11px;
  11149. height:11px;
  11150. display:flex;
  11151. }
  11152. #u34651 .text {
  11153. position:absolute;
  11154. align-self:center;
  11155. padding:2px 2px 2px 2px;
  11156. box-sizing:border-box;
  11157. width:100%;
  11158. }
  11159. #u34651_text {
  11160. border-width:0px;
  11161. word-wrap:break-word;
  11162. text-transform:none;
  11163. visibility:hidden;
  11164. }
  11165. #u34652_img {
  11166. border-width:0px;
  11167. position:absolute;
  11168. left:0px;
  11169. top:0px;
  11170. width:337px;
  11171. height:2px;
  11172. }
  11173. #u34652 {
  11174. border-width:0px;
  11175. position:absolute;
  11176. left:1422px;
  11177. top:384px;
  11178. width:336px;
  11179. height:1px;
  11180. display:flex;
  11181. }
  11182. #u34652 .text {
  11183. position:absolute;
  11184. align-self:center;
  11185. padding:2px 2px 2px 2px;
  11186. box-sizing:border-box;
  11187. width:100%;
  11188. }
  11189. #u34652_text {
  11190. border-width:0px;
  11191. word-wrap:break-word;
  11192. text-transform:none;
  11193. visibility:hidden;
  11194. }
  11195. #u34653_div {
  11196. border-width:0px;
  11197. position:absolute;
  11198. left:0px;
  11199. top:0px;
  11200. width:108px;
  11201. height:30px;
  11202. background:inherit;
  11203. background-color:rgba(255, 255, 255, 0);
  11204. border:none;
  11205. border-left:0px;
  11206. border-top:0px;
  11207. border-right:0px;
  11208. border-radius:0px;
  11209. border-bottom-right-radius:0px;
  11210. border-bottom-left-radius:0px;
  11211. -moz-box-shadow:none;
  11212. -webkit-box-shadow:none;
  11213. box-shadow:none;
  11214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11215. font-weight:500;
  11216. font-style:normal;
  11217. font-size:14px;
  11218. line-height:30px;
  11219. }
  11220. #u34653 {
  11221. border-width:0px;
  11222. position:absolute;
  11223. left:1426px;
  11224. top:395px;
  11225. width:108px;
  11226. height:30px;
  11227. display:flex;
  11228. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11229. font-weight:500;
  11230. font-style:normal;
  11231. font-size:14px;
  11232. line-height:30px;
  11233. }
  11234. #u34653 .text {
  11235. position:absolute;
  11236. align-self:flex-start;
  11237. padding:0px 0px 0px 0px;
  11238. box-sizing:border-box;
  11239. width:100%;
  11240. }
  11241. #u34653_text {
  11242. border-width:0px;
  11243. white-space:nowrap;
  11244. text-transform:none;
  11245. }
  11246. #u34654 {
  11247. border-width:0px;
  11248. position:absolute;
  11249. left:0px;
  11250. top:0px;
  11251. width:0px;
  11252. height:0px;
  11253. }
  11254. #u34655_img {
  11255. border-width:0px;
  11256. position:absolute;
  11257. left:0px;
  11258. top:0px;
  11259. width:355px;
  11260. height:220px;
  11261. }
  11262. #u34655 {
  11263. border-width:0px;
  11264. position:absolute;
  11265. left:1876px;
  11266. top:217px;
  11267. width:355px;
  11268. height:220px;
  11269. display:flex;
  11270. }
  11271. #u34655 .text {
  11272. position:absolute;
  11273. align-self:center;
  11274. padding:2px 2px 2px 2px;
  11275. box-sizing:border-box;
  11276. width:100%;
  11277. }
  11278. #u34655_text {
  11279. border-width:0px;
  11280. word-wrap:break-word;
  11281. text-transform:none;
  11282. visibility:hidden;
  11283. }
  11284. #u34656_div {
  11285. border-width:0px;
  11286. position:absolute;
  11287. left:0px;
  11288. top:0px;
  11289. width:206px;
  11290. height:30px;
  11291. background:inherit;
  11292. background-color:rgba(255, 255, 255, 0);
  11293. border:none;
  11294. border-left:0px;
  11295. border-top:0px;
  11296. border-right:0px;
  11297. border-radius:0px;
  11298. border-bottom-right-radius:0px;
  11299. border-bottom-left-radius:0px;
  11300. -moz-box-shadow:none;
  11301. -webkit-box-shadow:none;
  11302. box-shadow:none;
  11303. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11304. font-weight:500;
  11305. font-style:normal;
  11306. font-size:14px;
  11307. line-height:30px;
  11308. }
  11309. #u34656 {
  11310. border-width:0px;
  11311. position:absolute;
  11312. left:1891px;
  11313. top:227px;
  11314. width:206px;
  11315. height:30px;
  11316. display:flex;
  11317. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11318. font-weight:500;
  11319. font-style:normal;
  11320. font-size:14px;
  11321. line-height:30px;
  11322. }
  11323. #u34656 .text {
  11324. position:absolute;
  11325. align-self:flex-start;
  11326. padding:0px 0px 0px 0px;
  11327. box-sizing:border-box;
  11328. width:100%;
  11329. }
  11330. #u34656_text {
  11331. border-width:0px;
  11332. white-space:nowrap;
  11333. text-transform:none;
  11334. }
  11335. #u34657_div {
  11336. border-width:0px;
  11337. position:absolute;
  11338. left:0px;
  11339. top:0px;
  11340. width:123px;
  11341. height:17px;
  11342. background:inherit;
  11343. background-color:rgba(255, 255, 255, 0);
  11344. border:none;
  11345. border-left:0px;
  11346. border-top:0px;
  11347. border-right:0px;
  11348. border-radius:0px;
  11349. border-bottom-right-radius:0px;
  11350. border-bottom-left-radius:0px;
  11351. -moz-box-shadow:none;
  11352. -webkit-box-shadow:none;
  11353. box-shadow:none;
  11354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11355. font-weight:400;
  11356. font-style:normal;
  11357. font-size:12px;
  11358. color:#7F7F7F;
  11359. }
  11360. #u34657 {
  11361. border-width:0px;
  11362. position:absolute;
  11363. left:1891px;
  11364. top:257px;
  11365. width:123px;
  11366. height:17px;
  11367. display:flex;
  11368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11369. font-weight:400;
  11370. font-style:normal;
  11371. font-size:12px;
  11372. color:#7F7F7F;
  11373. }
  11374. #u34657 .text {
  11375. position:absolute;
  11376. align-self:flex-start;
  11377. padding:0px 0px 0px 0px;
  11378. box-sizing:border-box;
  11379. width:100%;
  11380. }
  11381. #u34657_text {
  11382. border-width:0px;
  11383. white-space:nowrap;
  11384. text-transform:none;
  11385. }
  11386. #u34658_div {
  11387. border-width:0px;
  11388. position:absolute;
  11389. left:0px;
  11390. top:0px;
  11391. width:78px;
  11392. height:24px;
  11393. background:inherit;
  11394. background-color:rgba(255, 255, 255, 0);
  11395. border:none;
  11396. border-left:0px;
  11397. border-top:0px;
  11398. border-right:0px;
  11399. border-radius:0px;
  11400. border-bottom-right-radius:0px;
  11401. border-bottom-left-radius:0px;
  11402. -moz-box-shadow:none;
  11403. -webkit-box-shadow:none;
  11404. box-shadow:none;
  11405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11406. font-weight:400;
  11407. font-style:normal;
  11408. font-size:12px;
  11409. text-decoration:line-through ;
  11410. color:#AAAAAA;
  11411. text-align:right;
  11412. line-height:24px;
  11413. }
  11414. #u34658 {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:2013px;
  11418. top:287px;
  11419. width:78px;
  11420. height:24px;
  11421. display:flex;
  11422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11423. font-weight:400;
  11424. font-style:normal;
  11425. font-size:12px;
  11426. text-decoration:line-through ;
  11427. color:#AAAAAA;
  11428. text-align:right;
  11429. line-height:24px;
  11430. }
  11431. #u34658 .text {
  11432. position:absolute;
  11433. align-self:center;
  11434. padding:0px 0px 0px 0px;
  11435. box-sizing:border-box;
  11436. width:100%;
  11437. }
  11438. #u34658_text {
  11439. border-width:0px;
  11440. white-space:nowrap;
  11441. text-transform:none;
  11442. }
  11443. #u34659_div {
  11444. border-width:0px;
  11445. position:absolute;
  11446. left:0px;
  11447. top:0px;
  11448. width:85px;
  11449. height:30px;
  11450. background:inherit;
  11451. background-color:rgba(255, 255, 255, 0);
  11452. border:none;
  11453. border-left:0px;
  11454. border-top:0px;
  11455. border-right:0px;
  11456. border-radius:0px;
  11457. border-bottom-right-radius:0px;
  11458. border-bottom-left-radius:0px;
  11459. -moz-box-shadow:none;
  11460. -webkit-box-shadow:none;
  11461. box-shadow:none;
  11462. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11463. font-weight:500;
  11464. font-style:normal;
  11465. font-size:12px;
  11466. line-height:30px;
  11467. }
  11468. #u34659 {
  11469. border-width:0px;
  11470. position:absolute;
  11471. left:1911px;
  11472. top:284px;
  11473. width:85px;
  11474. height:30px;
  11475. display:flex;
  11476. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11477. font-weight:500;
  11478. font-style:normal;
  11479. font-size:12px;
  11480. line-height:30px;
  11481. }
  11482. #u34659 .text {
  11483. position:absolute;
  11484. align-self:center;
  11485. padding:0px 0px 0px 0px;
  11486. box-sizing:border-box;
  11487. width:100%;
  11488. }
  11489. #u34659_text {
  11490. border-width:0px;
  11491. white-space:nowrap;
  11492. text-transform:none;
  11493. }
  11494. #u34660_div {
  11495. border-width:0px;
  11496. position:absolute;
  11497. left:0px;
  11498. top:0px;
  11499. width:92px;
  11500. height:30px;
  11501. background:inherit;
  11502. background-color:rgba(255, 255, 255, 0);
  11503. border:none;
  11504. border-left:0px;
  11505. border-top:0px;
  11506. border-right:0px;
  11507. border-radius:0px;
  11508. border-bottom-right-radius:0px;
  11509. border-bottom-left-radius:0px;
  11510. -moz-box-shadow:none;
  11511. -webkit-box-shadow:none;
  11512. box-shadow:none;
  11513. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11514. font-weight:500;
  11515. font-style:normal;
  11516. font-size:12px;
  11517. line-height:30px;
  11518. }
  11519. #u34660 {
  11520. border-width:0px;
  11521. position:absolute;
  11522. left:1911px;
  11523. top:324px;
  11524. width:92px;
  11525. height:30px;
  11526. display:flex;
  11527. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11528. font-weight:500;
  11529. font-style:normal;
  11530. font-size:12px;
  11531. line-height:30px;
  11532. }
  11533. #u34660 .text {
  11534. position:absolute;
  11535. align-self:center;
  11536. padding:0px 0px 0px 0px;
  11537. box-sizing:border-box;
  11538. width:100%;
  11539. }
  11540. #u34660_text {
  11541. border-width:0px;
  11542. white-space:nowrap;
  11543. text-transform:none;
  11544. }
  11545. #u34661_div {
  11546. border-width:0px;
  11547. position:absolute;
  11548. left:0px;
  11549. top:0px;
  11550. width:188px;
  11551. height:17px;
  11552. background:inherit;
  11553. background-color:rgba(255, 255, 255, 0);
  11554. border:none;
  11555. border-left:0px;
  11556. border-top:0px;
  11557. border-right:0px;
  11558. border-radius:0px;
  11559. border-bottom-right-radius:0px;
  11560. border-bottom-left-radius:0px;
  11561. -moz-box-shadow:none;
  11562. -webkit-box-shadow:none;
  11563. box-shadow:none;
  11564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11565. font-weight:400;
  11566. font-style:normal;
  11567. font-size:12px;
  11568. color:#7F7F7F;
  11569. }
  11570. #u34661 {
  11571. border-width:0px;
  11572. position:absolute;
  11573. left:1911px;
  11574. top:354px;
  11575. width:188px;
  11576. height:17px;
  11577. display:flex;
  11578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11579. font-weight:400;
  11580. font-style:normal;
  11581. font-size:12px;
  11582. color:#7F7F7F;
  11583. }
  11584. #u34661 .text {
  11585. position:absolute;
  11586. align-self:flex-start;
  11587. padding:0px 0px 0px 0px;
  11588. box-sizing:border-box;
  11589. width:100%;
  11590. }
  11591. #u34661_text {
  11592. border-width:0px;
  11593. white-space:nowrap;
  11594. text-transform:none;
  11595. }
  11596. #u34662_div {
  11597. border-width:0px;
  11598. position:absolute;
  11599. left:0px;
  11600. top:0px;
  11601. width:78px;
  11602. height:24px;
  11603. background:inherit;
  11604. background-color:rgba(255, 255, 255, 0);
  11605. border:none;
  11606. border-left:0px;
  11607. border-top:0px;
  11608. border-right:0px;
  11609. border-radius:0px;
  11610. border-bottom-right-radius:0px;
  11611. border-bottom-left-radius:0px;
  11612. -moz-box-shadow:none;
  11613. -webkit-box-shadow:none;
  11614. box-shadow:none;
  11615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11616. font-weight:400;
  11617. font-style:normal;
  11618. font-size:12px;
  11619. text-decoration:line-through ;
  11620. color:#AAAAAA;
  11621. text-align:right;
  11622. line-height:24px;
  11623. }
  11624. #u34662 {
  11625. border-width:0px;
  11626. position:absolute;
  11627. left:2013px;
  11628. top:327px;
  11629. width:78px;
  11630. height:24px;
  11631. display:flex;
  11632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11633. font-weight:400;
  11634. font-style:normal;
  11635. font-size:12px;
  11636. text-decoration:line-through ;
  11637. color:#AAAAAA;
  11638. text-align:right;
  11639. line-height:24px;
  11640. }
  11641. #u34662 .text {
  11642. position:absolute;
  11643. align-self:center;
  11644. padding:0px 0px 0px 0px;
  11645. box-sizing:border-box;
  11646. width:100%;
  11647. }
  11648. #u34662_text {
  11649. border-width:0px;
  11650. white-space:nowrap;
  11651. text-transform:none;
  11652. }
  11653. #u34663 {
  11654. border-width:0px;
  11655. position:absolute;
  11656. left:0px;
  11657. top:0px;
  11658. width:0px;
  11659. height:0px;
  11660. }
  11661. #u34664_img {
  11662. border-width:0px;
  11663. position:absolute;
  11664. left:0px;
  11665. top:0px;
  11666. width:11px;
  11667. height:11px;
  11668. }
  11669. #u34664 {
  11670. border-width:0px;
  11671. position:absolute;
  11672. left:1896px;
  11673. top:293px;
  11674. width:11px;
  11675. height:11px;
  11676. display:flex;
  11677. }
  11678. #u34664 .text {
  11679. position:absolute;
  11680. align-self:center;
  11681. padding:2px 2px 2px 2px;
  11682. box-sizing:border-box;
  11683. width:100%;
  11684. }
  11685. #u34664_text {
  11686. border-width:0px;
  11687. word-wrap:break-word;
  11688. text-transform:none;
  11689. visibility:hidden;
  11690. }
  11691. #u34665_img {
  11692. border-width:0px;
  11693. position:absolute;
  11694. left:0px;
  11695. top:0px;
  11696. width:11px;
  11697. height:11px;
  11698. }
  11699. #u34665 {
  11700. border-width:0px;
  11701. position:absolute;
  11702. left:1896px;
  11703. top:334px;
  11704. width:11px;
  11705. height:11px;
  11706. display:flex;
  11707. }
  11708. #u34665 .text {
  11709. position:absolute;
  11710. align-self:center;
  11711. padding:2px 2px 2px 2px;
  11712. box-sizing:border-box;
  11713. width:100%;
  11714. }
  11715. #u34665_text {
  11716. border-width:0px;
  11717. word-wrap:break-word;
  11718. text-transform:none;
  11719. visibility:hidden;
  11720. }
  11721. #u34666_img {
  11722. border-width:0px;
  11723. position:absolute;
  11724. left:0px;
  11725. top:0px;
  11726. width:2px;
  11727. height:40px;
  11728. }
  11729. #u34666 {
  11730. border-width:0px;
  11731. position:absolute;
  11732. left:1901px;
  11733. top:304px;
  11734. width:1px;
  11735. height:39px;
  11736. display:flex;
  11737. }
  11738. #u34666 .text {
  11739. position:absolute;
  11740. align-self:center;
  11741. padding:2px 2px 2px 2px;
  11742. box-sizing:border-box;
  11743. width:100%;
  11744. }
  11745. #u34666_text {
  11746. border-width:0px;
  11747. word-wrap:break-word;
  11748. text-transform:none;
  11749. visibility:hidden;
  11750. }
  11751. #u34667_img {
  11752. border-width:0px;
  11753. position:absolute;
  11754. left:0px;
  11755. top:0px;
  11756. width:337px;
  11757. height:2px;
  11758. }
  11759. #u34667 {
  11760. border-width:0px;
  11761. position:absolute;
  11762. left:1886px;
  11763. top:384px;
  11764. width:336px;
  11765. height:1px;
  11766. display:flex;
  11767. }
  11768. #u34667 .text {
  11769. position:absolute;
  11770. align-self:center;
  11771. padding:2px 2px 2px 2px;
  11772. box-sizing:border-box;
  11773. width:100%;
  11774. }
  11775. #u34667_text {
  11776. border-width:0px;
  11777. word-wrap:break-word;
  11778. text-transform:none;
  11779. visibility:hidden;
  11780. }
  11781. #u34668_div {
  11782. border-width:0px;
  11783. position:absolute;
  11784. left:0px;
  11785. top:0px;
  11786. width:108px;
  11787. height:30px;
  11788. background:inherit;
  11789. background-color:rgba(255, 255, 255, 0);
  11790. border:none;
  11791. border-left:0px;
  11792. border-top:0px;
  11793. border-right:0px;
  11794. border-radius:0px;
  11795. border-bottom-right-radius:0px;
  11796. border-bottom-left-radius:0px;
  11797. -moz-box-shadow:none;
  11798. -webkit-box-shadow:none;
  11799. box-shadow:none;
  11800. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11801. font-weight:500;
  11802. font-style:normal;
  11803. font-size:14px;
  11804. line-height:30px;
  11805. }
  11806. #u34668 {
  11807. border-width:0px;
  11808. position:absolute;
  11809. left:1890px;
  11810. top:395px;
  11811. width:108px;
  11812. height:30px;
  11813. display:flex;
  11814. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11815. font-weight:500;
  11816. font-style:normal;
  11817. font-size:14px;
  11818. line-height:30px;
  11819. }
  11820. #u34668 .text {
  11821. position:absolute;
  11822. align-self:flex-start;
  11823. padding:0px 0px 0px 0px;
  11824. box-sizing:border-box;
  11825. width:100%;
  11826. }
  11827. #u34668_text {
  11828. border-width:0px;
  11829. white-space:nowrap;
  11830. text-transform:none;
  11831. }
  11832. #u34669 {
  11833. border-width:0px;
  11834. position:absolute;
  11835. left:0px;
  11836. top:0px;
  11837. width:0px;
  11838. height:0px;
  11839. }
  11840. #u34670_div {
  11841. border-width:0px;
  11842. position:absolute;
  11843. left:0px;
  11844. top:0px;
  11845. width:346px;
  11846. height:220px;
  11847. background:inherit;
  11848. background-color:rgba(255, 255, 255, 1);
  11849. border:none;
  11850. border-radius:9px;
  11851. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11852. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11853. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11854. }
  11855. #u34670 {
  11856. border-width:0px;
  11857. position:absolute;
  11858. left:488px;
  11859. top:960px;
  11860. width:346px;
  11861. height:220px;
  11862. display:flex;
  11863. }
  11864. #u34670 .text {
  11865. position:absolute;
  11866. align-self:center;
  11867. padding:2px 2px 2px 2px;
  11868. box-sizing:border-box;
  11869. width:100%;
  11870. }
  11871. #u34670_text {
  11872. border-width:0px;
  11873. word-wrap:break-word;
  11874. text-transform:none;
  11875. visibility:hidden;
  11876. }
  11877. #u34671_div {
  11878. border-width:0px;
  11879. position:absolute;
  11880. left:0px;
  11881. top:0px;
  11882. width:169px;
  11883. height:33px;
  11884. background:inherit;
  11885. background-color:rgba(255, 255, 255, 0);
  11886. border:none;
  11887. border-radius:0px;
  11888. -moz-box-shadow:none;
  11889. -webkit-box-shadow:none;
  11890. box-shadow:none;
  11891. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11892. font-weight:650;
  11893. font-style:normal;
  11894. font-size:24px;
  11895. text-align:center;
  11896. }
  11897. #u34671 {
  11898. border-width:0px;
  11899. position:absolute;
  11900. left:577px;
  11901. top:984px;
  11902. width:169px;
  11903. height:33px;
  11904. display:flex;
  11905. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11906. font-weight:650;
  11907. font-style:normal;
  11908. font-size:24px;
  11909. text-align:center;
  11910. }
  11911. #u34671 .text {
  11912. position:absolute;
  11913. align-self:center;
  11914. padding:0px 0px 0px 0px;
  11915. box-sizing:border-box;
  11916. width:100%;
  11917. }
  11918. #u34671_text {
  11919. border-width:0px;
  11920. white-space:nowrap;
  11921. text-transform:none;
  11922. }
  11923. #u34672_div {
  11924. border-width:0px;
  11925. position:absolute;
  11926. left:0px;
  11927. top:0px;
  11928. width:173px;
  11929. height:60px;
  11930. background:inherit;
  11931. background-color:rgba(255, 255, 255, 0);
  11932. box-sizing:border-box;
  11933. border-width:1px;
  11934. border-style:solid;
  11935. border-color:rgba(215, 215, 215, 1);
  11936. border-left:0px;
  11937. border-bottom:0px;
  11938. border-radius:0px;
  11939. border-top-left-radius:0px;
  11940. border-bottom-right-radius:0px;
  11941. -moz-box-shadow:none;
  11942. -webkit-box-shadow:none;
  11943. box-shadow:none;
  11944. font-family:'ArialMT', 'Arial', sans-serif;
  11945. font-weight:400;
  11946. font-style:normal;
  11947. font-size:22px;
  11948. color:#0099FF;
  11949. text-align:center;
  11950. }
  11951. #u34672 {
  11952. border-width:0px;
  11953. position:absolute;
  11954. left:487px;
  11955. top:1120px;
  11956. width:173px;
  11957. height:60px;
  11958. display:flex;
  11959. font-family:'ArialMT', 'Arial', sans-serif;
  11960. font-weight:400;
  11961. font-style:normal;
  11962. font-size:22px;
  11963. color:#0099FF;
  11964. text-align:center;
  11965. }
  11966. #u34672 .text {
  11967. position:absolute;
  11968. align-self:center;
  11969. padding:0px 0px 0px 0px;
  11970. box-sizing:border-box;
  11971. width:100%;
  11972. }
  11973. #u34672_text {
  11974. border-width:0px;
  11975. word-wrap:break-word;
  11976. text-transform:none;
  11977. }
  11978. #u34673_div {
  11979. border-width:0px;
  11980. position:absolute;
  11981. left:0px;
  11982. top:0px;
  11983. width:300px;
  11984. height:60px;
  11985. background:inherit;
  11986. background-color:rgba(255, 255, 255, 0);
  11987. border:none;
  11988. border-radius:0px;
  11989. -moz-box-shadow:none;
  11990. -webkit-box-shadow:none;
  11991. box-shadow:none;
  11992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11993. font-weight:400;
  11994. font-style:normal;
  11995. font-size:18px;
  11996. color:#555555;
  11997. text-align:center;
  11998. line-height:30px;
  11999. }
  12000. #u34673 {
  12001. border-width:0px;
  12002. position:absolute;
  12003. left:510px;
  12004. top:1032px;
  12005. width:300px;
  12006. height:60px;
  12007. display:flex;
  12008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12009. font-weight:400;
  12010. font-style:normal;
  12011. font-size:18px;
  12012. color:#555555;
  12013. text-align:center;
  12014. line-height:30px;
  12015. }
  12016. #u34673 .text {
  12017. position:absolute;
  12018. align-self:center;
  12019. padding:0px 0px 0px 0px;
  12020. box-sizing:border-box;
  12021. width:100%;
  12022. }
  12023. #u34673_text {
  12024. border-width:0px;
  12025. word-wrap:break-word;
  12026. text-transform:none;
  12027. }
  12028. #u34674_div {
  12029. border-width:0px;
  12030. position:absolute;
  12031. left:0px;
  12032. top:0px;
  12033. width:173px;
  12034. height:60px;
  12035. background:inherit;
  12036. background-color:rgba(255, 255, 255, 0);
  12037. box-sizing:border-box;
  12038. border-width:1px;
  12039. border-style:solid;
  12040. border-color:rgba(215, 215, 215, 1);
  12041. border-left:0px;
  12042. border-right:0px;
  12043. border-bottom:0px;
  12044. border-radius:0px;
  12045. border-top-left-radius:0px;
  12046. border-top-right-radius:0px;
  12047. -moz-box-shadow:none;
  12048. -webkit-box-shadow:none;
  12049. box-shadow:none;
  12050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12051. font-weight:400;
  12052. font-style:normal;
  12053. font-size:22px;
  12054. color:#0099FF;
  12055. text-align:center;
  12056. }
  12057. #u34674 {
  12058. border-width:0px;
  12059. position:absolute;
  12060. left:660px;
  12061. top:1120px;
  12062. width:173px;
  12063. height:60px;
  12064. display:flex;
  12065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12066. font-weight:400;
  12067. font-style:normal;
  12068. font-size:22px;
  12069. color:#0099FF;
  12070. text-align:center;
  12071. }
  12072. #u34674 .text {
  12073. position:absolute;
  12074. align-self:center;
  12075. padding:0px 0px 0px 0px;
  12076. box-sizing:border-box;
  12077. width:100%;
  12078. }
  12079. #u34674_text {
  12080. border-width:0px;
  12081. word-wrap:break-word;
  12082. text-transform:none;
  12083. }
  12084. #u34675 {
  12085. border-width:0px;
  12086. position:absolute;
  12087. left:0px;
  12088. top:0px;
  12089. width:0px;
  12090. height:0px;
  12091. }
  12092. #u34676_div {
  12093. border-width:0px;
  12094. position:absolute;
  12095. left:0px;
  12096. top:0px;
  12097. width:346px;
  12098. height:170px;
  12099. background:inherit;
  12100. background-color:rgba(255, 255, 255, 1);
  12101. border:none;
  12102. border-radius:9px;
  12103. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12104. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12105. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12106. }
  12107. #u34676 {
  12108. border-width:0px;
  12109. position:absolute;
  12110. left:117px;
  12111. top:960px;
  12112. width:346px;
  12113. height:170px;
  12114. display:flex;
  12115. }
  12116. #u34676 .text {
  12117. position:absolute;
  12118. align-self:center;
  12119. padding:2px 2px 2px 2px;
  12120. box-sizing:border-box;
  12121. width:100%;
  12122. }
  12123. #u34676_text {
  12124. border-width:0px;
  12125. word-wrap:break-word;
  12126. text-transform:none;
  12127. visibility:hidden;
  12128. }
  12129. #u34677_div {
  12130. border-width:0px;
  12131. position:absolute;
  12132. left:0px;
  12133. top:0px;
  12134. width:169px;
  12135. height:33px;
  12136. background:inherit;
  12137. background-color:rgba(255, 255, 255, 0);
  12138. border:none;
  12139. border-radius:0px;
  12140. -moz-box-shadow:none;
  12141. -webkit-box-shadow:none;
  12142. box-shadow:none;
  12143. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12144. font-weight:650;
  12145. font-style:normal;
  12146. font-size:24px;
  12147. text-align:center;
  12148. }
  12149. #u34677 {
  12150. border-width:0px;
  12151. position:absolute;
  12152. left:206px;
  12153. top:998px;
  12154. width:169px;
  12155. height:33px;
  12156. display:flex;
  12157. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12158. font-weight:650;
  12159. font-style:normal;
  12160. font-size:24px;
  12161. text-align:center;
  12162. }
  12163. #u34677 .text {
  12164. position:absolute;
  12165. align-self:center;
  12166. padding:0px 0px 0px 0px;
  12167. box-sizing:border-box;
  12168. width:100%;
  12169. }
  12170. #u34677_text {
  12171. border-width:0px;
  12172. white-space:nowrap;
  12173. text-transform:none;
  12174. }
  12175. #u34678_div {
  12176. border-width:0px;
  12177. position:absolute;
  12178. left:0px;
  12179. top:0px;
  12180. width:173px;
  12181. height:60px;
  12182. background:inherit;
  12183. background-color:rgba(255, 255, 255, 0);
  12184. box-sizing:border-box;
  12185. border-width:1px;
  12186. border-style:solid;
  12187. border-color:rgba(215, 215, 215, 1);
  12188. border-left:0px;
  12189. border-bottom:0px;
  12190. border-radius:0px;
  12191. border-top-left-radius:0px;
  12192. border-bottom-right-radius:0px;
  12193. -moz-box-shadow:none;
  12194. -webkit-box-shadow:none;
  12195. box-shadow:none;
  12196. font-family:'ArialMT', 'Arial', sans-serif;
  12197. font-weight:400;
  12198. font-style:normal;
  12199. font-size:22px;
  12200. color:#0099FF;
  12201. text-align:center;
  12202. }
  12203. #u34678 {
  12204. border-width:0px;
  12205. position:absolute;
  12206. left:116px;
  12207. top:1069px;
  12208. width:173px;
  12209. height:60px;
  12210. display:flex;
  12211. font-family:'ArialMT', 'Arial', sans-serif;
  12212. font-weight:400;
  12213. font-style:normal;
  12214. font-size:22px;
  12215. color:#0099FF;
  12216. text-align:center;
  12217. }
  12218. #u34678 .text {
  12219. position:absolute;
  12220. align-self:center;
  12221. padding:0px 0px 0px 0px;
  12222. box-sizing:border-box;
  12223. width:100%;
  12224. }
  12225. #u34678_text {
  12226. border-width:0px;
  12227. word-wrap:break-word;
  12228. text-transform:none;
  12229. }
  12230. #u34679_div {
  12231. border-width:0px;
  12232. position:absolute;
  12233. left:0px;
  12234. top:0px;
  12235. width:173px;
  12236. height:60px;
  12237. background:inherit;
  12238. background-color:rgba(255, 255, 255, 0);
  12239. box-sizing:border-box;
  12240. border-width:1px;
  12241. border-style:solid;
  12242. border-color:rgba(215, 215, 215, 1);
  12243. border-left:0px;
  12244. border-right:0px;
  12245. border-bottom:0px;
  12246. border-radius:0px;
  12247. border-top-left-radius:0px;
  12248. border-top-right-radius:0px;
  12249. -moz-box-shadow:none;
  12250. -webkit-box-shadow:none;
  12251. box-shadow:none;
  12252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12253. font-weight:400;
  12254. font-style:normal;
  12255. font-size:22px;
  12256. color:#0099FF;
  12257. text-align:center;
  12258. }
  12259. #u34679 {
  12260. border-width:0px;
  12261. position:absolute;
  12262. left:289px;
  12263. top:1069px;
  12264. width:173px;
  12265. height:60px;
  12266. display:flex;
  12267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12268. font-weight:400;
  12269. font-style:normal;
  12270. font-size:22px;
  12271. color:#0099FF;
  12272. text-align:center;
  12273. }
  12274. #u34679 .text {
  12275. position:absolute;
  12276. align-self:center;
  12277. padding:0px 0px 0px 0px;
  12278. box-sizing:border-box;
  12279. width:100%;
  12280. }
  12281. #u34679_text {
  12282. border-width:0px;
  12283. word-wrap:break-word;
  12284. text-transform:none;
  12285. }
  12286. #u34680_div {
  12287. border-width:0px;
  12288. position:absolute;
  12289. left:0px;
  12290. top:0px;
  12291. width:457px;
  12292. height:60px;
  12293. background:inherit;
  12294. background-color:rgba(255, 255, 255, 0);
  12295. border:none;
  12296. border-left:0px;
  12297. border-top:0px;
  12298. border-right:0px;
  12299. border-radius:0px;
  12300. border-bottom-right-radius:0px;
  12301. border-bottom-left-radius:0px;
  12302. -moz-box-shadow:none;
  12303. -webkit-box-shadow:none;
  12304. box-shadow:none;
  12305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12306. font-weight:400;
  12307. font-style:normal;
  12308. font-size:14px;
  12309. color:#D9001B;
  12310. line-height:30px;
  12311. }
  12312. #u34680 {
  12313. border-width:0px;
  12314. position:absolute;
  12315. left:126px;
  12316. top:894px;
  12317. width:457px;
  12318. height:60px;
  12319. display:flex;
  12320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12321. font-weight:400;
  12322. font-style:normal;
  12323. font-size:14px;
  12324. color:#D9001B;
  12325. line-height:30px;
  12326. }
  12327. #u34680 .text {
  12328. position:absolute;
  12329. align-self:flex-start;
  12330. padding:0px 0px 0px 0px;
  12331. box-sizing:border-box;
  12332. width:100%;
  12333. }
  12334. #u34680_text {
  12335. border-width:0px;
  12336. white-space:nowrap;
  12337. text-transform:none;
  12338. }