styles.css 166 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2477px;
  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. #u39516_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:12px;
  25. height:12px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. box-sizing:border-box;
  29. border-width:2px;
  30. border-style:solid;
  31. border-color:rgba(255, 255, 255, 1);
  32. border-right:0px;
  33. border-bottom:0px;
  34. border-radius:0px;
  35. border-top-right-radius:0px;
  36. border-bottom-left-radius:0px;
  37. -moz-box-shadow:none;
  38. -webkit-box-shadow:none;
  39. box-shadow:none;
  40. }
  41. #u39516 {
  42. border-width:0px;
  43. position:absolute;
  44. left:39px;
  45. top:1456px;
  46. width:12px;
  47. height:12px;
  48. display:flex;
  49. -webkit-transform:rotate(315deg);
  50. -moz-transform:rotate(315deg);
  51. -ms-transform:rotate(315deg);
  52. transform:rotate(315deg);
  53. }
  54. #u39516 .text {
  55. position:absolute;
  56. align-self:center;
  57. padding:2px 2px 2px 2px;
  58. box-sizing:border-box;
  59. width:100%;
  60. }
  61. #u39516_text {
  62. border-width:0px;
  63. word-wrap:break-word;
  64. text-transform:none;
  65. visibility:hidden;
  66. }
  67. #u39517_img {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:433px;
  73. height:865px;
  74. }
  75. #u39517 {
  76. border-width:0px;
  77. position:absolute;
  78. left:930px;
  79. top:1px;
  80. width:433px;
  81. height:865px;
  82. display:flex;
  83. }
  84. #u39517 .text {
  85. position:absolute;
  86. align-self:center;
  87. padding:2px 2px 2px 2px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u39517_text {
  92. border-width:0px;
  93. word-wrap:break-word;
  94. text-transform:none;
  95. visibility:hidden;
  96. }
  97. #u39518_div {
  98. border-width:0px;
  99. position:absolute;
  100. left:0px;
  101. top:0px;
  102. width:375px;
  103. height:40px;
  104. background:inherit;
  105. background-color:rgba(255, 255, 255, 1);
  106. border:none;
  107. border-left:0px;
  108. border-top:0px;
  109. border-right:0px;
  110. border-radius:0px;
  111. border-bottom-right-radius:0px;
  112. border-bottom-left-radius:0px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u39518 {
  118. border-width:0px;
  119. position:absolute;
  120. left:959px;
  121. top:68px;
  122. width:375px;
  123. height:40px;
  124. display:flex;
  125. }
  126. #u39518 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u39518_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u39519 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u39520_div {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:88px;
  153. height:32px;
  154. background:inherit;
  155. background-color:rgba(255, 255, 255, 1);
  156. box-sizing:border-box;
  157. border-width:1px;
  158. border-style:solid;
  159. border-color:rgba(242, 242, 242, 1);
  160. border-radius:33px;
  161. -moz-box-shadow:none;
  162. -webkit-box-shadow:none;
  163. box-shadow:none;
  164. }
  165. #u39520 {
  166. border-width:0px;
  167. position:absolute;
  168. left:1239px;
  169. top:72px;
  170. width:88px;
  171. height:32px;
  172. display:flex;
  173. }
  174. #u39520 .text {
  175. position:absolute;
  176. align-self:center;
  177. padding:2px 2px 2px 2px;
  178. box-sizing:border-box;
  179. width:100%;
  180. }
  181. #u39520_text {
  182. border-width:0px;
  183. word-wrap:break-word;
  184. text-transform:none;
  185. visibility:hidden;
  186. }
  187. #u39521 {
  188. border-width:0px;
  189. position:absolute;
  190. left:0px;
  191. top:0px;
  192. width:0px;
  193. height:0px;
  194. }
  195. #u39522_img {
  196. border-width:0px;
  197. position:absolute;
  198. left:0px;
  199. top:0px;
  200. width:18px;
  201. height:18px;
  202. }
  203. #u39522 {
  204. border-width:0px;
  205. position:absolute;
  206. left:1302px;
  207. top:79px;
  208. width:18px;
  209. height:18px;
  210. display:flex;
  211. }
  212. #u39522 .text {
  213. position:absolute;
  214. align-self:center;
  215. padding:2px 2px 2px 2px;
  216. box-sizing:border-box;
  217. width:100%;
  218. }
  219. #u39522_text {
  220. border-width:0px;
  221. word-wrap:break-word;
  222. text-transform:none;
  223. visibility:hidden;
  224. }
  225. #u39523_img {
  226. border-width:0px;
  227. position:absolute;
  228. left:0px;
  229. top:0px;
  230. width:6px;
  231. height:6px;
  232. }
  233. #u39523 {
  234. border-width:0px;
  235. position:absolute;
  236. left:1308px;
  237. top:85px;
  238. width:6px;
  239. height:6px;
  240. display:flex;
  241. }
  242. #u39523 .text {
  243. position:absolute;
  244. align-self:center;
  245. padding:2px 2px 2px 2px;
  246. box-sizing:border-box;
  247. width:100%;
  248. }
  249. #u39523_text {
  250. border-width:0px;
  251. word-wrap:break-word;
  252. text-transform:none;
  253. visibility:hidden;
  254. }
  255. #u39524 {
  256. border-width:0px;
  257. position:absolute;
  258. left:0px;
  259. top:0px;
  260. width:0px;
  261. height:0px;
  262. }
  263. #u39525_img {
  264. border-width:0px;
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:5px;
  269. height:5px;
  270. }
  271. #u39525 {
  272. border-width:0px;
  273. position:absolute;
  274. left:1253px;
  275. top:86px;
  276. width:5px;
  277. height:5px;
  278. display:flex;
  279. }
  280. #u39525 .text {
  281. position:absolute;
  282. align-self:center;
  283. padding:2px 2px 2px 2px;
  284. box-sizing:border-box;
  285. width:100%;
  286. }
  287. #u39525_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u39526_img {
  294. border-width:0px;
  295. position:absolute;
  296. left:0px;
  297. top:0px;
  298. width:5px;
  299. height:5px;
  300. }
  301. #u39526 {
  302. border-width:0px;
  303. position:absolute;
  304. left:1269px;
  305. top:86px;
  306. width:5px;
  307. height:5px;
  308. display:flex;
  309. }
  310. #u39526 .text {
  311. position:absolute;
  312. align-self:center;
  313. padding:2px 2px 2px 2px;
  314. box-sizing:border-box;
  315. width:100%;
  316. }
  317. #u39526_text {
  318. border-width:0px;
  319. word-wrap:break-word;
  320. text-transform:none;
  321. visibility:hidden;
  322. }
  323. #u39527_img {
  324. border-width:0px;
  325. position:absolute;
  326. left:0px;
  327. top:0px;
  328. width:7px;
  329. height:7px;
  330. }
  331. #u39527 {
  332. border-width:0px;
  333. position:absolute;
  334. left:1260px;
  335. top:85px;
  336. width:7px;
  337. height:7px;
  338. display:flex;
  339. }
  340. #u39527 .text {
  341. position:absolute;
  342. align-self:center;
  343. padding:2px 2px 2px 2px;
  344. box-sizing:border-box;
  345. width:100%;
  346. }
  347. #u39527_text {
  348. border-width:0px;
  349. word-wrap:break-word;
  350. text-transform:none;
  351. visibility:hidden;
  352. }
  353. #u39528_img {
  354. border-width:0px;
  355. position:absolute;
  356. left:0px;
  357. top:0px;
  358. width:19px;
  359. height:2px;
  360. }
  361. #u39528 {
  362. border-width:0px;
  363. position:absolute;
  364. left:1277px;
  365. top:88px;
  366. width:18px;
  367. height:1px;
  368. display:flex;
  369. -webkit-transform:rotate(90deg);
  370. -moz-transform:rotate(90deg);
  371. -ms-transform:rotate(90deg);
  372. transform:rotate(90deg);
  373. }
  374. #u39528 .text {
  375. position:absolute;
  376. align-self:center;
  377. padding:2px 2px 2px 2px;
  378. box-sizing:border-box;
  379. width:100%;
  380. }
  381. #u39528_text {
  382. border-width:0px;
  383. word-wrap:break-word;
  384. text-transform:none;
  385. visibility:hidden;
  386. }
  387. #u39529_div {
  388. border-width:0px;
  389. position:absolute;
  390. left:0px;
  391. top:0px;
  392. width:375px;
  393. height:50px;
  394. background:inherit;
  395. background-color:rgba(255, 255, 255, 1);
  396. box-sizing:border-box;
  397. border-width:1px;
  398. border-style:solid;
  399. border-color:rgba(242, 242, 242, 1);
  400. border-radius:26px;
  401. border-top-left-radius:0px;
  402. border-top-right-radius:0px;
  403. -moz-box-shadow:none;
  404. -webkit-box-shadow:none;
  405. box-shadow:none;
  406. }
  407. #u39529 {
  408. border-width:0px;
  409. position:absolute;
  410. left:959px;
  411. top:789px;
  412. width:375px;
  413. height:50px;
  414. display:flex;
  415. }
  416. #u39529 .text {
  417. position:absolute;
  418. align-self:center;
  419. padding:2px 2px 2px 2px;
  420. box-sizing:border-box;
  421. width:100%;
  422. }
  423. #u39529_text {
  424. border-width:0px;
  425. word-wrap:break-word;
  426. text-transform:none;
  427. visibility:hidden;
  428. }
  429. #u39530 {
  430. border-width:0px;
  431. position:absolute;
  432. left:0px;
  433. top:0px;
  434. width:0px;
  435. height:0px;
  436. }
  437. #u39531_img {
  438. border-width:0px;
  439. position:absolute;
  440. left:0px;
  441. top:0px;
  442. width:24px;
  443. height:24px;
  444. }
  445. #u39531 {
  446. border-width:0px;
  447. position:absolute;
  448. left:999px;
  449. top:793px;
  450. width:24px;
  451. height:24px;
  452. display:flex;
  453. font-size:8px;
  454. }
  455. #u39531 .text {
  456. position:absolute;
  457. align-self:center;
  458. padding:2px 2px 2px 2px;
  459. box-sizing:border-box;
  460. width:100%;
  461. }
  462. #u39531_text {
  463. border-width:0px;
  464. word-wrap:break-word;
  465. text-transform:none;
  466. }
  467. #u39532_div {
  468. border-width:0px;
  469. position:absolute;
  470. left:0px;
  471. top:0px;
  472. width:25px;
  473. height:17px;
  474. background:inherit;
  475. background-color:rgba(255, 255, 255, 0);
  476. border:none;
  477. border-radius:0px;
  478. -moz-box-shadow:none;
  479. -webkit-box-shadow:none;
  480. box-shadow:none;
  481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  482. font-weight:400;
  483. font-style:normal;
  484. font-size:12px;
  485. }
  486. #u39532 {
  487. border-width:0px;
  488. position:absolute;
  489. left:999px;
  490. top:818px;
  491. width:25px;
  492. height:17px;
  493. display:flex;
  494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  495. font-weight:400;
  496. font-style:normal;
  497. font-size:12px;
  498. }
  499. #u39532 .text {
  500. position:absolute;
  501. align-self:flex-start;
  502. padding:0px 0px 0px 0px;
  503. box-sizing:border-box;
  504. width:100%;
  505. }
  506. #u39532_text {
  507. border-width:0px;
  508. white-space:nowrap;
  509. text-transform:none;
  510. }
  511. #u39533 {
  512. border-width:0px;
  513. position:absolute;
  514. left:0px;
  515. top:0px;
  516. width:0px;
  517. height:0px;
  518. }
  519. #u39534_img {
  520. border-width:0px;
  521. position:absolute;
  522. left:0px;
  523. top:0px;
  524. width:24px;
  525. height:24px;
  526. }
  527. #u39534 {
  528. border-width:0px;
  529. position:absolute;
  530. left:1269px;
  531. top:795px;
  532. width:24px;
  533. height:24px;
  534. display:flex;
  535. font-size:8px;
  536. }
  537. #u39534 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 2px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u39534_text {
  545. border-width:0px;
  546. word-wrap:break-word;
  547. text-transform:none;
  548. }
  549. #u39535_div {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:25px;
  555. height:17px;
  556. background:inherit;
  557. background-color:rgba(255, 255, 255, 0);
  558. border:none;
  559. border-radius:0px;
  560. -moz-box-shadow:none;
  561. -webkit-box-shadow:none;
  562. box-shadow:none;
  563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  564. font-weight:400;
  565. font-style:normal;
  566. font-size:12px;
  567. }
  568. #u39535 {
  569. border-width:0px;
  570. position:absolute;
  571. left:1269px;
  572. top:820px;
  573. width:25px;
  574. height:17px;
  575. display:flex;
  576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  577. font-weight:400;
  578. font-style:normal;
  579. font-size:12px;
  580. }
  581. #u39535 .text {
  582. position:absolute;
  583. align-self:flex-start;
  584. padding:0px 0px 0px 0px;
  585. box-sizing:border-box;
  586. width:100%;
  587. }
  588. #u39535_text {
  589. border-width:0px;
  590. white-space:nowrap;
  591. text-transform:none;
  592. }
  593. #u39536_div {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:375px;
  599. height:681px;
  600. background:inherit;
  601. background-color:rgba(242, 242, 242, 0.462745098039216);
  602. border:none;
  603. border-radius:0px;
  604. -moz-box-shadow:none;
  605. -webkit-box-shadow:none;
  606. box-shadow:none;
  607. }
  608. #u39536 {
  609. border-width:0px;
  610. position:absolute;
  611. left:959px;
  612. top:108px;
  613. width:375px;
  614. height:681px;
  615. display:flex;
  616. }
  617. #u39536 .text {
  618. position:absolute;
  619. align-self:center;
  620. padding:2px 2px 2px 2px;
  621. box-sizing:border-box;
  622. width:100%;
  623. }
  624. #u39536_text {
  625. border-width:0px;
  626. word-wrap:break-word;
  627. text-transform:none;
  628. visibility:hidden;
  629. }
  630. #u39537 {
  631. border-width:0px;
  632. position:absolute;
  633. left:0px;
  634. top:0px;
  635. width:0px;
  636. height:0px;
  637. }
  638. #u39538_img {
  639. border-width:0px;
  640. position:absolute;
  641. left:0px;
  642. top:0px;
  643. width:24px;
  644. height:24px;
  645. }
  646. #u39538 {
  647. border-width:0px;
  648. position:absolute;
  649. left:1181px;
  650. top:793px;
  651. width:24px;
  652. height:24px;
  653. display:flex;
  654. font-size:8px;
  655. }
  656. #u39538 .text {
  657. position:absolute;
  658. align-self:center;
  659. padding:2px 2px 2px 2px;
  660. box-sizing:border-box;
  661. width:100%;
  662. }
  663. #u39538_text {
  664. border-width:0px;
  665. word-wrap:break-word;
  666. text-transform:none;
  667. }
  668. #u39539_div {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:37px;
  674. height:17px;
  675. background:inherit;
  676. background-color:rgba(255, 255, 255, 0);
  677. border:none;
  678. border-radius:0px;
  679. -moz-box-shadow:none;
  680. -webkit-box-shadow:none;
  681. box-shadow:none;
  682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  683. font-weight:400;
  684. font-style:normal;
  685. font-size:12px;
  686. }
  687. #u39539 {
  688. border-width:0px;
  689. position:absolute;
  690. left:1175px;
  691. top:818px;
  692. width:37px;
  693. height:17px;
  694. display:flex;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:12px;
  699. }
  700. #u39539 .text {
  701. position:absolute;
  702. align-self:flex-start;
  703. padding:0px 0px 0px 0px;
  704. box-sizing:border-box;
  705. width:100%;
  706. }
  707. #u39539_text {
  708. border-width:0px;
  709. white-space:nowrap;
  710. text-transform:none;
  711. }
  712. #u39540 {
  713. border-width:0px;
  714. position:absolute;
  715. left:0px;
  716. top:0px;
  717. width:0px;
  718. height:0px;
  719. }
  720. #u39541_img {
  721. border-width:0px;
  722. position:absolute;
  723. left:0px;
  724. top:0px;
  725. width:24px;
  726. height:24px;
  727. }
  728. #u39541 {
  729. border-width:0px;
  730. position:absolute;
  731. left:1087px;
  732. top:793px;
  733. width:24px;
  734. height:24px;
  735. display:flex;
  736. font-size:8px;
  737. }
  738. #u39541 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u39541_text {
  746. border-width:0px;
  747. word-wrap:break-word;
  748. text-transform:none;
  749. }
  750. #u39542_div {
  751. border-width:0px;
  752. position:absolute;
  753. left:0px;
  754. top:0px;
  755. width:37px;
  756. height:17px;
  757. background:inherit;
  758. background-color:rgba(255, 255, 255, 0);
  759. border:none;
  760. border-radius:0px;
  761. -moz-box-shadow:none;
  762. -webkit-box-shadow:none;
  763. box-shadow:none;
  764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  765. font-weight:400;
  766. font-style:normal;
  767. font-size:12px;
  768. }
  769. #u39542 {
  770. border-width:0px;
  771. position:absolute;
  772. left:1081px;
  773. top:818px;
  774. width:37px;
  775. height:17px;
  776. display:flex;
  777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  778. font-weight:400;
  779. font-style:normal;
  780. font-size:12px;
  781. }
  782. #u39542 .text {
  783. position:absolute;
  784. align-self:flex-start;
  785. padding:0px 0px 0px 0px;
  786. box-sizing:border-box;
  787. width:100%;
  788. }
  789. #u39542_text {
  790. border-width:0px;
  791. white-space:nowrap;
  792. text-transform:none;
  793. }
  794. #u39543_div {
  795. border-width:0px;
  796. position:absolute;
  797. left:0px;
  798. top:0px;
  799. width:375px;
  800. height:732px;
  801. background:inherit;
  802. background-color:rgba(244, 244, 244, 1);
  803. box-sizing:border-box;
  804. border-width:1px;
  805. border-style:solid;
  806. border-color:rgba(242, 242, 242, 1);
  807. border-radius:26px;
  808. border-top-left-radius:0px;
  809. border-top-right-radius:0px;
  810. -moz-box-shadow:none;
  811. -webkit-box-shadow:none;
  812. box-shadow:none;
  813. }
  814. #u39543 {
  815. border-width:0px;
  816. position:absolute;
  817. left:959px;
  818. top:108px;
  819. width:375px;
  820. height:732px;
  821. display:flex;
  822. }
  823. #u39543 .text {
  824. position:absolute;
  825. align-self:center;
  826. padding:2px 2px 2px 2px;
  827. box-sizing:border-box;
  828. width:100%;
  829. }
  830. #u39543_text {
  831. border-width:0px;
  832. word-wrap:break-word;
  833. text-transform:none;
  834. visibility:hidden;
  835. }
  836. #u39544_img {
  837. border-width:0px;
  838. position:absolute;
  839. left:0px;
  840. top:0px;
  841. width:376px;
  842. height:818px;
  843. }
  844. #u39544 {
  845. border-width:0px;
  846. position:absolute;
  847. left:958px;
  848. top:25px;
  849. width:376px;
  850. height:818px;
  851. display:flex;
  852. }
  853. #u39544 .text {
  854. position:absolute;
  855. align-self:center;
  856. padding:2px 2px 2px 2px;
  857. box-sizing:border-box;
  858. width:100%;
  859. }
  860. #u39544_text {
  861. border-width:0px;
  862. word-wrap:break-word;
  863. text-transform:none;
  864. visibility:hidden;
  865. }
  866. #u39546_img {
  867. border-width:0px;
  868. position:absolute;
  869. left:0px;
  870. top:0px;
  871. width:433px;
  872. height:865px;
  873. }
  874. #u39546 {
  875. border-width:0px;
  876. position:absolute;
  877. left:0px;
  878. top:0px;
  879. width:433px;
  880. height:865px;
  881. display:flex;
  882. }
  883. #u39546 .text {
  884. position:absolute;
  885. align-self:center;
  886. padding:2px 2px 2px 2px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u39546_text {
  891. border-width:0px;
  892. word-wrap:break-word;
  893. text-transform:none;
  894. visibility:hidden;
  895. }
  896. #u39547_div {
  897. border-width:0px;
  898. position:absolute;
  899. left:0px;
  900. top:0px;
  901. width:375px;
  902. height:40px;
  903. background:inherit;
  904. background-color:rgba(255, 255, 255, 1);
  905. box-sizing:border-box;
  906. border-width:1px;
  907. border-style:solid;
  908. border-color:rgba(215, 215, 215, 1);
  909. border-left:0px;
  910. border-top:0px;
  911. border-right:0px;
  912. border-radius:0px;
  913. border-bottom-right-radius:0px;
  914. border-bottom-left-radius:0px;
  915. -moz-box-shadow:none;
  916. -webkit-box-shadow:none;
  917. box-shadow:none;
  918. }
  919. #u39547 {
  920. border-width:0px;
  921. position:absolute;
  922. left:29px;
  923. top:67px;
  924. width:375px;
  925. height:40px;
  926. display:flex;
  927. }
  928. #u39547 .text {
  929. position:absolute;
  930. align-self:center;
  931. padding:2px 2px 2px 2px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u39547_text {
  936. border-width:0px;
  937. word-wrap:break-word;
  938. text-transform:none;
  939. visibility:hidden;
  940. }
  941. #u39548 {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:0px;
  947. height:0px;
  948. }
  949. #u39549_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:88px;
  955. height:32px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 1);
  958. box-sizing:border-box;
  959. border-width:1px;
  960. border-style:solid;
  961. border-color:rgba(242, 242, 242, 1);
  962. border-radius:33px;
  963. -moz-box-shadow:none;
  964. -webkit-box-shadow:none;
  965. box-shadow:none;
  966. }
  967. #u39549 {
  968. border-width:0px;
  969. position:absolute;
  970. left:309px;
  971. top:71px;
  972. width:88px;
  973. height:32px;
  974. display:flex;
  975. }
  976. #u39549 .text {
  977. position:absolute;
  978. align-self:center;
  979. padding:2px 2px 2px 2px;
  980. box-sizing:border-box;
  981. width:100%;
  982. }
  983. #u39549_text {
  984. border-width:0px;
  985. word-wrap:break-word;
  986. text-transform:none;
  987. visibility:hidden;
  988. }
  989. #u39550 {
  990. border-width:0px;
  991. position:absolute;
  992. left:0px;
  993. top:0px;
  994. width:0px;
  995. height:0px;
  996. }
  997. #u39551_img {
  998. border-width:0px;
  999. position:absolute;
  1000. left:0px;
  1001. top:0px;
  1002. width:18px;
  1003. height:18px;
  1004. }
  1005. #u39551 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:372px;
  1009. top:78px;
  1010. width:18px;
  1011. height:18px;
  1012. display:flex;
  1013. }
  1014. #u39551 .text {
  1015. position:absolute;
  1016. align-self:center;
  1017. padding:2px 2px 2px 2px;
  1018. box-sizing:border-box;
  1019. width:100%;
  1020. }
  1021. #u39551_text {
  1022. border-width:0px;
  1023. word-wrap:break-word;
  1024. text-transform:none;
  1025. visibility:hidden;
  1026. }
  1027. #u39552_img {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:6px;
  1033. height:6px;
  1034. }
  1035. #u39552 {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:378px;
  1039. top:84px;
  1040. width:6px;
  1041. height:6px;
  1042. display:flex;
  1043. }
  1044. #u39552 .text {
  1045. position:absolute;
  1046. align-self:center;
  1047. padding:2px 2px 2px 2px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u39552_text {
  1052. border-width:0px;
  1053. word-wrap:break-word;
  1054. text-transform:none;
  1055. visibility:hidden;
  1056. }
  1057. #u39553 {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:0px;
  1063. height:0px;
  1064. }
  1065. #u39554_img {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:0px;
  1069. top:0px;
  1070. width:5px;
  1071. height:5px;
  1072. }
  1073. #u39554 {
  1074. border-width:0px;
  1075. position:absolute;
  1076. left:323px;
  1077. top:85px;
  1078. width:5px;
  1079. height:5px;
  1080. display:flex;
  1081. }
  1082. #u39554 .text {
  1083. position:absolute;
  1084. align-self:center;
  1085. padding:2px 2px 2px 2px;
  1086. box-sizing:border-box;
  1087. width:100%;
  1088. }
  1089. #u39554_text {
  1090. border-width:0px;
  1091. word-wrap:break-word;
  1092. text-transform:none;
  1093. visibility:hidden;
  1094. }
  1095. #u39555_img {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:0px;
  1099. top:0px;
  1100. width:5px;
  1101. height:5px;
  1102. }
  1103. #u39555 {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:339px;
  1107. top:85px;
  1108. width:5px;
  1109. height:5px;
  1110. display:flex;
  1111. }
  1112. #u39555 .text {
  1113. position:absolute;
  1114. align-self:center;
  1115. padding:2px 2px 2px 2px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u39555_text {
  1120. border-width:0px;
  1121. word-wrap:break-word;
  1122. text-transform:none;
  1123. visibility:hidden;
  1124. }
  1125. #u39556_img {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:7px;
  1131. height:7px;
  1132. }
  1133. #u39556 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:330px;
  1137. top:84px;
  1138. width:7px;
  1139. height:7px;
  1140. display:flex;
  1141. }
  1142. #u39556 .text {
  1143. position:absolute;
  1144. align-self:center;
  1145. padding:2px 2px 2px 2px;
  1146. box-sizing:border-box;
  1147. width:100%;
  1148. }
  1149. #u39556_text {
  1150. border-width:0px;
  1151. word-wrap:break-word;
  1152. text-transform:none;
  1153. visibility:hidden;
  1154. }
  1155. #u39557_img {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:19px;
  1161. height:2px;
  1162. }
  1163. #u39557 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:347px;
  1167. top:87px;
  1168. width:18px;
  1169. height:1px;
  1170. display:flex;
  1171. -webkit-transform:rotate(90deg);
  1172. -moz-transform:rotate(90deg);
  1173. -ms-transform:rotate(90deg);
  1174. transform:rotate(90deg);
  1175. }
  1176. #u39557 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u39557_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. visibility:hidden;
  1188. }
  1189. #u39558_img {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:375px;
  1195. height:44px;
  1196. }
  1197. #u39558 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:29px;
  1201. top:24px;
  1202. width:375px;
  1203. height:44px;
  1204. display:flex;
  1205. }
  1206. #u39558 .text {
  1207. position:absolute;
  1208. align-self:center;
  1209. padding:2px 2px 2px 2px;
  1210. box-sizing:border-box;
  1211. width:100%;
  1212. }
  1213. #u39558_text {
  1214. border-width:0px;
  1215. word-wrap:break-word;
  1216. text-transform:none;
  1217. visibility:hidden;
  1218. }
  1219. #u39559_div {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:0px;
  1223. top:0px;
  1224. width:375px;
  1225. height:50px;
  1226. background:inherit;
  1227. background-color:rgba(255, 255, 255, 1);
  1228. box-sizing:border-box;
  1229. border-width:1px;
  1230. border-style:solid;
  1231. border-color:rgba(242, 242, 242, 1);
  1232. border-radius:26px;
  1233. border-top-left-radius:0px;
  1234. border-top-right-radius:0px;
  1235. -moz-box-shadow:none;
  1236. -webkit-box-shadow:none;
  1237. box-shadow:none;
  1238. }
  1239. #u39559 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:29px;
  1243. top:788px;
  1244. width:375px;
  1245. height:50px;
  1246. display:flex;
  1247. }
  1248. #u39559 .text {
  1249. position:absolute;
  1250. align-self:center;
  1251. padding:2px 2px 2px 2px;
  1252. box-sizing:border-box;
  1253. width:100%;
  1254. }
  1255. #u39559_text {
  1256. border-width:0px;
  1257. word-wrap:break-word;
  1258. text-transform:none;
  1259. visibility:hidden;
  1260. }
  1261. #u39560 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:0px;
  1265. top:0px;
  1266. width:0px;
  1267. height:0px;
  1268. }
  1269. #u39561_img {
  1270. border-width:0px;
  1271. position:absolute;
  1272. left:0px;
  1273. top:0px;
  1274. width:24px;
  1275. height:24px;
  1276. }
  1277. #u39561 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:69px;
  1281. top:792px;
  1282. width:24px;
  1283. height:24px;
  1284. display:flex;
  1285. font-size:8px;
  1286. }
  1287. #u39561 .text {
  1288. position:absolute;
  1289. align-self:center;
  1290. padding:2px 2px 2px 2px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u39561_text {
  1295. border-width:0px;
  1296. word-wrap:break-word;
  1297. text-transform:none;
  1298. }
  1299. #u39562_div {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:25px;
  1305. height:17px;
  1306. background:inherit;
  1307. background-color:rgba(255, 255, 255, 0);
  1308. border:none;
  1309. border-radius:0px;
  1310. -moz-box-shadow:none;
  1311. -webkit-box-shadow:none;
  1312. box-shadow:none;
  1313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1314. font-weight:400;
  1315. font-style:normal;
  1316. font-size:12px;
  1317. }
  1318. #u39562 {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:69px;
  1322. top:817px;
  1323. width:25px;
  1324. height:17px;
  1325. display:flex;
  1326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1327. font-weight:400;
  1328. font-style:normal;
  1329. font-size:12px;
  1330. }
  1331. #u39562 .text {
  1332. position:absolute;
  1333. align-self:flex-start;
  1334. padding:0px 0px 0px 0px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u39562_text {
  1339. border-width:0px;
  1340. white-space:nowrap;
  1341. text-transform:none;
  1342. }
  1343. #u39563 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:0px;
  1349. height:0px;
  1350. }
  1351. #u39564_img {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:24px;
  1357. height:24px;
  1358. }
  1359. #u39564 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:339px;
  1363. top:794px;
  1364. width:24px;
  1365. height:24px;
  1366. display:flex;
  1367. font-size:8px;
  1368. }
  1369. #u39564 .text {
  1370. position:absolute;
  1371. align-self:center;
  1372. padding:2px 2px 2px 2px;
  1373. box-sizing:border-box;
  1374. width:100%;
  1375. }
  1376. #u39564_text {
  1377. border-width:0px;
  1378. word-wrap:break-word;
  1379. text-transform:none;
  1380. }
  1381. #u39565_div {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:0px;
  1385. top:0px;
  1386. width:25px;
  1387. height:17px;
  1388. background:inherit;
  1389. background-color:rgba(255, 255, 255, 0);
  1390. border:none;
  1391. border-radius:0px;
  1392. -moz-box-shadow:none;
  1393. -webkit-box-shadow:none;
  1394. box-shadow:none;
  1395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1396. font-weight:400;
  1397. font-style:normal;
  1398. font-size:12px;
  1399. }
  1400. #u39565 {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:339px;
  1404. top:819px;
  1405. width:25px;
  1406. height:17px;
  1407. display:flex;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:12px;
  1412. }
  1413. #u39565 .text {
  1414. position:absolute;
  1415. align-self:flex-start;
  1416. padding:0px 0px 0px 0px;
  1417. box-sizing:border-box;
  1418. width:100%;
  1419. }
  1420. #u39565_text {
  1421. border-width:0px;
  1422. white-space:nowrap;
  1423. text-transform:none;
  1424. }
  1425. #u39566_div {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:375px;
  1431. height:681px;
  1432. background:inherit;
  1433. background-color:rgba(242, 242, 242, 0.462745098039216);
  1434. border:none;
  1435. border-radius:0px;
  1436. -moz-box-shadow:none;
  1437. -webkit-box-shadow:none;
  1438. box-shadow:none;
  1439. }
  1440. #u39566 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:29px;
  1444. top:107px;
  1445. width:375px;
  1446. height:681px;
  1447. display:flex;
  1448. }
  1449. #u39566 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u39566_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u39567 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u39568_img {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:24px;
  1476. height:24px;
  1477. }
  1478. #u39568 {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:251px;
  1482. top:792px;
  1483. width:24px;
  1484. height:24px;
  1485. display:flex;
  1486. font-size:8px;
  1487. }
  1488. #u39568 .text {
  1489. position:absolute;
  1490. align-self:center;
  1491. padding:2px 2px 2px 2px;
  1492. box-sizing:border-box;
  1493. width:100%;
  1494. }
  1495. #u39568_text {
  1496. border-width:0px;
  1497. word-wrap:break-word;
  1498. text-transform:none;
  1499. }
  1500. #u39569_div {
  1501. border-width:0px;
  1502. position:absolute;
  1503. left:0px;
  1504. top:0px;
  1505. width:37px;
  1506. height:17px;
  1507. background:inherit;
  1508. background-color:rgba(255, 255, 255, 0);
  1509. border:none;
  1510. border-radius:0px;
  1511. -moz-box-shadow:none;
  1512. -webkit-box-shadow:none;
  1513. box-shadow:none;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:12px;
  1518. }
  1519. #u39569 {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:245px;
  1523. top:817px;
  1524. width:37px;
  1525. height:17px;
  1526. display:flex;
  1527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1528. font-weight:400;
  1529. font-style:normal;
  1530. font-size:12px;
  1531. }
  1532. #u39569 .text {
  1533. position:absolute;
  1534. align-self:flex-start;
  1535. padding:0px 0px 0px 0px;
  1536. box-sizing:border-box;
  1537. width:100%;
  1538. }
  1539. #u39569_text {
  1540. border-width:0px;
  1541. white-space:nowrap;
  1542. text-transform:none;
  1543. }
  1544. #u39570 {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:0px;
  1548. top:0px;
  1549. width:0px;
  1550. height:0px;
  1551. }
  1552. #u39571_img {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:24px;
  1558. height:24px;
  1559. }
  1560. #u39571 {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:157px;
  1564. top:792px;
  1565. width:24px;
  1566. height:24px;
  1567. display:flex;
  1568. font-size:8px;
  1569. }
  1570. #u39571 .text {
  1571. position:absolute;
  1572. align-self:center;
  1573. padding:2px 2px 2px 2px;
  1574. box-sizing:border-box;
  1575. width:100%;
  1576. }
  1577. #u39571_text {
  1578. border-width:0px;
  1579. word-wrap:break-word;
  1580. text-transform:none;
  1581. }
  1582. #u39572_div {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:37px;
  1588. height:17px;
  1589. background:inherit;
  1590. background-color:rgba(255, 255, 255, 0);
  1591. border:none;
  1592. border-radius:0px;
  1593. -moz-box-shadow:none;
  1594. -webkit-box-shadow:none;
  1595. box-shadow:none;
  1596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1597. font-weight:400;
  1598. font-style:normal;
  1599. font-size:12px;
  1600. }
  1601. #u39572 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:151px;
  1605. top:817px;
  1606. width:37px;
  1607. height:17px;
  1608. display:flex;
  1609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1610. font-weight:400;
  1611. font-style:normal;
  1612. font-size:12px;
  1613. }
  1614. #u39572 .text {
  1615. position:absolute;
  1616. align-self:flex-start;
  1617. padding:0px 0px 0px 0px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u39572_text {
  1622. border-width:0px;
  1623. white-space:nowrap;
  1624. text-transform:none;
  1625. }
  1626. #u39573_div {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:375px;
  1632. height:772px;
  1633. background:inherit;
  1634. background-color:rgba(24, 144, 255, 1);
  1635. border:none;
  1636. border-top:0px;
  1637. border-radius:28px;
  1638. border-top-left-radius:0px;
  1639. border-top-right-radius:0px;
  1640. -moz-box-shadow:none;
  1641. -webkit-box-shadow:none;
  1642. box-shadow:none;
  1643. }
  1644. #u39573 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:29px;
  1648. top:68px;
  1649. width:375px;
  1650. height:772px;
  1651. display:flex;
  1652. }
  1653. #u39573 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:2px 2px 2px 2px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u39573_text {
  1661. border-width:0px;
  1662. word-wrap:break-word;
  1663. text-transform:none;
  1664. visibility:hidden;
  1665. }
  1666. #u39574_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:12px;
  1672. height:12px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. box-sizing:border-box;
  1676. border-width:2px;
  1677. border-style:solid;
  1678. border-color:rgba(255, 255, 255, 1);
  1679. border-right:0px;
  1680. border-bottom:0px;
  1681. border-radius:0px;
  1682. border-top-right-radius:0px;
  1683. border-bottom-left-radius:0px;
  1684. -moz-box-shadow:none;
  1685. -webkit-box-shadow:none;
  1686. box-shadow:none;
  1687. }
  1688. #u39574 {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:39px;
  1692. top:81px;
  1693. width:12px;
  1694. height:12px;
  1695. display:flex;
  1696. -webkit-transform:rotate(315deg);
  1697. -moz-transform:rotate(315deg);
  1698. -ms-transform:rotate(315deg);
  1699. transform:rotate(315deg);
  1700. }
  1701. #u39574 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u39574_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u39575 {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:0px;
  1720. height:0px;
  1721. }
  1722. #u39576_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:88px;
  1728. height:32px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. box-sizing:border-box;
  1732. border-width:1px;
  1733. border-style:solid;
  1734. border-color:rgba(242, 242, 242, 1);
  1735. border-radius:33px;
  1736. -moz-box-shadow:none;
  1737. -webkit-box-shadow:none;
  1738. box-shadow:none;
  1739. }
  1740. #u39576 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:309px;
  1744. top:71px;
  1745. width:88px;
  1746. height:32px;
  1747. display:flex;
  1748. }
  1749. #u39576 .text {
  1750. position:absolute;
  1751. align-self:center;
  1752. padding:2px 2px 2px 2px;
  1753. box-sizing:border-box;
  1754. width:100%;
  1755. }
  1756. #u39576_text {
  1757. border-width:0px;
  1758. word-wrap:break-word;
  1759. text-transform:none;
  1760. visibility:hidden;
  1761. }
  1762. #u39577 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:0px;
  1768. height:0px;
  1769. }
  1770. #u39578_img {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:18px;
  1776. height:18px;
  1777. }
  1778. #u39578 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:372px;
  1782. top:78px;
  1783. width:18px;
  1784. height:18px;
  1785. display:flex;
  1786. }
  1787. #u39578 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 2px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u39578_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. visibility:hidden;
  1799. }
  1800. #u39579_img {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:6px;
  1806. height:6px;
  1807. }
  1808. #u39579 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:378px;
  1812. top:84px;
  1813. width:6px;
  1814. height:6px;
  1815. display:flex;
  1816. }
  1817. #u39579 .text {
  1818. position:absolute;
  1819. align-self:center;
  1820. padding:2px 2px 2px 2px;
  1821. box-sizing:border-box;
  1822. width:100%;
  1823. }
  1824. #u39579_text {
  1825. border-width:0px;
  1826. word-wrap:break-word;
  1827. text-transform:none;
  1828. visibility:hidden;
  1829. }
  1830. #u39580 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:0px;
  1836. height:0px;
  1837. }
  1838. #u39581_img {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:5px;
  1844. height:5px;
  1845. }
  1846. #u39581 {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:323px;
  1850. top:85px;
  1851. width:5px;
  1852. height:5px;
  1853. display:flex;
  1854. }
  1855. #u39581 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:2px 2px 2px 2px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u39581_text {
  1863. border-width:0px;
  1864. word-wrap:break-word;
  1865. text-transform:none;
  1866. visibility:hidden;
  1867. }
  1868. #u39582_img {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:5px;
  1874. height:5px;
  1875. }
  1876. #u39582 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:339px;
  1880. top:85px;
  1881. width:5px;
  1882. height:5px;
  1883. display:flex;
  1884. }
  1885. #u39582 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:2px 2px 2px 2px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u39582_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. visibility:hidden;
  1897. }
  1898. #u39583_img {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:7px;
  1904. height:7px;
  1905. }
  1906. #u39583 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:330px;
  1910. top:84px;
  1911. width:7px;
  1912. height:7px;
  1913. display:flex;
  1914. }
  1915. #u39583 .text {
  1916. position:absolute;
  1917. align-self:center;
  1918. padding:2px 2px 2px 2px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u39583_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. visibility:hidden;
  1927. }
  1928. #u39584_img {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:19px;
  1934. height:2px;
  1935. }
  1936. #u39584 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:347px;
  1940. top:87px;
  1941. width:18px;
  1942. height:1px;
  1943. display:flex;
  1944. -webkit-transform:rotate(90deg);
  1945. -moz-transform:rotate(90deg);
  1946. -ms-transform:rotate(90deg);
  1947. transform:rotate(90deg);
  1948. }
  1949. #u39584 .text {
  1950. position:absolute;
  1951. align-self:center;
  1952. padding:2px 2px 2px 2px;
  1953. box-sizing:border-box;
  1954. width:100%;
  1955. }
  1956. #u39584_text {
  1957. border-width:0px;
  1958. word-wrap:break-word;
  1959. text-transform:none;
  1960. visibility:hidden;
  1961. }
  1962. #u39585_div {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:169px;
  1968. height:40px;
  1969. background:inherit;
  1970. background-color:rgba(255, 255, 255, 0);
  1971. border:none;
  1972. border-left:0px;
  1973. border-top:0px;
  1974. border-right:0px;
  1975. border-radius:0px;
  1976. border-bottom-right-radius:0px;
  1977. border-bottom-left-radius:0px;
  1978. -moz-box-shadow:none;
  1979. -webkit-box-shadow:none;
  1980. box-shadow:none;
  1981. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1982. font-weight:500;
  1983. font-style:normal;
  1984. font-size:28px;
  1985. color:#FFFFFF;
  1986. text-align:right;
  1987. }
  1988. #u39585 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:132px;
  1992. top:311px;
  1993. width:169px;
  1994. height:40px;
  1995. display:flex;
  1996. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1997. font-weight:500;
  1998. font-style:normal;
  1999. font-size:28px;
  2000. color:#FFFFFF;
  2001. text-align:right;
  2002. }
  2003. #u39585 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:0px 0px 0px 0px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u39585_text {
  2011. border-width:0px;
  2012. white-space:nowrap;
  2013. text-transform:none;
  2014. }
  2015. #u39586_div {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:360px;
  2021. height:410px;
  2022. background:inherit;
  2023. background-color:rgba(255, 255, 255, 1);
  2024. border:none;
  2025. border-bottom:0px;
  2026. border-radius:18px;
  2027. border-bottom-right-radius:0px;
  2028. border-bottom-left-radius:0px;
  2029. -moz-box-shadow:none;
  2030. -webkit-box-shadow:none;
  2031. box-shadow:none;
  2032. }
  2033. #u39586 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:37px;
  2037. top:370px;
  2038. width:360px;
  2039. height:410px;
  2040. display:flex;
  2041. }
  2042. #u39586 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 2px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u39586_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. visibility:hidden;
  2054. }
  2055. #u39587_div {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:73px;
  2061. height:25px;
  2062. background:inherit;
  2063. background-color:rgba(255, 255, 255, 0);
  2064. border:none;
  2065. border-left:0px;
  2066. border-top:0px;
  2067. border-right:0px;
  2068. border-radius:0px;
  2069. border-bottom-right-radius:0px;
  2070. border-bottom-left-radius:0px;
  2071. -moz-box-shadow:none;
  2072. -webkit-box-shadow:none;
  2073. box-shadow:none;
  2074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2075. font-weight:500;
  2076. font-style:normal;
  2077. font-size:18px;
  2078. color:#5C93FF;
  2079. text-align:center;
  2080. }
  2081. #u39587 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:180px;
  2085. top:403px;
  2086. width:73px;
  2087. height:25px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2090. font-weight:500;
  2091. font-style:normal;
  2092. font-size:18px;
  2093. color:#5C93FF;
  2094. text-align:center;
  2095. }
  2096. #u39587 .text {
  2097. position:absolute;
  2098. align-self:center;
  2099. padding:0px 0px 0px 0px;
  2100. box-sizing:border-box;
  2101. width:100%;
  2102. }
  2103. #u39587_text {
  2104. border-width:0px;
  2105. white-space:nowrap;
  2106. text-transform:none;
  2107. }
  2108. #u39588_img {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:30px;
  2114. height:30px;
  2115. }
  2116. #u39588 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:57px;
  2120. top:463px;
  2121. width:30px;
  2122. height:30px;
  2123. display:flex;
  2124. color:#FFFFFF;
  2125. }
  2126. #u39588 .text {
  2127. position:absolute;
  2128. align-self:center;
  2129. padding:2px 2px 2px 2px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u39588_text {
  2134. border-width:0px;
  2135. word-wrap:break-word;
  2136. text-transform:none;
  2137. }
  2138. #u39589_div {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:73px;
  2144. height:25px;
  2145. background:inherit;
  2146. background-color:rgba(255, 255, 255, 0);
  2147. border:none;
  2148. border-left:0px;
  2149. border-top:0px;
  2150. border-right:0px;
  2151. border-radius:0px;
  2152. border-bottom-right-radius:0px;
  2153. border-bottom-left-radius:0px;
  2154. -moz-box-shadow:none;
  2155. -webkit-box-shadow:none;
  2156. box-shadow:none;
  2157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2158. font-weight:500;
  2159. font-style:normal;
  2160. font-size:18px;
  2161. color:#5C93FF;
  2162. }
  2163. #u39589 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:95px;
  2167. top:463px;
  2168. width:73px;
  2169. height:25px;
  2170. display:flex;
  2171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2172. font-weight:500;
  2173. font-style:normal;
  2174. font-size:18px;
  2175. color:#5C93FF;
  2176. }
  2177. #u39589 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:0px 0px 0px 0px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u39589_text {
  2185. border-width:0px;
  2186. white-space:nowrap;
  2187. text-transform:none;
  2188. }
  2189. #u39590_div {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:169px;
  2195. height:30px;
  2196. background:inherit;
  2197. background-color:rgba(255, 255, 255, 0);
  2198. border:none;
  2199. border-left:0px;
  2200. border-top:0px;
  2201. border-right:0px;
  2202. border-radius:0px;
  2203. border-bottom-right-radius:0px;
  2204. border-bottom-left-radius:0px;
  2205. -moz-box-shadow:none;
  2206. -webkit-box-shadow:none;
  2207. box-shadow:none;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:12px;
  2212. line-height:30px;
  2213. }
  2214. #u39590 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:95px;
  2218. top:488px;
  2219. width:169px;
  2220. height:30px;
  2221. display:flex;
  2222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:12px;
  2226. line-height:30px;
  2227. }
  2228. #u39590 .text {
  2229. position:absolute;
  2230. align-self:flex-start;
  2231. padding:0px 0px 0px 0px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u39590_text {
  2236. border-width:0px;
  2237. white-space:nowrap;
  2238. text-transform:none;
  2239. }
  2240. #u39591_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:30px;
  2246. height:30px;
  2247. }
  2248. #u39591 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:57px;
  2252. top:533px;
  2253. width:30px;
  2254. height:30px;
  2255. display:flex;
  2256. color:#FFFFFF;
  2257. }
  2258. #u39591 .text {
  2259. position:absolute;
  2260. align-self:center;
  2261. padding:2px 2px 2px 2px;
  2262. box-sizing:border-box;
  2263. width:100%;
  2264. }
  2265. #u39591_text {
  2266. border-width:0px;
  2267. word-wrap:break-word;
  2268. text-transform:none;
  2269. }
  2270. #u39592_div {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:73px;
  2276. height:25px;
  2277. background:inherit;
  2278. background-color:rgba(255, 255, 255, 0);
  2279. border:none;
  2280. border-left:0px;
  2281. border-top:0px;
  2282. border-right:0px;
  2283. border-radius:0px;
  2284. border-bottom-right-radius:0px;
  2285. border-bottom-left-radius:0px;
  2286. -moz-box-shadow:none;
  2287. -webkit-box-shadow:none;
  2288. box-shadow:none;
  2289. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2290. font-weight:500;
  2291. font-style:normal;
  2292. font-size:18px;
  2293. color:#5C93FF;
  2294. }
  2295. #u39592 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:95px;
  2299. top:535px;
  2300. width:73px;
  2301. height:25px;
  2302. display:flex;
  2303. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2304. font-weight:500;
  2305. font-style:normal;
  2306. font-size:18px;
  2307. color:#5C93FF;
  2308. }
  2309. #u39592 .text {
  2310. position:absolute;
  2311. align-self:center;
  2312. padding:0px 0px 0px 0px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u39592_text {
  2317. border-width:0px;
  2318. white-space:nowrap;
  2319. text-transform:none;
  2320. }
  2321. #u39593_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:205px;
  2327. height:30px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 0);
  2330. border:none;
  2331. border-left:0px;
  2332. border-top:0px;
  2333. border-right:0px;
  2334. border-radius:0px;
  2335. border-bottom-right-radius:0px;
  2336. border-bottom-left-radius:0px;
  2337. -moz-box-shadow:none;
  2338. -webkit-box-shadow:none;
  2339. box-shadow:none;
  2340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2341. font-weight:400;
  2342. font-style:normal;
  2343. font-size:12px;
  2344. line-height:30px;
  2345. }
  2346. #u39593 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:95px;
  2350. top:560px;
  2351. width:205px;
  2352. height:30px;
  2353. display:flex;
  2354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2355. font-weight:400;
  2356. font-style:normal;
  2357. font-size:12px;
  2358. line-height:30px;
  2359. }
  2360. #u39593 .text {
  2361. position:absolute;
  2362. align-self:flex-start;
  2363. padding:0px 0px 0px 0px;
  2364. box-sizing:border-box;
  2365. width:100%;
  2366. }
  2367. #u39593_text {
  2368. border-width:0px;
  2369. white-space:nowrap;
  2370. text-transform:none;
  2371. }
  2372. #u39594_img {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:30px;
  2378. height:30px;
  2379. }
  2380. #u39594 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:57px;
  2384. top:603px;
  2385. width:30px;
  2386. height:30px;
  2387. display:flex;
  2388. color:#FFFFFF;
  2389. }
  2390. #u39594 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 2px 2px 2px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u39594_text {
  2398. border-width:0px;
  2399. word-wrap:break-word;
  2400. text-transform:none;
  2401. }
  2402. #u39595_div {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:73px;
  2408. height:25px;
  2409. background:inherit;
  2410. background-color:rgba(255, 255, 255, 0);
  2411. border:none;
  2412. border-left:0px;
  2413. border-top:0px;
  2414. border-right:0px;
  2415. border-radius:0px;
  2416. border-bottom-right-radius:0px;
  2417. border-bottom-left-radius:0px;
  2418. -moz-box-shadow:none;
  2419. -webkit-box-shadow:none;
  2420. box-shadow:none;
  2421. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2422. font-weight:500;
  2423. font-style:normal;
  2424. font-size:18px;
  2425. color:#5C93FF;
  2426. }
  2427. #u39595 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:95px;
  2431. top:605px;
  2432. width:73px;
  2433. height:25px;
  2434. display:flex;
  2435. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2436. font-weight:500;
  2437. font-style:normal;
  2438. font-size:18px;
  2439. color:#5C93FF;
  2440. }
  2441. #u39595 .text {
  2442. position:absolute;
  2443. align-self:center;
  2444. padding:0px 0px 0px 0px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u39595_text {
  2449. border-width:0px;
  2450. white-space:nowrap;
  2451. text-transform:none;
  2452. }
  2453. #u39596_div {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:286px;
  2459. height:34px;
  2460. background:inherit;
  2461. background-color:rgba(255, 255, 255, 0);
  2462. border:none;
  2463. border-left:0px;
  2464. border-top:0px;
  2465. border-right:0px;
  2466. border-radius:0px;
  2467. border-bottom-right-radius:0px;
  2468. border-bottom-left-radius:0px;
  2469. -moz-box-shadow:none;
  2470. -webkit-box-shadow:none;
  2471. box-shadow:none;
  2472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:12px;
  2476. }
  2477. #u39596 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:95px;
  2481. top:635px;
  2482. width:286px;
  2483. height:34px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. }
  2490. #u39596 .text {
  2491. position:absolute;
  2492. align-self:flex-start;
  2493. padding:0px 0px 0px 0px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u39596_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. }
  2502. #u39597_img {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:300px;
  2508. height:170px;
  2509. }
  2510. #u39597 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:66px;
  2514. top:121px;
  2515. width:300px;
  2516. height:170px;
  2517. display:flex;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:18px;
  2522. }
  2523. #u39597 .text {
  2524. position:absolute;
  2525. align-self:center;
  2526. padding:2px 2px 2px 2px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u39597_text {
  2531. border-width:0px;
  2532. word-wrap:break-word;
  2533. text-transform:none;
  2534. }
  2535. #u39599_img {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:433px;
  2541. height:865px;
  2542. }
  2543. #u39599 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:463px;
  2547. top:1px;
  2548. width:433px;
  2549. height:865px;
  2550. display:flex;
  2551. }
  2552. #u39599 .text {
  2553. position:absolute;
  2554. align-self:center;
  2555. padding:2px 2px 2px 2px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u39599_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. visibility:hidden;
  2564. }
  2565. #u39600_div {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:0px;
  2570. width:375px;
  2571. height:40px;
  2572. background:inherit;
  2573. background-color:rgba(255, 255, 255, 1);
  2574. box-sizing:border-box;
  2575. border-width:1px;
  2576. border-style:solid;
  2577. border-color:rgba(215, 215, 215, 1);
  2578. border-left:0px;
  2579. border-top:0px;
  2580. border-right:0px;
  2581. border-radius:0px;
  2582. border-bottom-right-radius:0px;
  2583. border-bottom-left-radius:0px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. }
  2588. #u39600 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:492px;
  2592. top:68px;
  2593. width:375px;
  2594. height:40px;
  2595. display:flex;
  2596. }
  2597. #u39600 .text {
  2598. position:absolute;
  2599. align-self:center;
  2600. padding:2px 2px 2px 2px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u39600_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. visibility:hidden;
  2609. }
  2610. #u39601 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:0px;
  2616. height:0px;
  2617. }
  2618. #u39602_div {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:88px;
  2624. height:32px;
  2625. background:inherit;
  2626. background-color:rgba(255, 255, 255, 1);
  2627. box-sizing:border-box;
  2628. border-width:1px;
  2629. border-style:solid;
  2630. border-color:rgba(242, 242, 242, 1);
  2631. border-radius:33px;
  2632. -moz-box-shadow:none;
  2633. -webkit-box-shadow:none;
  2634. box-shadow:none;
  2635. }
  2636. #u39602 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:772px;
  2640. top:72px;
  2641. width:88px;
  2642. height:32px;
  2643. display:flex;
  2644. }
  2645. #u39602 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 2px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u39602_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u39603 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:0px;
  2664. height:0px;
  2665. }
  2666. #u39604_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:18px;
  2672. height:18px;
  2673. }
  2674. #u39604 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:835px;
  2678. top:79px;
  2679. width:18px;
  2680. height:18px;
  2681. display:flex;
  2682. }
  2683. #u39604 .text {
  2684. position:absolute;
  2685. align-self:center;
  2686. padding:2px 2px 2px 2px;
  2687. box-sizing:border-box;
  2688. width:100%;
  2689. }
  2690. #u39604_text {
  2691. border-width:0px;
  2692. word-wrap:break-word;
  2693. text-transform:none;
  2694. visibility:hidden;
  2695. }
  2696. #u39605_img {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:6px;
  2702. height:6px;
  2703. }
  2704. #u39605 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:841px;
  2708. top:85px;
  2709. width:6px;
  2710. height:6px;
  2711. display:flex;
  2712. }
  2713. #u39605 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 2px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u39605_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. visibility:hidden;
  2725. }
  2726. #u39606 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:0px;
  2732. height:0px;
  2733. }
  2734. #u39607_img {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:5px;
  2740. height:5px;
  2741. }
  2742. #u39607 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:786px;
  2746. top:86px;
  2747. width:5px;
  2748. height:5px;
  2749. display:flex;
  2750. }
  2751. #u39607 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:2px 2px 2px 2px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u39607_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. visibility:hidden;
  2763. }
  2764. #u39608_img {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:5px;
  2770. height:5px;
  2771. }
  2772. #u39608 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:802px;
  2776. top:86px;
  2777. width:5px;
  2778. height:5px;
  2779. display:flex;
  2780. }
  2781. #u39608 .text {
  2782. position:absolute;
  2783. align-self:center;
  2784. padding:2px 2px 2px 2px;
  2785. box-sizing:border-box;
  2786. width:100%;
  2787. }
  2788. #u39608_text {
  2789. border-width:0px;
  2790. word-wrap:break-word;
  2791. text-transform:none;
  2792. visibility:hidden;
  2793. }
  2794. #u39609_img {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:7px;
  2800. height:7px;
  2801. }
  2802. #u39609 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:793px;
  2806. top:85px;
  2807. width:7px;
  2808. height:7px;
  2809. display:flex;
  2810. }
  2811. #u39609 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 2px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u39609_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. visibility:hidden;
  2823. }
  2824. #u39610_img {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:19px;
  2830. height:2px;
  2831. }
  2832. #u39610 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:810px;
  2836. top:88px;
  2837. width:18px;
  2838. height:1px;
  2839. display:flex;
  2840. -webkit-transform:rotate(90deg);
  2841. -moz-transform:rotate(90deg);
  2842. -ms-transform:rotate(90deg);
  2843. transform:rotate(90deg);
  2844. }
  2845. #u39610 .text {
  2846. position:absolute;
  2847. align-self:center;
  2848. padding:2px 2px 2px 2px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u39610_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. visibility:hidden;
  2857. }
  2858. #u39611_img {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:375px;
  2864. height:44px;
  2865. }
  2866. #u39611 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:492px;
  2870. top:25px;
  2871. width:375px;
  2872. height:44px;
  2873. display:flex;
  2874. }
  2875. #u39611 .text {
  2876. position:absolute;
  2877. align-self:center;
  2878. padding:2px 2px 2px 2px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u39611_text {
  2883. border-width:0px;
  2884. word-wrap:break-word;
  2885. text-transform:none;
  2886. visibility:hidden;
  2887. }
  2888. #u39612_div {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:375px;
  2894. height:50px;
  2895. background:inherit;
  2896. background-color:rgba(255, 255, 255, 1);
  2897. box-sizing:border-box;
  2898. border-width:1px;
  2899. border-style:solid;
  2900. border-color:rgba(242, 242, 242, 1);
  2901. border-radius:26px;
  2902. border-top-left-radius:0px;
  2903. border-top-right-radius:0px;
  2904. -moz-box-shadow:none;
  2905. -webkit-box-shadow:none;
  2906. box-shadow:none;
  2907. }
  2908. #u39612 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:492px;
  2912. top:789px;
  2913. width:375px;
  2914. height:50px;
  2915. display:flex;
  2916. }
  2917. #u39612 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u39612_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u39613 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:0px;
  2936. height:0px;
  2937. }
  2938. #u39614_img {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:24px;
  2944. height:24px;
  2945. }
  2946. #u39614 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:532px;
  2950. top:793px;
  2951. width:24px;
  2952. height:24px;
  2953. display:flex;
  2954. font-size:8px;
  2955. }
  2956. #u39614 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u39614_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. }
  2968. #u39615_div {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:25px;
  2974. height:17px;
  2975. background:inherit;
  2976. background-color:rgba(255, 255, 255, 0);
  2977. border:none;
  2978. border-radius:0px;
  2979. -moz-box-shadow:none;
  2980. -webkit-box-shadow:none;
  2981. box-shadow:none;
  2982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:12px;
  2986. }
  2987. #u39615 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:532px;
  2991. top:818px;
  2992. width:25px;
  2993. height:17px;
  2994. display:flex;
  2995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2996. font-weight:400;
  2997. font-style:normal;
  2998. font-size:12px;
  2999. }
  3000. #u39615 .text {
  3001. position:absolute;
  3002. align-self:flex-start;
  3003. padding:0px 0px 0px 0px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u39615_text {
  3008. border-width:0px;
  3009. white-space:nowrap;
  3010. text-transform:none;
  3011. }
  3012. #u39616 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:0px;
  3018. height:0px;
  3019. }
  3020. #u39617_img {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:24px;
  3026. height:24px;
  3027. }
  3028. #u39617 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:802px;
  3032. top:795px;
  3033. width:24px;
  3034. height:24px;
  3035. display:flex;
  3036. font-size:8px;
  3037. }
  3038. #u39617 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 2px 2px 2px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u39617_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. }
  3050. #u39618_div {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:25px;
  3056. height:17px;
  3057. background:inherit;
  3058. background-color:rgba(255, 255, 255, 0);
  3059. border:none;
  3060. border-radius:0px;
  3061. -moz-box-shadow:none;
  3062. -webkit-box-shadow:none;
  3063. box-shadow:none;
  3064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. font-size:12px;
  3068. }
  3069. #u39618 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:802px;
  3073. top:820px;
  3074. width:25px;
  3075. height:17px;
  3076. display:flex;
  3077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3078. font-weight:400;
  3079. font-style:normal;
  3080. font-size:12px;
  3081. }
  3082. #u39618 .text {
  3083. position:absolute;
  3084. align-self:flex-start;
  3085. padding:0px 0px 0px 0px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u39618_text {
  3090. border-width:0px;
  3091. white-space:nowrap;
  3092. text-transform:none;
  3093. }
  3094. #u39619_div {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:0px;
  3099. width:375px;
  3100. height:681px;
  3101. background:inherit;
  3102. background-color:rgba(242, 242, 242, 0.462745098039216);
  3103. border:none;
  3104. border-radius:0px;
  3105. -moz-box-shadow:none;
  3106. -webkit-box-shadow:none;
  3107. box-shadow:none;
  3108. }
  3109. #u39619 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:492px;
  3113. top:108px;
  3114. width:375px;
  3115. height:681px;
  3116. display:flex;
  3117. }
  3118. #u39619 .text {
  3119. position:absolute;
  3120. align-self:center;
  3121. padding:2px 2px 2px 2px;
  3122. box-sizing:border-box;
  3123. width:100%;
  3124. }
  3125. #u39619_text {
  3126. border-width:0px;
  3127. word-wrap:break-word;
  3128. text-transform:none;
  3129. visibility:hidden;
  3130. }
  3131. #u39620 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:0px;
  3137. height:0px;
  3138. }
  3139. #u39621_img {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:24px;
  3145. height:24px;
  3146. }
  3147. #u39621 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:714px;
  3151. top:793px;
  3152. width:24px;
  3153. height:24px;
  3154. display:flex;
  3155. font-size:8px;
  3156. }
  3157. #u39621 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 2px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u39621_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. }
  3169. #u39622_div {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:37px;
  3175. height:17px;
  3176. background:inherit;
  3177. background-color:rgba(255, 255, 255, 0);
  3178. border:none;
  3179. border-radius:0px;
  3180. -moz-box-shadow:none;
  3181. -webkit-box-shadow:none;
  3182. box-shadow:none;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:12px;
  3187. }
  3188. #u39622 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:708px;
  3192. top:818px;
  3193. width:37px;
  3194. height:17px;
  3195. display:flex;
  3196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3197. font-weight:400;
  3198. font-style:normal;
  3199. font-size:12px;
  3200. }
  3201. #u39622 .text {
  3202. position:absolute;
  3203. align-self:flex-start;
  3204. padding:0px 0px 0px 0px;
  3205. box-sizing:border-box;
  3206. width:100%;
  3207. }
  3208. #u39622_text {
  3209. border-width:0px;
  3210. white-space:nowrap;
  3211. text-transform:none;
  3212. }
  3213. #u39623 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:0px;
  3219. height:0px;
  3220. }
  3221. #u39624_img {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:24px;
  3227. height:24px;
  3228. }
  3229. #u39624 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:620px;
  3233. top:793px;
  3234. width:24px;
  3235. height:24px;
  3236. display:flex;
  3237. font-size:8px;
  3238. }
  3239. #u39624 .text {
  3240. position:absolute;
  3241. align-self:center;
  3242. padding:2px 2px 2px 2px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u39624_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. }
  3251. #u39625_div {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:37px;
  3257. height:17px;
  3258. background:inherit;
  3259. background-color:rgba(255, 255, 255, 0);
  3260. border:none;
  3261. border-radius:0px;
  3262. -moz-box-shadow:none;
  3263. -webkit-box-shadow:none;
  3264. box-shadow:none;
  3265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:12px;
  3269. }
  3270. #u39625 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:614px;
  3274. top:818px;
  3275. width:37px;
  3276. height:17px;
  3277. display:flex;
  3278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3279. font-weight:400;
  3280. font-style:normal;
  3281. font-size:12px;
  3282. }
  3283. #u39625 .text {
  3284. position:absolute;
  3285. align-self:flex-start;
  3286. padding:0px 0px 0px 0px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u39625_text {
  3291. border-width:0px;
  3292. white-space:nowrap;
  3293. text-transform:none;
  3294. }
  3295. #u39626_div {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:375px;
  3301. height:732px;
  3302. background:inherit;
  3303. background-color:rgba(244, 244, 244, 1);
  3304. box-sizing:border-box;
  3305. border-width:1px;
  3306. border-style:solid;
  3307. border-color:rgba(242, 242, 242, 1);
  3308. border-radius:26px;
  3309. border-top-left-radius:0px;
  3310. border-top-right-radius:0px;
  3311. -moz-box-shadow:none;
  3312. -webkit-box-shadow:none;
  3313. box-shadow:none;
  3314. }
  3315. #u39626 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:492px;
  3319. top:108px;
  3320. width:375px;
  3321. height:732px;
  3322. display:flex;
  3323. }
  3324. #u39626 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 2px 2px 2px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u39626_text {
  3332. border-width:0px;
  3333. word-wrap:break-word;
  3334. text-transform:none;
  3335. visibility:hidden;
  3336. }
  3337. #u39627_div {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:375px;
  3343. height:836px;
  3344. background:inherit;
  3345. background-color:rgba(242, 242, 242, 1);
  3346. box-sizing:border-box;
  3347. border-width:1px;
  3348. border-style:solid;
  3349. border-color:rgba(242, 242, 242, 1);
  3350. border-radius:26px;
  3351. border-top-left-radius:0px;
  3352. border-top-right-radius:0px;
  3353. -moz-box-shadow:none;
  3354. -webkit-box-shadow:none;
  3355. box-shadow:none;
  3356. }
  3357. #u39627 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:492px;
  3361. top:108px;
  3362. width:375px;
  3363. height:836px;
  3364. display:flex;
  3365. }
  3366. #u39627 .text {
  3367. position:absolute;
  3368. align-self:center;
  3369. padding:2px 2px 2px 2px;
  3370. box-sizing:border-box;
  3371. width:100%;
  3372. }
  3373. #u39627_text {
  3374. border-width:0px;
  3375. word-wrap:break-word;
  3376. text-transform:none;
  3377. visibility:hidden;
  3378. }
  3379. #u39628 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:0px;
  3385. height:0px;
  3386. }
  3387. #u39629_div {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:0px;
  3391. top:0px;
  3392. width:375px;
  3393. height:40px;
  3394. background:inherit;
  3395. background-color:rgba(255, 255, 255, 1);
  3396. border:none;
  3397. border-left:0px;
  3398. border-top:0px;
  3399. border-right:0px;
  3400. border-radius:0px;
  3401. border-bottom-right-radius:0px;
  3402. border-bottom-left-radius:0px;
  3403. -moz-box-shadow:none;
  3404. -webkit-box-shadow:none;
  3405. box-shadow:none;
  3406. }
  3407. #u39629 {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:492px;
  3411. top:68px;
  3412. width:375px;
  3413. height:40px;
  3414. display:flex;
  3415. }
  3416. #u39629 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 2px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u39629_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u39630 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:0px;
  3435. height:0px;
  3436. }
  3437. #u39631_div {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:88px;
  3443. height:32px;
  3444. background:inherit;
  3445. background-color:rgba(255, 255, 255, 1);
  3446. box-sizing:border-box;
  3447. border-width:1px;
  3448. border-style:solid;
  3449. border-color:rgba(242, 242, 242, 1);
  3450. border-radius:33px;
  3451. -moz-box-shadow:none;
  3452. -webkit-box-shadow:none;
  3453. box-shadow:none;
  3454. }
  3455. #u39631 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:769px;
  3459. top:70px;
  3460. width:88px;
  3461. height:32px;
  3462. display:flex;
  3463. }
  3464. #u39631 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 2px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u39631_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. visibility:hidden;
  3476. }
  3477. #u39632 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:0px;
  3483. height:0px;
  3484. }
  3485. #u39633_img {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:18px;
  3491. height:18px;
  3492. }
  3493. #u39633 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:832px;
  3497. top:77px;
  3498. width:18px;
  3499. height:18px;
  3500. display:flex;
  3501. }
  3502. #u39633 .text {
  3503. position:absolute;
  3504. align-self:center;
  3505. padding:2px 2px 2px 2px;
  3506. box-sizing:border-box;
  3507. width:100%;
  3508. }
  3509. #u39633_text {
  3510. border-width:0px;
  3511. word-wrap:break-word;
  3512. text-transform:none;
  3513. visibility:hidden;
  3514. }
  3515. #u39634_img {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:6px;
  3521. height:6px;
  3522. }
  3523. #u39634 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:838px;
  3527. top:83px;
  3528. width:6px;
  3529. height:6px;
  3530. display:flex;
  3531. }
  3532. #u39634 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 2px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u39634_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u39635 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:0px;
  3551. height:0px;
  3552. }
  3553. #u39636_img {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:5px;
  3559. height:5px;
  3560. }
  3561. #u39636 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:783px;
  3565. top:84px;
  3566. width:5px;
  3567. height:5px;
  3568. display:flex;
  3569. }
  3570. #u39636 .text {
  3571. position:absolute;
  3572. align-self:center;
  3573. padding:2px 2px 2px 2px;
  3574. box-sizing:border-box;
  3575. width:100%;
  3576. }
  3577. #u39636_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u39637_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:5px;
  3589. height:5px;
  3590. }
  3591. #u39637 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:799px;
  3595. top:84px;
  3596. width:5px;
  3597. height:5px;
  3598. display:flex;
  3599. }
  3600. #u39637 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 2px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u39637_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u39638_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:7px;
  3619. height:7px;
  3620. }
  3621. #u39638 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:790px;
  3625. top:83px;
  3626. width:7px;
  3627. height:7px;
  3628. display:flex;
  3629. }
  3630. #u39638 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 2px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u39638_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u39639_img {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:19px;
  3649. height:2px;
  3650. }
  3651. #u39639 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:807px;
  3655. top:86px;
  3656. width:18px;
  3657. height:1px;
  3658. display:flex;
  3659. -webkit-transform:rotate(90deg);
  3660. -moz-transform:rotate(90deg);
  3661. -ms-transform:rotate(90deg);
  3662. transform:rotate(90deg);
  3663. }
  3664. #u39639 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 2px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u39639_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. visibility:hidden;
  3676. }
  3677. #u39640_div {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:12px;
  3683. height:12px;
  3684. background:inherit;
  3685. background-color:rgba(255, 255, 255, 0);
  3686. box-sizing:border-box;
  3687. border-width:2px;
  3688. border-style:solid;
  3689. border-color:rgba(51, 51, 51, 1);
  3690. border-right:0px;
  3691. border-bottom:0px;
  3692. border-radius:0px;
  3693. border-top-right-radius:0px;
  3694. border-bottom-left-radius:0px;
  3695. -moz-box-shadow:none;
  3696. -webkit-box-shadow:none;
  3697. box-shadow:none;
  3698. }
  3699. #u39640 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:508px;
  3703. top:80px;
  3704. width:12px;
  3705. height:12px;
  3706. display:flex;
  3707. -webkit-transform:rotate(315deg);
  3708. -moz-transform:rotate(315deg);
  3709. -ms-transform:rotate(315deg);
  3710. transform:rotate(315deg);
  3711. }
  3712. #u39640 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 2px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u39640_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. visibility:hidden;
  3724. }
  3725. #u39641_div {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:109px;
  3731. height:25px;
  3732. background:inherit;
  3733. background-color:rgba(255, 255, 255, 0);
  3734. border:none;
  3735. border-radius:0px;
  3736. -moz-box-shadow:none;
  3737. -webkit-box-shadow:none;
  3738. box-shadow:none;
  3739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3740. font-weight:400;
  3741. font-style:normal;
  3742. font-size:18px;
  3743. }
  3744. #u39641 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:522px;
  3748. top:73px;
  3749. width:109px;
  3750. height:25px;
  3751. display:flex;
  3752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3753. font-weight:400;
  3754. font-style:normal;
  3755. font-size:18px;
  3756. }
  3757. #u39641 .text {
  3758. position:absolute;
  3759. align-self:flex-start;
  3760. padding:0px 0px 0px 0px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u39641_text {
  3765. border-width:0px;
  3766. white-space:nowrap;
  3767. text-transform:none;
  3768. }
  3769. #u39642_div {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:375px;
  3775. height:58px;
  3776. background:inherit;
  3777. background-color:rgba(24, 144, 255, 1);
  3778. border:none;
  3779. border-radius:0px;
  3780. -moz-box-shadow:none;
  3781. -webkit-box-shadow:none;
  3782. box-shadow:none;
  3783. }
  3784. #u39642 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:492px;
  3788. top:108px;
  3789. width:375px;
  3790. height:58px;
  3791. display:flex;
  3792. }
  3793. #u39642 .text {
  3794. position:absolute;
  3795. align-self:center;
  3796. padding:2px 2px 2px 2px;
  3797. box-sizing:border-box;
  3798. width:100%;
  3799. }
  3800. #u39642_text {
  3801. border-width:0px;
  3802. word-wrap:break-word;
  3803. text-transform:none;
  3804. visibility:hidden;
  3805. }
  3806. #u39643 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:0px;
  3812. height:0px;
  3813. }
  3814. #u39644_div {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:375px;
  3820. height:80px;
  3821. background:inherit;
  3822. background-color:rgba(255, 255, 255, 1);
  3823. border:none;
  3824. border-top:0px;
  3825. border-bottom:0px;
  3826. border-radius:0px;
  3827. border-top-left-radius:0px;
  3828. border-top-right-radius:0px;
  3829. border-bottom-right-radius:0px;
  3830. border-bottom-left-radius:0px;
  3831. -moz-box-shadow:none;
  3832. -webkit-box-shadow:none;
  3833. box-shadow:none;
  3834. }
  3835. #u39644 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:492px;
  3839. top:166px;
  3840. width:375px;
  3841. height:80px;
  3842. display:flex;
  3843. }
  3844. #u39644 .text {
  3845. position:absolute;
  3846. align-self:center;
  3847. padding:2px 2px 2px 2px;
  3848. box-sizing:border-box;
  3849. width:100%;
  3850. }
  3851. #u39644_text {
  3852. border-width:0px;
  3853. word-wrap:break-word;
  3854. text-transform:none;
  3855. visibility:hidden;
  3856. }
  3857. #u39645_div {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:73px;
  3863. height:30px;
  3864. background:inherit;
  3865. background-color:rgba(255, 255, 255, 0);
  3866. border:none;
  3867. border-left:0px;
  3868. border-top:0px;
  3869. border-right:0px;
  3870. border-radius:0px;
  3871. border-bottom-right-radius:0px;
  3872. border-bottom-left-radius:0px;
  3873. -moz-box-shadow:none;
  3874. -webkit-box-shadow:none;
  3875. box-shadow:none;
  3876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3877. font-weight:500;
  3878. font-style:normal;
  3879. font-size:18px;
  3880. line-height:30px;
  3881. }
  3882. #u39645 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:511px;
  3886. top:176px;
  3887. width:73px;
  3888. height:30px;
  3889. display:flex;
  3890. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3891. font-weight:500;
  3892. font-style:normal;
  3893. font-size:18px;
  3894. line-height:30px;
  3895. }
  3896. #u39645 .text {
  3897. position:absolute;
  3898. align-self:flex-start;
  3899. padding:0px 0px 0px 0px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u39645_text {
  3904. border-width:0px;
  3905. white-space:nowrap;
  3906. text-transform:none;
  3907. }
  3908. #u39646_input {
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:346px;
  3913. height:27px;
  3914. padding:2px 2px 2px 2px;
  3915. font-family:'ArialMT', 'Arial', sans-serif;
  3916. font-weight:400;
  3917. font-style:normal;
  3918. font-size:14px;
  3919. letter-spacing:normal;
  3920. color:#1890FF;
  3921. vertical-align:none;
  3922. text-align:left;
  3923. text-transform:none;
  3924. background-color:transparent;
  3925. border-color:transparent;
  3926. }
  3927. #u39646_input.disabled {
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:346px;
  3932. height:27px;
  3933. padding:2px 2px 2px 2px;
  3934. font-family:'ArialMT', 'Arial', sans-serif;
  3935. font-weight:400;
  3936. font-style:normal;
  3937. font-size:14px;
  3938. letter-spacing:normal;
  3939. color:#1890FF;
  3940. vertical-align:none;
  3941. text-align:left;
  3942. text-transform:none;
  3943. background-color:transparent;
  3944. border-color:transparent;
  3945. }
  3946. #u39646_div {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:0px;
  3950. top:0px;
  3951. width:346px;
  3952. height:27px;
  3953. background:inherit;
  3954. background-color:rgba(255, 255, 255, 1);
  3955. border:none;
  3956. border-radius:0px;
  3957. -moz-box-shadow:none;
  3958. -webkit-box-shadow:none;
  3959. box-shadow:none;
  3960. font-size:14px;
  3961. color:#1890FF;
  3962. }
  3963. #u39646 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:511px;
  3967. top:209px;
  3968. width:346px;
  3969. height:27px;
  3970. display:flex;
  3971. font-size:14px;
  3972. color:#1890FF;
  3973. }
  3974. #u39646 .text {
  3975. position:absolute;
  3976. align-self:flex-start;
  3977. padding:2px 2px 2px 2px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u39646_div.disabled {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:346px;
  3987. height:27px;
  3988. background:inherit;
  3989. background-color:rgba(240, 240, 240, 1);
  3990. border:none;
  3991. border-radius:0px;
  3992. -moz-box-shadow:none;
  3993. -webkit-box-shadow:none;
  3994. box-shadow:none;
  3995. font-size:14px;
  3996. color:#1890FF;
  3997. }
  3998. #u39646.disabled {
  3999. }
  4000. .u39646_input_option {
  4001. font-size:14px;
  4002. }
  4003. #u39647_div {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:375px;
  4009. height:540px;
  4010. background:inherit;
  4011. background-color:rgba(255, 255, 255, 0.996078431372549);
  4012. border:none;
  4013. border-radius:0px;
  4014. -moz-box-shadow:none;
  4015. -webkit-box-shadow:none;
  4016. box-shadow:none;
  4017. }
  4018. #u39647 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:492px;
  4022. top:256px;
  4023. width:375px;
  4024. height:540px;
  4025. display:flex;
  4026. }
  4027. #u39647 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:2px 2px 2px 2px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u39647_text {
  4035. border-width:0px;
  4036. word-wrap:break-word;
  4037. text-transform:none;
  4038. visibility:hidden;
  4039. }
  4040. #u39648_div {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:73px;
  4046. height:25px;
  4047. background:inherit;
  4048. background-color:rgba(255, 255, 255, 0);
  4049. border:none;
  4050. border-radius:0px;
  4051. -moz-box-shadow:none;
  4052. -webkit-box-shadow:none;
  4053. box-shadow:none;
  4054. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4055. font-weight:500;
  4056. font-style:normal;
  4057. font-size:18px;
  4058. }
  4059. #u39648 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:512px;
  4063. top:265px;
  4064. width:73px;
  4065. height:25px;
  4066. display:flex;
  4067. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4068. font-weight:500;
  4069. font-style:normal;
  4070. font-size:18px;
  4071. }
  4072. #u39648 .text {
  4073. position:absolute;
  4074. align-self:flex-start;
  4075. padding:0px 0px 0px 0px;
  4076. box-sizing:border-box;
  4077. width:100%;
  4078. }
  4079. #u39648_text {
  4080. border-width:0px;
  4081. white-space:nowrap;
  4082. text-transform:none;
  4083. }
  4084. #u39649 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:0px;
  4088. top:0px;
  4089. width:0px;
  4090. height:0px;
  4091. }
  4092. #u39650_div {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:0px;
  4096. top:0px;
  4097. width:322px;
  4098. height:40px;
  4099. background:inherit;
  4100. background-color:rgba(255, 255, 255, 1);
  4101. box-sizing:border-box;
  4102. border-width:1px;
  4103. border-style:solid;
  4104. border-color:rgba(215, 215, 215, 1);
  4105. border-left:0px;
  4106. border-top:0px;
  4107. border-right:0px;
  4108. border-radius:0px;
  4109. border-bottom-right-radius:0px;
  4110. border-bottom-left-radius:0px;
  4111. -moz-box-shadow:none;
  4112. -webkit-box-shadow:none;
  4113. box-shadow:none;
  4114. }
  4115. #u39650 {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:512px;
  4119. top:340px;
  4120. width:322px;
  4121. height:40px;
  4122. display:flex;
  4123. }
  4124. #u39650 .text {
  4125. position:absolute;
  4126. align-self:center;
  4127. padding:2px 2px 2px 2px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u39650_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. visibility:hidden;
  4136. }
  4137. #u39651_div {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:36px;
  4143. height:20px;
  4144. background:inherit;
  4145. background-color:rgba(255, 255, 255, 0);
  4146. border:none;
  4147. border-radius:0px;
  4148. -moz-box-shadow:none;
  4149. -webkit-box-shadow:none;
  4150. box-shadow:none;
  4151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4152. font-weight:400;
  4153. font-style:normal;
  4154. }
  4155. #u39651 {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:512px;
  4159. top:350px;
  4160. width:36px;
  4161. height:20px;
  4162. display:flex;
  4163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4164. font-weight:400;
  4165. font-style:normal;
  4166. }
  4167. #u39651 .text {
  4168. position:absolute;
  4169. align-self:flex-start;
  4170. padding:0px 0px 0px 0px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u39651_text {
  4175. border-width:0px;
  4176. white-space:nowrap;
  4177. text-transform:none;
  4178. }
  4179. #u39652_div {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:43px;
  4185. height:20px;
  4186. background:inherit;
  4187. background-color:rgba(255, 255, 255, 0);
  4188. border:none;
  4189. border-radius:0px;
  4190. -moz-box-shadow:none;
  4191. -webkit-box-shadow:none;
  4192. box-shadow:none;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. color:#AAAAAA;
  4197. }
  4198. #u39652 {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:773px;
  4202. top:350px;
  4203. width:43px;
  4204. height:20px;
  4205. display:flex;
  4206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4207. font-weight:400;
  4208. font-style:normal;
  4209. color:#AAAAAA;
  4210. }
  4211. #u39652 .text {
  4212. position:absolute;
  4213. align-self:flex-start;
  4214. padding:0px 0px 0px 0px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u39652_text {
  4219. border-width:0px;
  4220. white-space:nowrap;
  4221. text-transform:none;
  4222. }
  4223. #u39653 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:0px;
  4229. height:0px;
  4230. }
  4231. #u39654_div {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:322px;
  4237. height:40px;
  4238. background:inherit;
  4239. background-color:rgba(255, 255, 255, 1);
  4240. box-sizing:border-box;
  4241. border-width:1px;
  4242. border-style:solid;
  4243. border-color:rgba(215, 215, 215, 1);
  4244. border-left:0px;
  4245. border-top:0px;
  4246. border-right:0px;
  4247. border-radius:0px;
  4248. border-bottom-right-radius:0px;
  4249. border-bottom-left-radius:0px;
  4250. -moz-box-shadow:none;
  4251. -webkit-box-shadow:none;
  4252. box-shadow:none;
  4253. }
  4254. #u39654 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:512px;
  4258. top:420px;
  4259. width:322px;
  4260. height:40px;
  4261. display:flex;
  4262. }
  4263. #u39654 .text {
  4264. position:absolute;
  4265. align-self:center;
  4266. padding:2px 2px 2px 2px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u39654_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. visibility:hidden;
  4275. }
  4276. #u39655_div {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:57px;
  4282. height:20px;
  4283. background:inherit;
  4284. background-color:rgba(255, 255, 255, 0);
  4285. border:none;
  4286. border-radius:0px;
  4287. -moz-box-shadow:none;
  4288. -webkit-box-shadow:none;
  4289. box-shadow:none;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. }
  4294. #u39655 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:512px;
  4298. top:430px;
  4299. width:57px;
  4300. height:20px;
  4301. display:flex;
  4302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4303. font-weight:400;
  4304. font-style:normal;
  4305. }
  4306. #u39655 .text {
  4307. position:absolute;
  4308. align-self:flex-start;
  4309. padding:0px 0px 0px 0px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u39655_text {
  4314. border-width:0px;
  4315. white-space:nowrap;
  4316. text-transform:none;
  4317. }
  4318. #u39656_div {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:43px;
  4324. height:20px;
  4325. background:inherit;
  4326. background-color:rgba(255, 255, 255, 0);
  4327. border:none;
  4328. border-radius:0px;
  4329. -moz-box-shadow:none;
  4330. -webkit-box-shadow:none;
  4331. box-shadow:none;
  4332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. color:#AAAAAA;
  4336. }
  4337. #u39656 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:773px;
  4341. top:430px;
  4342. width:43px;
  4343. height:20px;
  4344. display:flex;
  4345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4346. font-weight:400;
  4347. font-style:normal;
  4348. color:#AAAAAA;
  4349. }
  4350. #u39656 .text {
  4351. position:absolute;
  4352. align-self:flex-start;
  4353. padding:0px 0px 0px 0px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u39656_text {
  4358. border-width:0px;
  4359. white-space:nowrap;
  4360. text-transform:none;
  4361. }
  4362. #u39657 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:0px;
  4366. top:0px;
  4367. width:0px;
  4368. height:0px;
  4369. }
  4370. #u39658_div {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:322px;
  4376. height:40px;
  4377. background:inherit;
  4378. background-color:rgba(255, 255, 255, 1);
  4379. box-sizing:border-box;
  4380. border-width:1px;
  4381. border-style:solid;
  4382. border-color:rgba(215, 215, 215, 1);
  4383. border-left:0px;
  4384. border-top:0px;
  4385. border-right:0px;
  4386. border-radius:0px;
  4387. border-bottom-right-radius:0px;
  4388. border-bottom-left-radius:0px;
  4389. -moz-box-shadow:none;
  4390. -webkit-box-shadow:none;
  4391. box-shadow:none;
  4392. }
  4393. #u39658 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:512px;
  4397. top:380px;
  4398. width:322px;
  4399. height:40px;
  4400. display:flex;
  4401. }
  4402. #u39658 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 2px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u39658_text {
  4410. border-width:0px;
  4411. word-wrap:break-word;
  4412. text-transform:none;
  4413. visibility:hidden;
  4414. }
  4415. #u39659_div {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:64px;
  4421. height:20px;
  4422. background:inherit;
  4423. background-color:rgba(255, 255, 255, 0);
  4424. border:none;
  4425. border-radius:0px;
  4426. -moz-box-shadow:none;
  4427. -webkit-box-shadow:none;
  4428. box-shadow:none;
  4429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. }
  4433. #u39659 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:512px;
  4437. top:390px;
  4438. width:64px;
  4439. height:20px;
  4440. display:flex;
  4441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4442. font-weight:400;
  4443. font-style:normal;
  4444. }
  4445. #u39659 .text {
  4446. position:absolute;
  4447. align-self:flex-start;
  4448. padding:0px 0px 0px 0px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u39659_text {
  4453. border-width:0px;
  4454. white-space:nowrap;
  4455. text-transform:none;
  4456. }
  4457. #u39660_div {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:0px;
  4462. width:57px;
  4463. height:20px;
  4464. background:inherit;
  4465. background-color:rgba(255, 255, 255, 0);
  4466. border:none;
  4467. border-radius:0px;
  4468. -moz-box-shadow:none;
  4469. -webkit-box-shadow:none;
  4470. box-shadow:none;
  4471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. color:#AAAAAA;
  4475. text-align:right;
  4476. }
  4477. #u39660 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:773px;
  4481. top:390px;
  4482. width:57px;
  4483. height:20px;
  4484. display:flex;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. color:#AAAAAA;
  4489. text-align:right;
  4490. }
  4491. #u39660 .text {
  4492. position:absolute;
  4493. align-self:flex-start;
  4494. padding:0px 0px 0px 0px;
  4495. box-sizing:border-box;
  4496. width:100%;
  4497. }
  4498. #u39660_text {
  4499. border-width:0px;
  4500. white-space:nowrap;
  4501. text-transform:none;
  4502. }
  4503. #u39661 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:0px;
  4509. height:0px;
  4510. }
  4511. #u39662 {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:0px;
  4517. height:0px;
  4518. }
  4519. #u39663_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:27px;
  4525. height:27px;
  4526. }
  4527. #u39663 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:721px;
  4531. top:123px;
  4532. width:27px;
  4533. height:27px;
  4534. display:flex;
  4535. font-size:12px;
  4536. color:#FFFFFF;
  4537. }
  4538. #u39663 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 2px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u39663_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. }
  4550. #u39664_div {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:57px;
  4556. height:30px;
  4557. background:inherit;
  4558. background-color:rgba(255, 255, 255, 0);
  4559. border:none;
  4560. border-left:0px;
  4561. border-top:0px;
  4562. border-right:0px;
  4563. border-radius:0px;
  4564. border-bottom-right-radius:0px;
  4565. border-bottom-left-radius:0px;
  4566. -moz-box-shadow:none;
  4567. -webkit-box-shadow:none;
  4568. box-shadow:none;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:14px;
  4573. color:#FFFFFF;
  4574. line-height:30px;
  4575. }
  4576. #u39664 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:755px;
  4580. top:122px;
  4581. width:57px;
  4582. height:30px;
  4583. display:flex;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:14px;
  4588. color:#FFFFFF;
  4589. line-height:30px;
  4590. }
  4591. #u39664 .text {
  4592. position:absolute;
  4593. align-self:center;
  4594. padding:0px 0px 0px 0px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u39664_text {
  4599. border-width:0px;
  4600. white-space:nowrap;
  4601. text-transform:none;
  4602. }
  4603. #u39665_img {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:27px;
  4609. height:27px;
  4610. }
  4611. #u39665 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:535px;
  4615. top:123px;
  4616. width:27px;
  4617. height:27px;
  4618. display:flex;
  4619. font-size:12px;
  4620. color:#1890FF;
  4621. }
  4622. #u39665 .text {
  4623. position:absolute;
  4624. align-self:center;
  4625. padding:2px 2px 2px 2px;
  4626. box-sizing:border-box;
  4627. width:100%;
  4628. }
  4629. #u39665_text {
  4630. border-width:0px;
  4631. word-wrap:break-word;
  4632. text-transform:none;
  4633. }
  4634. #u39666_div {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:57px;
  4640. height:30px;
  4641. background:inherit;
  4642. background-color:rgba(255, 255, 255, 0);
  4643. border:none;
  4644. border-left:0px;
  4645. border-top:0px;
  4646. border-right:0px;
  4647. border-radius:0px;
  4648. border-bottom-right-radius:0px;
  4649. border-bottom-left-radius:0px;
  4650. -moz-box-shadow:none;
  4651. -webkit-box-shadow:none;
  4652. box-shadow:none;
  4653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:14px;
  4657. color:#FFFFFF;
  4658. line-height:30px;
  4659. }
  4660. #u39666 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:569px;
  4664. top:122px;
  4665. width:57px;
  4666. height:30px;
  4667. display:flex;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:14px;
  4672. color:#FFFFFF;
  4673. line-height:30px;
  4674. }
  4675. #u39666 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:0px 0px 0px 0px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u39666_text {
  4683. border-width:0px;
  4684. white-space:nowrap;
  4685. text-transform:none;
  4686. }
  4687. #u39667_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:71px;
  4693. height:2px;
  4694. }
  4695. #u39667 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:645px;
  4699. top:136px;
  4700. width:70px;
  4701. height:1px;
  4702. display:flex;
  4703. color:#FFFFFF;
  4704. }
  4705. #u39667 .text {
  4706. position:absolute;
  4707. align-self:center;
  4708. padding:2px 2px 2px 2px;
  4709. box-sizing:border-box;
  4710. width:100%;
  4711. }
  4712. #u39667_text {
  4713. border-width:0px;
  4714. word-wrap:break-word;
  4715. text-transform:none;
  4716. visibility:hidden;
  4717. }
  4718. #u39668 {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:0px;
  4724. height:0px;
  4725. }
  4726. #u39669_div {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:375px;
  4732. height:40px;
  4733. background:inherit;
  4734. background-color:rgba(255, 255, 255, 1);
  4735. border:none;
  4736. border-left:0px;
  4737. border-top:0px;
  4738. border-right:0px;
  4739. border-radius:0px;
  4740. border-bottom-right-radius:0px;
  4741. border-bottom-left-radius:0px;
  4742. -moz-box-shadow:none;
  4743. -webkit-box-shadow:none;
  4744. box-shadow:none;
  4745. }
  4746. #u39669 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:959px;
  4750. top:68px;
  4751. width:375px;
  4752. height:40px;
  4753. display:flex;
  4754. }
  4755. #u39669 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:2px 2px 2px 2px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u39669_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. visibility:hidden;
  4767. }
  4768. #u39670 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:0px;
  4774. height:0px;
  4775. }
  4776. #u39671_div {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:88px;
  4782. height:32px;
  4783. background:inherit;
  4784. background-color:rgba(255, 255, 255, 1);
  4785. box-sizing:border-box;
  4786. border-width:1px;
  4787. border-style:solid;
  4788. border-color:rgba(242, 242, 242, 1);
  4789. border-radius:33px;
  4790. -moz-box-shadow:none;
  4791. -webkit-box-shadow:none;
  4792. box-shadow:none;
  4793. }
  4794. #u39671 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:1236px;
  4798. top:70px;
  4799. width:88px;
  4800. height:32px;
  4801. display:flex;
  4802. }
  4803. #u39671 .text {
  4804. position:absolute;
  4805. align-self:center;
  4806. padding:2px 2px 2px 2px;
  4807. box-sizing:border-box;
  4808. width:100%;
  4809. }
  4810. #u39671_text {
  4811. border-width:0px;
  4812. word-wrap:break-word;
  4813. text-transform:none;
  4814. visibility:hidden;
  4815. }
  4816. #u39672 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:0px;
  4822. height:0px;
  4823. }
  4824. #u39673_img {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:18px;
  4830. height:18px;
  4831. }
  4832. #u39673 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:1299px;
  4836. top:77px;
  4837. width:18px;
  4838. height:18px;
  4839. display:flex;
  4840. }
  4841. #u39673 .text {
  4842. position:absolute;
  4843. align-self:center;
  4844. padding:2px 2px 2px 2px;
  4845. box-sizing:border-box;
  4846. width:100%;
  4847. }
  4848. #u39673_text {
  4849. border-width:0px;
  4850. word-wrap:break-word;
  4851. text-transform:none;
  4852. visibility:hidden;
  4853. }
  4854. #u39674_img {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:6px;
  4860. height:6px;
  4861. }
  4862. #u39674 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:1305px;
  4866. top:83px;
  4867. width:6px;
  4868. height:6px;
  4869. display:flex;
  4870. }
  4871. #u39674 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 2px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u39674_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u39675 {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:0px;
  4890. height:0px;
  4891. }
  4892. #u39676_img {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:5px;
  4898. height:5px;
  4899. }
  4900. #u39676 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:1250px;
  4904. top:84px;
  4905. width:5px;
  4906. height:5px;
  4907. display:flex;
  4908. }
  4909. #u39676 .text {
  4910. position:absolute;
  4911. align-self:center;
  4912. padding:2px 2px 2px 2px;
  4913. box-sizing:border-box;
  4914. width:100%;
  4915. }
  4916. #u39676_text {
  4917. border-width:0px;
  4918. word-wrap:break-word;
  4919. text-transform:none;
  4920. visibility:hidden;
  4921. }
  4922. #u39677_img {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:5px;
  4928. height:5px;
  4929. }
  4930. #u39677 {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:1266px;
  4934. top:84px;
  4935. width:5px;
  4936. height:5px;
  4937. display:flex;
  4938. }
  4939. #u39677 .text {
  4940. position:absolute;
  4941. align-self:center;
  4942. padding:2px 2px 2px 2px;
  4943. box-sizing:border-box;
  4944. width:100%;
  4945. }
  4946. #u39677_text {
  4947. border-width:0px;
  4948. word-wrap:break-word;
  4949. text-transform:none;
  4950. visibility:hidden;
  4951. }
  4952. #u39678_img {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:0px;
  4956. top:0px;
  4957. width:7px;
  4958. height:7px;
  4959. }
  4960. #u39678 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:1257px;
  4964. top:83px;
  4965. width:7px;
  4966. height:7px;
  4967. display:flex;
  4968. }
  4969. #u39678 .text {
  4970. position:absolute;
  4971. align-self:center;
  4972. padding:2px 2px 2px 2px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u39678_text {
  4977. border-width:0px;
  4978. word-wrap:break-word;
  4979. text-transform:none;
  4980. visibility:hidden;
  4981. }
  4982. #u39679_img {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:19px;
  4988. height:2px;
  4989. }
  4990. #u39679 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:1274px;
  4994. top:86px;
  4995. width:18px;
  4996. height:1px;
  4997. display:flex;
  4998. -webkit-transform:rotate(90deg);
  4999. -moz-transform:rotate(90deg);
  5000. -ms-transform:rotate(90deg);
  5001. transform:rotate(90deg);
  5002. }
  5003. #u39679 .text {
  5004. position:absolute;
  5005. align-self:center;
  5006. padding:2px 2px 2px 2px;
  5007. box-sizing:border-box;
  5008. width:100%;
  5009. }
  5010. #u39679_text {
  5011. border-width:0px;
  5012. word-wrap:break-word;
  5013. text-transform:none;
  5014. visibility:hidden;
  5015. }
  5016. #u39680_div {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:12px;
  5022. height:12px;
  5023. background:inherit;
  5024. background-color:rgba(255, 255, 255, 0);
  5025. box-sizing:border-box;
  5026. border-width:2px;
  5027. border-style:solid;
  5028. border-color:rgba(51, 51, 51, 1);
  5029. border-right:0px;
  5030. border-bottom:0px;
  5031. border-radius:0px;
  5032. border-top-right-radius:0px;
  5033. border-bottom-left-radius:0px;
  5034. -moz-box-shadow:none;
  5035. -webkit-box-shadow:none;
  5036. box-shadow:none;
  5037. }
  5038. #u39680 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:975px;
  5042. top:80px;
  5043. width:12px;
  5044. height:12px;
  5045. display:flex;
  5046. -webkit-transform:rotate(315deg);
  5047. -moz-transform:rotate(315deg);
  5048. -ms-transform:rotate(315deg);
  5049. transform:rotate(315deg);
  5050. }
  5051. #u39680 .text {
  5052. position:absolute;
  5053. align-self:center;
  5054. padding:2px 2px 2px 2px;
  5055. box-sizing:border-box;
  5056. width:100%;
  5057. }
  5058. #u39680_text {
  5059. border-width:0px;
  5060. word-wrap:break-word;
  5061. text-transform:none;
  5062. visibility:hidden;
  5063. }
  5064. #u39681_div {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:109px;
  5070. height:25px;
  5071. background:inherit;
  5072. background-color:rgba(255, 255, 255, 0);
  5073. border:none;
  5074. border-radius:0px;
  5075. -moz-box-shadow:none;
  5076. -webkit-box-shadow:none;
  5077. box-shadow:none;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:18px;
  5082. }
  5083. #u39681 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:989px;
  5087. top:73px;
  5088. width:109px;
  5089. height:25px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:18px;
  5095. }
  5096. #u39681 .text {
  5097. position:absolute;
  5098. align-self:flex-start;
  5099. padding:0px 0px 0px 0px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u39681_text {
  5104. border-width:0px;
  5105. white-space:nowrap;
  5106. text-transform:none;
  5107. }
  5108. #u39682_img {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:375px;
  5114. height:44px;
  5115. }
  5116. #u39682 {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:959px;
  5120. top:25px;
  5121. width:375px;
  5122. height:44px;
  5123. display:flex;
  5124. }
  5125. #u39682 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:2px 2px 2px 2px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u39682_text {
  5133. border-width:0px;
  5134. word-wrap:break-word;
  5135. text-transform:none;
  5136. visibility:hidden;
  5137. }
  5138. #u39684_img {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:433px;
  5144. height:865px;
  5145. }
  5146. #u39684 {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:1393px;
  5150. top:1px;
  5151. width:433px;
  5152. height:865px;
  5153. display:flex;
  5154. }
  5155. #u39684 .text {
  5156. position:absolute;
  5157. align-self:center;
  5158. padding:2px 2px 2px 2px;
  5159. box-sizing:border-box;
  5160. width:100%;
  5161. }
  5162. #u39684_text {
  5163. border-width:0px;
  5164. word-wrap:break-word;
  5165. text-transform:none;
  5166. visibility:hidden;
  5167. }
  5168. #u39685_div {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:0px;
  5172. top:0px;
  5173. width:375px;
  5174. height:40px;
  5175. background:inherit;
  5176. background-color:rgba(255, 255, 255, 1);
  5177. box-sizing:border-box;
  5178. border-width:1px;
  5179. border-style:solid;
  5180. border-color:rgba(215, 215, 215, 1);
  5181. border-left:0px;
  5182. border-top:0px;
  5183. border-right:0px;
  5184. border-radius:0px;
  5185. border-bottom-right-radius:0px;
  5186. border-bottom-left-radius:0px;
  5187. -moz-box-shadow:none;
  5188. -webkit-box-shadow:none;
  5189. box-shadow:none;
  5190. }
  5191. #u39685 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:1422px;
  5195. top:68px;
  5196. width:375px;
  5197. height:40px;
  5198. display:flex;
  5199. }
  5200. #u39685 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 2px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u39685_text {
  5208. border-width:0px;
  5209. word-wrap:break-word;
  5210. text-transform:none;
  5211. visibility:hidden;
  5212. }
  5213. #u39686 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:0px;
  5219. height:0px;
  5220. }
  5221. #u39687_div {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:88px;
  5227. height:32px;
  5228. background:inherit;
  5229. background-color:rgba(255, 255, 255, 1);
  5230. box-sizing:border-box;
  5231. border-width:1px;
  5232. border-style:solid;
  5233. border-color:rgba(242, 242, 242, 1);
  5234. border-radius:33px;
  5235. -moz-box-shadow:none;
  5236. -webkit-box-shadow:none;
  5237. box-shadow:none;
  5238. }
  5239. #u39687 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:1702px;
  5243. top:72px;
  5244. width:88px;
  5245. height:32px;
  5246. display:flex;
  5247. }
  5248. #u39687 .text {
  5249. position:absolute;
  5250. align-self:center;
  5251. padding:2px 2px 2px 2px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u39687_text {
  5256. border-width:0px;
  5257. word-wrap:break-word;
  5258. text-transform:none;
  5259. visibility:hidden;
  5260. }
  5261. #u39688 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:0px;
  5267. height:0px;
  5268. }
  5269. #u39689_img {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:0px;
  5273. top:0px;
  5274. width:18px;
  5275. height:18px;
  5276. }
  5277. #u39689 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:1765px;
  5281. top:79px;
  5282. width:18px;
  5283. height:18px;
  5284. display:flex;
  5285. }
  5286. #u39689 .text {
  5287. position:absolute;
  5288. align-self:center;
  5289. padding:2px 2px 2px 2px;
  5290. box-sizing:border-box;
  5291. width:100%;
  5292. }
  5293. #u39689_text {
  5294. border-width:0px;
  5295. word-wrap:break-word;
  5296. text-transform:none;
  5297. visibility:hidden;
  5298. }
  5299. #u39690_img {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:0px;
  5303. top:0px;
  5304. width:6px;
  5305. height:6px;
  5306. }
  5307. #u39690 {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:1771px;
  5311. top:85px;
  5312. width:6px;
  5313. height:6px;
  5314. display:flex;
  5315. }
  5316. #u39690 .text {
  5317. position:absolute;
  5318. align-self:center;
  5319. padding:2px 2px 2px 2px;
  5320. box-sizing:border-box;
  5321. width:100%;
  5322. }
  5323. #u39690_text {
  5324. border-width:0px;
  5325. word-wrap:break-word;
  5326. text-transform:none;
  5327. visibility:hidden;
  5328. }
  5329. #u39691 {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:0px;
  5335. height:0px;
  5336. }
  5337. #u39692_img {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:5px;
  5343. height:5px;
  5344. }
  5345. #u39692 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:1716px;
  5349. top:86px;
  5350. width:5px;
  5351. height:5px;
  5352. display:flex;
  5353. }
  5354. #u39692 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:2px 2px 2px 2px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u39692_text {
  5362. border-width:0px;
  5363. word-wrap:break-word;
  5364. text-transform:none;
  5365. visibility:hidden;
  5366. }
  5367. #u39693_img {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:5px;
  5373. height:5px;
  5374. }
  5375. #u39693 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:1732px;
  5379. top:86px;
  5380. width:5px;
  5381. height:5px;
  5382. display:flex;
  5383. }
  5384. #u39693 .text {
  5385. position:absolute;
  5386. align-self:center;
  5387. padding:2px 2px 2px 2px;
  5388. box-sizing:border-box;
  5389. width:100%;
  5390. }
  5391. #u39693_text {
  5392. border-width:0px;
  5393. word-wrap:break-word;
  5394. text-transform:none;
  5395. visibility:hidden;
  5396. }
  5397. #u39694_img {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:7px;
  5403. height:7px;
  5404. }
  5405. #u39694 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:1723px;
  5409. top:85px;
  5410. width:7px;
  5411. height:7px;
  5412. display:flex;
  5413. }
  5414. #u39694 .text {
  5415. position:absolute;
  5416. align-self:center;
  5417. padding:2px 2px 2px 2px;
  5418. box-sizing:border-box;
  5419. width:100%;
  5420. }
  5421. #u39694_text {
  5422. border-width:0px;
  5423. word-wrap:break-word;
  5424. text-transform:none;
  5425. visibility:hidden;
  5426. }
  5427. #u39695_img {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:19px;
  5433. height:2px;
  5434. }
  5435. #u39695 {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:1740px;
  5439. top:88px;
  5440. width:18px;
  5441. height:1px;
  5442. display:flex;
  5443. -webkit-transform:rotate(90deg);
  5444. -moz-transform:rotate(90deg);
  5445. -ms-transform:rotate(90deg);
  5446. transform:rotate(90deg);
  5447. }
  5448. #u39695 .text {
  5449. position:absolute;
  5450. align-self:center;
  5451. padding:2px 2px 2px 2px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u39695_text {
  5456. border-width:0px;
  5457. word-wrap:break-word;
  5458. text-transform:none;
  5459. visibility:hidden;
  5460. }
  5461. #u39696_img {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:0px;
  5465. top:0px;
  5466. width:375px;
  5467. height:44px;
  5468. }
  5469. #u39696 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:1422px;
  5473. top:25px;
  5474. width:375px;
  5475. height:44px;
  5476. display:flex;
  5477. }
  5478. #u39696 .text {
  5479. position:absolute;
  5480. align-self:center;
  5481. padding:2px 2px 2px 2px;
  5482. box-sizing:border-box;
  5483. width:100%;
  5484. }
  5485. #u39696_text {
  5486. border-width:0px;
  5487. word-wrap:break-word;
  5488. text-transform:none;
  5489. visibility:hidden;
  5490. }
  5491. #u39697_div {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:375px;
  5497. height:50px;
  5498. background:inherit;
  5499. background-color:rgba(255, 255, 255, 1);
  5500. box-sizing:border-box;
  5501. border-width:1px;
  5502. border-style:solid;
  5503. border-color:rgba(242, 242, 242, 1);
  5504. border-radius:26px;
  5505. border-top-left-radius:0px;
  5506. border-top-right-radius:0px;
  5507. -moz-box-shadow:none;
  5508. -webkit-box-shadow:none;
  5509. box-shadow:none;
  5510. }
  5511. #u39697 {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:1422px;
  5515. top:789px;
  5516. width:375px;
  5517. height:50px;
  5518. display:flex;
  5519. }
  5520. #u39697 .text {
  5521. position:absolute;
  5522. align-self:center;
  5523. padding:2px 2px 2px 2px;
  5524. box-sizing:border-box;
  5525. width:100%;
  5526. }
  5527. #u39697_text {
  5528. border-width:0px;
  5529. word-wrap:break-word;
  5530. text-transform:none;
  5531. visibility:hidden;
  5532. }
  5533. #u39698 {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:0px;
  5539. height:0px;
  5540. }
  5541. #u39699_img {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:24px;
  5547. height:24px;
  5548. }
  5549. #u39699 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:1462px;
  5553. top:793px;
  5554. width:24px;
  5555. height:24px;
  5556. display:flex;
  5557. font-size:8px;
  5558. }
  5559. #u39699 .text {
  5560. position:absolute;
  5561. align-self:center;
  5562. padding:2px 2px 2px 2px;
  5563. box-sizing:border-box;
  5564. width:100%;
  5565. }
  5566. #u39699_text {
  5567. border-width:0px;
  5568. word-wrap:break-word;
  5569. text-transform:none;
  5570. }
  5571. #u39700_div {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:25px;
  5577. height:17px;
  5578. background:inherit;
  5579. background-color:rgba(255, 255, 255, 0);
  5580. border:none;
  5581. border-radius:0px;
  5582. -moz-box-shadow:none;
  5583. -webkit-box-shadow:none;
  5584. box-shadow:none;
  5585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5586. font-weight:400;
  5587. font-style:normal;
  5588. font-size:12px;
  5589. }
  5590. #u39700 {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:1462px;
  5594. top:818px;
  5595. width:25px;
  5596. height:17px;
  5597. display:flex;
  5598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5599. font-weight:400;
  5600. font-style:normal;
  5601. font-size:12px;
  5602. }
  5603. #u39700 .text {
  5604. position:absolute;
  5605. align-self:flex-start;
  5606. padding:0px 0px 0px 0px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u39700_text {
  5611. border-width:0px;
  5612. white-space:nowrap;
  5613. text-transform:none;
  5614. }
  5615. #u39701 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:0px;
  5621. height:0px;
  5622. }
  5623. #u39702_img {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:0px;
  5627. top:0px;
  5628. width:24px;
  5629. height:24px;
  5630. }
  5631. #u39702 {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:1732px;
  5635. top:795px;
  5636. width:24px;
  5637. height:24px;
  5638. display:flex;
  5639. font-size:8px;
  5640. }
  5641. #u39702 .text {
  5642. position:absolute;
  5643. align-self:center;
  5644. padding:2px 2px 2px 2px;
  5645. box-sizing:border-box;
  5646. width:100%;
  5647. }
  5648. #u39702_text {
  5649. border-width:0px;
  5650. word-wrap:break-word;
  5651. text-transform:none;
  5652. }
  5653. #u39703_div {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:25px;
  5659. height:17px;
  5660. background:inherit;
  5661. background-color:rgba(255, 255, 255, 0);
  5662. border:none;
  5663. border-radius:0px;
  5664. -moz-box-shadow:none;
  5665. -webkit-box-shadow:none;
  5666. box-shadow:none;
  5667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:12px;
  5671. }
  5672. #u39703 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:1732px;
  5676. top:820px;
  5677. width:25px;
  5678. height:17px;
  5679. display:flex;
  5680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5681. font-weight:400;
  5682. font-style:normal;
  5683. font-size:12px;
  5684. }
  5685. #u39703 .text {
  5686. position:absolute;
  5687. align-self:flex-start;
  5688. padding:0px 0px 0px 0px;
  5689. box-sizing:border-box;
  5690. width:100%;
  5691. }
  5692. #u39703_text {
  5693. border-width:0px;
  5694. white-space:nowrap;
  5695. text-transform:none;
  5696. }
  5697. #u39704_div {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:375px;
  5703. height:681px;
  5704. background:inherit;
  5705. background-color:rgba(242, 242, 242, 0.462745098039216);
  5706. border:none;
  5707. border-radius:0px;
  5708. -moz-box-shadow:none;
  5709. -webkit-box-shadow:none;
  5710. box-shadow:none;
  5711. }
  5712. #u39704 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:1422px;
  5716. top:108px;
  5717. width:375px;
  5718. height:681px;
  5719. display:flex;
  5720. }
  5721. #u39704 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 2px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u39704_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u39705 {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:0px;
  5740. height:0px;
  5741. }
  5742. #u39706_img {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:24px;
  5748. height:24px;
  5749. }
  5750. #u39706 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:1644px;
  5754. top:793px;
  5755. width:24px;
  5756. height:24px;
  5757. display:flex;
  5758. font-size:8px;
  5759. }
  5760. #u39706 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 2px 2px 2px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u39706_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. }
  5772. #u39707_div {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:37px;
  5778. height:17px;
  5779. background:inherit;
  5780. background-color:rgba(255, 255, 255, 0);
  5781. border:none;
  5782. border-radius:0px;
  5783. -moz-box-shadow:none;
  5784. -webkit-box-shadow:none;
  5785. box-shadow:none;
  5786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5787. font-weight:400;
  5788. font-style:normal;
  5789. font-size:12px;
  5790. }
  5791. #u39707 {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:1638px;
  5795. top:818px;
  5796. width:37px;
  5797. height:17px;
  5798. display:flex;
  5799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5800. font-weight:400;
  5801. font-style:normal;
  5802. font-size:12px;
  5803. }
  5804. #u39707 .text {
  5805. position:absolute;
  5806. align-self:flex-start;
  5807. padding:0px 0px 0px 0px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u39707_text {
  5812. border-width:0px;
  5813. white-space:nowrap;
  5814. text-transform:none;
  5815. }
  5816. #u39708 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:0px;
  5822. height:0px;
  5823. }
  5824. #u39709_img {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:24px;
  5830. height:24px;
  5831. }
  5832. #u39709 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:1550px;
  5836. top:793px;
  5837. width:24px;
  5838. height:24px;
  5839. display:flex;
  5840. font-size:8px;
  5841. }
  5842. #u39709 .text {
  5843. position:absolute;
  5844. align-self:center;
  5845. padding:2px 2px 2px 2px;
  5846. box-sizing:border-box;
  5847. width:100%;
  5848. }
  5849. #u39709_text {
  5850. border-width:0px;
  5851. word-wrap:break-word;
  5852. text-transform:none;
  5853. }
  5854. #u39710_div {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:37px;
  5860. height:17px;
  5861. background:inherit;
  5862. background-color:rgba(255, 255, 255, 0);
  5863. border:none;
  5864. border-radius:0px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:12px;
  5872. }
  5873. #u39710 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:1544px;
  5877. top:818px;
  5878. width:37px;
  5879. height:17px;
  5880. display:flex;
  5881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:12px;
  5885. }
  5886. #u39710 .text {
  5887. position:absolute;
  5888. align-self:flex-start;
  5889. padding:0px 0px 0px 0px;
  5890. box-sizing:border-box;
  5891. width:100%;
  5892. }
  5893. #u39710_text {
  5894. border-width:0px;
  5895. white-space:nowrap;
  5896. text-transform:none;
  5897. }
  5898. #u39711_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:375px;
  5904. height:732px;
  5905. background:inherit;
  5906. background-color:rgba(244, 244, 244, 1);
  5907. box-sizing:border-box;
  5908. border-width:1px;
  5909. border-style:solid;
  5910. border-color:rgba(242, 242, 242, 1);
  5911. border-radius:26px;
  5912. border-top-left-radius:0px;
  5913. border-top-right-radius:0px;
  5914. -moz-box-shadow:none;
  5915. -webkit-box-shadow:none;
  5916. box-shadow:none;
  5917. }
  5918. #u39711 {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:1422px;
  5922. top:108px;
  5923. width:375px;
  5924. height:732px;
  5925. display:flex;
  5926. }
  5927. #u39711 .text {
  5928. position:absolute;
  5929. align-self:center;
  5930. padding:2px 2px 2px 2px;
  5931. box-sizing:border-box;
  5932. width:100%;
  5933. }
  5934. #u39711_text {
  5935. border-width:0px;
  5936. word-wrap:break-word;
  5937. text-transform:none;
  5938. visibility:hidden;
  5939. }
  5940. #u39712_div {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:375px;
  5946. height:732px;
  5947. background:inherit;
  5948. background-color:rgba(242, 242, 242, 1);
  5949. box-sizing:border-box;
  5950. border-width:1px;
  5951. border-style:solid;
  5952. border-color:rgba(242, 242, 242, 1);
  5953. border-radius:26px;
  5954. border-top-left-radius:0px;
  5955. border-top-right-radius:0px;
  5956. -moz-box-shadow:none;
  5957. -webkit-box-shadow:none;
  5958. box-shadow:none;
  5959. }
  5960. #u39712 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:1422px;
  5964. top:108px;
  5965. width:375px;
  5966. height:732px;
  5967. display:flex;
  5968. }
  5969. #u39712 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:2px 2px 2px 2px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u39712_text {
  5977. border-width:0px;
  5978. word-wrap:break-word;
  5979. text-transform:none;
  5980. visibility:hidden;
  5981. }
  5982. #u39713 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:0px;
  5988. height:0px;
  5989. }
  5990. #u39714_div {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:375px;
  5996. height:40px;
  5997. background:inherit;
  5998. background-color:rgba(255, 255, 255, 1);
  5999. border:none;
  6000. border-left:0px;
  6001. border-top:0px;
  6002. border-right:0px;
  6003. border-radius:0px;
  6004. border-bottom-right-radius:0px;
  6005. border-bottom-left-radius:0px;
  6006. -moz-box-shadow:none;
  6007. -webkit-box-shadow:none;
  6008. box-shadow:none;
  6009. }
  6010. #u39714 {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:1422px;
  6014. top:68px;
  6015. width:375px;
  6016. height:40px;
  6017. display:flex;
  6018. }
  6019. #u39714 .text {
  6020. position:absolute;
  6021. align-self:center;
  6022. padding:2px 2px 2px 2px;
  6023. box-sizing:border-box;
  6024. width:100%;
  6025. }
  6026. #u39714_text {
  6027. border-width:0px;
  6028. word-wrap:break-word;
  6029. text-transform:none;
  6030. visibility:hidden;
  6031. }
  6032. #u39715 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:0px;
  6038. height:0px;
  6039. }
  6040. #u39716_div {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:0px;
  6044. top:0px;
  6045. width:88px;
  6046. height:32px;
  6047. background:inherit;
  6048. background-color:rgba(255, 255, 255, 1);
  6049. box-sizing:border-box;
  6050. border-width:1px;
  6051. border-style:solid;
  6052. border-color:rgba(242, 242, 242, 1);
  6053. border-radius:33px;
  6054. -moz-box-shadow:none;
  6055. -webkit-box-shadow:none;
  6056. box-shadow:none;
  6057. }
  6058. #u39716 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:1699px;
  6062. top:70px;
  6063. width:88px;
  6064. height:32px;
  6065. display:flex;
  6066. }
  6067. #u39716 .text {
  6068. position:absolute;
  6069. align-self:center;
  6070. padding:2px 2px 2px 2px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u39716_text {
  6075. border-width:0px;
  6076. word-wrap:break-word;
  6077. text-transform:none;
  6078. visibility:hidden;
  6079. }
  6080. #u39717 {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:0px;
  6086. height:0px;
  6087. }
  6088. #u39718_img {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:18px;
  6094. height:18px;
  6095. }
  6096. #u39718 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:1762px;
  6100. top:77px;
  6101. width:18px;
  6102. height:18px;
  6103. display:flex;
  6104. }
  6105. #u39718 .text {
  6106. position:absolute;
  6107. align-self:center;
  6108. padding:2px 2px 2px 2px;
  6109. box-sizing:border-box;
  6110. width:100%;
  6111. }
  6112. #u39718_text {
  6113. border-width:0px;
  6114. word-wrap:break-word;
  6115. text-transform:none;
  6116. visibility:hidden;
  6117. }
  6118. #u39719_img {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:6px;
  6124. height:6px;
  6125. }
  6126. #u39719 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:1768px;
  6130. top:83px;
  6131. width:6px;
  6132. height:6px;
  6133. display:flex;
  6134. }
  6135. #u39719 .text {
  6136. position:absolute;
  6137. align-self:center;
  6138. padding:2px 2px 2px 2px;
  6139. box-sizing:border-box;
  6140. width:100%;
  6141. }
  6142. #u39719_text {
  6143. border-width:0px;
  6144. word-wrap:break-word;
  6145. text-transform:none;
  6146. visibility:hidden;
  6147. }
  6148. #u39720 {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:0px;
  6152. top:0px;
  6153. width:0px;
  6154. height:0px;
  6155. }
  6156. #u39721_img {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:0px;
  6160. top:0px;
  6161. width:5px;
  6162. height:5px;
  6163. }
  6164. #u39721 {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:1713px;
  6168. top:84px;
  6169. width:5px;
  6170. height:5px;
  6171. display:flex;
  6172. }
  6173. #u39721 .text {
  6174. position:absolute;
  6175. align-self:center;
  6176. padding:2px 2px 2px 2px;
  6177. box-sizing:border-box;
  6178. width:100%;
  6179. }
  6180. #u39721_text {
  6181. border-width:0px;
  6182. word-wrap:break-word;
  6183. text-transform:none;
  6184. visibility:hidden;
  6185. }
  6186. #u39722_img {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:5px;
  6192. height:5px;
  6193. }
  6194. #u39722 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:1729px;
  6198. top:84px;
  6199. width:5px;
  6200. height:5px;
  6201. display:flex;
  6202. }
  6203. #u39722 .text {
  6204. position:absolute;
  6205. align-self:center;
  6206. padding:2px 2px 2px 2px;
  6207. box-sizing:border-box;
  6208. width:100%;
  6209. }
  6210. #u39722_text {
  6211. border-width:0px;
  6212. word-wrap:break-word;
  6213. text-transform:none;
  6214. visibility:hidden;
  6215. }
  6216. #u39723_img {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:0px;
  6220. top:0px;
  6221. width:7px;
  6222. height:7px;
  6223. }
  6224. #u39723 {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:1720px;
  6228. top:83px;
  6229. width:7px;
  6230. height:7px;
  6231. display:flex;
  6232. }
  6233. #u39723 .text {
  6234. position:absolute;
  6235. align-self:center;
  6236. padding:2px 2px 2px 2px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u39723_text {
  6241. border-width:0px;
  6242. word-wrap:break-word;
  6243. text-transform:none;
  6244. visibility:hidden;
  6245. }
  6246. #u39724_img {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:19px;
  6252. height:2px;
  6253. }
  6254. #u39724 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:1737px;
  6258. top:86px;
  6259. width:18px;
  6260. height:1px;
  6261. display:flex;
  6262. -webkit-transform:rotate(90deg);
  6263. -moz-transform:rotate(90deg);
  6264. -ms-transform:rotate(90deg);
  6265. transform:rotate(90deg);
  6266. }
  6267. #u39724 .text {
  6268. position:absolute;
  6269. align-self:center;
  6270. padding:2px 2px 2px 2px;
  6271. box-sizing:border-box;
  6272. width:100%;
  6273. }
  6274. #u39724_text {
  6275. border-width:0px;
  6276. word-wrap:break-word;
  6277. text-transform:none;
  6278. visibility:hidden;
  6279. }
  6280. #u39725_div {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:12px;
  6286. height:12px;
  6287. background:inherit;
  6288. background-color:rgba(255, 255, 255, 0);
  6289. box-sizing:border-box;
  6290. border-width:2px;
  6291. border-style:solid;
  6292. border-color:rgba(51, 51, 51, 1);
  6293. border-right:0px;
  6294. border-bottom:0px;
  6295. border-radius:0px;
  6296. border-top-right-radius:0px;
  6297. border-bottom-left-radius:0px;
  6298. -moz-box-shadow:none;
  6299. -webkit-box-shadow:none;
  6300. box-shadow:none;
  6301. }
  6302. #u39725 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:1438px;
  6306. top:80px;
  6307. width:12px;
  6308. height:12px;
  6309. display:flex;
  6310. -webkit-transform:rotate(315deg);
  6311. -moz-transform:rotate(315deg);
  6312. -ms-transform:rotate(315deg);
  6313. transform:rotate(315deg);
  6314. }
  6315. #u39725 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:2px 2px 2px 2px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u39725_text {
  6323. border-width:0px;
  6324. word-wrap:break-word;
  6325. text-transform:none;
  6326. visibility:hidden;
  6327. }
  6328. #u39726_div {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:109px;
  6334. height:25px;
  6335. background:inherit;
  6336. background-color:rgba(255, 255, 255, 0);
  6337. border:none;
  6338. border-radius:0px;
  6339. -moz-box-shadow:none;
  6340. -webkit-box-shadow:none;
  6341. box-shadow:none;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:18px;
  6346. }
  6347. #u39726 {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:1452px;
  6351. top:73px;
  6352. width:109px;
  6353. height:25px;
  6354. display:flex;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:18px;
  6359. }
  6360. #u39726 .text {
  6361. position:absolute;
  6362. align-self:flex-start;
  6363. padding:0px 0px 0px 0px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u39726_text {
  6368. border-width:0px;
  6369. white-space:nowrap;
  6370. text-transform:none;
  6371. }
  6372. #u39727_div {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:375px;
  6378. height:58px;
  6379. background:inherit;
  6380. background-color:rgba(24, 144, 255, 1);
  6381. border:none;
  6382. border-radius:0px;
  6383. -moz-box-shadow:none;
  6384. -webkit-box-shadow:none;
  6385. box-shadow:none;
  6386. }
  6387. #u39727 {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:1422px;
  6391. top:108px;
  6392. width:375px;
  6393. height:58px;
  6394. display:flex;
  6395. }
  6396. #u39727 .text {
  6397. position:absolute;
  6398. align-self:center;
  6399. padding:2px 2px 2px 2px;
  6400. box-sizing:border-box;
  6401. width:100%;
  6402. }
  6403. #u39727_text {
  6404. border-width:0px;
  6405. word-wrap:break-word;
  6406. text-transform:none;
  6407. visibility:hidden;
  6408. }
  6409. #u39728_div {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:375px;
  6415. height:615px;
  6416. background:inherit;
  6417. background-color:rgba(255, 255, 255, 1);
  6418. border:none;
  6419. border-top:0px;
  6420. border-bottom:0px;
  6421. border-radius:0px;
  6422. border-top-left-radius:0px;
  6423. border-top-right-radius:0px;
  6424. border-bottom-right-radius:0px;
  6425. border-bottom-left-radius:0px;
  6426. -moz-box-shadow:none;
  6427. -webkit-box-shadow:none;
  6428. box-shadow:none;
  6429. }
  6430. #u39728 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:1422px;
  6434. top:166px;
  6435. width:375px;
  6436. height:615px;
  6437. display:flex;
  6438. }
  6439. #u39728 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:2px 2px 2px 2px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u39728_text {
  6447. border-width:0px;
  6448. word-wrap:break-word;
  6449. text-transform:none;
  6450. visibility:hidden;
  6451. }
  6452. #u39729 {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:0px;
  6458. height:0px;
  6459. }
  6460. #u39730 {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:0px;
  6466. height:0px;
  6467. }
  6468. #u39731_img {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:27px;
  6474. height:27px;
  6475. }
  6476. #u39731 {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:1651px;
  6480. top:123px;
  6481. width:27px;
  6482. height:27px;
  6483. display:flex;
  6484. font-size:12px;
  6485. color:#1890FF;
  6486. }
  6487. #u39731 .text {
  6488. position:absolute;
  6489. align-self:center;
  6490. padding:2px 2px 2px 2px;
  6491. box-sizing:border-box;
  6492. width:100%;
  6493. }
  6494. #u39731_text {
  6495. border-width:0px;
  6496. word-wrap:break-word;
  6497. text-transform:none;
  6498. }
  6499. #u39732_div {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:0px;
  6503. top:0px;
  6504. width:57px;
  6505. height:30px;
  6506. background:inherit;
  6507. background-color:rgba(255, 255, 255, 0);
  6508. border:none;
  6509. border-left:0px;
  6510. border-top:0px;
  6511. border-right:0px;
  6512. border-radius:0px;
  6513. border-bottom-right-radius:0px;
  6514. border-bottom-left-radius:0px;
  6515. -moz-box-shadow:none;
  6516. -webkit-box-shadow:none;
  6517. box-shadow:none;
  6518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6519. font-weight:400;
  6520. font-style:normal;
  6521. font-size:14px;
  6522. color:#FFFFFF;
  6523. line-height:30px;
  6524. }
  6525. #u39732 {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:1685px;
  6529. top:122px;
  6530. width:57px;
  6531. height:30px;
  6532. display:flex;
  6533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:14px;
  6537. color:#FFFFFF;
  6538. line-height:30px;
  6539. }
  6540. #u39732 .text {
  6541. position:absolute;
  6542. align-self:center;
  6543. padding:0px 0px 0px 0px;
  6544. box-sizing:border-box;
  6545. width:100%;
  6546. }
  6547. #u39732_text {
  6548. border-width:0px;
  6549. white-space:nowrap;
  6550. text-transform:none;
  6551. }
  6552. #u39733_img {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:27px;
  6558. height:27px;
  6559. }
  6560. #u39733 {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:1465px;
  6564. top:123px;
  6565. width:27px;
  6566. height:27px;
  6567. display:flex;
  6568. font-size:12px;
  6569. color:#1890FF;
  6570. }
  6571. #u39733 .text {
  6572. position:absolute;
  6573. align-self:center;
  6574. padding:2px 2px 2px 2px;
  6575. box-sizing:border-box;
  6576. width:100%;
  6577. }
  6578. #u39733_text {
  6579. border-width:0px;
  6580. word-wrap:break-word;
  6581. text-transform:none;
  6582. }
  6583. #u39734_div {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:57px;
  6589. height:30px;
  6590. background:inherit;
  6591. background-color:rgba(255, 255, 255, 0);
  6592. border:none;
  6593. border-left:0px;
  6594. border-top:0px;
  6595. border-right:0px;
  6596. border-radius:0px;
  6597. border-bottom-right-radius:0px;
  6598. border-bottom-left-radius:0px;
  6599. -moz-box-shadow:none;
  6600. -webkit-box-shadow:none;
  6601. box-shadow:none;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:14px;
  6606. color:#FFFFFF;
  6607. line-height:30px;
  6608. }
  6609. #u39734 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:1499px;
  6613. top:122px;
  6614. width:57px;
  6615. height:30px;
  6616. display:flex;
  6617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:14px;
  6621. color:#FFFFFF;
  6622. line-height:30px;
  6623. }
  6624. #u39734 .text {
  6625. position:absolute;
  6626. align-self:center;
  6627. padding:0px 0px 0px 0px;
  6628. box-sizing:border-box;
  6629. width:100%;
  6630. }
  6631. #u39734_text {
  6632. border-width:0px;
  6633. white-space:nowrap;
  6634. text-transform:none;
  6635. }
  6636. #u39735_img {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:0px;
  6640. top:0px;
  6641. width:71px;
  6642. height:2px;
  6643. }
  6644. #u39735 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:1575px;
  6648. top:136px;
  6649. width:70px;
  6650. height:1px;
  6651. display:flex;
  6652. color:#FFFFFF;
  6653. }
  6654. #u39735 .text {
  6655. position:absolute;
  6656. align-self:center;
  6657. padding:2px 2px 2px 2px;
  6658. box-sizing:border-box;
  6659. width:100%;
  6660. }
  6661. #u39735_text {
  6662. border-width:0px;
  6663. word-wrap:break-word;
  6664. text-transform:none;
  6665. visibility:hidden;
  6666. }
  6667. #u39736 {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:0px;
  6673. height:0px;
  6674. }
  6675. #u39737_div {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:0px;
  6679. top:0px;
  6680. width:375px;
  6681. height:60px;
  6682. background:inherit;
  6683. background-color:rgba(255, 255, 255, 1);
  6684. border:none;
  6685. border-top:0px;
  6686. border-radius:28px;
  6687. border-top-left-radius:0px;
  6688. border-top-right-radius:0px;
  6689. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6690. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6691. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6693. font-weight:400;
  6694. font-style:normal;
  6695. font-size:14px;
  6696. color:#FFFFFF;
  6697. }
  6698. #u39737 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:1422px;
  6702. top:781px;
  6703. width:375px;
  6704. height:60px;
  6705. display:flex;
  6706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6707. font-weight:400;
  6708. font-style:normal;
  6709. font-size:14px;
  6710. color:#FFFFFF;
  6711. }
  6712. #u39737 .text {
  6713. position:absolute;
  6714. align-self:center;
  6715. padding:2px 2px 2px 2px;
  6716. box-sizing:border-box;
  6717. width:100%;
  6718. }
  6719. #u39737_text {
  6720. border-width:0px;
  6721. word-wrap:break-word;
  6722. text-transform:none;
  6723. visibility:hidden;
  6724. }
  6725. #u39738_div {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:324px;
  6731. height:40px;
  6732. background:inherit;
  6733. background-color:rgba(0, 137, 254, 1);
  6734. border:none;
  6735. border-radius:63px;
  6736. -moz-box-shadow:none;
  6737. -webkit-box-shadow:none;
  6738. box-shadow:none;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:14px;
  6743. color:#FFFFFF;
  6744. }
  6745. #u39738 {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:1450px;
  6749. top:790px;
  6750. width:324px;
  6751. height:40px;
  6752. display:flex;
  6753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. font-size:14px;
  6757. color:#FFFFFF;
  6758. }
  6759. #u39738 .text {
  6760. position:absolute;
  6761. align-self:center;
  6762. padding:2px 2px 2px 2px;
  6763. box-sizing:border-box;
  6764. width:100%;
  6765. }
  6766. #u39738_text {
  6767. border-width:0px;
  6768. word-wrap:break-word;
  6769. text-transform:none;
  6770. }
  6771. #u39739_img {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:326px;
  6777. height:485px;
  6778. }
  6779. #u39739 {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:1448px;
  6783. top:191px;
  6784. width:326px;
  6785. height:485px;
  6786. display:flex;
  6787. }
  6788. #u39739 .text {
  6789. position:absolute;
  6790. align-self:center;
  6791. padding:2px 2px 2px 2px;
  6792. box-sizing:border-box;
  6793. width:100%;
  6794. }
  6795. #u39739_text {
  6796. border-width:0px;
  6797. word-wrap:break-word;
  6798. text-transform:none;
  6799. visibility:hidden;
  6800. }
  6801. #u39740 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:0px;
  6807. height:0px;
  6808. }
  6809. #u39741_div {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:0px;
  6813. top:0px;
  6814. width:375px;
  6815. height:144px;
  6816. background:inherit;
  6817. background-color:rgba(255, 255, 255, 1);
  6818. border:none;
  6819. border-top:0px;
  6820. border-radius:28px;
  6821. border-top-left-radius:0px;
  6822. border-top-right-radius:0px;
  6823. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6824. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6825. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6827. font-weight:400;
  6828. font-style:normal;
  6829. font-size:14px;
  6830. color:#FFFFFF;
  6831. }
  6832. #u39741 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:29px;
  6836. top:696px;
  6837. width:375px;
  6838. height:144px;
  6839. display:flex;
  6840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6841. font-weight:400;
  6842. font-style:normal;
  6843. font-size:14px;
  6844. color:#FFFFFF;
  6845. }
  6846. #u39741 .text {
  6847. position:absolute;
  6848. align-self:center;
  6849. padding:2px 2px 2px 2px;
  6850. box-sizing:border-box;
  6851. width:100%;
  6852. }
  6853. #u39741_text {
  6854. border-width:0px;
  6855. word-wrap:break-word;
  6856. text-transform:none;
  6857. visibility:hidden;
  6858. }
  6859. #u39742_div {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:324px;
  6865. height:40px;
  6866. background:inherit;
  6867. background-color:rgba(0, 137, 254, 1);
  6868. border:none;
  6869. border-radius:63px;
  6870. -moz-box-shadow:none;
  6871. -webkit-box-shadow:none;
  6872. box-shadow:none;
  6873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6874. font-weight:400;
  6875. font-style:normal;
  6876. font-size:14px;
  6877. color:#FFFFFF;
  6878. }
  6879. #u39742 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:57px;
  6883. top:705px;
  6884. width:324px;
  6885. height:40px;
  6886. display:flex;
  6887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6888. font-weight:400;
  6889. font-style:normal;
  6890. font-size:14px;
  6891. color:#FFFFFF;
  6892. }
  6893. #u39742 .text {
  6894. position:absolute;
  6895. align-self:center;
  6896. padding:2px 2px 2px 2px;
  6897. box-sizing:border-box;
  6898. width:100%;
  6899. }
  6900. #u39742_text {
  6901. border-width:0px;
  6902. word-wrap:break-word;
  6903. text-transform:none;
  6904. }
  6905. #u39743_div {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:0px;
  6909. top:0px;
  6910. width:121px;
  6911. height:17px;
  6912. background:inherit;
  6913. background-color:rgba(255, 255, 255, 0);
  6914. border:none;
  6915. border-left:0px;
  6916. border-top:0px;
  6917. border-right:0px;
  6918. border-radius:0px;
  6919. border-bottom-right-radius:0px;
  6920. border-bottom-left-radius:0px;
  6921. -moz-box-shadow:none;
  6922. -webkit-box-shadow:none;
  6923. box-shadow:none;
  6924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6925. font-weight:400;
  6926. font-style:normal;
  6927. font-size:12px;
  6928. color:#AAAAAA;
  6929. }
  6930. #u39743 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:150px;
  6934. top:761px;
  6935. width:121px;
  6936. height:17px;
  6937. display:flex;
  6938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6939. font-weight:400;
  6940. font-style:normal;
  6941. font-size:12px;
  6942. color:#AAAAAA;
  6943. }
  6944. #u39743 .text {
  6945. position:absolute;
  6946. align-self:flex-start;
  6947. padding:0px 0px 0px 0px;
  6948. box-sizing:border-box;
  6949. width:100%;
  6950. }
  6951. #u39743_text {
  6952. border-width:0px;
  6953. white-space:nowrap;
  6954. text-transform:none;
  6955. }
  6956. #u39744_div {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:160px;
  6962. height:40px;
  6963. background:inherit;
  6964. background-color:rgba(254, 248, 231, 1);
  6965. border:none;
  6966. border-radius:63px;
  6967. -moz-box-shadow:none;
  6968. -webkit-box-shadow:none;
  6969. box-shadow:none;
  6970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6971. font-weight:400;
  6972. font-style:normal;
  6973. font-size:14px;
  6974. color:#F59A23;
  6975. }
  6976. #u39744 {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:61px;
  6980. top:789px;
  6981. width:160px;
  6982. height:40px;
  6983. display:flex;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:14px;
  6988. color:#F59A23;
  6989. }
  6990. #u39744 .text {
  6991. position:absolute;
  6992. align-self:center;
  6993. padding:2px 2px 2px 2px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u39744_text {
  6998. border-width:0px;
  6999. word-wrap:break-word;
  7000. text-transform:none;
  7001. }
  7002. #u39745_div {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:0px;
  7006. top:0px;
  7007. width:160px;
  7008. height:40px;
  7009. background:inherit;
  7010. background-color:rgba(254, 248, 231, 1);
  7011. border:none;
  7012. border-radius:63px;
  7013. -moz-box-shadow:none;
  7014. -webkit-box-shadow:none;
  7015. box-shadow:none;
  7016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7017. font-weight:400;
  7018. font-style:normal;
  7019. font-size:14px;
  7020. color:#F59A23;
  7021. }
  7022. #u39745 {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:231px;
  7026. top:789px;
  7027. width:160px;
  7028. height:40px;
  7029. display:flex;
  7030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. font-size:14px;
  7034. color:#F59A23;
  7035. }
  7036. #u39745 .text {
  7037. position:absolute;
  7038. align-self:center;
  7039. padding:2px 2px 2px 2px;
  7040. box-sizing:border-box;
  7041. width:100%;
  7042. }
  7043. #u39745_text {
  7044. border-width:0px;
  7045. word-wrap:break-word;
  7046. text-transform:none;
  7047. }
  7048. #u39746_div {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:301px;
  7054. height:20px;
  7055. background:inherit;
  7056. background-color:rgba(255, 255, 255, 0);
  7057. border:none;
  7058. border-left:0px;
  7059. border-top:0px;
  7060. border-right:0px;
  7061. border-radius:0px;
  7062. border-bottom-right-radius:0px;
  7063. border-bottom-left-radius:0px;
  7064. -moz-box-shadow:none;
  7065. -webkit-box-shadow:none;
  7066. box-shadow:none;
  7067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:14px;
  7071. color:#D9001B;
  7072. }
  7073. #u39746 {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:57px;
  7077. top:879px;
  7078. width:301px;
  7079. height:20px;
  7080. display:flex;
  7081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7082. font-weight:400;
  7083. font-style:normal;
  7084. font-size:14px;
  7085. color:#D9001B;
  7086. }
  7087. #u39746 .text {
  7088. position:absolute;
  7089. align-self:flex-start;
  7090. padding:0px 0px 0px 0px;
  7091. box-sizing:border-box;
  7092. width:100%;
  7093. }
  7094. #u39746_text {
  7095. border-width:0px;
  7096. white-space:nowrap;
  7097. text-transform:none;
  7098. }
  7099. #u39747 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:0px;
  7103. top:0px;
  7104. width:0px;
  7105. height:0px;
  7106. }
  7107. #u39748_div {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:322px;
  7113. height:163px;
  7114. background:inherit;
  7115. background-color:rgba(255, 255, 255, 1);
  7116. box-sizing:border-box;
  7117. border-width:1px;
  7118. border-style:solid;
  7119. border-color:rgba(215, 215, 215, 1);
  7120. border-left:0px;
  7121. border-top:0px;
  7122. border-right:0px;
  7123. border-radius:0px;
  7124. border-bottom-right-radius:0px;
  7125. border-bottom-left-radius:0px;
  7126. -moz-box-shadow:none;
  7127. -webkit-box-shadow:none;
  7128. box-shadow:none;
  7129. }
  7130. #u39748 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:512px;
  7134. top:460px;
  7135. width:322px;
  7136. height:163px;
  7137. display:flex;
  7138. }
  7139. #u39748 .text {
  7140. position:absolute;
  7141. align-self:center;
  7142. padding:2px 2px 2px 2px;
  7143. box-sizing:border-box;
  7144. width:100%;
  7145. }
  7146. #u39748_text {
  7147. border-width:0px;
  7148. word-wrap:break-word;
  7149. text-transform:none;
  7150. visibility:hidden;
  7151. }
  7152. #u39749_div {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:0px;
  7156. top:0px;
  7157. width:57px;
  7158. height:20px;
  7159. background:inherit;
  7160. background-color:rgba(255, 255, 255, 0);
  7161. border:none;
  7162. border-radius:0px;
  7163. -moz-box-shadow:none;
  7164. -webkit-box-shadow:none;
  7165. box-shadow:none;
  7166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. }
  7170. #u39749 {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:512px;
  7174. top:470px;
  7175. width:57px;
  7176. height:20px;
  7177. display:flex;
  7178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7179. font-weight:400;
  7180. font-style:normal;
  7181. }
  7182. #u39749 .text {
  7183. position:absolute;
  7184. align-self:flex-start;
  7185. padding:0px 0px 0px 0px;
  7186. box-sizing:border-box;
  7187. width:100%;
  7188. }
  7189. #u39749_text {
  7190. border-width:0px;
  7191. white-space:nowrap;
  7192. text-transform:none;
  7193. }
  7194. #u39750_img {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:0px;
  7198. top:0px;
  7199. width:150px;
  7200. height:103px;
  7201. }
  7202. #u39750 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:512px;
  7206. top:501px;
  7207. width:150px;
  7208. height:103px;
  7209. display:flex;
  7210. }
  7211. #u39750 .text {
  7212. position:absolute;
  7213. align-self:center;
  7214. padding:2px 2px 2px 2px;
  7215. box-sizing:border-box;
  7216. width:100%;
  7217. }
  7218. #u39750_text {
  7219. border-width:0px;
  7220. word-wrap:break-word;
  7221. text-transform:none;
  7222. }
  7223. #u39751_img {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:0px;
  7227. top:0px;
  7228. width:150px;
  7229. height:103px;
  7230. }
  7231. #u39751 {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:673px;
  7235. top:501px;
  7236. width:150px;
  7237. height:103px;
  7238. display:flex;
  7239. }
  7240. #u39751 .text {
  7241. position:absolute;
  7242. align-self:center;
  7243. padding:2px 2px 2px 2px;
  7244. box-sizing:border-box;
  7245. width:100%;
  7246. }
  7247. #u39751_text {
  7248. border-width:0px;
  7249. word-wrap:break-word;
  7250. text-transform:none;
  7251. }
  7252. #u39752 {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:0px;
  7258. height:0px;
  7259. }
  7260. #u39753_div {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:322px;
  7266. height:163px;
  7267. background:inherit;
  7268. background-color:rgba(255, 255, 255, 1);
  7269. border:none;
  7270. border-left:0px;
  7271. border-top:0px;
  7272. border-right:0px;
  7273. border-radius:0px;
  7274. border-bottom-right-radius:0px;
  7275. border-bottom-left-radius:0px;
  7276. -moz-box-shadow:none;
  7277. -webkit-box-shadow:none;
  7278. box-shadow:none;
  7279. }
  7280. #u39753 {
  7281. border-width:0px;
  7282. position:absolute;
  7283. left:512px;
  7284. top:623px;
  7285. width:322px;
  7286. height:163px;
  7287. display:flex;
  7288. }
  7289. #u39753 .text {
  7290. position:absolute;
  7291. align-self:center;
  7292. padding:2px 2px 2px 2px;
  7293. box-sizing:border-box;
  7294. width:100%;
  7295. }
  7296. #u39753_text {
  7297. border-width:0px;
  7298. word-wrap:break-word;
  7299. text-transform:none;
  7300. visibility:hidden;
  7301. }
  7302. #u39754_div {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:0px;
  7306. top:0px;
  7307. width:64px;
  7308. height:20px;
  7309. background:inherit;
  7310. background-color:rgba(255, 255, 255, 0);
  7311. border:none;
  7312. border-radius:0px;
  7313. -moz-box-shadow:none;
  7314. -webkit-box-shadow:none;
  7315. box-shadow:none;
  7316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7317. font-weight:400;
  7318. font-style:normal;
  7319. }
  7320. #u39754 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:512px;
  7324. top:633px;
  7325. width:64px;
  7326. height:20px;
  7327. display:flex;
  7328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. }
  7332. #u39754 .text {
  7333. position:absolute;
  7334. align-self:flex-start;
  7335. padding:0px 0px 0px 0px;
  7336. box-sizing:border-box;
  7337. width:100%;
  7338. }
  7339. #u39754_text {
  7340. border-width:0px;
  7341. white-space:nowrap;
  7342. text-transform:none;
  7343. }
  7344. #u39755_img {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:0px;
  7348. top:0px;
  7349. width:103px;
  7350. height:103px;
  7351. }
  7352. #u39755 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:512px;
  7356. top:664px;
  7357. width:103px;
  7358. height:103px;
  7359. display:flex;
  7360. }
  7361. #u39755 .text {
  7362. position:absolute;
  7363. align-self:center;
  7364. padding:2px 2px 2px 2px;
  7365. box-sizing:border-box;
  7366. width:100%;
  7367. }
  7368. #u39755_text {
  7369. border-width:0px;
  7370. word-wrap:break-word;
  7371. text-transform:none;
  7372. }
  7373. #u39756_img {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:0px;
  7377. top:0px;
  7378. width:103px;
  7379. height:103px;
  7380. }
  7381. #u39756 {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:625px;
  7385. top:664px;
  7386. width:103px;
  7387. height:103px;
  7388. display:flex;
  7389. }
  7390. #u39756 .text {
  7391. position:absolute;
  7392. align-self:center;
  7393. padding:2px 2px 2px 2px;
  7394. box-sizing:border-box;
  7395. width:100%;
  7396. }
  7397. #u39756_text {
  7398. border-width:0px;
  7399. word-wrap:break-word;
  7400. text-transform:none;
  7401. visibility:hidden;
  7402. }
  7403. #u39757_div {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:0px;
  7407. top:0px;
  7408. width:103px;
  7409. height:24px;
  7410. background:inherit;
  7411. background-color:rgba(51, 51, 51, 0.498039215686275);
  7412. border:none;
  7413. border-radius:0px;
  7414. -moz-box-shadow:none;
  7415. -webkit-box-shadow:none;
  7416. box-shadow:none;
  7417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7418. font-weight:400;
  7419. font-style:normal;
  7420. }
  7421. #u39757 {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:625px;
  7425. top:743px;
  7426. width:103px;
  7427. height:24px;
  7428. display:flex;
  7429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7430. font-weight:400;
  7431. font-style:normal;
  7432. }
  7433. #u39757 .text {
  7434. position:absolute;
  7435. align-self:center;
  7436. padding:2px 2px 2px 2px;
  7437. box-sizing:border-box;
  7438. width:100%;
  7439. }
  7440. #u39757_text {
  7441. border-width:0px;
  7442. word-wrap:break-word;
  7443. text-transform:none;
  7444. }
  7445. #u39758_div {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:267px;
  7451. height:20px;
  7452. background:inherit;
  7453. background-color:rgba(255, 255, 255, 0);
  7454. border:none;
  7455. border-left:0px;
  7456. border-top:0px;
  7457. border-right:0px;
  7458. border-radius:0px;
  7459. border-bottom-right-radius:0px;
  7460. border-bottom-left-radius:0px;
  7461. -moz-box-shadow:none;
  7462. -webkit-box-shadow:none;
  7463. box-shadow:none;
  7464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7465. font-weight:400;
  7466. font-style:normal;
  7467. font-size:14px;
  7468. color:#D9001B;
  7469. }
  7470. #u39758 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:520px;
  7474. top:755px;
  7475. width:267px;
  7476. height:20px;
  7477. display:flex;
  7478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. font-size:14px;
  7482. color:#D9001B;
  7483. }
  7484. #u39758 .text {
  7485. position:absolute;
  7486. align-self:flex-start;
  7487. padding:0px 0px 0px 0px;
  7488. box-sizing:border-box;
  7489. width:100%;
  7490. }
  7491. #u39758_text {
  7492. border-width:0px;
  7493. white-space:nowrap;
  7494. text-transform:none;
  7495. }
  7496. #u39759_div {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:116px;
  7502. height:30px;
  7503. background:inherit;
  7504. background-color:rgba(255, 255, 255, 0);
  7505. border:none;
  7506. border-left:0px;
  7507. border-top:0px;
  7508. border-right:0px;
  7509. border-radius:0px;
  7510. border-bottom-right-radius:0px;
  7511. border-bottom-left-radius:0px;
  7512. -moz-box-shadow:none;
  7513. -webkit-box-shadow:none;
  7514. box-shadow:none;
  7515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7516. font-weight:400;
  7517. font-style:normal;
  7518. font-size:12px;
  7519. color:#555555;
  7520. line-height:30px;
  7521. }
  7522. #u39759 {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:585px;
  7526. top:263px;
  7527. width:116px;
  7528. height:30px;
  7529. display:flex;
  7530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:12px;
  7534. color:#555555;
  7535. line-height:30px;
  7536. }
  7537. #u39759 .text {
  7538. position:absolute;
  7539. align-self:center;
  7540. padding:0px 0px 0px 0px;
  7541. box-sizing:border-box;
  7542. width:100%;
  7543. }
  7544. #u39759_text {
  7545. border-width:0px;
  7546. white-space:nowrap;
  7547. text-transform:none;
  7548. }
  7549. #u39760_div {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:0px;
  7553. top:0px;
  7554. width:183px;
  7555. height:20px;
  7556. background:inherit;
  7557. background-color:rgba(255, 255, 255, 0);
  7558. border:none;
  7559. border-left:0px;
  7560. border-top:0px;
  7561. border-right:0px;
  7562. border-radius:0px;
  7563. border-bottom-right-radius:0px;
  7564. border-bottom-left-radius:0px;
  7565. -moz-box-shadow:none;
  7566. -webkit-box-shadow:none;
  7567. box-shadow:none;
  7568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:14px;
  7572. color:#D9001B;
  7573. }
  7574. #u39760 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:1072px;
  7578. top:664px;
  7579. width:183px;
  7580. height:20px;
  7581. display:flex;
  7582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:14px;
  7586. color:#D9001B;
  7587. }
  7588. #u39760 .text {
  7589. position:absolute;
  7590. align-self:flex-start;
  7591. padding:0px 0px 0px 0px;
  7592. box-sizing:border-box;
  7593. width:100%;
  7594. }
  7595. #u39760_text {
  7596. border-width:0px;
  7597. white-space:nowrap;
  7598. text-transform:none;
  7599. }
  7600. #u39761_div {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:0px;
  7604. top:0px;
  7605. width:308px;
  7606. height:34px;
  7607. background:inherit;
  7608. background-color:rgba(255, 255, 255, 0);
  7609. border:none;
  7610. border-left:0px;
  7611. border-top:0px;
  7612. border-right:0px;
  7613. border-radius:0px;
  7614. border-bottom-right-radius:0px;
  7615. border-bottom-left-radius:0px;
  7616. -moz-box-shadow:none;
  7617. -webkit-box-shadow:none;
  7618. box-shadow:none;
  7619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7620. font-weight:400;
  7621. font-style:normal;
  7622. font-size:12px;
  7623. color:#D9001B;
  7624. }
  7625. #u39761 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:515px;
  7629. top:236px;
  7630. width:308px;
  7631. height:34px;
  7632. display:flex;
  7633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:12px;
  7637. color:#D9001B;
  7638. }
  7639. #u39761 .text {
  7640. position:absolute;
  7641. align-self:center;
  7642. padding:0px 0px 0px 0px;
  7643. box-sizing:border-box;
  7644. width:100%;
  7645. }
  7646. #u39761_text {
  7647. border-width:0px;
  7648. white-space:nowrap;
  7649. text-transform:none;
  7650. }
  7651. #u39762 {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:0px;
  7655. top:0px;
  7656. width:0px;
  7657. height:0px;
  7658. }
  7659. #u39763_div {
  7660. border-width:0px;
  7661. position:absolute;
  7662. left:0px;
  7663. top:0px;
  7664. width:375px;
  7665. height:144px;
  7666. background:inherit;
  7667. background-color:rgba(255, 255, 255, 1);
  7668. border:none;
  7669. border-top:0px;
  7670. border-radius:28px;
  7671. border-top-left-radius:0px;
  7672. border-top-right-radius:0px;
  7673. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7674. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7675. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7677. font-weight:400;
  7678. font-style:normal;
  7679. font-size:14px;
  7680. color:#FFFFFF;
  7681. }
  7682. #u39763 {
  7683. border-width:0px;
  7684. position:absolute;
  7685. left:492px;
  7686. top:800px;
  7687. width:375px;
  7688. height:144px;
  7689. display:flex;
  7690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7691. font-weight:400;
  7692. font-style:normal;
  7693. font-size:14px;
  7694. color:#FFFFFF;
  7695. }
  7696. #u39763 .text {
  7697. position:absolute;
  7698. align-self:center;
  7699. padding:2px 2px 2px 2px;
  7700. box-sizing:border-box;
  7701. width:100%;
  7702. }
  7703. #u39763_text {
  7704. border-width:0px;
  7705. word-wrap:break-word;
  7706. text-transform:none;
  7707. visibility:hidden;
  7708. }
  7709. #u39764_div {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:0px;
  7713. top:0px;
  7714. width:324px;
  7715. height:40px;
  7716. background:inherit;
  7717. background-color:rgba(0, 137, 254, 1);
  7718. border:none;
  7719. border-radius:63px;
  7720. -moz-box-shadow:none;
  7721. -webkit-box-shadow:none;
  7722. box-shadow:none;
  7723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7724. font-weight:400;
  7725. font-style:normal;
  7726. font-size:14px;
  7727. color:#FFFFFF;
  7728. }
  7729. #u39764 {
  7730. border-width:0px;
  7731. position:absolute;
  7732. left:520px;
  7733. top:839px;
  7734. width:324px;
  7735. height:40px;
  7736. display:flex;
  7737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7738. font-weight:400;
  7739. font-style:normal;
  7740. font-size:14px;
  7741. color:#FFFFFF;
  7742. }
  7743. #u39764 .text {
  7744. position:absolute;
  7745. align-self:center;
  7746. padding:2px 2px 2px 2px;
  7747. box-sizing:border-box;
  7748. width:100%;
  7749. }
  7750. #u39764_text {
  7751. border-width:0px;
  7752. word-wrap:break-word;
  7753. text-transform:none;
  7754. }
  7755. #u39765_div {
  7756. border-width:0px;
  7757. position:absolute;
  7758. left:0px;
  7759. top:0px;
  7760. width:221px;
  7761. height:20px;
  7762. background:inherit;
  7763. background-color:rgba(255, 255, 255, 0);
  7764. border:none;
  7765. border-left:0px;
  7766. border-top:0px;
  7767. border-right:0px;
  7768. border-radius:0px;
  7769. border-bottom-right-radius:0px;
  7770. border-bottom-left-radius:0px;
  7771. -moz-box-shadow:none;
  7772. -webkit-box-shadow:none;
  7773. box-shadow:none;
  7774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7775. font-weight:400;
  7776. font-style:normal;
  7777. font-size:12px;
  7778. color:#AAAAAA;
  7779. }
  7780. #u39765 {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:569px;
  7784. top:810px;
  7785. width:221px;
  7786. height:20px;
  7787. display:flex;
  7788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7789. font-weight:400;
  7790. font-style:normal;
  7791. font-size:12px;
  7792. color:#AAAAAA;
  7793. }
  7794. #u39765 .text {
  7795. position:absolute;
  7796. align-self:flex-start;
  7797. padding:0px 0px 0px 0px;
  7798. box-sizing:border-box;
  7799. width:100%;
  7800. }
  7801. #u39765_text {
  7802. border-width:0px;
  7803. white-space:nowrap;
  7804. text-transform:none;
  7805. }
  7806. #u39766_div {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:0px;
  7810. top:0px;
  7811. width:324px;
  7812. height:40px;
  7813. background:inherit;
  7814. background-color:rgba(255, 255, 255, 1);
  7815. box-sizing:border-box;
  7816. border-width:1px;
  7817. border-style:solid;
  7818. border-color:rgba(24, 144, 255, 1);
  7819. border-radius:63px;
  7820. -moz-box-shadow:none;
  7821. -webkit-box-shadow:none;
  7822. box-shadow:none;
  7823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7824. font-weight:400;
  7825. font-style:normal;
  7826. font-size:14px;
  7827. color:#1890FF;
  7828. }
  7829. #u39766 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:520px;
  7833. top:890px;
  7834. width:324px;
  7835. height:40px;
  7836. display:flex;
  7837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:14px;
  7841. color:#1890FF;
  7842. }
  7843. #u39766 .text {
  7844. position:absolute;
  7845. align-self:center;
  7846. padding:2px 2px 2px 2px;
  7847. box-sizing:border-box;
  7848. width:100%;
  7849. }
  7850. #u39766_text {
  7851. border-width:0px;
  7852. word-wrap:break-word;
  7853. text-transform:none;
  7854. }
  7855. #u39767 {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:844px;
  7859. top:859px;
  7860. width:0px;
  7861. height:0px;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:12px;
  7866. color:#333333;
  7867. }
  7868. #u39767_seg0 {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:0px;
  7872. top:-5px;
  7873. width:48px;
  7874. height:10px;
  7875. }
  7876. #u39767_seg1 {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:38px;
  7880. top:-430px;
  7881. width:10px;
  7882. height:435px;
  7883. }
  7884. #u39767_seg2 {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:38px;
  7888. top:-430px;
  7889. width:48px;
  7890. height:10px;
  7891. }
  7892. #u39767_seg3 {
  7893. border-width:0px;
  7894. position:absolute;
  7895. left:76px;
  7896. top:-434px;
  7897. width:18px;
  7898. height:18px;
  7899. }
  7900. #u39767_text {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:-7px;
  7904. top:-220px;
  7905. width:100px;
  7906. word-wrap:break-word;
  7907. text-transform:none;
  7908. visibility:hidden;
  7909. }
  7910. #u39768 {
  7911. border-width:0px;
  7912. position:absolute;
  7913. left:0px;
  7914. top:0px;
  7915. width:0px;
  7916. height:0px;
  7917. }
  7918. #u39769_div {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:0px;
  7922. top:0px;
  7923. width:322px;
  7924. height:40px;
  7925. background:inherit;
  7926. background-color:rgba(255, 255, 255, 1);
  7927. box-sizing:border-box;
  7928. border-width:1px;
  7929. border-style:solid;
  7930. border-color:rgba(215, 215, 215, 1);
  7931. border-left:0px;
  7932. border-top:0px;
  7933. border-right:0px;
  7934. border-radius:0px;
  7935. border-bottom-right-radius:0px;
  7936. border-bottom-left-radius:0px;
  7937. -moz-box-shadow:none;
  7938. -webkit-box-shadow:none;
  7939. box-shadow:none;
  7940. }
  7941. #u39769 {
  7942. border-width:0px;
  7943. position:absolute;
  7944. left:512px;
  7945. top:300px;
  7946. width:322px;
  7947. height:40px;
  7948. display:flex;
  7949. }
  7950. #u39769 .text {
  7951. position:absolute;
  7952. align-self:center;
  7953. padding:2px 2px 2px 2px;
  7954. box-sizing:border-box;
  7955. width:100%;
  7956. }
  7957. #u39769_text {
  7958. border-width:0px;
  7959. word-wrap:break-word;
  7960. text-transform:none;
  7961. visibility:hidden;
  7962. }
  7963. #u39770_div {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:0px;
  7967. top:0px;
  7968. width:64px;
  7969. height:20px;
  7970. background:inherit;
  7971. background-color:rgba(255, 255, 255, 0);
  7972. border:none;
  7973. border-radius:0px;
  7974. -moz-box-shadow:none;
  7975. -webkit-box-shadow:none;
  7976. box-shadow:none;
  7977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7978. font-weight:400;
  7979. font-style:normal;
  7980. }
  7981. #u39770 {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:512px;
  7985. top:310px;
  7986. width:64px;
  7987. height:20px;
  7988. display:flex;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. }
  7993. #u39770 .text {
  7994. position:absolute;
  7995. align-self:flex-start;
  7996. padding:0px 0px 0px 0px;
  7997. box-sizing:border-box;
  7998. width:100%;
  7999. }
  8000. #u39770_text {
  8001. border-width:0px;
  8002. white-space:nowrap;
  8003. text-transform:none;
  8004. }
  8005. #u39771_div {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:0px;
  8009. top:0px;
  8010. width:10px;
  8011. height:10px;
  8012. background:inherit;
  8013. background-color:rgba(255, 255, 255, 0);
  8014. box-sizing:border-box;
  8015. border-width:1px;
  8016. border-style:solid;
  8017. border-color:rgba(170, 170, 170, 1);
  8018. border-right:0px;
  8019. border-bottom:0px;
  8020. border-radius:0px;
  8021. border-top-right-radius:0px;
  8022. border-bottom-left-radius:0px;
  8023. -moz-box-shadow:none;
  8024. -webkit-box-shadow:none;
  8025. box-shadow:none;
  8026. }
  8027. #u39771 {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:818px;
  8031. top:315px;
  8032. width:10px;
  8033. height:10px;
  8034. display:flex;
  8035. -webkit-transform:rotate(135deg);
  8036. -moz-transform:rotate(135deg);
  8037. -ms-transform:rotate(135deg);
  8038. transform:rotate(135deg);
  8039. }
  8040. #u39771 .text {
  8041. position:absolute;
  8042. align-self:center;
  8043. padding:2px 2px 2px 2px;
  8044. box-sizing:border-box;
  8045. width:100%;
  8046. }
  8047. #u39771_text {
  8048. border-width:0px;
  8049. word-wrap:break-word;
  8050. text-transform:none;
  8051. visibility:hidden;
  8052. }
  8053. #u39772_div {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:0px;
  8057. top:0px;
  8058. width:57px;
  8059. height:20px;
  8060. background:inherit;
  8061. background-color:rgba(255, 255, 255, 0);
  8062. border:none;
  8063. border-radius:0px;
  8064. -moz-box-shadow:none;
  8065. -webkit-box-shadow:none;
  8066. box-shadow:none;
  8067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8068. font-weight:400;
  8069. font-style:normal;
  8070. color:#AAAAAA;
  8071. text-align:right;
  8072. }
  8073. #u39772 {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:759px;
  8077. top:310px;
  8078. width:57px;
  8079. height:20px;
  8080. display:flex;
  8081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8082. font-weight:400;
  8083. font-style:normal;
  8084. color:#AAAAAA;
  8085. text-align:right;
  8086. }
  8087. #u39772 .text {
  8088. position:absolute;
  8089. align-self:flex-start;
  8090. padding:0px 0px 0px 0px;
  8091. box-sizing:border-box;
  8092. width:100%;
  8093. }
  8094. #u39772_text {
  8095. border-width:0px;
  8096. white-space:nowrap;
  8097. text-transform:none;
  8098. }
  8099. #u39773 {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:0px;
  8103. top:0px;
  8104. width:0px;
  8105. height:0px;
  8106. }
  8107. #u39775_img {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:0px;
  8111. top:0px;
  8112. width:433px;
  8113. height:865px;
  8114. }
  8115. #u39775 {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:1857px;
  8119. top:2px;
  8120. width:433px;
  8121. height:865px;
  8122. display:flex;
  8123. }
  8124. #u39775 .text {
  8125. position:absolute;
  8126. align-self:center;
  8127. padding:2px 2px 2px 2px;
  8128. box-sizing:border-box;
  8129. width:100%;
  8130. }
  8131. #u39775_text {
  8132. border-width:0px;
  8133. word-wrap:break-word;
  8134. text-transform:none;
  8135. visibility:hidden;
  8136. }
  8137. #u39776_div {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:0px;
  8141. top:0px;
  8142. width:375px;
  8143. height:40px;
  8144. background:inherit;
  8145. background-color:rgba(255, 255, 255, 1);
  8146. box-sizing:border-box;
  8147. border-width:1px;
  8148. border-style:solid;
  8149. border-color:rgba(215, 215, 215, 1);
  8150. border-left:0px;
  8151. border-top:0px;
  8152. border-right:0px;
  8153. border-radius:0px;
  8154. border-bottom-right-radius:0px;
  8155. border-bottom-left-radius:0px;
  8156. -moz-box-shadow:none;
  8157. -webkit-box-shadow:none;
  8158. box-shadow:none;
  8159. }
  8160. #u39776 {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:1886px;
  8164. top:69px;
  8165. width:375px;
  8166. height:40px;
  8167. display:flex;
  8168. }
  8169. #u39776 .text {
  8170. position:absolute;
  8171. align-self:center;
  8172. padding:2px 2px 2px 2px;
  8173. box-sizing:border-box;
  8174. width:100%;
  8175. }
  8176. #u39776_text {
  8177. border-width:0px;
  8178. word-wrap:break-word;
  8179. text-transform:none;
  8180. visibility:hidden;
  8181. }
  8182. #u39777 {
  8183. border-width:0px;
  8184. position:absolute;
  8185. left:0px;
  8186. top:0px;
  8187. width:0px;
  8188. height:0px;
  8189. }
  8190. #u39778_div {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:0px;
  8194. top:0px;
  8195. width:88px;
  8196. height:32px;
  8197. background:inherit;
  8198. background-color:rgba(255, 255, 255, 1);
  8199. box-sizing:border-box;
  8200. border-width:1px;
  8201. border-style:solid;
  8202. border-color:rgba(242, 242, 242, 1);
  8203. border-radius:33px;
  8204. -moz-box-shadow:none;
  8205. -webkit-box-shadow:none;
  8206. box-shadow:none;
  8207. }
  8208. #u39778 {
  8209. border-width:0px;
  8210. position:absolute;
  8211. left:2166px;
  8212. top:73px;
  8213. width:88px;
  8214. height:32px;
  8215. display:flex;
  8216. }
  8217. #u39778 .text {
  8218. position:absolute;
  8219. align-self:center;
  8220. padding:2px 2px 2px 2px;
  8221. box-sizing:border-box;
  8222. width:100%;
  8223. }
  8224. #u39778_text {
  8225. border-width:0px;
  8226. word-wrap:break-word;
  8227. text-transform:none;
  8228. visibility:hidden;
  8229. }
  8230. #u39779 {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:0px;
  8236. height:0px;
  8237. }
  8238. #u39780_img {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:0px;
  8242. top:0px;
  8243. width:18px;
  8244. height:18px;
  8245. }
  8246. #u39780 {
  8247. border-width:0px;
  8248. position:absolute;
  8249. left:2229px;
  8250. top:80px;
  8251. width:18px;
  8252. height:18px;
  8253. display:flex;
  8254. }
  8255. #u39780 .text {
  8256. position:absolute;
  8257. align-self:center;
  8258. padding:2px 2px 2px 2px;
  8259. box-sizing:border-box;
  8260. width:100%;
  8261. }
  8262. #u39780_text {
  8263. border-width:0px;
  8264. word-wrap:break-word;
  8265. text-transform:none;
  8266. visibility:hidden;
  8267. }
  8268. #u39781_img {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:0px;
  8272. top:0px;
  8273. width:6px;
  8274. height:6px;
  8275. }
  8276. #u39781 {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:2235px;
  8280. top:86px;
  8281. width:6px;
  8282. height:6px;
  8283. display:flex;
  8284. }
  8285. #u39781 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:2px 2px 2px 2px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u39781_text {
  8293. border-width:0px;
  8294. word-wrap:break-word;
  8295. text-transform:none;
  8296. visibility:hidden;
  8297. }
  8298. #u39782 {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:0px;
  8304. height:0px;
  8305. }
  8306. #u39783_img {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:0px;
  8310. top:0px;
  8311. width:5px;
  8312. height:5px;
  8313. }
  8314. #u39783 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:2180px;
  8318. top:87px;
  8319. width:5px;
  8320. height:5px;
  8321. display:flex;
  8322. }
  8323. #u39783 .text {
  8324. position:absolute;
  8325. align-self:center;
  8326. padding:2px 2px 2px 2px;
  8327. box-sizing:border-box;
  8328. width:100%;
  8329. }
  8330. #u39783_text {
  8331. border-width:0px;
  8332. word-wrap:break-word;
  8333. text-transform:none;
  8334. visibility:hidden;
  8335. }
  8336. #u39784_img {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:5px;
  8342. height:5px;
  8343. }
  8344. #u39784 {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:2196px;
  8348. top:87px;
  8349. width:5px;
  8350. height:5px;
  8351. display:flex;
  8352. }
  8353. #u39784 .text {
  8354. position:absolute;
  8355. align-self:center;
  8356. padding:2px 2px 2px 2px;
  8357. box-sizing:border-box;
  8358. width:100%;
  8359. }
  8360. #u39784_text {
  8361. border-width:0px;
  8362. word-wrap:break-word;
  8363. text-transform:none;
  8364. visibility:hidden;
  8365. }
  8366. #u39785_img {
  8367. border-width:0px;
  8368. position:absolute;
  8369. left:0px;
  8370. top:0px;
  8371. width:7px;
  8372. height:7px;
  8373. }
  8374. #u39785 {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:2187px;
  8378. top:86px;
  8379. width:7px;
  8380. height:7px;
  8381. display:flex;
  8382. }
  8383. #u39785 .text {
  8384. position:absolute;
  8385. align-self:center;
  8386. padding:2px 2px 2px 2px;
  8387. box-sizing:border-box;
  8388. width:100%;
  8389. }
  8390. #u39785_text {
  8391. border-width:0px;
  8392. word-wrap:break-word;
  8393. text-transform:none;
  8394. visibility:hidden;
  8395. }
  8396. #u39786_img {
  8397. border-width:0px;
  8398. position:absolute;
  8399. left:0px;
  8400. top:0px;
  8401. width:19px;
  8402. height:2px;
  8403. }
  8404. #u39786 {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:2204px;
  8408. top:89px;
  8409. width:18px;
  8410. height:1px;
  8411. display:flex;
  8412. -webkit-transform:rotate(90deg);
  8413. -moz-transform:rotate(90deg);
  8414. -ms-transform:rotate(90deg);
  8415. transform:rotate(90deg);
  8416. }
  8417. #u39786 .text {
  8418. position:absolute;
  8419. align-self:center;
  8420. padding:2px 2px 2px 2px;
  8421. box-sizing:border-box;
  8422. width:100%;
  8423. }
  8424. #u39786_text {
  8425. border-width:0px;
  8426. word-wrap:break-word;
  8427. text-transform:none;
  8428. visibility:hidden;
  8429. }
  8430. #u39787_img {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:0px;
  8434. top:0px;
  8435. width:375px;
  8436. height:44px;
  8437. }
  8438. #u39787 {
  8439. border-width:0px;
  8440. position:absolute;
  8441. left:1886px;
  8442. top:26px;
  8443. width:375px;
  8444. height:44px;
  8445. display:flex;
  8446. }
  8447. #u39787 .text {
  8448. position:absolute;
  8449. align-self:center;
  8450. padding:2px 2px 2px 2px;
  8451. box-sizing:border-box;
  8452. width:100%;
  8453. }
  8454. #u39787_text {
  8455. border-width:0px;
  8456. word-wrap:break-word;
  8457. text-transform:none;
  8458. visibility:hidden;
  8459. }
  8460. #u39788_div {
  8461. border-width:0px;
  8462. position:absolute;
  8463. left:0px;
  8464. top:0px;
  8465. width:375px;
  8466. height:50px;
  8467. background:inherit;
  8468. background-color:rgba(255, 255, 255, 1);
  8469. box-sizing:border-box;
  8470. border-width:1px;
  8471. border-style:solid;
  8472. border-color:rgba(242, 242, 242, 1);
  8473. border-radius:26px;
  8474. border-top-left-radius:0px;
  8475. border-top-right-radius:0px;
  8476. -moz-box-shadow:none;
  8477. -webkit-box-shadow:none;
  8478. box-shadow:none;
  8479. }
  8480. #u39788 {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:1886px;
  8484. top:790px;
  8485. width:375px;
  8486. height:50px;
  8487. display:flex;
  8488. }
  8489. #u39788 .text {
  8490. position:absolute;
  8491. align-self:center;
  8492. padding:2px 2px 2px 2px;
  8493. box-sizing:border-box;
  8494. width:100%;
  8495. }
  8496. #u39788_text {
  8497. border-width:0px;
  8498. word-wrap:break-word;
  8499. text-transform:none;
  8500. visibility:hidden;
  8501. }
  8502. #u39789 {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:0px;
  8506. top:0px;
  8507. width:0px;
  8508. height:0px;
  8509. }
  8510. #u39790_img {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:0px;
  8514. top:0px;
  8515. width:24px;
  8516. height:24px;
  8517. }
  8518. #u39790 {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:1926px;
  8522. top:794px;
  8523. width:24px;
  8524. height:24px;
  8525. display:flex;
  8526. font-size:8px;
  8527. }
  8528. #u39790 .text {
  8529. position:absolute;
  8530. align-self:center;
  8531. padding:2px 2px 2px 2px;
  8532. box-sizing:border-box;
  8533. width:100%;
  8534. }
  8535. #u39790_text {
  8536. border-width:0px;
  8537. word-wrap:break-word;
  8538. text-transform:none;
  8539. }
  8540. #u39791_div {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:0px;
  8544. top:0px;
  8545. width:25px;
  8546. height:17px;
  8547. background:inherit;
  8548. background-color:rgba(255, 255, 255, 0);
  8549. border:none;
  8550. border-radius:0px;
  8551. -moz-box-shadow:none;
  8552. -webkit-box-shadow:none;
  8553. box-shadow:none;
  8554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8555. font-weight:400;
  8556. font-style:normal;
  8557. font-size:12px;
  8558. }
  8559. #u39791 {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:1926px;
  8563. top:819px;
  8564. width:25px;
  8565. height:17px;
  8566. display:flex;
  8567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8568. font-weight:400;
  8569. font-style:normal;
  8570. font-size:12px;
  8571. }
  8572. #u39791 .text {
  8573. position:absolute;
  8574. align-self:flex-start;
  8575. padding:0px 0px 0px 0px;
  8576. box-sizing:border-box;
  8577. width:100%;
  8578. }
  8579. #u39791_text {
  8580. border-width:0px;
  8581. white-space:nowrap;
  8582. text-transform:none;
  8583. }
  8584. #u39792 {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:0px;
  8588. top:0px;
  8589. width:0px;
  8590. height:0px;
  8591. }
  8592. #u39793_img {
  8593. border-width:0px;
  8594. position:absolute;
  8595. left:0px;
  8596. top:0px;
  8597. width:24px;
  8598. height:24px;
  8599. }
  8600. #u39793 {
  8601. border-width:0px;
  8602. position:absolute;
  8603. left:2196px;
  8604. top:796px;
  8605. width:24px;
  8606. height:24px;
  8607. display:flex;
  8608. font-size:8px;
  8609. }
  8610. #u39793 .text {
  8611. position:absolute;
  8612. align-self:center;
  8613. padding:2px 2px 2px 2px;
  8614. box-sizing:border-box;
  8615. width:100%;
  8616. }
  8617. #u39793_text {
  8618. border-width:0px;
  8619. word-wrap:break-word;
  8620. text-transform:none;
  8621. }
  8622. #u39794_div {
  8623. border-width:0px;
  8624. position:absolute;
  8625. left:0px;
  8626. top:0px;
  8627. width:25px;
  8628. height:17px;
  8629. background:inherit;
  8630. background-color:rgba(255, 255, 255, 0);
  8631. border:none;
  8632. border-radius:0px;
  8633. -moz-box-shadow:none;
  8634. -webkit-box-shadow:none;
  8635. box-shadow:none;
  8636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8637. font-weight:400;
  8638. font-style:normal;
  8639. font-size:12px;
  8640. }
  8641. #u39794 {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:2196px;
  8645. top:821px;
  8646. width:25px;
  8647. height:17px;
  8648. display:flex;
  8649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8650. font-weight:400;
  8651. font-style:normal;
  8652. font-size:12px;
  8653. }
  8654. #u39794 .text {
  8655. position:absolute;
  8656. align-self:flex-start;
  8657. padding:0px 0px 0px 0px;
  8658. box-sizing:border-box;
  8659. width:100%;
  8660. }
  8661. #u39794_text {
  8662. border-width:0px;
  8663. white-space:nowrap;
  8664. text-transform:none;
  8665. }
  8666. #u39795_div {
  8667. border-width:0px;
  8668. position:absolute;
  8669. left:0px;
  8670. top:0px;
  8671. width:375px;
  8672. height:681px;
  8673. background:inherit;
  8674. background-color:rgba(242, 242, 242, 0.462745098039216);
  8675. border:none;
  8676. border-radius:0px;
  8677. -moz-box-shadow:none;
  8678. -webkit-box-shadow:none;
  8679. box-shadow:none;
  8680. }
  8681. #u39795 {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:1886px;
  8685. top:109px;
  8686. width:375px;
  8687. height:681px;
  8688. display:flex;
  8689. }
  8690. #u39795 .text {
  8691. position:absolute;
  8692. align-self:center;
  8693. padding:2px 2px 2px 2px;
  8694. box-sizing:border-box;
  8695. width:100%;
  8696. }
  8697. #u39795_text {
  8698. border-width:0px;
  8699. word-wrap:break-word;
  8700. text-transform:none;
  8701. visibility:hidden;
  8702. }
  8703. #u39796 {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:0px;
  8707. top:0px;
  8708. width:0px;
  8709. height:0px;
  8710. }
  8711. #u39797_img {
  8712. border-width:0px;
  8713. position:absolute;
  8714. left:0px;
  8715. top:0px;
  8716. width:24px;
  8717. height:24px;
  8718. }
  8719. #u39797 {
  8720. border-width:0px;
  8721. position:absolute;
  8722. left:2108px;
  8723. top:794px;
  8724. width:24px;
  8725. height:24px;
  8726. display:flex;
  8727. font-size:8px;
  8728. }
  8729. #u39797 .text {
  8730. position:absolute;
  8731. align-self:center;
  8732. padding:2px 2px 2px 2px;
  8733. box-sizing:border-box;
  8734. width:100%;
  8735. }
  8736. #u39797_text {
  8737. border-width:0px;
  8738. word-wrap:break-word;
  8739. text-transform:none;
  8740. }
  8741. #u39798_div {
  8742. border-width:0px;
  8743. position:absolute;
  8744. left:0px;
  8745. top:0px;
  8746. width:37px;
  8747. height:17px;
  8748. background:inherit;
  8749. background-color:rgba(255, 255, 255, 0);
  8750. border:none;
  8751. border-radius:0px;
  8752. -moz-box-shadow:none;
  8753. -webkit-box-shadow:none;
  8754. box-shadow:none;
  8755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8756. font-weight:400;
  8757. font-style:normal;
  8758. font-size:12px;
  8759. }
  8760. #u39798 {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:2102px;
  8764. top:819px;
  8765. width:37px;
  8766. height:17px;
  8767. display:flex;
  8768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8769. font-weight:400;
  8770. font-style:normal;
  8771. font-size:12px;
  8772. }
  8773. #u39798 .text {
  8774. position:absolute;
  8775. align-self:flex-start;
  8776. padding:0px 0px 0px 0px;
  8777. box-sizing:border-box;
  8778. width:100%;
  8779. }
  8780. #u39798_text {
  8781. border-width:0px;
  8782. white-space:nowrap;
  8783. text-transform:none;
  8784. }
  8785. #u39799 {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:0px;
  8789. top:0px;
  8790. width:0px;
  8791. height:0px;
  8792. }
  8793. #u39800_img {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:0px;
  8797. top:0px;
  8798. width:24px;
  8799. height:24px;
  8800. }
  8801. #u39800 {
  8802. border-width:0px;
  8803. position:absolute;
  8804. left:2014px;
  8805. top:794px;
  8806. width:24px;
  8807. height:24px;
  8808. display:flex;
  8809. font-size:8px;
  8810. }
  8811. #u39800 .text {
  8812. position:absolute;
  8813. align-self:center;
  8814. padding:2px 2px 2px 2px;
  8815. box-sizing:border-box;
  8816. width:100%;
  8817. }
  8818. #u39800_text {
  8819. border-width:0px;
  8820. word-wrap:break-word;
  8821. text-transform:none;
  8822. }
  8823. #u39801_div {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:0px;
  8827. top:0px;
  8828. width:37px;
  8829. height:17px;
  8830. background:inherit;
  8831. background-color:rgba(255, 255, 255, 0);
  8832. border:none;
  8833. border-radius:0px;
  8834. -moz-box-shadow:none;
  8835. -webkit-box-shadow:none;
  8836. box-shadow:none;
  8837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8838. font-weight:400;
  8839. font-style:normal;
  8840. font-size:12px;
  8841. }
  8842. #u39801 {
  8843. border-width:0px;
  8844. position:absolute;
  8845. left:2008px;
  8846. top:819px;
  8847. width:37px;
  8848. height:17px;
  8849. display:flex;
  8850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8851. font-weight:400;
  8852. font-style:normal;
  8853. font-size:12px;
  8854. }
  8855. #u39801 .text {
  8856. position:absolute;
  8857. align-self:flex-start;
  8858. padding:0px 0px 0px 0px;
  8859. box-sizing:border-box;
  8860. width:100%;
  8861. }
  8862. #u39801_text {
  8863. border-width:0px;
  8864. white-space:nowrap;
  8865. text-transform:none;
  8866. }
  8867. #u39802_div {
  8868. border-width:0px;
  8869. position:absolute;
  8870. left:0px;
  8871. top:0px;
  8872. width:375px;
  8873. height:775px;
  8874. background:inherit;
  8875. background-color:rgba(255, 255, 255, 1);
  8876. border:none;
  8877. border-top:0px;
  8878. border-radius:28px;
  8879. border-top-left-radius:0px;
  8880. border-top-right-radius:0px;
  8881. -moz-box-shadow:none;
  8882. -webkit-box-shadow:none;
  8883. box-shadow:none;
  8884. }
  8885. #u39802 {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:1886px;
  8889. top:67px;
  8890. width:375px;
  8891. height:775px;
  8892. display:flex;
  8893. }
  8894. #u39802 .text {
  8895. position:absolute;
  8896. align-self:center;
  8897. padding:2px 2px 2px 2px;
  8898. box-sizing:border-box;
  8899. width:100%;
  8900. }
  8901. #u39802_text {
  8902. border-width:0px;
  8903. word-wrap:break-word;
  8904. text-transform:none;
  8905. visibility:hidden;
  8906. }
  8907. #u39803_div {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:0px;
  8911. top:0px;
  8912. width:121px;
  8913. height:30px;
  8914. background:inherit;
  8915. background-color:rgba(255, 255, 255, 0);
  8916. border:none;
  8917. border-left:0px;
  8918. border-top:0px;
  8919. border-right:0px;
  8920. border-radius:0px;
  8921. border-bottom-right-radius:0px;
  8922. border-bottom-left-radius:0px;
  8923. -moz-box-shadow:none;
  8924. -webkit-box-shadow:none;
  8925. box-shadow:none;
  8926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8927. font-weight:400;
  8928. font-style:normal;
  8929. line-height:30px;
  8930. }
  8931. #u39803 {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:2008px;
  8935. top:228px;
  8936. width:121px;
  8937. height:30px;
  8938. display:flex;
  8939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8940. font-weight:400;
  8941. font-style:normal;
  8942. line-height:30px;
  8943. }
  8944. #u39803 .text {
  8945. position:absolute;
  8946. align-self:center;
  8947. padding:0px 0px 0px 0px;
  8948. box-sizing:border-box;
  8949. width:100%;
  8950. }
  8951. #u39803_text {
  8952. border-width:0px;
  8953. white-space:nowrap;
  8954. text-transform:none;
  8955. }
  8956. #u39804_div {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:126px;
  8962. height:40px;
  8963. background:inherit;
  8964. background-color:rgba(255, 255, 255, 1);
  8965. box-sizing:border-box;
  8966. border-width:1px;
  8967. border-style:solid;
  8968. border-color:rgba(121, 121, 121, 1);
  8969. border-radius:63px;
  8970. -moz-box-shadow:none;
  8971. -webkit-box-shadow:none;
  8972. box-shadow:none;
  8973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8974. font-weight:400;
  8975. font-style:normal;
  8976. font-size:14px;
  8977. }
  8978. #u39804 {
  8979. border-width:0px;
  8980. position:absolute;
  8981. left:2084px;
  8982. top:355px;
  8983. width:126px;
  8984. height:40px;
  8985. display:flex;
  8986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8987. font-weight:400;
  8988. font-style:normal;
  8989. font-size:14px;
  8990. }
  8991. #u39804 .text {
  8992. position:absolute;
  8993. align-self:center;
  8994. padding:2px 2px 2px 2px;
  8995. box-sizing:border-box;
  8996. width:100%;
  8997. }
  8998. #u39804_text {
  8999. border-width:0px;
  9000. word-wrap:break-word;
  9001. text-transform:none;
  9002. }
  9003. #u39805_img {
  9004. border-width:0px;
  9005. position:absolute;
  9006. left:0px;
  9007. top:0px;
  9008. width:83px;
  9009. height:83px;
  9010. }
  9011. #u39805 {
  9012. border-width:0px;
  9013. position:absolute;
  9014. left:2032px;
  9015. top:129px;
  9016. width:83px;
  9017. height:83px;
  9018. display:flex;
  9019. }
  9020. #u39805 .text {
  9021. position:absolute;
  9022. align-self:center;
  9023. padding:2px 2px 2px 2px;
  9024. box-sizing:border-box;
  9025. width:100%;
  9026. }
  9027. #u39805_text {
  9028. border-width:0px;
  9029. word-wrap:break-word;
  9030. text-transform:none;
  9031. visibility:hidden;
  9032. }
  9033. #u39806_div {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:0px;
  9037. top:0px;
  9038. width:126px;
  9039. height:40px;
  9040. background:inherit;
  9041. background-color:rgba(255, 255, 255, 1);
  9042. box-sizing:border-box;
  9043. border-width:1px;
  9044. border-style:solid;
  9045. border-color:rgba(121, 121, 121, 1);
  9046. border-radius:63px;
  9047. -moz-box-shadow:none;
  9048. -webkit-box-shadow:none;
  9049. box-shadow:none;
  9050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9051. font-weight:400;
  9052. font-style:normal;
  9053. font-size:14px;
  9054. }
  9055. #u39806 {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:1938px;
  9059. top:355px;
  9060. width:126px;
  9061. height:40px;
  9062. display:flex;
  9063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9064. font-weight:400;
  9065. font-style:normal;
  9066. font-size:14px;
  9067. }
  9068. #u39806 .text {
  9069. position:absolute;
  9070. align-self:center;
  9071. padding:2px 2px 2px 2px;
  9072. box-sizing:border-box;
  9073. width:100%;
  9074. }
  9075. #u39806_text {
  9076. border-width:0px;
  9077. word-wrap:break-word;
  9078. text-transform:none;
  9079. }
  9080. #u39807_div {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:0px;
  9084. top:0px;
  9085. width:30px;
  9086. height:30px;
  9087. background:inherit;
  9088. background-color:rgba(255, 255, 255, 0);
  9089. border:none;
  9090. border-left:0px;
  9091. border-top:0px;
  9092. border-right:0px;
  9093. border-radius:0px;
  9094. border-bottom-right-radius:0px;
  9095. border-bottom-left-radius:0px;
  9096. -moz-box-shadow:none;
  9097. -webkit-box-shadow:none;
  9098. box-shadow:none;
  9099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9100. font-weight:400;
  9101. font-style:normal;
  9102. font-size:18px;
  9103. text-align:center;
  9104. line-height:30px;
  9105. }
  9106. #u39807 {
  9107. border-width:0px;
  9108. position:absolute;
  9109. left:1896px;
  9110. top:77px;
  9111. width:30px;
  9112. height:30px;
  9113. display:flex;
  9114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9115. font-weight:400;
  9116. font-style:normal;
  9117. font-size:18px;
  9118. text-align:center;
  9119. line-height:30px;
  9120. }
  9121. #u39807 .text {
  9122. position:absolute;
  9123. align-self:center;
  9124. padding:0px 0px 0px 0px;
  9125. box-sizing:border-box;
  9126. width:100%;
  9127. }
  9128. #u39807_text {
  9129. border-width:0px;
  9130. word-wrap:break-word;
  9131. text-transform:none;
  9132. }
  9133. #u39808 {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:0px;
  9139. height:0px;
  9140. }
  9141. #u39809_img {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:0px;
  9145. top:0px;
  9146. width:350px;
  9147. height:40px;
  9148. }
  9149. #u39809 {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:1898px;
  9153. top:433px;
  9154. width:350px;
  9155. height:40px;
  9156. display:flex;
  9157. }
  9158. #u39809 .text {
  9159. position:absolute;
  9160. align-self:center;
  9161. padding:2px 2px 2px 2px;
  9162. box-sizing:border-box;
  9163. width:100%;
  9164. }
  9165. #u39809_text {
  9166. border-width:0px;
  9167. word-wrap:break-word;
  9168. text-transform:none;
  9169. visibility:hidden;
  9170. }
  9171. #u39810 {
  9172. border-width:0px;
  9173. position:absolute;
  9174. left:0px;
  9175. top:0px;
  9176. width:0px;
  9177. height:0px;
  9178. }
  9179. #u39811_div {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:0px;
  9183. top:0px;
  9184. width:221px;
  9185. height:30px;
  9186. background:inherit;
  9187. background-color:rgba(255, 255, 255, 0);
  9188. border:none;
  9189. border-left:0px;
  9190. border-top:0px;
  9191. border-right:0px;
  9192. border-radius:0px;
  9193. border-bottom-right-radius:0px;
  9194. border-bottom-left-radius:0px;
  9195. -moz-box-shadow:none;
  9196. -webkit-box-shadow:none;
  9197. box-shadow:none;
  9198. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9199. font-style:normal;
  9200. color:#FFFFFF;
  9201. text-align:center;
  9202. line-height:30px;
  9203. }
  9204. #u39811 {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:1978px;
  9208. top:438px;
  9209. width:221px;
  9210. height:30px;
  9211. display:flex;
  9212. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9213. font-style:normal;
  9214. color:#FFFFFF;
  9215. text-align:center;
  9216. line-height:30px;
  9217. }
  9218. #u39811 .text {
  9219. position:absolute;
  9220. align-self:center;
  9221. padding:0px 0px 0px 0px;
  9222. box-sizing:border-box;
  9223. width:100%;
  9224. }
  9225. #u39811_text {
  9226. border-width:0px;
  9227. white-space:nowrap;
  9228. text-transform:none;
  9229. }
  9230. #u39812_img {
  9231. border-width:0px;
  9232. position:absolute;
  9233. left:0px;
  9234. top:0px;
  9235. width:26px;
  9236. height:26px;
  9237. }
  9238. #u39812 {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:1948px;
  9242. top:440px;
  9243. width:26px;
  9244. height:26px;
  9245. display:flex;
  9246. }
  9247. #u39812 .text {
  9248. position:absolute;
  9249. align-self:center;
  9250. padding:2px 2px 2px 2px;
  9251. box-sizing:border-box;
  9252. width:100%;
  9253. }
  9254. #u39812_text {
  9255. border-width:0px;
  9256. word-wrap:break-word;
  9257. text-transform:none;
  9258. }
  9259. #u39813_div {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:0px;
  9263. top:0px;
  9264. width:304px;
  9265. height:60px;
  9266. background:inherit;
  9267. background-color:rgba(255, 255, 255, 0);
  9268. border:none;
  9269. border-left:0px;
  9270. border-top:0px;
  9271. border-right:0px;
  9272. border-radius:0px;
  9273. border-bottom-right-radius:0px;
  9274. border-bottom-left-radius:0px;
  9275. -moz-box-shadow:none;
  9276. -webkit-box-shadow:none;
  9277. box-shadow:none;
  9278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9279. font-weight:400;
  9280. font-style:normal;
  9281. font-size:14px;
  9282. text-align:center;
  9283. line-height:30px;
  9284. }
  9285. #u39813 {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:1929px;
  9289. top:269px;
  9290. width:304px;
  9291. height:60px;
  9292. display:flex;
  9293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9294. font-weight:400;
  9295. font-style:normal;
  9296. font-size:14px;
  9297. text-align:center;
  9298. line-height:30px;
  9299. }
  9300. #u39813 .text {
  9301. position:absolute;
  9302. align-self:center;
  9303. padding:0px 0px 0px 0px;
  9304. box-sizing:border-box;
  9305. width:100%;
  9306. }
  9307. #u39813_text {
  9308. border-width:0px;
  9309. word-wrap:break-word;
  9310. text-transform:none;
  9311. }
  9312. #u39814_div {
  9313. border-width:0px;
  9314. position:absolute;
  9315. left:0px;
  9316. top:0px;
  9317. width:413px;
  9318. height:40px;
  9319. background:inherit;
  9320. background-color:rgba(255, 255, 255, 0);
  9321. border:none;
  9322. border-left:0px;
  9323. border-top:0px;
  9324. border-right:0px;
  9325. border-radius:0px;
  9326. border-bottom-right-radius:0px;
  9327. border-bottom-left-radius:0px;
  9328. -moz-box-shadow:none;
  9329. -webkit-box-shadow:none;
  9330. box-shadow:none;
  9331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9332. font-weight:400;
  9333. font-style:normal;
  9334. font-size:14px;
  9335. color:#D9001B;
  9336. }
  9337. #u39814 {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:2064px;
  9341. top:392px;
  9342. width:413px;
  9343. height:40px;
  9344. display:flex;
  9345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. font-size:14px;
  9349. color:#D9001B;
  9350. }
  9351. #u39814 .text {
  9352. position:absolute;
  9353. align-self:flex-start;
  9354. padding:0px 0px 0px 0px;
  9355. box-sizing:border-box;
  9356. width:100%;
  9357. }
  9358. #u39814_text {
  9359. border-width:0px;
  9360. white-space:nowrap;
  9361. text-transform:none;
  9362. }
  9363. #u39815 {
  9364. border-width:0px;
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:0px;
  9369. height:0px;
  9370. }
  9371. #u39816_div {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:0px;
  9375. top:0px;
  9376. width:645px;
  9377. height:120px;
  9378. background:inherit;
  9379. background-color:rgba(255, 255, 255, 0);
  9380. border:none;
  9381. border-left:0px;
  9382. border-top:0px;
  9383. border-right:0px;
  9384. border-radius:0px;
  9385. border-bottom-right-radius:0px;
  9386. border-bottom-left-radius:0px;
  9387. -moz-box-shadow:none;
  9388. -webkit-box-shadow:none;
  9389. box-shadow:none;
  9390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9391. font-weight:400;
  9392. font-style:normal;
  9393. font-size:14px;
  9394. color:#D9001B;
  9395. }
  9396. #u39816 {
  9397. border-width:0px;
  9398. position:absolute;
  9399. left:1738px;
  9400. top:877px;
  9401. width:645px;
  9402. height:120px;
  9403. display:flex;
  9404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9405. font-weight:400;
  9406. font-style:normal;
  9407. font-size:14px;
  9408. color:#D9001B;
  9409. }
  9410. #u39816 .text {
  9411. position:absolute;
  9412. align-self:flex-start;
  9413. padding:0px 0px 0px 0px;
  9414. box-sizing:border-box;
  9415. width:100%;
  9416. }
  9417. #u39816_text {
  9418. border-width:0px;
  9419. white-space:nowrap;
  9420. text-transform:none;
  9421. }
  9422. #u39817 {
  9423. border-width:0px;
  9424. position:absolute;
  9425. left:0px;
  9426. top:0px;
  9427. width:0px;
  9428. height:0px;
  9429. }
  9430. #u39818_div {
  9431. border-width:0px;
  9432. position:absolute;
  9433. left:0px;
  9434. top:0px;
  9435. width:260px;
  9436. height:40px;
  9437. background:inherit;
  9438. background-color:rgba(255, 255, 255, 1);
  9439. border:none;
  9440. border-radius:63px;
  9441. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9442. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9443. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9445. font-weight:400;
  9446. font-style:normal;
  9447. font-size:14px;
  9448. }
  9449. #u39818 {
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:1741px;
  9453. top:923px;
  9454. width:260px;
  9455. height:40px;
  9456. display:flex;
  9457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9458. font-weight:400;
  9459. font-style:normal;
  9460. font-size:14px;
  9461. }
  9462. #u39818 .text {
  9463. position:absolute;
  9464. align-self:center;
  9465. padding:2px 2px 2px 2px;
  9466. box-sizing:border-box;
  9467. width:100%;
  9468. }
  9469. #u39818_text {
  9470. border-width:0px;
  9471. word-wrap:break-word;
  9472. text-transform:none;
  9473. visibility:hidden;
  9474. }
  9475. #u39819_img {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:0px;
  9479. top:0px;
  9480. width:19px;
  9481. height:19px;
  9482. }
  9483. #u39819 {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:1751px;
  9487. top:933px;
  9488. width:19px;
  9489. height:19px;
  9490. display:flex;
  9491. }
  9492. #u39819 .text {
  9493. position:absolute;
  9494. align-self:center;
  9495. padding:2px 2px 2px 2px;
  9496. box-sizing:border-box;
  9497. width:100%;
  9498. }
  9499. #u39819_text {
  9500. border-width:0px;
  9501. word-wrap:break-word;
  9502. text-transform:none;
  9503. visibility:hidden;
  9504. }
  9505. #u39820_div {
  9506. border-width:0px;
  9507. position:absolute;
  9508. left:0px;
  9509. top:0px;
  9510. width:199px;
  9511. height:17px;
  9512. background:inherit;
  9513. background-color:rgba(255, 255, 255, 0);
  9514. border:none;
  9515. border-left:0px;
  9516. border-top:0px;
  9517. border-right:0px;
  9518. border-radius:0px;
  9519. border-bottom-right-radius:0px;
  9520. border-bottom-left-radius:0px;
  9521. -moz-box-shadow:none;
  9522. -webkit-box-shadow:none;
  9523. box-shadow:none;
  9524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9525. font-weight:400;
  9526. font-style:normal;
  9527. font-size:12px;
  9528. }
  9529. #u39820 {
  9530. border-width:0px;
  9531. position:absolute;
  9532. left:1780px;
  9533. top:934px;
  9534. width:199px;
  9535. height:17px;
  9536. display:flex;
  9537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9538. font-weight:400;
  9539. font-style:normal;
  9540. font-size:12px;
  9541. }
  9542. #u39820 .text {
  9543. position:absolute;
  9544. align-self:flex-start;
  9545. padding:0px 0px 0px 0px;
  9546. box-sizing:border-box;
  9547. width:100%;
  9548. }
  9549. #u39820_text {
  9550. border-width:0px;
  9551. white-space:nowrap;
  9552. text-transform:none;
  9553. }