styles.css 173 KB

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