styles.css 139 KB

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