styles.css 107 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1792px;
  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. #u33071_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u33071 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u33071 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u33071_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u33072_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u33072 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u33072 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u33072_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u33073 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u33074_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u33074 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u33074 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u33074_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u33075 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u33076_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u33076 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u33076 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u33076_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u33077_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u33077 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u33077 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u33077_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u33078 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u33079_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u33079 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u33079 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u33079_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u33080_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u33080 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u33080 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u33080_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u33081_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u33081 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u33081 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u33081_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u33082_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u33082 {
  314. border-width:0px;
  315. position:absolute;
  316. left:347px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u33082 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u33082_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u33083_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u33083 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u33083 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u33083_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u33084_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u33084 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u33084 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u33084_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u33085 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u33086_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u33086 {
  428. border-width:0px;
  429. position:absolute;
  430. left:69px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u33086 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u33086_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u33087_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u33087 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u33087 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u33087_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u33088 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u33089_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u33089 {
  510. border-width:0px;
  511. position:absolute;
  512. left:339px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u33089 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u33089_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u33090_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u33090 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u33090 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u33090_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u33091_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u33091 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u33091 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u33091_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u33092 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u33093_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u33093 {
  629. border-width:0px;
  630. position:absolute;
  631. left:251px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u33093 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u33093_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u33094_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u33094 {
  670. border-width:0px;
  671. position:absolute;
  672. left:245px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u33094 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u33094_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u33095 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u33096_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u33096 {
  711. border-width:0px;
  712. position:absolute;
  713. left:157px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u33096 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u33096_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u33097_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u33097 {
  752. border-width:0px;
  753. position:absolute;
  754. left:151px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u33097 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u33097_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u33098_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:736px;
  783. background:inherit;
  784. background-color:rgba(242, 242, 242, 1);
  785. box-sizing:border-box;
  786. border-width:1px;
  787. border-style:solid;
  788. border-color:rgba(242, 242, 242, 1);
  789. border-radius:26px;
  790. border-top-left-radius:0px;
  791. border-top-right-radius:0px;
  792. -moz-box-shadow:none;
  793. -webkit-box-shadow:none;
  794. box-shadow:none;
  795. }
  796. #u33098 {
  797. border-width:0px;
  798. position:absolute;
  799. left:29px;
  800. top:105px;
  801. width:375px;
  802. height:736px;
  803. display:flex;
  804. }
  805. #u33098 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u33098_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u33099 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u33100_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:197px;
  832. height:20px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. }
  844. #u33100 {
  845. border-width:0px;
  846. position:absolute;
  847. left:45px;
  848. top:74px;
  849. width:197px;
  850. height:20px;
  851. display:flex;
  852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  853. font-weight:400;
  854. font-style:normal;
  855. }
  856. #u33100 .text {
  857. position:absolute;
  858. align-self:flex-start;
  859. padding:0px 0px 0px 0px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u33100_text {
  864. border-width:0px;
  865. white-space:nowrap;
  866. text-transform:none;
  867. }
  868. #u33101_img {
  869. border-width:0px;
  870. position:absolute;
  871. left:0px;
  872. top:0px;
  873. width:18px;
  874. height:14px;
  875. }
  876. #u33101 {
  877. border-width:0px;
  878. position:absolute;
  879. left:264px;
  880. top:78px;
  881. width:18px;
  882. height:14px;
  883. display:flex;
  884. }
  885. #u33101 .text {
  886. position:absolute;
  887. align-self:center;
  888. padding:2px 2px 2px 2px;
  889. box-sizing:border-box;
  890. width:100%;
  891. }
  892. #u33101_text {
  893. border-width:0px;
  894. word-wrap:break-word;
  895. text-transform:none;
  896. visibility:hidden;
  897. }
  898. #u33102_div {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:375px;
  904. height:100px;
  905. background:inherit;
  906. background-color:rgba(255, 255, 255, 1);
  907. border:none;
  908. border-bottom:0px;
  909. border-radius:0px;
  910. border-bottom-right-radius:0px;
  911. border-bottom-left-radius:0px;
  912. -moz-box-shadow:none;
  913. -webkit-box-shadow:none;
  914. box-shadow:none;
  915. }
  916. #u33102 {
  917. border-width:0px;
  918. position:absolute;
  919. left:29px;
  920. top:105px;
  921. width:375px;
  922. height:100px;
  923. display:flex;
  924. }
  925. #u33102 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u33102_text {
  933. border-width:0px;
  934. word-wrap:break-word;
  935. text-transform:none;
  936. }
  937. #u33103_img {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:15px;
  943. height:7px;
  944. }
  945. #u33103 {
  946. border-width:0px;
  947. position:absolute;
  948. left:209px;
  949. top:188px;
  950. width:15px;
  951. height:7px;
  952. display:flex;
  953. }
  954. #u33103 .text {
  955. position:absolute;
  956. align-self:center;
  957. padding:2px 2px 2px 2px;
  958. box-sizing:border-box;
  959. width:100%;
  960. }
  961. #u33103_text {
  962. border-width:0px;
  963. word-wrap:break-word;
  964. text-transform:none;
  965. visibility:hidden;
  966. }
  967. #u33104_div {
  968. border-width:0px;
  969. position:absolute;
  970. left:0px;
  971. top:0px;
  972. width:49px;
  973. height:30px;
  974. background:inherit;
  975. background-color:rgba(255, 255, 255, 0);
  976. border:none;
  977. border-radius:0px;
  978. -moz-box-shadow:none;
  979. -webkit-box-shadow:none;
  980. box-shadow:none;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. font-size:12px;
  985. color:#7F7F7F;
  986. }
  987. #u33104 {
  988. border-width:0px;
  989. position:absolute;
  990. left:39px;
  991. top:215px;
  992. width:49px;
  993. height:30px;
  994. display:flex;
  995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  996. font-weight:400;
  997. font-style:normal;
  998. font-size:12px;
  999. color:#7F7F7F;
  1000. }
  1001. #u33104 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:0px 0px 0px 0px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u33104_text {
  1009. border-width:0px;
  1010. white-space:nowrap;
  1011. text-transform:none;
  1012. }
  1013. #u33105 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:0px;
  1019. height:0px;
  1020. }
  1021. #u33106_div {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:0px;
  1025. top:0px;
  1026. width:355px;
  1027. height:128px;
  1028. background:inherit;
  1029. background-color:rgba(255, 255, 255, 1);
  1030. border:none;
  1031. border-radius:10px;
  1032. -moz-box-shadow:none;
  1033. -webkit-box-shadow:none;
  1034. box-shadow:none;
  1035. }
  1036. #u33106 {
  1037. border-width:0px;
  1038. position:absolute;
  1039. left:39px;
  1040. top:245px;
  1041. width:355px;
  1042. height:128px;
  1043. display:flex;
  1044. }
  1045. #u33106 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:2px 2px 2px 2px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u33106_text {
  1053. border-width:0px;
  1054. word-wrap:break-word;
  1055. text-transform:none;
  1056. }
  1057. #u33107_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:19px;
  1063. height:13px;
  1064. background:inherit;
  1065. background-color:rgba(0, 0, 0, 1);
  1066. border:none;
  1067. border-radius:0px;
  1068. -moz-box-shadow:none;
  1069. -webkit-box-shadow:none;
  1070. box-shadow:none;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:9px;
  1075. color:#FFFFFF;
  1076. }
  1077. #u33107 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:375px;
  1081. top:245px;
  1082. width:19px;
  1083. height:13px;
  1084. display:flex;
  1085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:9px;
  1089. color:#FFFFFF;
  1090. }
  1091. #u33107 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:0px 0px 0px 0px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u33107_text {
  1099. border-width:0px;
  1100. white-space:nowrap;
  1101. text-transform:none;
  1102. }
  1103. #u33108_div {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:127px;
  1109. height:30px;
  1110. background:inherit;
  1111. background-color:rgba(255, 255, 255, 0);
  1112. border:none;
  1113. border-left:0px;
  1114. border-top:0px;
  1115. border-right:0px;
  1116. border-radius:0px;
  1117. border-bottom-right-radius:0px;
  1118. border-bottom-left-radius:0px;
  1119. -moz-box-shadow:none;
  1120. -webkit-box-shadow:none;
  1121. box-shadow:none;
  1122. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1123. font-weight:500;
  1124. font-style:normal;
  1125. font-size:14px;
  1126. line-height:30px;
  1127. }
  1128. #u33108 {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:60px;
  1132. top:255px;
  1133. width:127px;
  1134. height:30px;
  1135. display:flex;
  1136. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1137. font-weight:500;
  1138. font-style:normal;
  1139. font-size:14px;
  1140. line-height:30px;
  1141. }
  1142. #u33108 .text {
  1143. position:absolute;
  1144. align-self:flex-start;
  1145. padding:0px 0px 0px 0px;
  1146. box-sizing:border-box;
  1147. width:100%;
  1148. }
  1149. #u33108_text {
  1150. border-width:0px;
  1151. white-space:nowrap;
  1152. text-transform:none;
  1153. }
  1154. #u33109_div {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:325px;
  1160. height:80px;
  1161. background:inherit;
  1162. background-color:rgba(255, 255, 255, 0);
  1163. border:none;
  1164. border-left:0px;
  1165. border-top:0px;
  1166. border-right:0px;
  1167. border-radius:0px;
  1168. border-bottom-right-radius:0px;
  1169. border-bottom-left-radius:0px;
  1170. -moz-box-shadow:none;
  1171. -webkit-box-shadow:none;
  1172. box-shadow:none;
  1173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1174. font-weight:400;
  1175. font-style:normal;
  1176. font-size:12px;
  1177. line-height:20px;
  1178. }
  1179. #u33109 {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:59px;
  1183. top:284px;
  1184. width:325px;
  1185. height:80px;
  1186. display:flex;
  1187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1188. font-weight:400;
  1189. font-style:normal;
  1190. font-size:12px;
  1191. line-height:20px;
  1192. }
  1193. #u33109 .text {
  1194. position:absolute;
  1195. align-self:flex-start;
  1196. padding:0px 0px 0px 0px;
  1197. box-sizing:border-box;
  1198. width:100%;
  1199. }
  1200. #u33109_text {
  1201. border-width:0px;
  1202. word-wrap:break-word;
  1203. text-transform:none;
  1204. }
  1205. #u33111_img {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:433px;
  1211. height:865px;
  1212. }
  1213. #u33111 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:453px;
  1217. top:0px;
  1218. width:433px;
  1219. height:865px;
  1220. display:flex;
  1221. }
  1222. #u33111 .text {
  1223. position:absolute;
  1224. align-self:center;
  1225. padding:2px 2px 2px 2px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u33111_text {
  1230. border-width:0px;
  1231. word-wrap:break-word;
  1232. text-transform:none;
  1233. visibility:hidden;
  1234. }
  1235. #u33112_div {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:0px;
  1239. top:0px;
  1240. width:375px;
  1241. height:40px;
  1242. background:inherit;
  1243. background-color:rgba(255, 255, 255, 1);
  1244. border:none;
  1245. border-left:0px;
  1246. border-top:0px;
  1247. border-right:0px;
  1248. border-radius:0px;
  1249. border-bottom-right-radius:0px;
  1250. border-bottom-left-radius:0px;
  1251. -moz-box-shadow:none;
  1252. -webkit-box-shadow:none;
  1253. box-shadow:none;
  1254. }
  1255. #u33112 {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:482px;
  1259. top:67px;
  1260. width:375px;
  1261. height:40px;
  1262. display:flex;
  1263. }
  1264. #u33112 .text {
  1265. position:absolute;
  1266. align-self:center;
  1267. padding:2px 2px 2px 2px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u33112_text {
  1272. border-width:0px;
  1273. word-wrap:break-word;
  1274. text-transform:none;
  1275. visibility:hidden;
  1276. }
  1277. #u33113 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:0px;
  1283. height:0px;
  1284. }
  1285. #u33114_div {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:88px;
  1291. height:32px;
  1292. background:inherit;
  1293. background-color:rgba(255, 255, 255, 1);
  1294. box-sizing:border-box;
  1295. border-width:1px;
  1296. border-style:solid;
  1297. border-color:rgba(242, 242, 242, 1);
  1298. border-radius:33px;
  1299. -moz-box-shadow:none;
  1300. -webkit-box-shadow:none;
  1301. box-shadow:none;
  1302. }
  1303. #u33114 {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:762px;
  1307. top:71px;
  1308. width:88px;
  1309. height:32px;
  1310. display:flex;
  1311. }
  1312. #u33114 .text {
  1313. position:absolute;
  1314. align-self:center;
  1315. padding:2px 2px 2px 2px;
  1316. box-sizing:border-box;
  1317. width:100%;
  1318. }
  1319. #u33114_text {
  1320. border-width:0px;
  1321. word-wrap:break-word;
  1322. text-transform:none;
  1323. visibility:hidden;
  1324. }
  1325. #u33115 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:0px;
  1329. top:0px;
  1330. width:0px;
  1331. height:0px;
  1332. }
  1333. #u33116_img {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:18px;
  1339. height:18px;
  1340. }
  1341. #u33116 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:825px;
  1345. top:78px;
  1346. width:18px;
  1347. height:18px;
  1348. display:flex;
  1349. }
  1350. #u33116 .text {
  1351. position:absolute;
  1352. align-self:center;
  1353. padding:2px 2px 2px 2px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u33116_text {
  1358. border-width:0px;
  1359. word-wrap:break-word;
  1360. text-transform:none;
  1361. visibility:hidden;
  1362. }
  1363. #u33117_img {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:6px;
  1369. height:6px;
  1370. }
  1371. #u33117 {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:831px;
  1375. top:84px;
  1376. width:6px;
  1377. height:6px;
  1378. display:flex;
  1379. }
  1380. #u33117 .text {
  1381. position:absolute;
  1382. align-self:center;
  1383. padding:2px 2px 2px 2px;
  1384. box-sizing:border-box;
  1385. width:100%;
  1386. }
  1387. #u33117_text {
  1388. border-width:0px;
  1389. word-wrap:break-word;
  1390. text-transform:none;
  1391. visibility:hidden;
  1392. }
  1393. #u33118 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:0px;
  1399. height:0px;
  1400. }
  1401. #u33119_img {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:0px;
  1405. top:0px;
  1406. width:5px;
  1407. height:5px;
  1408. }
  1409. #u33119 {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:776px;
  1413. top:85px;
  1414. width:5px;
  1415. height:5px;
  1416. display:flex;
  1417. }
  1418. #u33119 .text {
  1419. position:absolute;
  1420. align-self:center;
  1421. padding:2px 2px 2px 2px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u33119_text {
  1426. border-width:0px;
  1427. word-wrap:break-word;
  1428. text-transform:none;
  1429. visibility:hidden;
  1430. }
  1431. #u33120_img {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:5px;
  1437. height:5px;
  1438. }
  1439. #u33120 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:792px;
  1443. top:85px;
  1444. width:5px;
  1445. height:5px;
  1446. display:flex;
  1447. }
  1448. #u33120 .text {
  1449. position:absolute;
  1450. align-self:center;
  1451. padding:2px 2px 2px 2px;
  1452. box-sizing:border-box;
  1453. width:100%;
  1454. }
  1455. #u33120_text {
  1456. border-width:0px;
  1457. word-wrap:break-word;
  1458. text-transform:none;
  1459. visibility:hidden;
  1460. }
  1461. #u33121_img {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:0px;
  1465. top:0px;
  1466. width:7px;
  1467. height:7px;
  1468. }
  1469. #u33121 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:783px;
  1473. top:84px;
  1474. width:7px;
  1475. height:7px;
  1476. display:flex;
  1477. }
  1478. #u33121 .text {
  1479. position:absolute;
  1480. align-self:center;
  1481. padding:2px 2px 2px 2px;
  1482. box-sizing:border-box;
  1483. width:100%;
  1484. }
  1485. #u33121_text {
  1486. border-width:0px;
  1487. word-wrap:break-word;
  1488. text-transform:none;
  1489. visibility:hidden;
  1490. }
  1491. #u33122_img {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:0px;
  1495. top:0px;
  1496. width:19px;
  1497. height:2px;
  1498. }
  1499. #u33122 {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:800px;
  1503. top:87px;
  1504. width:18px;
  1505. height:1px;
  1506. display:flex;
  1507. -webkit-transform:rotate(90deg);
  1508. -moz-transform:rotate(90deg);
  1509. -ms-transform:rotate(90deg);
  1510. transform:rotate(90deg);
  1511. }
  1512. #u33122 .text {
  1513. position:absolute;
  1514. align-self:center;
  1515. padding:2px 2px 2px 2px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u33122_text {
  1520. border-width:0px;
  1521. word-wrap:break-word;
  1522. text-transform:none;
  1523. visibility:hidden;
  1524. }
  1525. #u33123_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:375px;
  1531. height:44px;
  1532. }
  1533. #u33123 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:482px;
  1537. top:24px;
  1538. width:375px;
  1539. height:44px;
  1540. display:flex;
  1541. }
  1542. #u33123 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u33123_text {
  1550. border-width:0px;
  1551. word-wrap:break-word;
  1552. text-transform:none;
  1553. visibility:hidden;
  1554. }
  1555. #u33124_div {
  1556. border-width:0px;
  1557. position:absolute;
  1558. left:0px;
  1559. top:0px;
  1560. width:375px;
  1561. height:50px;
  1562. background:inherit;
  1563. background-color:rgba(255, 255, 255, 1);
  1564. box-sizing:border-box;
  1565. border-width:1px;
  1566. border-style:solid;
  1567. border-color:rgba(242, 242, 242, 1);
  1568. border-radius:26px;
  1569. border-top-left-radius:0px;
  1570. border-top-right-radius:0px;
  1571. -moz-box-shadow:none;
  1572. -webkit-box-shadow:none;
  1573. box-shadow:none;
  1574. }
  1575. #u33124 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:482px;
  1579. top:788px;
  1580. width:375px;
  1581. height:50px;
  1582. display:flex;
  1583. }
  1584. #u33124 .text {
  1585. position:absolute;
  1586. align-self:center;
  1587. padding:2px 2px 2px 2px;
  1588. box-sizing:border-box;
  1589. width:100%;
  1590. }
  1591. #u33124_text {
  1592. border-width:0px;
  1593. word-wrap:break-word;
  1594. text-transform:none;
  1595. visibility:hidden;
  1596. }
  1597. #u33125 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:0px;
  1603. height:0px;
  1604. }
  1605. #u33126_img {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:24px;
  1611. height:24px;
  1612. }
  1613. #u33126 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:522px;
  1617. top:792px;
  1618. width:24px;
  1619. height:24px;
  1620. display:flex;
  1621. font-size:8px;
  1622. }
  1623. #u33126 .text {
  1624. position:absolute;
  1625. align-self:center;
  1626. padding:2px 2px 2px 2px;
  1627. box-sizing:border-box;
  1628. width:100%;
  1629. }
  1630. #u33126_text {
  1631. border-width:0px;
  1632. word-wrap:break-word;
  1633. text-transform:none;
  1634. }
  1635. #u33127_div {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:25px;
  1641. height:17px;
  1642. background:inherit;
  1643. background-color:rgba(255, 255, 255, 0);
  1644. border:none;
  1645. border-radius:0px;
  1646. -moz-box-shadow:none;
  1647. -webkit-box-shadow:none;
  1648. box-shadow:none;
  1649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1650. font-weight:400;
  1651. font-style:normal;
  1652. font-size:12px;
  1653. }
  1654. #u33127 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:522px;
  1658. top:817px;
  1659. width:25px;
  1660. height:17px;
  1661. display:flex;
  1662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1663. font-weight:400;
  1664. font-style:normal;
  1665. font-size:12px;
  1666. }
  1667. #u33127 .text {
  1668. position:absolute;
  1669. align-self:flex-start;
  1670. padding:0px 0px 0px 0px;
  1671. box-sizing:border-box;
  1672. width:100%;
  1673. }
  1674. #u33127_text {
  1675. border-width:0px;
  1676. white-space:nowrap;
  1677. text-transform:none;
  1678. }
  1679. #u33128 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:0px;
  1685. height:0px;
  1686. }
  1687. #u33129_img {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:24px;
  1693. height:24px;
  1694. }
  1695. #u33129 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:792px;
  1699. top:794px;
  1700. width:24px;
  1701. height:24px;
  1702. display:flex;
  1703. font-size:8px;
  1704. }
  1705. #u33129 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 2px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u33129_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u33130_div {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:25px;
  1723. height:17px;
  1724. background:inherit;
  1725. background-color:rgba(255, 255, 255, 0);
  1726. border:none;
  1727. border-radius:0px;
  1728. -moz-box-shadow:none;
  1729. -webkit-box-shadow:none;
  1730. box-shadow:none;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:12px;
  1735. }
  1736. #u33130 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:792px;
  1740. top:819px;
  1741. width:25px;
  1742. height:17px;
  1743. display:flex;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:12px;
  1748. }
  1749. #u33130 .text {
  1750. position:absolute;
  1751. align-self:flex-start;
  1752. padding:0px 0px 0px 0px;
  1753. box-sizing:border-box;
  1754. width:100%;
  1755. }
  1756. #u33130_text {
  1757. border-width:0px;
  1758. white-space:nowrap;
  1759. text-transform:none;
  1760. }
  1761. #u33131_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:375px;
  1767. height:681px;
  1768. background:inherit;
  1769. background-color:rgba(242, 242, 242, 0.462745098039216);
  1770. border:none;
  1771. border-radius:0px;
  1772. -moz-box-shadow:none;
  1773. -webkit-box-shadow:none;
  1774. box-shadow:none;
  1775. }
  1776. #u33131 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:482px;
  1780. top:107px;
  1781. width:375px;
  1782. height:681px;
  1783. display:flex;
  1784. }
  1785. #u33131 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u33131_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u33132 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:0px;
  1804. height:0px;
  1805. }
  1806. #u33133_img {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:24px;
  1812. height:24px;
  1813. }
  1814. #u33133 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:704px;
  1818. top:792px;
  1819. width:24px;
  1820. height:24px;
  1821. display:flex;
  1822. font-size:8px;
  1823. }
  1824. #u33133 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:2px 2px 2px 2px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u33133_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. }
  1836. #u33134_div {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:37px;
  1842. height:17px;
  1843. background:inherit;
  1844. background-color:rgba(255, 255, 255, 0);
  1845. border:none;
  1846. border-radius:0px;
  1847. -moz-box-shadow:none;
  1848. -webkit-box-shadow:none;
  1849. box-shadow:none;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:12px;
  1854. }
  1855. #u33134 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:698px;
  1859. top:817px;
  1860. width:37px;
  1861. height:17px;
  1862. display:flex;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:12px;
  1867. }
  1868. #u33134 .text {
  1869. position:absolute;
  1870. align-self:flex-start;
  1871. padding:0px 0px 0px 0px;
  1872. box-sizing:border-box;
  1873. width:100%;
  1874. }
  1875. #u33134_text {
  1876. border-width:0px;
  1877. white-space:nowrap;
  1878. text-transform:none;
  1879. }
  1880. #u33135 {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:0px;
  1886. height:0px;
  1887. }
  1888. #u33136_img {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:24px;
  1894. height:24px;
  1895. }
  1896. #u33136 {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:610px;
  1900. top:792px;
  1901. width:24px;
  1902. height:24px;
  1903. display:flex;
  1904. font-size:8px;
  1905. }
  1906. #u33136 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:2px 2px 2px 2px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u33136_text {
  1914. border-width:0px;
  1915. word-wrap:break-word;
  1916. text-transform:none;
  1917. }
  1918. #u33137_div {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:37px;
  1924. height:17px;
  1925. background:inherit;
  1926. background-color:rgba(255, 255, 255, 0);
  1927. border:none;
  1928. border-radius:0px;
  1929. -moz-box-shadow:none;
  1930. -webkit-box-shadow:none;
  1931. box-shadow:none;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:12px;
  1936. }
  1937. #u33137 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:604px;
  1941. top:817px;
  1942. width:37px;
  1943. height:17px;
  1944. display:flex;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:12px;
  1949. }
  1950. #u33137 .text {
  1951. position:absolute;
  1952. align-self:flex-start;
  1953. padding:0px 0px 0px 0px;
  1954. box-sizing:border-box;
  1955. width:100%;
  1956. }
  1957. #u33137_text {
  1958. border-width:0px;
  1959. white-space:nowrap;
  1960. text-transform:none;
  1961. }
  1962. #u33138_div {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:375px;
  1968. height:736px;
  1969. background:inherit;
  1970. background-color:rgba(242, 242, 242, 1);
  1971. box-sizing:border-box;
  1972. border-width:1px;
  1973. border-style:solid;
  1974. border-color:rgba(242, 242, 242, 1);
  1975. border-radius:26px;
  1976. border-top-left-radius:0px;
  1977. border-top-right-radius:0px;
  1978. -moz-box-shadow:none;
  1979. -webkit-box-shadow:none;
  1980. box-shadow:none;
  1981. }
  1982. #u33138 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:482px;
  1986. top:105px;
  1987. width:375px;
  1988. height:736px;
  1989. display:flex;
  1990. }
  1991. #u33138 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 2px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u33138_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. visibility:hidden;
  2003. }
  2004. #u33139 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:0px;
  2010. height:0px;
  2011. }
  2012. #u33140_div {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:197px;
  2018. height:20px;
  2019. background:inherit;
  2020. background-color:rgba(255, 255, 255, 0);
  2021. border:none;
  2022. border-radius:0px;
  2023. -moz-box-shadow:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. }
  2030. #u33140 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:498px;
  2034. top:74px;
  2035. width:197px;
  2036. height:20px;
  2037. display:flex;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. }
  2042. #u33140 .text {
  2043. position:absolute;
  2044. align-self:flex-start;
  2045. padding:0px 0px 0px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u33140_text {
  2050. border-width:0px;
  2051. white-space:nowrap;
  2052. text-transform:none;
  2053. }
  2054. #u33141_img {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:18px;
  2060. height:14px;
  2061. }
  2062. #u33141 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:717px;
  2066. top:78px;
  2067. width:18px;
  2068. height:14px;
  2069. display:flex;
  2070. }
  2071. #u33141 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 2px 2px 2px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u33141_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. visibility:hidden;
  2083. }
  2084. #u33142 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:0px;
  2090. height:0px;
  2091. }
  2092. #u33143_div {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:0px;
  2096. top:0px;
  2097. width:375px;
  2098. height:30px;
  2099. background:inherit;
  2100. background-color:rgba(255, 255, 255, 1);
  2101. border:none;
  2102. border-bottom:0px;
  2103. border-radius:0px;
  2104. border-bottom-right-radius:0px;
  2105. border-bottom-left-radius:0px;
  2106. -moz-box-shadow:none;
  2107. -webkit-box-shadow:none;
  2108. box-shadow:none;
  2109. }
  2110. #u33143 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:482px;
  2114. top:105px;
  2115. width:375px;
  2116. height:30px;
  2117. display:flex;
  2118. }
  2119. #u33143 .text {
  2120. position:absolute;
  2121. align-self:center;
  2122. padding:2px 2px 2px 2px;
  2123. box-sizing:border-box;
  2124. width:100%;
  2125. }
  2126. #u33143_text {
  2127. border-width:0px;
  2128. word-wrap:break-word;
  2129. text-transform:none;
  2130. }
  2131. #u33144_img {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:15px;
  2137. height:7px;
  2138. }
  2139. #u33144 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:666px;
  2143. top:117px;
  2144. width:15px;
  2145. height:7px;
  2146. display:flex;
  2147. -webkit-transform:rotate(180deg);
  2148. -moz-transform:rotate(180deg);
  2149. -ms-transform:rotate(180deg);
  2150. transform:rotate(180deg);
  2151. }
  2152. #u33144 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 2px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u33144_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. visibility:hidden;
  2164. }
  2165. #u33146_img {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:0px;
  2169. top:0px;
  2170. width:433px;
  2171. height:865px;
  2172. }
  2173. #u33146 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:906px;
  2177. top:0px;
  2178. width:433px;
  2179. height:865px;
  2180. display:flex;
  2181. }
  2182. #u33146 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 2px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u33146_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. visibility:hidden;
  2194. }
  2195. #u33147_div {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:375px;
  2201. height:40px;
  2202. background:inherit;
  2203. background-color:rgba(255, 255, 255, 1);
  2204. border:none;
  2205. border-left:0px;
  2206. border-top:0px;
  2207. border-right:0px;
  2208. border-radius:0px;
  2209. border-bottom-right-radius:0px;
  2210. border-bottom-left-radius:0px;
  2211. -moz-box-shadow:none;
  2212. -webkit-box-shadow:none;
  2213. box-shadow:none;
  2214. }
  2215. #u33147 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:935px;
  2219. top:67px;
  2220. width:375px;
  2221. height:40px;
  2222. display:flex;
  2223. }
  2224. #u33147 .text {
  2225. position:absolute;
  2226. align-self:center;
  2227. padding:2px 2px 2px 2px;
  2228. box-sizing:border-box;
  2229. width:100%;
  2230. }
  2231. #u33147_text {
  2232. border-width:0px;
  2233. word-wrap:break-word;
  2234. text-transform:none;
  2235. visibility:hidden;
  2236. }
  2237. #u33148 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:0px;
  2243. height:0px;
  2244. }
  2245. #u33149_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:88px;
  2251. height:32px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 1);
  2254. box-sizing:border-box;
  2255. border-width:1px;
  2256. border-style:solid;
  2257. border-color:rgba(242, 242, 242, 1);
  2258. border-radius:33px;
  2259. -moz-box-shadow:none;
  2260. -webkit-box-shadow:none;
  2261. box-shadow:none;
  2262. }
  2263. #u33149 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:1215px;
  2267. top:71px;
  2268. width:88px;
  2269. height:32px;
  2270. display:flex;
  2271. }
  2272. #u33149 .text {
  2273. position:absolute;
  2274. align-self:center;
  2275. padding:2px 2px 2px 2px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u33149_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. visibility:hidden;
  2284. }
  2285. #u33150 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:0px;
  2291. height:0px;
  2292. }
  2293. #u33151_img {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:18px;
  2299. height:18px;
  2300. }
  2301. #u33151 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:1278px;
  2305. top:78px;
  2306. width:18px;
  2307. height:18px;
  2308. display:flex;
  2309. }
  2310. #u33151 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 2px 2px 2px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u33151_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. visibility:hidden;
  2322. }
  2323. #u33152_img {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:6px;
  2329. height:6px;
  2330. }
  2331. #u33152 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:1284px;
  2335. top:84px;
  2336. width:6px;
  2337. height:6px;
  2338. display:flex;
  2339. }
  2340. #u33152 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 2px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u33152_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. visibility:hidden;
  2352. }
  2353. #u33153 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:0px;
  2359. height:0px;
  2360. }
  2361. #u33154_img {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:5px;
  2367. height:5px;
  2368. }
  2369. #u33154 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:1229px;
  2373. top:85px;
  2374. width:5px;
  2375. height:5px;
  2376. display:flex;
  2377. }
  2378. #u33154 .text {
  2379. position:absolute;
  2380. align-self:center;
  2381. padding:2px 2px 2px 2px;
  2382. box-sizing:border-box;
  2383. width:100%;
  2384. }
  2385. #u33154_text {
  2386. border-width:0px;
  2387. word-wrap:break-word;
  2388. text-transform:none;
  2389. visibility:hidden;
  2390. }
  2391. #u33155_img {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:5px;
  2397. height:5px;
  2398. }
  2399. #u33155 {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:1245px;
  2403. top:85px;
  2404. width:5px;
  2405. height:5px;
  2406. display:flex;
  2407. }
  2408. #u33155 .text {
  2409. position:absolute;
  2410. align-self:center;
  2411. padding:2px 2px 2px 2px;
  2412. box-sizing:border-box;
  2413. width:100%;
  2414. }
  2415. #u33155_text {
  2416. border-width:0px;
  2417. word-wrap:break-word;
  2418. text-transform:none;
  2419. visibility:hidden;
  2420. }
  2421. #u33156_img {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:7px;
  2427. height:7px;
  2428. }
  2429. #u33156 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:1236px;
  2433. top:84px;
  2434. width:7px;
  2435. height:7px;
  2436. display:flex;
  2437. }
  2438. #u33156 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 2px 2px 2px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u33156_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. visibility:hidden;
  2450. }
  2451. #u33157_img {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:19px;
  2457. height:2px;
  2458. }
  2459. #u33157 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:1253px;
  2463. top:87px;
  2464. width:18px;
  2465. height:1px;
  2466. display:flex;
  2467. -webkit-transform:rotate(90deg);
  2468. -moz-transform:rotate(90deg);
  2469. -ms-transform:rotate(90deg);
  2470. transform:rotate(90deg);
  2471. }
  2472. #u33157 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 2px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u33157_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. visibility:hidden;
  2484. }
  2485. #u33158_img {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:375px;
  2491. height:44px;
  2492. }
  2493. #u33158 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:935px;
  2497. top:24px;
  2498. width:375px;
  2499. height:44px;
  2500. display:flex;
  2501. }
  2502. #u33158 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 2px 2px 2px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u33158_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u33159_div {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:375px;
  2521. height:50px;
  2522. background:inherit;
  2523. background-color:rgba(255, 255, 255, 1);
  2524. box-sizing:border-box;
  2525. border-width:1px;
  2526. border-style:solid;
  2527. border-color:rgba(242, 242, 242, 1);
  2528. border-radius:26px;
  2529. border-top-left-radius:0px;
  2530. border-top-right-radius:0px;
  2531. -moz-box-shadow:none;
  2532. -webkit-box-shadow:none;
  2533. box-shadow:none;
  2534. }
  2535. #u33159 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:935px;
  2539. top:788px;
  2540. width:375px;
  2541. height:50px;
  2542. display:flex;
  2543. }
  2544. #u33159 .text {
  2545. position:absolute;
  2546. align-self:center;
  2547. padding:2px 2px 2px 2px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u33159_text {
  2552. border-width:0px;
  2553. word-wrap:break-word;
  2554. text-transform:none;
  2555. visibility:hidden;
  2556. }
  2557. #u33160 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:0px;
  2563. height:0px;
  2564. }
  2565. #u33161_img {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:0px;
  2570. width:24px;
  2571. height:24px;
  2572. }
  2573. #u33161 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:975px;
  2577. top:792px;
  2578. width:24px;
  2579. height:24px;
  2580. display:flex;
  2581. font-size:8px;
  2582. }
  2583. #u33161 .text {
  2584. position:absolute;
  2585. align-self:center;
  2586. padding:2px 2px 2px 2px;
  2587. box-sizing:border-box;
  2588. width:100%;
  2589. }
  2590. #u33161_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. }
  2595. #u33162_div {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:25px;
  2601. height:17px;
  2602. background:inherit;
  2603. background-color:rgba(255, 255, 255, 0);
  2604. border:none;
  2605. border-radius:0px;
  2606. -moz-box-shadow:none;
  2607. -webkit-box-shadow:none;
  2608. box-shadow:none;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:12px;
  2613. }
  2614. #u33162 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:975px;
  2618. top:817px;
  2619. width:25px;
  2620. height:17px;
  2621. display:flex;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:12px;
  2626. }
  2627. #u33162 .text {
  2628. position:absolute;
  2629. align-self:flex-start;
  2630. padding:0px 0px 0px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u33162_text {
  2635. border-width:0px;
  2636. white-space:nowrap;
  2637. text-transform:none;
  2638. }
  2639. #u33163 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:0px;
  2645. height:0px;
  2646. }
  2647. #u33164_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:24px;
  2653. height:24px;
  2654. }
  2655. #u33164 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:1245px;
  2659. top:794px;
  2660. width:24px;
  2661. height:24px;
  2662. display:flex;
  2663. font-size:8px;
  2664. }
  2665. #u33164 .text {
  2666. position:absolute;
  2667. align-self:center;
  2668. padding:2px 2px 2px 2px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u33164_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. }
  2677. #u33165_div {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:25px;
  2683. height:17px;
  2684. background:inherit;
  2685. background-color:rgba(255, 255, 255, 0);
  2686. border:none;
  2687. border-radius:0px;
  2688. -moz-box-shadow:none;
  2689. -webkit-box-shadow:none;
  2690. box-shadow:none;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:12px;
  2695. }
  2696. #u33165 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:1245px;
  2700. top:819px;
  2701. width:25px;
  2702. height:17px;
  2703. display:flex;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:12px;
  2708. }
  2709. #u33165 .text {
  2710. position:absolute;
  2711. align-self:flex-start;
  2712. padding:0px 0px 0px 0px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u33165_text {
  2717. border-width:0px;
  2718. white-space:nowrap;
  2719. text-transform:none;
  2720. }
  2721. #u33166_div {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:375px;
  2727. height:681px;
  2728. background:inherit;
  2729. background-color:rgba(242, 242, 242, 0.462745098039216);
  2730. border:none;
  2731. border-radius:0px;
  2732. -moz-box-shadow:none;
  2733. -webkit-box-shadow:none;
  2734. box-shadow:none;
  2735. }
  2736. #u33166 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:935px;
  2740. top:107px;
  2741. width:375px;
  2742. height:681px;
  2743. display:flex;
  2744. }
  2745. #u33166 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 2px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u33166_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u33167 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:0px;
  2764. height:0px;
  2765. }
  2766. #u33168_img {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:24px;
  2772. height:24px;
  2773. }
  2774. #u33168 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:1157px;
  2778. top:792px;
  2779. width:24px;
  2780. height:24px;
  2781. display:flex;
  2782. font-size:8px;
  2783. }
  2784. #u33168 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u33168_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. }
  2796. #u33169_div {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:37px;
  2802. height:17px;
  2803. background:inherit;
  2804. background-color:rgba(255, 255, 255, 0);
  2805. border:none;
  2806. border-radius:0px;
  2807. -moz-box-shadow:none;
  2808. -webkit-box-shadow:none;
  2809. box-shadow:none;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:12px;
  2814. }
  2815. #u33169 {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:1151px;
  2819. top:817px;
  2820. width:37px;
  2821. height:17px;
  2822. display:flex;
  2823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2824. font-weight:400;
  2825. font-style:normal;
  2826. font-size:12px;
  2827. }
  2828. #u33169 .text {
  2829. position:absolute;
  2830. align-self:flex-start;
  2831. padding:0px 0px 0px 0px;
  2832. box-sizing:border-box;
  2833. width:100%;
  2834. }
  2835. #u33169_text {
  2836. border-width:0px;
  2837. white-space:nowrap;
  2838. text-transform:none;
  2839. }
  2840. #u33170 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:0px;
  2846. height:0px;
  2847. }
  2848. #u33171_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:24px;
  2854. height:24px;
  2855. }
  2856. #u33171 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:1063px;
  2860. top:792px;
  2861. width:24px;
  2862. height:24px;
  2863. display:flex;
  2864. font-size:8px;
  2865. }
  2866. #u33171 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u33171_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. }
  2878. #u33172_div {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:37px;
  2884. height:17px;
  2885. background:inherit;
  2886. background-color:rgba(255, 255, 255, 0);
  2887. border:none;
  2888. border-radius:0px;
  2889. -moz-box-shadow:none;
  2890. -webkit-box-shadow:none;
  2891. box-shadow:none;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:12px;
  2896. }
  2897. #u33172 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:1057px;
  2901. top:817px;
  2902. width:37px;
  2903. height:17px;
  2904. display:flex;
  2905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2906. font-weight:400;
  2907. font-style:normal;
  2908. font-size:12px;
  2909. }
  2910. #u33172 .text {
  2911. position:absolute;
  2912. align-self:flex-start;
  2913. padding:0px 0px 0px 0px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u33172_text {
  2918. border-width:0px;
  2919. white-space:nowrap;
  2920. text-transform:none;
  2921. }
  2922. #u33173_div {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:375px;
  2928. height:736px;
  2929. background:inherit;
  2930. background-color:rgba(242, 242, 242, 1);
  2931. box-sizing:border-box;
  2932. border-width:1px;
  2933. border-style:solid;
  2934. border-color:rgba(242, 242, 242, 1);
  2935. border-radius:26px;
  2936. border-top-left-radius:0px;
  2937. border-top-right-radius:0px;
  2938. -moz-box-shadow:none;
  2939. -webkit-box-shadow:none;
  2940. box-shadow:none;
  2941. }
  2942. #u33173 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:935px;
  2946. top:105px;
  2947. width:375px;
  2948. height:736px;
  2949. display:flex;
  2950. }
  2951. #u33173 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 2px 2px 2px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u33173_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. visibility:hidden;
  2963. }
  2964. #u33174 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:0px;
  2970. height:0px;
  2971. }
  2972. #u33175_div {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:197px;
  2978. height:20px;
  2979. background:inherit;
  2980. background-color:rgba(255, 255, 255, 0);
  2981. border:none;
  2982. border-radius:0px;
  2983. -moz-box-shadow:none;
  2984. -webkit-box-shadow:none;
  2985. box-shadow:none;
  2986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2987. font-weight:400;
  2988. font-style:normal;
  2989. }
  2990. #u33175 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:951px;
  2994. top:74px;
  2995. width:197px;
  2996. height:20px;
  2997. display:flex;
  2998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. }
  3002. #u33175 .text {
  3003. position:absolute;
  3004. align-self:flex-start;
  3005. padding:0px 0px 0px 0px;
  3006. box-sizing:border-box;
  3007. width:100%;
  3008. }
  3009. #u33175_text {
  3010. border-width:0px;
  3011. white-space:nowrap;
  3012. text-transform:none;
  3013. }
  3014. #u33176_img {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:18px;
  3020. height:14px;
  3021. }
  3022. #u33176 {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:1170px;
  3026. top:78px;
  3027. width:18px;
  3028. height:14px;
  3029. display:flex;
  3030. }
  3031. #u33176 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:2px 2px 2px 2px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u33176_text {
  3039. border-width:0px;
  3040. word-wrap:break-word;
  3041. text-transform:none;
  3042. visibility:hidden;
  3043. }
  3044. #u33177 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:0px;
  3050. height:0px;
  3051. }
  3052. #u33178_div {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:375px;
  3058. height:30px;
  3059. background:inherit;
  3060. background-color:rgba(255, 255, 255, 1);
  3061. border:none;
  3062. border-bottom:0px;
  3063. border-radius:0px;
  3064. border-bottom-right-radius:0px;
  3065. border-bottom-left-radius:0px;
  3066. -moz-box-shadow:none;
  3067. -webkit-box-shadow:none;
  3068. box-shadow:none;
  3069. }
  3070. #u33178 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:935px;
  3074. top:105px;
  3075. width:375px;
  3076. height:30px;
  3077. display:flex;
  3078. }
  3079. #u33178 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 2px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u33178_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. }
  3091. #u33179_img {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:15px;
  3097. height:7px;
  3098. }
  3099. #u33179 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:1119px;
  3103. top:117px;
  3104. width:15px;
  3105. height:7px;
  3106. display:flex;
  3107. -webkit-transform:rotate(180deg);
  3108. -moz-transform:rotate(180deg);
  3109. -ms-transform:rotate(180deg);
  3110. transform:rotate(180deg);
  3111. }
  3112. #u33179 .text {
  3113. position:absolute;
  3114. align-self:center;
  3115. padding:2px 2px 2px 2px;
  3116. box-sizing:border-box;
  3117. width:100%;
  3118. }
  3119. #u33179_text {
  3120. border-width:0px;
  3121. word-wrap:break-word;
  3122. text-transform:none;
  3123. visibility:hidden;
  3124. }
  3125. #u33180_div {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:0px;
  3129. top:0px;
  3130. width:49px;
  3131. height:30px;
  3132. background:inherit;
  3133. background-color:rgba(255, 255, 255, 0);
  3134. border:none;
  3135. border-radius:0px;
  3136. -moz-box-shadow:none;
  3137. -webkit-box-shadow:none;
  3138. box-shadow:none;
  3139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:12px;
  3143. color:#7F7F7F;
  3144. }
  3145. #u33180 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:945px;
  3149. top:145px;
  3150. width:49px;
  3151. height:30px;
  3152. display:flex;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:12px;
  3157. color:#7F7F7F;
  3158. }
  3159. #u33180 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:0px 0px 0px 0px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u33180_text {
  3167. border-width:0px;
  3168. white-space:nowrap;
  3169. text-transform:none;
  3170. }
  3171. #u33181_div {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:81px;
  3177. height:30px;
  3178. background:inherit;
  3179. background-color:rgba(51, 51, 51, 0.545098039215686);
  3180. border:none;
  3181. border-right:0px;
  3182. border-radius:23px;
  3183. border-top-right-radius:0px;
  3184. border-bottom-right-radius:0px;
  3185. -moz-box-shadow:none;
  3186. -webkit-box-shadow:none;
  3187. box-shadow:none;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. color:#FFFFFF;
  3192. }
  3193. #u33181 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:1229px;
  3197. top:115px;
  3198. width:81px;
  3199. height:30px;
  3200. display:flex;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. color:#FFFFFF;
  3205. }
  3206. #u33181 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:0px 5px 0px 5px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u33181_text {
  3214. border-width:0px;
  3215. white-space:nowrap;
  3216. text-transform:none;
  3217. }
  3218. #u33182_div {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:169px;
  3224. height:30px;
  3225. background:inherit;
  3226. background-color:rgba(255, 255, 255, 0);
  3227. border:none;
  3228. border-radius:0px;
  3229. -moz-box-shadow:none;
  3230. -webkit-box-shadow:none;
  3231. box-shadow:none;
  3232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3233. font-weight:400;
  3234. font-style:normal;
  3235. font-size:12px;
  3236. color:#D9001B;
  3237. }
  3238. #u33182 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:1095px;
  3242. top:149px;
  3243. width:169px;
  3244. height:30px;
  3245. display:flex;
  3246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3247. font-weight:400;
  3248. font-style:normal;
  3249. font-size:12px;
  3250. color:#D9001B;
  3251. }
  3252. #u33182 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:0px 0px 0px 0px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u33182_text {
  3260. border-width:0px;
  3261. white-space:nowrap;
  3262. text-transform:none;
  3263. }
  3264. #u33183 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:1229px;
  3268. top:130px;
  3269. width:0px;
  3270. height:0px;
  3271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. font-size:12px;
  3275. color:#333333;
  3276. }
  3277. #u33183_seg0 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:-54px;
  3281. top:-5px;
  3282. width:54px;
  3283. height:10px;
  3284. }
  3285. #u33183_seg1 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:-54px;
  3289. top:-5px;
  3290. width:10px;
  3291. height:24px;
  3292. }
  3293. #u33183_seg2 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:-58px;
  3297. top:9px;
  3298. width:18px;
  3299. height:18px;
  3300. }
  3301. #u33183_text {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:-84px;
  3305. top:-8px;
  3306. width:100px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. visibility:hidden;
  3310. }
  3311. #u33184 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:0px;
  3317. height:0px;
  3318. }
  3319. #u33185_div {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:61px;
  3325. height:14px;
  3326. background:inherit;
  3327. background-color:rgba(255, 255, 255, 0);
  3328. border:none;
  3329. border-left:0px;
  3330. border-top:0px;
  3331. border-right:0px;
  3332. border-radius:0px;
  3333. border-bottom-right-radius:0px;
  3334. border-bottom-left-radius:0px;
  3335. -moz-box-shadow:none;
  3336. -webkit-box-shadow:none;
  3337. box-shadow:none;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:10px;
  3342. text-align:center;
  3343. }
  3344. #u33185 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:46px;
  3348. top:160px;
  3349. width:61px;
  3350. height:14px;
  3351. display:flex;
  3352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:10px;
  3356. text-align:center;
  3357. }
  3358. #u33185 .text {
  3359. position:absolute;
  3360. align-self:flex-start;
  3361. padding:0px 0px 0px 0px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u33185_text {
  3366. border-width:0px;
  3367. white-space:nowrap;
  3368. text-transform:none;
  3369. }
  3370. #u33186_img {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:30px;
  3376. height:30px;
  3377. }
  3378. #u33186 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:61px;
  3382. top:120px;
  3383. width:30px;
  3384. height:30px;
  3385. display:flex;
  3386. }
  3387. #u33186 .text {
  3388. position:absolute;
  3389. align-self:center;
  3390. padding:2px 2px 2px 2px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u33186_text {
  3395. border-width:0px;
  3396. word-wrap:break-word;
  3397. text-transform:none;
  3398. visibility:hidden;
  3399. }
  3400. #u33187_div {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:9px;
  3406. height:11px;
  3407. background:inherit;
  3408. background-color:rgba(217, 0, 27, 1);
  3409. border:none;
  3410. border-radius:4px;
  3411. -moz-box-shadow:none;
  3412. -webkit-box-shadow:none;
  3413. box-shadow:none;
  3414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:8px;
  3418. color:#FFFFFF;
  3419. text-align:center;
  3420. }
  3421. #u33187 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:85px;
  3425. top:115px;
  3426. width:9px;
  3427. height:11px;
  3428. display:flex;
  3429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3430. font-weight:400;
  3431. font-style:normal;
  3432. font-size:8px;
  3433. color:#FFFFFF;
  3434. text-align:center;
  3435. }
  3436. #u33187 .text {
  3437. position:absolute;
  3438. align-self:flex-start;
  3439. padding:0px 0px 0px 0px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u33187_text {
  3444. border-width:0px;
  3445. white-space:nowrap;
  3446. text-transform:none;
  3447. }
  3448. #u33188_div {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:49px;
  3454. height:30px;
  3455. background:inherit;
  3456. background-color:rgba(255, 255, 255, 0);
  3457. border:none;
  3458. border-radius:0px;
  3459. -moz-box-shadow:none;
  3460. -webkit-box-shadow:none;
  3461. box-shadow:none;
  3462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:12px;
  3466. color:#7F7F7F;
  3467. }
  3468. #u33188 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:492px;
  3472. top:142px;
  3473. width:49px;
  3474. height:30px;
  3475. display:flex;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:12px;
  3480. color:#7F7F7F;
  3481. }
  3482. #u33188 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:0px 0px 0px 0px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u33188_text {
  3490. border-width:0px;
  3491. white-space:nowrap;
  3492. text-transform:none;
  3493. }
  3494. #u33189 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:0px;
  3500. height:0px;
  3501. }
  3502. #u33190_div {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:355px;
  3508. height:128px;
  3509. background:inherit;
  3510. background-color:rgba(255, 255, 255, 1);
  3511. border:none;
  3512. border-radius:10px;
  3513. -moz-box-shadow:none;
  3514. -webkit-box-shadow:none;
  3515. box-shadow:none;
  3516. }
  3517. #u33190 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:492px;
  3521. top:172px;
  3522. width:355px;
  3523. height:128px;
  3524. display:flex;
  3525. }
  3526. #u33190 .text {
  3527. position:absolute;
  3528. align-self:center;
  3529. padding:2px 2px 2px 2px;
  3530. box-sizing:border-box;
  3531. width:100%;
  3532. }
  3533. #u33190_text {
  3534. border-width:0px;
  3535. word-wrap:break-word;
  3536. text-transform:none;
  3537. }
  3538. #u33191_div {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:19px;
  3544. height:13px;
  3545. background:inherit;
  3546. background-color:rgba(0, 0, 0, 1);
  3547. border:none;
  3548. border-radius:0px;
  3549. -moz-box-shadow:none;
  3550. -webkit-box-shadow:none;
  3551. box-shadow:none;
  3552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:9px;
  3556. color:#FFFFFF;
  3557. }
  3558. #u33191 {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:828px;
  3562. top:172px;
  3563. width:19px;
  3564. height:13px;
  3565. display:flex;
  3566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3567. font-weight:400;
  3568. font-style:normal;
  3569. font-size:9px;
  3570. color:#FFFFFF;
  3571. }
  3572. #u33191 .text {
  3573. position:absolute;
  3574. align-self:center;
  3575. padding:0px 0px 0px 0px;
  3576. box-sizing:border-box;
  3577. width:100%;
  3578. }
  3579. #u33191_text {
  3580. border-width:0px;
  3581. white-space:nowrap;
  3582. text-transform:none;
  3583. }
  3584. #u33192_div {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:127px;
  3590. height:30px;
  3591. background:inherit;
  3592. background-color:rgba(255, 255, 255, 0);
  3593. border:none;
  3594. border-left:0px;
  3595. border-top:0px;
  3596. border-right:0px;
  3597. border-radius:0px;
  3598. border-bottom-right-radius:0px;
  3599. border-bottom-left-radius:0px;
  3600. -moz-box-shadow:none;
  3601. -webkit-box-shadow:none;
  3602. box-shadow:none;
  3603. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3604. font-weight:500;
  3605. font-style:normal;
  3606. font-size:14px;
  3607. line-height:30px;
  3608. }
  3609. #u33192 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:513px;
  3613. top:182px;
  3614. width:127px;
  3615. height:30px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3618. font-weight:500;
  3619. font-style:normal;
  3620. font-size:14px;
  3621. line-height:30px;
  3622. }
  3623. #u33192 .text {
  3624. position:absolute;
  3625. align-self:flex-start;
  3626. padding:0px 0px 0px 0px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u33192_text {
  3631. border-width:0px;
  3632. white-space:nowrap;
  3633. text-transform:none;
  3634. }
  3635. #u33193_div {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:325px;
  3641. height:80px;
  3642. background:inherit;
  3643. background-color:rgba(255, 255, 255, 0);
  3644. border:none;
  3645. border-left:0px;
  3646. border-top:0px;
  3647. border-right:0px;
  3648. border-radius:0px;
  3649. border-bottom-right-radius:0px;
  3650. border-bottom-left-radius:0px;
  3651. -moz-box-shadow:none;
  3652. -webkit-box-shadow:none;
  3653. box-shadow:none;
  3654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:12px;
  3658. line-height:20px;
  3659. }
  3660. #u33193 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:512px;
  3664. top:211px;
  3665. width:325px;
  3666. height:80px;
  3667. display:flex;
  3668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3669. font-weight:400;
  3670. font-style:normal;
  3671. font-size:12px;
  3672. line-height:20px;
  3673. }
  3674. #u33193 .text {
  3675. position:absolute;
  3676. align-self:flex-start;
  3677. padding:0px 0px 0px 0px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u33193_text {
  3682. border-width:0px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. }
  3686. #u33194 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:0px;
  3692. height:0px;
  3693. }
  3694. #u33195_div {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:355px;
  3700. height:128px;
  3701. background:inherit;
  3702. background-color:rgba(255, 255, 255, 1);
  3703. border:none;
  3704. border-radius:10px;
  3705. -moz-box-shadow:none;
  3706. -webkit-box-shadow:none;
  3707. box-shadow:none;
  3708. }
  3709. #u33195 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:945px;
  3713. top:172px;
  3714. width:355px;
  3715. height:128px;
  3716. display:flex;
  3717. }
  3718. #u33195 .text {
  3719. position:absolute;
  3720. align-self:center;
  3721. padding:2px 2px 2px 2px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u33195_text {
  3726. border-width:0px;
  3727. word-wrap:break-word;
  3728. text-transform:none;
  3729. }
  3730. #u33196_div {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:19px;
  3736. height:13px;
  3737. background:inherit;
  3738. background-color:rgba(0, 0, 0, 1);
  3739. border:none;
  3740. border-radius:0px;
  3741. -moz-box-shadow:none;
  3742. -webkit-box-shadow:none;
  3743. box-shadow:none;
  3744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3745. font-weight:400;
  3746. font-style:normal;
  3747. font-size:9px;
  3748. color:#FFFFFF;
  3749. }
  3750. #u33196 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:1281px;
  3754. top:172px;
  3755. width:19px;
  3756. height:13px;
  3757. display:flex;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:9px;
  3762. color:#FFFFFF;
  3763. }
  3764. #u33196 .text {
  3765. position:absolute;
  3766. align-self:center;
  3767. padding:0px 0px 0px 0px;
  3768. box-sizing:border-box;
  3769. width:100%;
  3770. }
  3771. #u33196_text {
  3772. border-width:0px;
  3773. white-space:nowrap;
  3774. text-transform:none;
  3775. }
  3776. #u33197_div {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:127px;
  3782. height:30px;
  3783. background:inherit;
  3784. background-color:rgba(255, 255, 255, 0);
  3785. border:none;
  3786. border-left:0px;
  3787. border-top:0px;
  3788. border-right:0px;
  3789. border-radius:0px;
  3790. border-bottom-right-radius:0px;
  3791. border-bottom-left-radius:0px;
  3792. -moz-box-shadow:none;
  3793. -webkit-box-shadow:none;
  3794. box-shadow:none;
  3795. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3796. font-weight:500;
  3797. font-style:normal;
  3798. font-size:14px;
  3799. line-height:30px;
  3800. }
  3801. #u33197 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:966px;
  3805. top:182px;
  3806. width:127px;
  3807. height:30px;
  3808. display:flex;
  3809. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3810. font-weight:500;
  3811. font-style:normal;
  3812. font-size:14px;
  3813. line-height:30px;
  3814. }
  3815. #u33197 .text {
  3816. position:absolute;
  3817. align-self:flex-start;
  3818. padding:0px 0px 0px 0px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u33197_text {
  3823. border-width:0px;
  3824. white-space:nowrap;
  3825. text-transform:none;
  3826. }
  3827. #u33198_div {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:325px;
  3833. height:80px;
  3834. background:inherit;
  3835. background-color:rgba(255, 255, 255, 0);
  3836. border:none;
  3837. border-left:0px;
  3838. border-top:0px;
  3839. border-right:0px;
  3840. border-radius:0px;
  3841. border-bottom-right-radius:0px;
  3842. border-bottom-left-radius:0px;
  3843. -moz-box-shadow:none;
  3844. -webkit-box-shadow:none;
  3845. box-shadow:none;
  3846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3847. font-weight:400;
  3848. font-style:normal;
  3849. font-size:12px;
  3850. line-height:20px;
  3851. }
  3852. #u33198 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:965px;
  3856. top:211px;
  3857. width:325px;
  3858. height:80px;
  3859. display:flex;
  3860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3861. font-weight:400;
  3862. font-style:normal;
  3863. font-size:12px;
  3864. line-height:20px;
  3865. }
  3866. #u33198 .text {
  3867. position:absolute;
  3868. align-self:flex-start;
  3869. padding:0px 0px 0px 0px;
  3870. box-sizing:border-box;
  3871. width:100%;
  3872. }
  3873. #u33198_text {
  3874. border-width:0px;
  3875. word-wrap:break-word;
  3876. text-transform:none;
  3877. }
  3878. #u33199 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:0px;
  3884. height:0px;
  3885. }
  3886. #u33201_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:433px;
  3892. height:865px;
  3893. }
  3894. #u33201 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:1359px;
  3898. top:0px;
  3899. width:433px;
  3900. height:865px;
  3901. display:flex;
  3902. }
  3903. #u33201 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 2px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u33201_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u33202_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:375px;
  3922. height:40px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 1);
  3925. border:none;
  3926. border-left:0px;
  3927. border-top:0px;
  3928. border-right:0px;
  3929. border-radius:0px;
  3930. border-bottom-right-radius:0px;
  3931. border-bottom-left-radius:0px;
  3932. -moz-box-shadow:none;
  3933. -webkit-box-shadow:none;
  3934. box-shadow:none;
  3935. }
  3936. #u33202 {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:1388px;
  3940. top:67px;
  3941. width:375px;
  3942. height:40px;
  3943. display:flex;
  3944. }
  3945. #u33202 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 2px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u33202_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u33203 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:0px;
  3964. height:0px;
  3965. }
  3966. #u33204_div {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:88px;
  3972. height:32px;
  3973. background:inherit;
  3974. background-color:rgba(255, 255, 255, 1);
  3975. box-sizing:border-box;
  3976. border-width:1px;
  3977. border-style:solid;
  3978. border-color:rgba(242, 242, 242, 1);
  3979. border-radius:33px;
  3980. -moz-box-shadow:none;
  3981. -webkit-box-shadow:none;
  3982. box-shadow:none;
  3983. }
  3984. #u33204 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:1668px;
  3988. top:71px;
  3989. width:88px;
  3990. height:32px;
  3991. display:flex;
  3992. }
  3993. #u33204 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 2px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u33204_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. visibility:hidden;
  4005. }
  4006. #u33205 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:0px;
  4012. height:0px;
  4013. }
  4014. #u33206_img {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:18px;
  4020. height:18px;
  4021. }
  4022. #u33206 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:1731px;
  4026. top:78px;
  4027. width:18px;
  4028. height:18px;
  4029. display:flex;
  4030. }
  4031. #u33206 .text {
  4032. position:absolute;
  4033. align-self:center;
  4034. padding:2px 2px 2px 2px;
  4035. box-sizing:border-box;
  4036. width:100%;
  4037. }
  4038. #u33206_text {
  4039. border-width:0px;
  4040. word-wrap:break-word;
  4041. text-transform:none;
  4042. visibility:hidden;
  4043. }
  4044. #u33207_img {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:6px;
  4050. height:6px;
  4051. }
  4052. #u33207 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:1737px;
  4056. top:84px;
  4057. width:6px;
  4058. height:6px;
  4059. display:flex;
  4060. }
  4061. #u33207 .text {
  4062. position:absolute;
  4063. align-self:center;
  4064. padding:2px 2px 2px 2px;
  4065. box-sizing:border-box;
  4066. width:100%;
  4067. }
  4068. #u33207_text {
  4069. border-width:0px;
  4070. word-wrap:break-word;
  4071. text-transform:none;
  4072. visibility:hidden;
  4073. }
  4074. #u33208 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:0px;
  4080. height:0px;
  4081. }
  4082. #u33209_img {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:0px;
  4086. top:0px;
  4087. width:5px;
  4088. height:5px;
  4089. }
  4090. #u33209 {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:1682px;
  4094. top:85px;
  4095. width:5px;
  4096. height:5px;
  4097. display:flex;
  4098. }
  4099. #u33209 .text {
  4100. position:absolute;
  4101. align-self:center;
  4102. padding:2px 2px 2px 2px;
  4103. box-sizing:border-box;
  4104. width:100%;
  4105. }
  4106. #u33209_text {
  4107. border-width:0px;
  4108. word-wrap:break-word;
  4109. text-transform:none;
  4110. visibility:hidden;
  4111. }
  4112. #u33210_img {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:5px;
  4118. height:5px;
  4119. }
  4120. #u33210 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:1698px;
  4124. top:85px;
  4125. width:5px;
  4126. height:5px;
  4127. display:flex;
  4128. }
  4129. #u33210 .text {
  4130. position:absolute;
  4131. align-self:center;
  4132. padding:2px 2px 2px 2px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u33210_text {
  4137. border-width:0px;
  4138. word-wrap:break-word;
  4139. text-transform:none;
  4140. visibility:hidden;
  4141. }
  4142. #u33211_img {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:7px;
  4148. height:7px;
  4149. }
  4150. #u33211 {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:1689px;
  4154. top:84px;
  4155. width:7px;
  4156. height:7px;
  4157. display:flex;
  4158. }
  4159. #u33211 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:2px 2px 2px 2px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u33211_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. visibility:hidden;
  4171. }
  4172. #u33212_img {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:19px;
  4178. height:2px;
  4179. }
  4180. #u33212 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:1706px;
  4184. top:87px;
  4185. width:18px;
  4186. height:1px;
  4187. display:flex;
  4188. -webkit-transform:rotate(90deg);
  4189. -moz-transform:rotate(90deg);
  4190. -ms-transform:rotate(90deg);
  4191. transform:rotate(90deg);
  4192. }
  4193. #u33212 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 2px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u33212_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u33213_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:375px;
  4212. height:44px;
  4213. }
  4214. #u33213 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:1388px;
  4218. top:24px;
  4219. width:375px;
  4220. height:44px;
  4221. display:flex;
  4222. }
  4223. #u33213 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 2px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u33213_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. visibility:hidden;
  4235. }
  4236. #u33214_div {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:375px;
  4242. height:50px;
  4243. background:inherit;
  4244. background-color:rgba(255, 255, 255, 1);
  4245. box-sizing:border-box;
  4246. border-width:1px;
  4247. border-style:solid;
  4248. border-color:rgba(242, 242, 242, 1);
  4249. border-radius:26px;
  4250. border-top-left-radius:0px;
  4251. border-top-right-radius:0px;
  4252. -moz-box-shadow:none;
  4253. -webkit-box-shadow:none;
  4254. box-shadow:none;
  4255. }
  4256. #u33214 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:1388px;
  4260. top:788px;
  4261. width:375px;
  4262. height:50px;
  4263. display:flex;
  4264. }
  4265. #u33214 .text {
  4266. position:absolute;
  4267. align-self:center;
  4268. padding:2px 2px 2px 2px;
  4269. box-sizing:border-box;
  4270. width:100%;
  4271. }
  4272. #u33214_text {
  4273. border-width:0px;
  4274. word-wrap:break-word;
  4275. text-transform:none;
  4276. visibility:hidden;
  4277. }
  4278. #u33215 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:0px;
  4284. height:0px;
  4285. }
  4286. #u33216_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:24px;
  4292. height:24px;
  4293. }
  4294. #u33216 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:1428px;
  4298. top:792px;
  4299. width:24px;
  4300. height:24px;
  4301. display:flex;
  4302. font-size:8px;
  4303. }
  4304. #u33216 .text {
  4305. position:absolute;
  4306. align-self:center;
  4307. padding:2px 2px 2px 2px;
  4308. box-sizing:border-box;
  4309. width:100%;
  4310. }
  4311. #u33216_text {
  4312. border-width:0px;
  4313. word-wrap:break-word;
  4314. text-transform:none;
  4315. }
  4316. #u33217_div {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:25px;
  4322. height:17px;
  4323. background:inherit;
  4324. background-color:rgba(255, 255, 255, 0);
  4325. border:none;
  4326. border-radius:0px;
  4327. -moz-box-shadow:none;
  4328. -webkit-box-shadow:none;
  4329. box-shadow:none;
  4330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:12px;
  4334. }
  4335. #u33217 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:1428px;
  4339. top:817px;
  4340. width:25px;
  4341. height:17px;
  4342. display:flex;
  4343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4344. font-weight:400;
  4345. font-style:normal;
  4346. font-size:12px;
  4347. }
  4348. #u33217 .text {
  4349. position:absolute;
  4350. align-self:flex-start;
  4351. padding:0px 0px 0px 0px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u33217_text {
  4356. border-width:0px;
  4357. white-space:nowrap;
  4358. text-transform:none;
  4359. }
  4360. #u33218 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:0px;
  4366. height:0px;
  4367. }
  4368. #u33219_img {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:24px;
  4374. height:24px;
  4375. }
  4376. #u33219 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:1698px;
  4380. top:794px;
  4381. width:24px;
  4382. height:24px;
  4383. display:flex;
  4384. font-size:8px;
  4385. }
  4386. #u33219 .text {
  4387. position:absolute;
  4388. align-self:center;
  4389. padding:2px 2px 2px 2px;
  4390. box-sizing:border-box;
  4391. width:100%;
  4392. }
  4393. #u33219_text {
  4394. border-width:0px;
  4395. word-wrap:break-word;
  4396. text-transform:none;
  4397. }
  4398. #u33220_div {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:25px;
  4404. height:17px;
  4405. background:inherit;
  4406. background-color:rgba(255, 255, 255, 0);
  4407. border:none;
  4408. border-radius:0px;
  4409. -moz-box-shadow:none;
  4410. -webkit-box-shadow:none;
  4411. box-shadow:none;
  4412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:12px;
  4416. }
  4417. #u33220 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:1698px;
  4421. top:819px;
  4422. width:25px;
  4423. height:17px;
  4424. display:flex;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:12px;
  4429. }
  4430. #u33220 .text {
  4431. position:absolute;
  4432. align-self:flex-start;
  4433. padding:0px 0px 0px 0px;
  4434. box-sizing:border-box;
  4435. width:100%;
  4436. }
  4437. #u33220_text {
  4438. border-width:0px;
  4439. white-space:nowrap;
  4440. text-transform:none;
  4441. }
  4442. #u33221_div {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:0px;
  4446. top:0px;
  4447. width:375px;
  4448. height:681px;
  4449. background:inherit;
  4450. background-color:rgba(242, 242, 242, 0.462745098039216);
  4451. border:none;
  4452. border-radius:0px;
  4453. -moz-box-shadow:none;
  4454. -webkit-box-shadow:none;
  4455. box-shadow:none;
  4456. }
  4457. #u33221 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:1388px;
  4461. top:107px;
  4462. width:375px;
  4463. height:681px;
  4464. display:flex;
  4465. }
  4466. #u33221 .text {
  4467. position:absolute;
  4468. align-self:center;
  4469. padding:2px 2px 2px 2px;
  4470. box-sizing:border-box;
  4471. width:100%;
  4472. }
  4473. #u33221_text {
  4474. border-width:0px;
  4475. word-wrap:break-word;
  4476. text-transform:none;
  4477. visibility:hidden;
  4478. }
  4479. #u33222 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:0px;
  4483. top:0px;
  4484. width:0px;
  4485. height:0px;
  4486. }
  4487. #u33223_img {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:24px;
  4493. height:24px;
  4494. }
  4495. #u33223 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:1610px;
  4499. top:792px;
  4500. width:24px;
  4501. height:24px;
  4502. display:flex;
  4503. font-size:8px;
  4504. }
  4505. #u33223 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 2px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u33223_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. }
  4517. #u33224_div {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:37px;
  4523. height:17px;
  4524. background:inherit;
  4525. background-color:rgba(255, 255, 255, 0);
  4526. border:none;
  4527. border-radius:0px;
  4528. -moz-box-shadow:none;
  4529. -webkit-box-shadow:none;
  4530. box-shadow:none;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:12px;
  4535. }
  4536. #u33224 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:1604px;
  4540. top:817px;
  4541. width:37px;
  4542. height:17px;
  4543. display:flex;
  4544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:12px;
  4548. }
  4549. #u33224 .text {
  4550. position:absolute;
  4551. align-self:flex-start;
  4552. padding:0px 0px 0px 0px;
  4553. box-sizing:border-box;
  4554. width:100%;
  4555. }
  4556. #u33224_text {
  4557. border-width:0px;
  4558. white-space:nowrap;
  4559. text-transform:none;
  4560. }
  4561. #u33225 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:0px;
  4566. width:0px;
  4567. height:0px;
  4568. }
  4569. #u33226_img {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:24px;
  4575. height:24px;
  4576. }
  4577. #u33226 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:1516px;
  4581. top:792px;
  4582. width:24px;
  4583. height:24px;
  4584. display:flex;
  4585. font-size:8px;
  4586. }
  4587. #u33226 .text {
  4588. position:absolute;
  4589. align-self:center;
  4590. padding:2px 2px 2px 2px;
  4591. box-sizing:border-box;
  4592. width:100%;
  4593. }
  4594. #u33226_text {
  4595. border-width:0px;
  4596. word-wrap:break-word;
  4597. text-transform:none;
  4598. }
  4599. #u33227_div {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:37px;
  4605. height:17px;
  4606. background:inherit;
  4607. background-color:rgba(255, 255, 255, 0);
  4608. border:none;
  4609. border-radius:0px;
  4610. -moz-box-shadow:none;
  4611. -webkit-box-shadow:none;
  4612. box-shadow:none;
  4613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4614. font-weight:400;
  4615. font-style:normal;
  4616. font-size:12px;
  4617. }
  4618. #u33227 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:1510px;
  4622. top:817px;
  4623. width:37px;
  4624. height:17px;
  4625. display:flex;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:12px;
  4630. }
  4631. #u33227 .text {
  4632. position:absolute;
  4633. align-self:flex-start;
  4634. padding:0px 0px 0px 0px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u33227_text {
  4639. border-width:0px;
  4640. white-space:nowrap;
  4641. text-transform:none;
  4642. }
  4643. #u33228_div {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:375px;
  4649. height:736px;
  4650. background:inherit;
  4651. background-color:rgba(242, 242, 242, 1);
  4652. box-sizing:border-box;
  4653. border-width:1px;
  4654. border-style:solid;
  4655. border-color:rgba(242, 242, 242, 1);
  4656. border-radius:26px;
  4657. border-top-left-radius:0px;
  4658. border-top-right-radius:0px;
  4659. -moz-box-shadow:none;
  4660. -webkit-box-shadow:none;
  4661. box-shadow:none;
  4662. }
  4663. #u33228 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:1388px;
  4667. top:105px;
  4668. width:375px;
  4669. height:736px;
  4670. display:flex;
  4671. }
  4672. #u33228 .text {
  4673. position:absolute;
  4674. align-self:center;
  4675. padding:2px 2px 2px 2px;
  4676. box-sizing:border-box;
  4677. width:100%;
  4678. }
  4679. #u33228_text {
  4680. border-width:0px;
  4681. word-wrap:break-word;
  4682. text-transform:none;
  4683. visibility:hidden;
  4684. }
  4685. #u33229 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:0px;
  4691. height:0px;
  4692. }
  4693. #u33230_div {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:197px;
  4699. height:20px;
  4700. background:inherit;
  4701. background-color:rgba(255, 255, 255, 0);
  4702. border:none;
  4703. border-radius:0px;
  4704. -moz-box-shadow:none;
  4705. -webkit-box-shadow:none;
  4706. box-shadow:none;
  4707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. }
  4711. #u33230 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:1404px;
  4715. top:74px;
  4716. width:197px;
  4717. height:20px;
  4718. display:flex;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. }
  4723. #u33230 .text {
  4724. position:absolute;
  4725. align-self:flex-start;
  4726. padding:0px 0px 0px 0px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u33230_text {
  4731. border-width:0px;
  4732. white-space:nowrap;
  4733. text-transform:none;
  4734. }
  4735. #u33231_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:18px;
  4741. height:14px;
  4742. }
  4743. #u33231 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:1623px;
  4747. top:78px;
  4748. width:18px;
  4749. height:14px;
  4750. display:flex;
  4751. }
  4752. #u33231 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 2px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u33231_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. visibility:hidden;
  4764. }
  4765. #u33232_div {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:375px;
  4771. height:42px;
  4772. background:inherit;
  4773. background-color:rgba(255, 255, 255, 1);
  4774. border:none;
  4775. border-bottom:0px;
  4776. border-radius:0px;
  4777. border-bottom-right-radius:0px;
  4778. border-bottom-left-radius:0px;
  4779. -moz-box-shadow:none;
  4780. -webkit-box-shadow:none;
  4781. box-shadow:none;
  4782. }
  4783. #u33232 {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:1388px;
  4787. top:105px;
  4788. width:375px;
  4789. height:42px;
  4790. display:flex;
  4791. }
  4792. #u33232 .text {
  4793. position:absolute;
  4794. align-self:center;
  4795. padding:2px 2px 2px 2px;
  4796. box-sizing:border-box;
  4797. width:100%;
  4798. }
  4799. #u33232_text {
  4800. border-width:0px;
  4801. word-wrap:break-word;
  4802. text-transform:none;
  4803. visibility:hidden;
  4804. }
  4805. #u33233_div {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:29px;
  4811. height:30px;
  4812. background:inherit;
  4813. background-color:rgba(255, 255, 255, 0);
  4814. border:none;
  4815. border-left:0px;
  4816. border-top:0px;
  4817. border-right:0px;
  4818. border-radius:0px;
  4819. border-bottom-right-radius:0px;
  4820. border-bottom-left-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. color:#1890FF;
  4828. }
  4829. #u33233 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:1408px;
  4833. top:111px;
  4834. width:29px;
  4835. height:30px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. color:#1890FF;
  4841. }
  4842. #u33233 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:0px 0px 0px 0px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u33233_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u33234_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:29px;
  4860. height:30px;
  4861. background:inherit;
  4862. background-color:rgba(255, 255, 255, 0);
  4863. border:none;
  4864. border-left:0px;
  4865. border-top:0px;
  4866. border-right:0px;
  4867. border-radius:0px;
  4868. border-bottom-right-radius:0px;
  4869. border-bottom-left-radius:0px;
  4870. -moz-box-shadow:none;
  4871. -webkit-box-shadow:none;
  4872. box-shadow:none;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. }
  4877. #u33234 {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:1457px;
  4881. top:111px;
  4882. width:29px;
  4883. height:30px;
  4884. display:flex;
  4885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. }
  4889. #u33234 .text {
  4890. position:absolute;
  4891. align-self:center;
  4892. padding:0px 0px 0px 0px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u33234_text {
  4897. border-width:0px;
  4898. white-space:nowrap;
  4899. text-transform:none;
  4900. }
  4901. #u33235_div {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:375px;
  4907. height:91px;
  4908. background:inherit;
  4909. background-color:rgba(255, 255, 255, 1);
  4910. border:none;
  4911. border-bottom:0px;
  4912. border-radius:0px;
  4913. border-bottom-right-radius:0px;
  4914. border-bottom-left-radius:0px;
  4915. -moz-box-shadow:none;
  4916. -webkit-box-shadow:none;
  4917. box-shadow:none;
  4918. }
  4919. #u33235 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:1388px;
  4923. top:297px;
  4924. width:375px;
  4925. height:91px;
  4926. display:flex;
  4927. }
  4928. #u33235 .text {
  4929. position:absolute;
  4930. align-self:center;
  4931. padding:2px 2px 2px 2px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u33235_text {
  4936. border-width:0px;
  4937. word-wrap:break-word;
  4938. text-transform:none;
  4939. }
  4940. #u33236_div {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:85px;
  4946. height:30px;
  4947. background:inherit;
  4948. background-color:rgba(255, 255, 255, 0);
  4949. border:none;
  4950. border-left:0px;
  4951. border-top:0px;
  4952. border-right:0px;
  4953. border-radius:0px;
  4954. border-bottom-right-radius:0px;
  4955. border-bottom-left-radius:0px;
  4956. -moz-box-shadow:none;
  4957. -webkit-box-shadow:none;
  4958. box-shadow:none;
  4959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4960. font-weight:400;
  4961. font-style:normal;
  4962. color:#7F7F7F;
  4963. }
  4964. #u33236 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:1408px;
  4968. top:267px;
  4969. width:85px;
  4970. height:30px;
  4971. display:flex;
  4972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. color:#7F7F7F;
  4976. }
  4977. #u33236 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:0px 0px 0px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u33236_text {
  4985. border-width:0px;
  4986. white-space:nowrap;
  4987. text-transform:none;
  4988. }
  4989. #u33237 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:0px;
  4995. height:0px;
  4996. }
  4997. #u33238_div {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:51px;
  5003. height:17px;
  5004. background:inherit;
  5005. background-color:rgba(255, 255, 255, 0);
  5006. border:none;
  5007. border-left:0px;
  5008. border-top:0px;
  5009. border-right:0px;
  5010. border-radius:0px;
  5011. border-bottom-right-radius:0px;
  5012. border-bottom-left-radius:0px;
  5013. -moz-box-shadow:none;
  5014. -webkit-box-shadow:none;
  5015. box-shadow:none;
  5016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:12px;
  5020. text-align:center;
  5021. }
  5022. #u33238 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:1410px;
  5026. top:354px;
  5027. width:51px;
  5028. height:17px;
  5029. display:flex;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:12px;
  5034. text-align:center;
  5035. }
  5036. #u33238 .text {
  5037. position:absolute;
  5038. align-self:flex-start;
  5039. padding:0px 0px 0px 0px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u33238_text {
  5044. border-width:0px;
  5045. word-wrap:break-word;
  5046. text-transform:none;
  5047. }
  5048. #u33239_img {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:30px;
  5054. height:30px;
  5055. }
  5056. #u33239 {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:1420px;
  5060. top:314px;
  5061. width:30px;
  5062. height:30px;
  5063. display:flex;
  5064. }
  5065. #u33239 .text {
  5066. position:absolute;
  5067. align-self:center;
  5068. padding:2px 2px 2px 2px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u33239_text {
  5073. border-width:0px;
  5074. word-wrap:break-word;
  5075. text-transform:none;
  5076. visibility:hidden;
  5077. }
  5078. #u33240 {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:0px;
  5084. height:0px;
  5085. }
  5086. #u33241_div {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:49px;
  5092. height:17px;
  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. text-align:center;
  5110. }
  5111. #u33241 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:1593px;
  5115. top:354px;
  5116. width:49px;
  5117. height:17px;
  5118. display:flex;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:12px;
  5123. text-align:center;
  5124. }
  5125. #u33241 .text {
  5126. position:absolute;
  5127. align-self:flex-start;
  5128. padding:0px 0px 0px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u33241_text {
  5133. border-width:0px;
  5134. white-space:nowrap;
  5135. text-transform:none;
  5136. }
  5137. #u33242_img {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:30px;
  5143. height:30px;
  5144. }
  5145. #u33242 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:1603px;
  5149. top:314px;
  5150. width:30px;
  5151. height:30px;
  5152. display:flex;
  5153. }
  5154. #u33242 .text {
  5155. position:absolute;
  5156. align-self:center;
  5157. padding:2px 2px 2px 2px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u33242_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. visibility:hidden;
  5166. }
  5167. #u33243 {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:0px;
  5173. height:0px;
  5174. }
  5175. #u33244_div {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:49px;
  5181. height:17px;
  5182. background:inherit;
  5183. background-color:rgba(255, 255, 255, 0);
  5184. border:none;
  5185. border-left:0px;
  5186. border-top:0px;
  5187. border-right:0px;
  5188. border-radius:0px;
  5189. border-bottom-right-radius:0px;
  5190. border-bottom-left-radius:0px;
  5191. -moz-box-shadow:none;
  5192. -webkit-box-shadow:none;
  5193. box-shadow:none;
  5194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:12px;
  5198. text-align:center;
  5199. }
  5200. #u33244 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:1684px;
  5204. top:354px;
  5205. width:49px;
  5206. height:17px;
  5207. display:flex;
  5208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5209. font-weight:400;
  5210. font-style:normal;
  5211. font-size:12px;
  5212. text-align:center;
  5213. }
  5214. #u33244 .text {
  5215. position:absolute;
  5216. align-self:flex-start;
  5217. padding:0px 0px 0px 0px;
  5218. box-sizing:border-box;
  5219. width:100%;
  5220. }
  5221. #u33244_text {
  5222. border-width:0px;
  5223. white-space:nowrap;
  5224. text-transform:none;
  5225. }
  5226. #u33245_img {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:30px;
  5232. height:30px;
  5233. }
  5234. #u33245 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:1694px;
  5238. top:314px;
  5239. width:30px;
  5240. height:30px;
  5241. display:flex;
  5242. }
  5243. #u33245 .text {
  5244. position:absolute;
  5245. align-self:center;
  5246. padding:2px 2px 2px 2px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u33245_text {
  5251. border-width:0px;
  5252. word-wrap:break-word;
  5253. text-transform:none;
  5254. visibility:hidden;
  5255. }
  5256. #u33246 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:0px;
  5262. height:0px;
  5263. }
  5264. #u33247_div {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:0px;
  5268. top:0px;
  5269. width:51px;
  5270. height:17px;
  5271. background:inherit;
  5272. background-color:rgba(255, 255, 255, 0);
  5273. border:none;
  5274. border-left:0px;
  5275. border-top:0px;
  5276. border-right:0px;
  5277. border-radius:0px;
  5278. border-bottom-right-radius:0px;
  5279. border-bottom-left-radius:0px;
  5280. -moz-box-shadow:none;
  5281. -webkit-box-shadow:none;
  5282. box-shadow:none;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:12px;
  5287. text-align:center;
  5288. }
  5289. #u33247 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:1501px;
  5293. top:354px;
  5294. width:51px;
  5295. height:17px;
  5296. display:flex;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:12px;
  5301. text-align:center;
  5302. }
  5303. #u33247 .text {
  5304. position:absolute;
  5305. align-self:flex-start;
  5306. padding:0px 0px 0px 0px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u33247_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. }
  5315. #u33248_img {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:30px;
  5321. height:30px;
  5322. }
  5323. #u33248 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:1511px;
  5327. top:314px;
  5328. width:30px;
  5329. height:30px;
  5330. display:flex;
  5331. }
  5332. #u33248 .text {
  5333. position:absolute;
  5334. align-self:center;
  5335. padding:2px 2px 2px 2px;
  5336. box-sizing:border-box;
  5337. width:100%;
  5338. }
  5339. #u33248_text {
  5340. border-width:0px;
  5341. word-wrap:break-word;
  5342. text-transform:none;
  5343. visibility:hidden;
  5344. }
  5345. #u33249_div {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:375px;
  5351. height:87px;
  5352. background:inherit;
  5353. background-color:rgba(255, 255, 255, 1);
  5354. border:none;
  5355. border-bottom:0px;
  5356. border-radius:0px;
  5357. border-bottom-right-radius:0px;
  5358. border-bottom-left-radius:0px;
  5359. -moz-box-shadow:none;
  5360. -webkit-box-shadow:none;
  5361. box-shadow:none;
  5362. }
  5363. #u33249 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:1388px;
  5367. top:539px;
  5368. width:375px;
  5369. height:87px;
  5370. display:flex;
  5371. }
  5372. #u33249 .text {
  5373. position:absolute;
  5374. align-self:center;
  5375. padding:2px 2px 2px 2px;
  5376. box-sizing:border-box;
  5377. width:100%;
  5378. }
  5379. #u33249_text {
  5380. border-width:0px;
  5381. word-wrap:break-word;
  5382. text-transform:none;
  5383. }
  5384. #u33250_div {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:57px;
  5390. height:30px;
  5391. background:inherit;
  5392. background-color:rgba(255, 255, 255, 0);
  5393. border:none;
  5394. border-left:0px;
  5395. border-top:0px;
  5396. border-right:0px;
  5397. border-radius:0px;
  5398. border-bottom-right-radius:0px;
  5399. border-bottom-left-radius:0px;
  5400. -moz-box-shadow:none;
  5401. -webkit-box-shadow:none;
  5402. box-shadow:none;
  5403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. color:#7F7F7F;
  5407. }
  5408. #u33250 {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:1408px;
  5412. top:507px;
  5413. width:57px;
  5414. height:30px;
  5415. display:flex;
  5416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. color:#7F7F7F;
  5420. }
  5421. #u33250 .text {
  5422. position:absolute;
  5423. align-self:center;
  5424. padding:0px 0px 0px 0px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. #u33250_text {
  5429. border-width:0px;
  5430. white-space:nowrap;
  5431. text-transform:none;
  5432. }
  5433. #u33251 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:0px;
  5439. height:0px;
  5440. }
  5441. #u33252_div {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:51px;
  5447. height:17px;
  5448. background:inherit;
  5449. background-color:rgba(255, 255, 255, 0);
  5450. border:none;
  5451. border-left:0px;
  5452. border-top:0px;
  5453. border-right:0px;
  5454. border-radius:0px;
  5455. border-bottom-right-radius:0px;
  5456. border-bottom-left-radius:0px;
  5457. -moz-box-shadow:none;
  5458. -webkit-box-shadow:none;
  5459. box-shadow:none;
  5460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:12px;
  5464. text-align:center;
  5465. }
  5466. #u33252 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:1408px;
  5470. top:594px;
  5471. width:51px;
  5472. height:17px;
  5473. display:flex;
  5474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:12px;
  5478. text-align:center;
  5479. }
  5480. #u33252 .text {
  5481. position:absolute;
  5482. align-self:flex-start;
  5483. padding:0px 0px 0px 0px;
  5484. box-sizing:border-box;
  5485. width:100%;
  5486. }
  5487. #u33252_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. }
  5492. #u33253_img {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:30px;
  5498. height:30px;
  5499. }
  5500. #u33253 {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:1418px;
  5504. top:554px;
  5505. width:30px;
  5506. height:30px;
  5507. display:flex;
  5508. }
  5509. #u33253 .text {
  5510. position:absolute;
  5511. align-self:center;
  5512. padding:2px 2px 2px 2px;
  5513. box-sizing:border-box;
  5514. width:100%;
  5515. }
  5516. #u33253_text {
  5517. border-width:0px;
  5518. word-wrap:break-word;
  5519. text-transform:none;
  5520. visibility:hidden;
  5521. }
  5522. #u33254_div {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:375px;
  5528. height:87px;
  5529. background:inherit;
  5530. background-color:rgba(255, 255, 255, 1);
  5531. border:none;
  5532. border-bottom:0px;
  5533. border-radius:0px;
  5534. border-bottom-right-radius:0px;
  5535. border-bottom-left-radius:0px;
  5536. -moz-box-shadow:none;
  5537. -webkit-box-shadow:none;
  5538. box-shadow:none;
  5539. }
  5540. #u33254 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:1388px;
  5544. top:420px;
  5545. width:375px;
  5546. height:87px;
  5547. display:flex;
  5548. }
  5549. #u33254 .text {
  5550. position:absolute;
  5551. align-self:center;
  5552. padding:2px 2px 2px 2px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u33254_text {
  5557. border-width:0px;
  5558. word-wrap:break-word;
  5559. text-transform:none;
  5560. }
  5561. #u33255_div {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:71px;
  5567. height:30px;
  5568. background:inherit;
  5569. background-color:rgba(255, 255, 255, 0);
  5570. border:none;
  5571. border-left:0px;
  5572. border-top:0px;
  5573. border-right:0px;
  5574. border-radius:0px;
  5575. border-bottom-right-radius:0px;
  5576. border-bottom-left-radius:0px;
  5577. -moz-box-shadow:none;
  5578. -webkit-box-shadow:none;
  5579. box-shadow:none;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. color:#7F7F7F;
  5584. }
  5585. #u33255 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:1408px;
  5589. top:388px;
  5590. width:71px;
  5591. height:30px;
  5592. display:flex;
  5593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. color:#7F7F7F;
  5597. }
  5598. #u33255 .text {
  5599. position:absolute;
  5600. align-self:center;
  5601. padding:0px 0px 0px 0px;
  5602. box-sizing:border-box;
  5603. width:100%;
  5604. }
  5605. #u33255_text {
  5606. border-width:0px;
  5607. white-space:nowrap;
  5608. text-transform:none;
  5609. }
  5610. #u33256 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:0px;
  5616. height:0px;
  5617. }
  5618. #u33257_div {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:61px;
  5624. height:17px;
  5625. background:inherit;
  5626. background-color:rgba(255, 255, 255, 0);
  5627. border:none;
  5628. border-left:0px;
  5629. border-top:0px;
  5630. border-right:0px;
  5631. border-radius:0px;
  5632. border-bottom-right-radius:0px;
  5633. border-bottom-left-radius:0px;
  5634. -moz-box-shadow:none;
  5635. -webkit-box-shadow:none;
  5636. box-shadow:none;
  5637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:12px;
  5641. text-align:center;
  5642. }
  5643. #u33257 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:1496px;
  5647. top:475px;
  5648. width:61px;
  5649. height:17px;
  5650. display:flex;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:12px;
  5655. text-align:center;
  5656. }
  5657. #u33257 .text {
  5658. position:absolute;
  5659. align-self:flex-start;
  5660. padding:0px 0px 0px 0px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u33257_text {
  5665. border-width:0px;
  5666. white-space:nowrap;
  5667. text-transform:none;
  5668. }
  5669. #u33258_img {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:30px;
  5675. height:30px;
  5676. }
  5677. #u33258 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:1511px;
  5681. top:435px;
  5682. width:30px;
  5683. height:30px;
  5684. display:flex;
  5685. }
  5686. #u33258 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 2px 2px 2px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u33258_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u33259 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:0px;
  5705. height:0px;
  5706. }
  5707. #u33260_div {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:61px;
  5713. height:17px;
  5714. background:inherit;
  5715. background-color:rgba(255, 255, 255, 0);
  5716. border:none;
  5717. border-left:0px;
  5718. border-top:0px;
  5719. border-right:0px;
  5720. border-radius:0px;
  5721. border-bottom-right-radius:0px;
  5722. border-bottom-left-radius:0px;
  5723. -moz-box-shadow:none;
  5724. -webkit-box-shadow:none;
  5725. box-shadow:none;
  5726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:12px;
  5730. text-align:center;
  5731. }
  5732. #u33260 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:1587px;
  5736. top:475px;
  5737. width:61px;
  5738. height:17px;
  5739. display:flex;
  5740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5741. font-weight:400;
  5742. font-style:normal;
  5743. font-size:12px;
  5744. text-align:center;
  5745. }
  5746. #u33260 .text {
  5747. position:absolute;
  5748. align-self:flex-start;
  5749. padding:0px 0px 0px 0px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u33260_text {
  5754. border-width:0px;
  5755. white-space:nowrap;
  5756. text-transform:none;
  5757. }
  5758. #u33261_img {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:30px;
  5764. height:30px;
  5765. }
  5766. #u33261 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:1603px;
  5770. top:435px;
  5771. width:30px;
  5772. height:30px;
  5773. display:flex;
  5774. }
  5775. #u33261 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:2px 2px 2px 2px;
  5779. box-sizing:border-box;
  5780. width:100%;
  5781. }
  5782. #u33261_text {
  5783. border-width:0px;
  5784. word-wrap:break-word;
  5785. text-transform:none;
  5786. visibility:hidden;
  5787. }
  5788. #u33262 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:0px;
  5794. height:0px;
  5795. }
  5796. #u33263_div {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:61px;
  5802. height:17px;
  5803. background:inherit;
  5804. background-color:rgba(255, 255, 255, 0);
  5805. border:none;
  5806. border-left:0px;
  5807. border-top:0px;
  5808. border-right:0px;
  5809. border-radius:0px;
  5810. border-bottom-right-radius:0px;
  5811. border-bottom-left-radius:0px;
  5812. -moz-box-shadow:none;
  5813. -webkit-box-shadow:none;
  5814. box-shadow:none;
  5815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. font-size:12px;
  5819. text-align:center;
  5820. }
  5821. #u33263 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:1678px;
  5825. top:475px;
  5826. width:61px;
  5827. height:17px;
  5828. display:flex;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:12px;
  5833. text-align:center;
  5834. }
  5835. #u33263 .text {
  5836. position:absolute;
  5837. align-self:flex-start;
  5838. padding:0px 0px 0px 0px;
  5839. box-sizing:border-box;
  5840. width:100%;
  5841. }
  5842. #u33263_text {
  5843. border-width:0px;
  5844. white-space:nowrap;
  5845. text-transform:none;
  5846. }
  5847. #u33264_img {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:30px;
  5853. height:30px;
  5854. }
  5855. #u33264 {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:1694px;
  5859. top:435px;
  5860. width:30px;
  5861. height:30px;
  5862. display:flex;
  5863. }
  5864. #u33264 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:2px 2px 2px 2px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u33264_text {
  5872. border-width:0px;
  5873. word-wrap:break-word;
  5874. text-transform:none;
  5875. visibility:hidden;
  5876. }
  5877. #u33265 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:0px;
  5883. height:0px;
  5884. }
  5885. #u33266_div {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:51px;
  5891. height:17px;
  5892. background:inherit;
  5893. background-color:rgba(255, 255, 255, 0);
  5894. border:none;
  5895. border-left:0px;
  5896. border-top:0px;
  5897. border-right:0px;
  5898. border-radius:0px;
  5899. border-bottom-right-radius:0px;
  5900. border-bottom-left-radius:0px;
  5901. -moz-box-shadow:none;
  5902. -webkit-box-shadow:none;
  5903. box-shadow:none;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:12px;
  5908. text-align:center;
  5909. }
  5910. #u33266 {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:1408px;
  5914. top:475px;
  5915. width:51px;
  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. text-align:center;
  5923. }
  5924. #u33266 .text {
  5925. position:absolute;
  5926. align-self:flex-start;
  5927. padding:0px 0px 0px 0px;
  5928. box-sizing:border-box;
  5929. width:100%;
  5930. }
  5931. #u33266_text {
  5932. border-width:0px;
  5933. word-wrap:break-word;
  5934. text-transform:none;
  5935. }
  5936. #u33267_img {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:30px;
  5942. height:30px;
  5943. }
  5944. #u33267 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:1418px;
  5948. top:435px;
  5949. width:30px;
  5950. height:30px;
  5951. display:flex;
  5952. }
  5953. #u33267 .text {
  5954. position:absolute;
  5955. align-self:center;
  5956. padding:2px 2px 2px 2px;
  5957. box-sizing:border-box;
  5958. width:100%;
  5959. }
  5960. #u33267_text {
  5961. border-width:0px;
  5962. word-wrap:break-word;
  5963. text-transform:none;
  5964. visibility:hidden;
  5965. }
  5966. #u33268 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:0px;
  5972. height:0px;
  5973. }
  5974. #u33269_div {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:0px;
  5978. top:0px;
  5979. width:355px;
  5980. height:100px;
  5981. background:inherit;
  5982. background-color:rgba(41, 143, 255, 1);
  5983. border:none;
  5984. border-radius:4px;
  5985. -moz-box-shadow:none;
  5986. -webkit-box-shadow:none;
  5987. box-shadow:none;
  5988. }
  5989. #u33269 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:1398px;
  5993. top:157px;
  5994. width:355px;
  5995. height:100px;
  5996. display:flex;
  5997. }
  5998. #u33269 .text {
  5999. position:absolute;
  6000. align-self:center;
  6001. padding:2px 2px 2px 2px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u33269_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. visibility:hidden;
  6010. }
  6011. #u33270_div {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:73px;
  6017. height:25px;
  6018. background:inherit;
  6019. background-color:rgba(255, 255, 255, 0);
  6020. border:none;
  6021. border-radius:0px;
  6022. -moz-box-shadow:none;
  6023. -webkit-box-shadow:none;
  6024. box-shadow:none;
  6025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. font-size:18px;
  6029. color:#FFFFFF;
  6030. line-height:25px;
  6031. }
  6032. #u33270 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:1433px;
  6036. top:171px;
  6037. width:73px;
  6038. height:25px;
  6039. display:flex;
  6040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6041. font-weight:400;
  6042. font-style:normal;
  6043. font-size:18px;
  6044. color:#FFFFFF;
  6045. line-height:25px;
  6046. }
  6047. #u33270 .text {
  6048. position:absolute;
  6049. align-self:flex-start;
  6050. padding:0px 0px 0px 0px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u33270_text {
  6055. border-width:0px;
  6056. white-space:nowrap;
  6057. text-transform:none;
  6058. }
  6059. #u33271_div {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:0px;
  6063. top:0px;
  6064. width:25px;
  6065. height:14px;
  6066. background:inherit;
  6067. background-color:rgba(245, 109, 35, 1);
  6068. border:none;
  6069. border-radius:2px;
  6070. -moz-box-shadow:none;
  6071. -webkit-box-shadow:none;
  6072. box-shadow:none;
  6073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6074. font-weight:400;
  6075. font-style:normal;
  6076. font-size:10px;
  6077. color:#FFFFFF;
  6078. text-align:center;
  6079. }
  6080. #u33271 {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:1604px;
  6084. top:199px;
  6085. width:25px;
  6086. height:14px;
  6087. display:flex;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:10px;
  6092. color:#FFFFFF;
  6093. text-align:center;
  6094. }
  6095. #u33271 .text {
  6096. position:absolute;
  6097. align-self:flex-start;
  6098. padding:0px 2px 0px 2px;
  6099. box-sizing:border-box;
  6100. width:100%;
  6101. }
  6102. #u33271_text {
  6103. border-width:0px;
  6104. white-space:nowrap;
  6105. text-transform:none;
  6106. }
  6107. #u33272_div {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:0px;
  6111. top:0px;
  6112. width:181px;
  6113. height:25px;
  6114. background:inherit;
  6115. background-color:rgba(255, 255, 255, 0);
  6116. border:none;
  6117. border-radius:0px;
  6118. -moz-box-shadow:none;
  6119. -webkit-box-shadow:none;
  6120. box-shadow:none;
  6121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:18px;
  6125. color:#FFFFFF;
  6126. line-height:25px;
  6127. }
  6128. #u33272 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:1418px;
  6132. top:209px;
  6133. width:181px;
  6134. height:25px;
  6135. display:flex;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:18px;
  6140. color:#FFFFFF;
  6141. line-height:25px;
  6142. }
  6143. #u33272 .text {
  6144. position:absolute;
  6145. align-self:flex-start;
  6146. padding:0px 0px 0px 0px;
  6147. box-sizing:border-box;
  6148. width:100%;
  6149. }
  6150. #u33272_text {
  6151. border-width:0px;
  6152. white-space:nowrap;
  6153. text-transform:none;
  6154. }
  6155. #u33273_img {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:20px;
  6161. height:18px;
  6162. }
  6163. #u33273 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:1408px;
  6167. top:174px;
  6168. width:20px;
  6169. height:18px;
  6170. display:flex;
  6171. color:#D9001B;
  6172. }
  6173. #u33273 .text {
  6174. position:absolute;
  6175. align-self:center;
  6176. padding:2px 2px 2px 2px;
  6177. box-sizing:border-box;
  6178. width:100%;
  6179. }
  6180. #u33273_text {
  6181. border-width:0px;
  6182. word-wrap:break-word;
  6183. text-transform:none;
  6184. visibility:hidden;
  6185. }
  6186. #u33274_div {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:81px;
  6192. height:30px;
  6193. background:inherit;
  6194. background-color:rgba(51, 51, 51, 0.545098039215686);
  6195. border:none;
  6196. border-right:0px;
  6197. border-radius:23px;
  6198. border-top-right-radius:0px;
  6199. border-bottom-right-radius:0px;
  6200. -moz-box-shadow:none;
  6201. -webkit-box-shadow:none;
  6202. box-shadow:none;
  6203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. color:#FFFFFF;
  6207. }
  6208. #u33274 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:1682px;
  6212. top:125px;
  6213. width:81px;
  6214. height:30px;
  6215. display:flex;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. color:#FFFFFF;
  6220. }
  6221. #u33274 .text {
  6222. position:absolute;
  6223. align-self:center;
  6224. padding:0px 5px 0px 5px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u33274_text {
  6229. border-width:0px;
  6230. white-space:nowrap;
  6231. text-transform:none;
  6232. }