styles.css 121 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u3917_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. #u3917 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u3917 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u3917_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u3918_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. #u3918 {
  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. #u3918 .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. #u3918_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u3919_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. #u3919 {
  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. #u3919 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u3919_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u3920 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u3921_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u3921 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u3921 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u3921_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u3922_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. #u3922 {
  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. #u3922 .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. #u3922_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u3923_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. #u3923 {
  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. #u3923 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u3923_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u3924 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u3925_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. #u3925_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. #u3925_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. #u3925 {
  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. #u3925 .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. #u3925_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. #u3925.disabled {
  356. }
  357. .u3925_input_option {
  358. font-size:14px;
  359. }
  360. #u3926_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u3926 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u3926 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u3926_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u3927_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. #u3927 {
  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. #u3927 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u3927_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u3928_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. #u3928 {
  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. #u3928 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u3928_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u3929 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u3930_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. #u3930 {
  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. #u3930 .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. #u3930_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u3931_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u3931 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u3931 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u3931_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u3932 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u3933_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. #u3933 {
  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. #u3933 .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. #u3933_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u3934_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u3934 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u3934 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u3934_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u3935 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u3936_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. #u3936 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:439px;
  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. #u3936 .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. #u3936_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u3937_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u3937 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u3937 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u3937_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u3938 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u3939_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. #u3939 {
  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. #u3939 .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. #u3939_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u3940_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u3940 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u3940 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u3940_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u3941 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u3942_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. #u3942 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:481px;
  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. #u3942 .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. #u3942_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u3943_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u3943 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u3943 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u3943_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u3944 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u3945_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. #u3945 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:355px;
  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. #u3945 .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. #u3945_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u3946_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u3946 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u3946 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u3946_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u3947 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u3948_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. #u3948 {
  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. #u3948 .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. #u3948_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u3949_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u3949 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u3949 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u3949_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u3950 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u3951_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. #u3951 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:397px;
  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. #u3951 .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. #u3951_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u3952_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u3952 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u3952 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u3952_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u3953 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u3954_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. #u3954 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:523px;
  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. #u3954 .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. #u3954_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u3955_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u3955 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u3955 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u3955_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u3956 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u3957_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. #u3957 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:231px;
  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. #u3957 .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. #u3957_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u3958_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u3958 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u3958 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u3958_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u3959_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. #u3959 {
  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. #u3959 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u3959_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u3960_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u3960 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u3960 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u3960_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u3961_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. #u3961 {
  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. #u3961 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u3961_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u3962_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u3962 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u3962 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u3962_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u3963 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u3964_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. #u3964 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:273px;
  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. #u3964 .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. #u3964_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u3965_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u3965 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u3965 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u3965_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u3966 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u3967_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. #u3967 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  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. #u3967 .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. #u3967_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u3968_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u3968 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u3968 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u3968_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u3969 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u3970_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u3970 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:315px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u3970 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u3970_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u3971_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u3971 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u3971 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u3971_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u3972_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1260px;
  1728. height:1463px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. box-sizing:border-box;
  1732. border-width:1px;
  1733. border-style:solid;
  1734. border-color:rgba(215, 215, 215, 1);
  1735. border-radius:0px;
  1736. -moz-box-shadow:none;
  1737. -webkit-box-shadow:none;
  1738. box-shadow:none;
  1739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1740. font-weight:400;
  1741. font-style:normal;
  1742. font-size:12px;
  1743. color:#FFFFFF;
  1744. text-align:left;
  1745. }
  1746. #u3972 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:331px;
  1750. top:51px;
  1751. width:1260px;
  1752. height:1463px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:12px;
  1758. color:#FFFFFF;
  1759. text-align:left;
  1760. }
  1761. #u3972 .text {
  1762. position:absolute;
  1763. align-self:center;
  1764. padding:2px 2px 2px 50px;
  1765. box-sizing:border-box;
  1766. width:100%;
  1767. }
  1768. #u3972_text {
  1769. border-width:0px;
  1770. word-wrap:break-word;
  1771. text-transform:none;
  1772. visibility:hidden;
  1773. }
  1774. #u3973_div {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:0px;
  1778. top:0px;
  1779. width:1215px;
  1780. height:335px;
  1781. background:inherit;
  1782. background-color:rgba(255, 255, 255, 1);
  1783. box-sizing:border-box;
  1784. border-width:1px;
  1785. border-style:solid;
  1786. border-color:rgba(121, 121, 121, 1);
  1787. border-radius:0px;
  1788. -moz-box-shadow:none;
  1789. -webkit-box-shadow:none;
  1790. box-shadow:none;
  1791. }
  1792. #u3973 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:351px;
  1796. top:1128px;
  1797. width:1215px;
  1798. height:335px;
  1799. display:flex;
  1800. }
  1801. #u3973 .text {
  1802. position:absolute;
  1803. align-self:center;
  1804. padding:2px 2px 2px 2px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u3973_text {
  1809. border-width:0px;
  1810. word-wrap:break-word;
  1811. text-transform:none;
  1812. visibility:hidden;
  1813. }
  1814. #u3974_div {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:73px;
  1820. height:50px;
  1821. background:inherit;
  1822. background-color:rgba(255, 255, 255, 0);
  1823. border:none;
  1824. border-left:0px;
  1825. border-top:0px;
  1826. border-right:0px;
  1827. border-radius:0px;
  1828. border-bottom-right-radius:0px;
  1829. border-bottom-left-radius:0px;
  1830. -moz-box-shadow:none;
  1831. -webkit-box-shadow:none;
  1832. box-shadow:none;
  1833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1834. font-weight:400;
  1835. font-style:normal;
  1836. font-size:18px;
  1837. }
  1838. #u3974 {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:350px;
  1842. top:51px;
  1843. width:73px;
  1844. height:50px;
  1845. display:flex;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:18px;
  1850. }
  1851. #u3974 .text {
  1852. position:absolute;
  1853. align-self:center;
  1854. padding:0px 0px 0px 0px;
  1855. box-sizing:border-box;
  1856. width:100%;
  1857. }
  1858. #u3974_text {
  1859. border-width:0px;
  1860. white-space:nowrap;
  1861. text-transform:none;
  1862. }
  1863. #u3975_img {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:13px;
  1869. height:13px;
  1870. }
  1871. #u3975 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:429px;
  1875. top:70px;
  1876. width:13px;
  1877. height:13px;
  1878. display:flex;
  1879. }
  1880. #u3975 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 2px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u3975_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. visibility:hidden;
  1892. }
  1893. #u3976 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:0px;
  1899. height:0px;
  1900. }
  1901. #u3977_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:140px;
  1907. height:30px;
  1908. background:inherit;
  1909. background-color:rgba(255, 255, 255, 1);
  1910. box-sizing:border-box;
  1911. border-width:1px;
  1912. border-style:solid;
  1913. border-color:rgba(215, 215, 215, 1);
  1914. border-radius:4px;
  1915. -moz-box-shadow:none;
  1916. -webkit-box-shadow:none;
  1917. box-shadow:none;
  1918. font-size:11px;
  1919. }
  1920. #u3977 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:350px;
  1924. top:101px;
  1925. width:140px;
  1926. height:30px;
  1927. display:flex;
  1928. font-size:11px;
  1929. }
  1930. #u3977 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:2px 2px 2px 2px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u3977_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. visibility:hidden;
  1942. }
  1943. #u3978_input {
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:120px;
  1948. height:23px;
  1949. padding:2px 2px 2px 2px;
  1950. font-family:'ArialMT', 'Arial', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:11px;
  1954. letter-spacing:normal;
  1955. color:#AAAAAA;
  1956. vertical-align:none;
  1957. text-align:left;
  1958. text-transform:none;
  1959. background-color:transparent;
  1960. border-color:transparent;
  1961. }
  1962. #u3978_input.disabled {
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:120px;
  1967. height:23px;
  1968. padding:2px 2px 2px 2px;
  1969. font-family:'ArialMT', 'Arial', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:11px;
  1973. letter-spacing:normal;
  1974. color:#AAAAAA;
  1975. vertical-align:none;
  1976. text-align:left;
  1977. text-transform:none;
  1978. background-color:transparent;
  1979. border-color:transparent;
  1980. }
  1981. #u3978_div {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:120px;
  1987. height:23px;
  1988. background:inherit;
  1989. background-color:rgba(255, 255, 255, 1);
  1990. border:none;
  1991. border-radius:0px;
  1992. -moz-box-shadow:none;
  1993. -webkit-box-shadow:none;
  1994. box-shadow:none;
  1995. font-size:11px;
  1996. color:#AAAAAA;
  1997. }
  1998. #u3978 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:357px;
  2002. top:103px;
  2003. width:120px;
  2004. height:23px;
  2005. display:flex;
  2006. font-size:11px;
  2007. color:#AAAAAA;
  2008. }
  2009. #u3978 .text {
  2010. position:absolute;
  2011. align-self:flex-start;
  2012. padding:2px 2px 2px 2px;
  2013. box-sizing:border-box;
  2014. width:100%;
  2015. }
  2016. #u3978_div.disabled {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:0px;
  2020. top:0px;
  2021. width:120px;
  2022. height:23px;
  2023. background:inherit;
  2024. background-color:rgba(240, 240, 240, 1);
  2025. border:none;
  2026. border-radius:0px;
  2027. -moz-box-shadow:none;
  2028. -webkit-box-shadow:none;
  2029. box-shadow:none;
  2030. font-size:11px;
  2031. color:#AAAAAA;
  2032. }
  2033. #u3978.disabled {
  2034. }
  2035. .u3978_input_option {
  2036. font-size:11px;
  2037. }
  2038. #u3979 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:0px;
  2044. height:0px;
  2045. }
  2046. #u3980_div {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:40px;
  2052. height:30px;
  2053. background:inherit;
  2054. background-color:rgba(255, 255, 255, 1);
  2055. box-sizing:border-box;
  2056. border-width:1px;
  2057. border-style:solid;
  2058. border-color:rgba(215, 215, 215, 1);
  2059. border-radius:0px;
  2060. -moz-box-shadow:none;
  2061. -webkit-box-shadow:none;
  2062. box-shadow:none;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:11px;
  2067. }
  2068. #u3980 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:500px;
  2072. top:101px;
  2073. width:40px;
  2074. height:30px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:11px;
  2080. }
  2081. #u3980 .text {
  2082. position:absolute;
  2083. align-self:center;
  2084. padding:2px 2px 2px 2px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u3980_text {
  2089. border-width:0px;
  2090. word-wrap:break-word;
  2091. text-transform:none;
  2092. }
  2093. #u3981 {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:0px;
  2099. height:0px;
  2100. }
  2101. #u3982_div {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:140px;
  2107. height:30px;
  2108. background:inherit;
  2109. background-color:rgba(255, 255, 255, 1);
  2110. box-sizing:border-box;
  2111. border-width:1px;
  2112. border-style:solid;
  2113. border-color:rgba(215, 215, 215, 1);
  2114. border-radius:0px;
  2115. -moz-box-shadow:none;
  2116. -webkit-box-shadow:none;
  2117. box-shadow:none;
  2118. font-size:11px;
  2119. }
  2120. #u3982 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:658px;
  2124. top:101px;
  2125. width:140px;
  2126. height:30px;
  2127. display:flex;
  2128. font-size:11px;
  2129. }
  2130. #u3982 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:2px 2px 2px 2px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u3982_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. visibility:hidden;
  2142. }
  2143. #u3983_input {
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:126px;
  2148. height:23px;
  2149. padding:2px 2px 2px 2px;
  2150. font-family:'ArialMT', 'Arial', sans-serif;
  2151. font-weight:400;
  2152. font-style:normal;
  2153. font-size:11px;
  2154. letter-spacing:normal;
  2155. color:#AAAAAA;
  2156. vertical-align:none;
  2157. text-align:left;
  2158. text-transform:none;
  2159. background-color:transparent;
  2160. border-color:transparent;
  2161. }
  2162. #u3983_input.disabled {
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:126px;
  2167. height:23px;
  2168. padding:2px 2px 2px 2px;
  2169. font-family:'ArialMT', 'Arial', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:11px;
  2173. letter-spacing:normal;
  2174. color:#AAAAAA;
  2175. vertical-align:none;
  2176. text-align:left;
  2177. text-transform:none;
  2178. background-color:transparent;
  2179. border-color:transparent;
  2180. }
  2181. #u3983_div {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:126px;
  2187. height:23px;
  2188. background:inherit;
  2189. background-color:rgba(255, 255, 255, 1);
  2190. border:none;
  2191. border-radius:0px;
  2192. -moz-box-shadow:none;
  2193. -webkit-box-shadow:none;
  2194. box-shadow:none;
  2195. font-size:11px;
  2196. color:#AAAAAA;
  2197. }
  2198. #u3983 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:665px;
  2202. top:103px;
  2203. width:126px;
  2204. height:23px;
  2205. display:flex;
  2206. font-size:11px;
  2207. color:#AAAAAA;
  2208. }
  2209. #u3983 .text {
  2210. position:absolute;
  2211. align-self:flex-start;
  2212. padding:2px 2px 2px 2px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u3983_div.disabled {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:126px;
  2222. height:23px;
  2223. background:inherit;
  2224. background-color:rgba(240, 240, 240, 1);
  2225. border:none;
  2226. border-radius:0px;
  2227. -moz-box-shadow:none;
  2228. -webkit-box-shadow:none;
  2229. box-shadow:none;
  2230. font-size:11px;
  2231. color:#AAAAAA;
  2232. }
  2233. #u3983.disabled {
  2234. }
  2235. .u3983_input_option {
  2236. font-size:11px;
  2237. }
  2238. #u3984_div {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:40px;
  2244. height:30px;
  2245. background:inherit;
  2246. background-color:rgba(255, 255, 255, 1);
  2247. box-sizing:border-box;
  2248. border-width:1px;
  2249. border-style:solid;
  2250. border-color:rgba(215, 215, 215, 1);
  2251. border-radius:0px;
  2252. -moz-box-shadow:none;
  2253. -webkit-box-shadow:none;
  2254. box-shadow:none;
  2255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:11px;
  2259. }
  2260. #u3984 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:539px;
  2264. top:101px;
  2265. width:40px;
  2266. height:30px;
  2267. display:flex;
  2268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:11px;
  2272. }
  2273. #u3984 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u3984_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. }
  2285. #u3985_div {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:40px;
  2291. height:30px;
  2292. background:inherit;
  2293. background-color:rgba(24, 144, 255, 1);
  2294. border:none;
  2295. border-radius:0px;
  2296. -moz-box-shadow:none;
  2297. -webkit-box-shadow:none;
  2298. box-shadow:none;
  2299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:11px;
  2303. color:#FFFFFF;
  2304. }
  2305. #u3985 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:578px;
  2309. top:101px;
  2310. width:40px;
  2311. height:30px;
  2312. display:flex;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:11px;
  2317. color:#FFFFFF;
  2318. }
  2319. #u3985 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:2px 2px 2px 2px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u3985_text {
  2327. border-width:0px;
  2328. word-wrap:break-word;
  2329. text-transform:none;
  2330. }
  2331. #u3986_div {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:40px;
  2337. height:30px;
  2338. background:inherit;
  2339. background-color:rgba(255, 255, 255, 1);
  2340. box-sizing:border-box;
  2341. border-width:1px;
  2342. border-style:solid;
  2343. border-color:rgba(215, 215, 215, 1);
  2344. border-radius:0px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:11px;
  2352. }
  2353. #u3986 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:618px;
  2357. top:101px;
  2358. width:40px;
  2359. height:30px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:11px;
  2365. }
  2366. #u3986 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 2px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u3986_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. }
  2378. #u3987_div {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:59px;
  2384. height:30px;
  2385. background:inherit;
  2386. background-color:rgba(41, 143, 255, 1);
  2387. border:none;
  2388. border-radius:4px;
  2389. -moz-box-shadow:none;
  2390. -webkit-box-shadow:none;
  2391. box-shadow:none;
  2392. font-family:'Microsoft YaHei', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:14px;
  2396. color:#FFFFFF;
  2397. }
  2398. #u3987 {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:818px;
  2402. top:101px;
  2403. width:59px;
  2404. height:30px;
  2405. display:flex;
  2406. font-family:'Microsoft YaHei', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:14px;
  2410. color:#FFFFFF;
  2411. }
  2412. #u3987 .text {
  2413. position:absolute;
  2414. align-self:center;
  2415. padding:5px 15px 5px 15px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u3987_text {
  2420. border-width:0px;
  2421. white-space:nowrap;
  2422. text-transform:none;
  2423. }
  2424. #u3988_div {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:0px;
  2428. top:0px;
  2429. width:55px;
  2430. height:30px;
  2431. background:inherit;
  2432. background-color:rgba(255, 255, 255, 1);
  2433. box-sizing:border-box;
  2434. border-width:1px;
  2435. border-style:solid;
  2436. border-color:rgba(170, 170, 170, 1);
  2437. border-radius:4px;
  2438. -moz-box-shadow:none;
  2439. -webkit-box-shadow:none;
  2440. box-shadow:none;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:12px;
  2445. color:#555555;
  2446. }
  2447. #u3988 {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:887px;
  2451. top:101px;
  2452. width:55px;
  2453. height:30px;
  2454. display:flex;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. font-size:12px;
  2459. color:#555555;
  2460. }
  2461. #u3988 .text {
  2462. position:absolute;
  2463. align-self:center;
  2464. padding:5px 15px 5px 15px;
  2465. box-sizing:border-box;
  2466. width:100%;
  2467. }
  2468. #u3988_text {
  2469. border-width:0px;
  2470. white-space:nowrap;
  2471. text-transform:none;
  2472. }
  2473. #u3989_div {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:1222px;
  2479. height:100px;
  2480. background:inherit;
  2481. background-color:rgba(242, 242, 242, 1);
  2482. border:none;
  2483. border-radius:0px;
  2484. -moz-box-shadow:none;
  2485. -webkit-box-shadow:none;
  2486. box-shadow:none;
  2487. }
  2488. #u3989 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:350px;
  2492. top:151px;
  2493. width:1222px;
  2494. height:100px;
  2495. display:flex;
  2496. }
  2497. #u3989 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 2px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u3989_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. visibility:hidden;
  2509. }
  2510. #u3990_div {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:67px;
  2516. height:30px;
  2517. background:inherit;
  2518. background-color:rgba(255, 255, 255, 0);
  2519. border:none;
  2520. border-left:0px;
  2521. border-top:0px;
  2522. border-right:0px;
  2523. border-radius:0px;
  2524. border-bottom-right-radius:0px;
  2525. border-bottom-left-radius:0px;
  2526. -moz-box-shadow:none;
  2527. -webkit-box-shadow:none;
  2528. box-shadow:none;
  2529. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2530. font-weight:500;
  2531. font-style:normal;
  2532. font-size:28px;
  2533. text-align:center;
  2534. }
  2535. #u3990 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:391px;
  2539. top:171px;
  2540. width:67px;
  2541. height:30px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2544. font-weight:500;
  2545. font-style:normal;
  2546. font-size:28px;
  2547. text-align:center;
  2548. }
  2549. #u3990 .text {
  2550. position:absolute;
  2551. align-self:center;
  2552. padding:0px 0px 0px 0px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u3990_text {
  2557. border-width:0px;
  2558. white-space:nowrap;
  2559. text-transform:none;
  2560. }
  2561. #u3991_div {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:57px;
  2567. height:30px;
  2568. background:inherit;
  2569. background-color:rgba(255, 255, 255, 0);
  2570. border:none;
  2571. border-left:0px;
  2572. border-top:0px;
  2573. border-right:0px;
  2574. border-radius:0px;
  2575. border-bottom-right-radius:0px;
  2576. border-bottom-left-radius:0px;
  2577. -moz-box-shadow:none;
  2578. -webkit-box-shadow:none;
  2579. box-shadow:none;
  2580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2581. font-weight:400;
  2582. font-style:normal;
  2583. font-size:14px;
  2584. text-align:center;
  2585. }
  2586. #u3991 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:396px;
  2590. top:206px;
  2591. width:57px;
  2592. height:30px;
  2593. display:flex;
  2594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2595. font-weight:400;
  2596. font-style:normal;
  2597. font-size:14px;
  2598. text-align:center;
  2599. }
  2600. #u3991 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:0px 0px 0px 0px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u3991_text {
  2608. border-width:0px;
  2609. white-space:nowrap;
  2610. text-transform:none;
  2611. }
  2612. #u3992_div {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:67px;
  2618. height:30px;
  2619. background:inherit;
  2620. background-color:rgba(255, 255, 255, 0);
  2621. border:none;
  2622. border-left:0px;
  2623. border-top:0px;
  2624. border-right:0px;
  2625. border-radius:0px;
  2626. border-bottom-right-radius:0px;
  2627. border-bottom-left-radius:0px;
  2628. -moz-box-shadow:none;
  2629. -webkit-box-shadow:none;
  2630. box-shadow:none;
  2631. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2632. font-weight:500;
  2633. font-style:normal;
  2634. font-size:28px;
  2635. text-align:center;
  2636. }
  2637. #u3992 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:570px;
  2641. top:171px;
  2642. width:67px;
  2643. height:30px;
  2644. display:flex;
  2645. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2646. font-weight:500;
  2647. font-style:normal;
  2648. font-size:28px;
  2649. text-align:center;
  2650. }
  2651. #u3992 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:0px 0px 0px 0px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u3992_text {
  2659. border-width:0px;
  2660. white-space:nowrap;
  2661. text-transform:none;
  2662. }
  2663. #u3993_div {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:57px;
  2669. height:30px;
  2670. background:inherit;
  2671. background-color:rgba(255, 255, 255, 0);
  2672. border:none;
  2673. border-left:0px;
  2674. border-top:0px;
  2675. border-right:0px;
  2676. border-radius:0px;
  2677. border-bottom-right-radius:0px;
  2678. border-bottom-left-radius:0px;
  2679. -moz-box-shadow:none;
  2680. -webkit-box-shadow:none;
  2681. box-shadow:none;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:14px;
  2686. text-align:center;
  2687. }
  2688. #u3993 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:575px;
  2692. top:206px;
  2693. width:57px;
  2694. height:30px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:14px;
  2700. text-align:center;
  2701. }
  2702. #u3993 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:0px 0px 0px 0px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u3993_text {
  2710. border-width:0px;
  2711. white-space:nowrap;
  2712. text-transform:none;
  2713. }
  2714. #u3994_div {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:67px;
  2720. height:30px;
  2721. background:inherit;
  2722. background-color:rgba(255, 255, 255, 0);
  2723. border:none;
  2724. border-left:0px;
  2725. border-top:0px;
  2726. border-right:0px;
  2727. border-radius:0px;
  2728. border-bottom-right-radius:0px;
  2729. border-bottom-left-radius:0px;
  2730. -moz-box-shadow:none;
  2731. -webkit-box-shadow:none;
  2732. box-shadow:none;
  2733. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2734. font-weight:500;
  2735. font-style:normal;
  2736. font-size:28px;
  2737. text-align:center;
  2738. }
  2739. #u3994 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:706px;
  2743. top:171px;
  2744. width:67px;
  2745. height:30px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2748. font-weight:500;
  2749. font-style:normal;
  2750. font-size:28px;
  2751. text-align:center;
  2752. }
  2753. #u3994 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:0px 0px 0px 0px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u3994_text {
  2761. border-width:0px;
  2762. white-space:nowrap;
  2763. text-transform:none;
  2764. }
  2765. #u3995_div {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:29px;
  2771. height:30px;
  2772. background:inherit;
  2773. background-color:rgba(255, 255, 255, 0);
  2774. border:none;
  2775. border-left:0px;
  2776. border-top:0px;
  2777. border-right:0px;
  2778. border-radius:0px;
  2779. border-bottom-right-radius:0px;
  2780. border-bottom-left-radius:0px;
  2781. -moz-box-shadow:none;
  2782. -webkit-box-shadow:none;
  2783. box-shadow:none;
  2784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2785. font-weight:400;
  2786. font-style:normal;
  2787. font-size:14px;
  2788. text-align:center;
  2789. }
  2790. #u3995 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:725px;
  2794. top:206px;
  2795. width:29px;
  2796. height:30px;
  2797. display:flex;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:14px;
  2802. text-align:center;
  2803. }
  2804. #u3995 .text {
  2805. position:absolute;
  2806. align-self:center;
  2807. padding:0px 0px 0px 0px;
  2808. box-sizing:border-box;
  2809. width:100%;
  2810. }
  2811. #u3995_text {
  2812. border-width:0px;
  2813. white-space:nowrap;
  2814. text-transform:none;
  2815. }
  2816. #u3996_div {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:0px;
  2820. top:0px;
  2821. width:67px;
  2822. height:30px;
  2823. background:inherit;
  2824. background-color:rgba(255, 255, 255, 0);
  2825. border:none;
  2826. border-left:0px;
  2827. border-top:0px;
  2828. border-right:0px;
  2829. border-radius:0px;
  2830. border-bottom-right-radius:0px;
  2831. border-bottom-left-radius:0px;
  2832. -moz-box-shadow:none;
  2833. -webkit-box-shadow:none;
  2834. box-shadow:none;
  2835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2836. font-weight:500;
  2837. font-style:normal;
  2838. font-size:28px;
  2839. text-align:center;
  2840. }
  2841. #u3996 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:844px;
  2845. top:171px;
  2846. width:67px;
  2847. height:30px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2850. font-weight:500;
  2851. font-style:normal;
  2852. font-size:28px;
  2853. text-align:center;
  2854. }
  2855. #u3996 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:0px 0px 0px 0px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u3996_text {
  2863. border-width:0px;
  2864. white-space:nowrap;
  2865. text-transform:none;
  2866. }
  2867. #u3997_div {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:29px;
  2873. height:30px;
  2874. background:inherit;
  2875. background-color:rgba(255, 255, 255, 0);
  2876. border:none;
  2877. border-left:0px;
  2878. border-top:0px;
  2879. border-right:0px;
  2880. border-radius:0px;
  2881. border-bottom-right-radius:0px;
  2882. border-bottom-left-radius:0px;
  2883. -moz-box-shadow:none;
  2884. -webkit-box-shadow:none;
  2885. box-shadow:none;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:14px;
  2890. text-align:center;
  2891. }
  2892. #u3997 {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:863px;
  2896. top:206px;
  2897. width:29px;
  2898. height:30px;
  2899. display:flex;
  2900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2901. font-weight:400;
  2902. font-style:normal;
  2903. font-size:14px;
  2904. text-align:center;
  2905. }
  2906. #u3997 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:0px 0px 0px 0px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u3997_text {
  2914. border-width:0px;
  2915. white-space:nowrap;
  2916. text-transform:none;
  2917. }
  2918. #u3998_div {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:67px;
  2924. height:30px;
  2925. background:inherit;
  2926. background-color:rgba(255, 255, 255, 0);
  2927. border:none;
  2928. border-left:0px;
  2929. border-top:0px;
  2930. border-right:0px;
  2931. border-radius:0px;
  2932. border-bottom-right-radius:0px;
  2933. border-bottom-left-radius:0px;
  2934. -moz-box-shadow:none;
  2935. -webkit-box-shadow:none;
  2936. box-shadow:none;
  2937. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2938. font-weight:500;
  2939. font-style:normal;
  2940. font-size:28px;
  2941. text-align:center;
  2942. }
  2943. #u3998 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:969px;
  2947. top:171px;
  2948. width:67px;
  2949. height:30px;
  2950. display:flex;
  2951. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2952. font-weight:500;
  2953. font-style:normal;
  2954. font-size:28px;
  2955. text-align:center;
  2956. }
  2957. #u3998 .text {
  2958. position:absolute;
  2959. align-self:center;
  2960. padding:0px 0px 0px 0px;
  2961. box-sizing:border-box;
  2962. width:100%;
  2963. }
  2964. #u3998_text {
  2965. border-width:0px;
  2966. white-space:nowrap;
  2967. text-transform:none;
  2968. }
  2969. #u3999_div {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:29px;
  2975. height:30px;
  2976. background:inherit;
  2977. background-color:rgba(255, 255, 255, 0);
  2978. border:none;
  2979. border-left:0px;
  2980. border-top:0px;
  2981. border-right:0px;
  2982. border-radius:0px;
  2983. border-bottom-right-radius:0px;
  2984. border-bottom-left-radius:0px;
  2985. -moz-box-shadow:none;
  2986. -webkit-box-shadow:none;
  2987. box-shadow:none;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:14px;
  2992. text-align:center;
  2993. }
  2994. #u3999 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:988px;
  2998. top:206px;
  2999. width:29px;
  3000. height:30px;
  3001. display:flex;
  3002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3003. font-weight:400;
  3004. font-style:normal;
  3005. font-size:14px;
  3006. text-align:center;
  3007. }
  3008. #u3999 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:0px 0px 0px 0px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u3999_text {
  3016. border-width:0px;
  3017. white-space:nowrap;
  3018. text-transform:none;
  3019. }
  3020. #u4000_div {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:67px;
  3026. height:30px;
  3027. background:inherit;
  3028. background-color:rgba(255, 255, 255, 0);
  3029. border:none;
  3030. border-left:0px;
  3031. border-top:0px;
  3032. border-right:0px;
  3033. border-radius:0px;
  3034. border-bottom-right-radius:0px;
  3035. border-bottom-left-radius:0px;
  3036. -moz-box-shadow:none;
  3037. -webkit-box-shadow:none;
  3038. box-shadow:none;
  3039. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3040. font-weight:500;
  3041. font-style:normal;
  3042. font-size:28px;
  3043. text-align:center;
  3044. }
  3045. #u4000 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:1091px;
  3049. top:171px;
  3050. width:67px;
  3051. height:30px;
  3052. display:flex;
  3053. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3054. font-weight:500;
  3055. font-style:normal;
  3056. font-size:28px;
  3057. text-align:center;
  3058. }
  3059. #u4000 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:0px 0px 0px 0px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u4000_text {
  3067. border-width:0px;
  3068. white-space:nowrap;
  3069. text-transform:none;
  3070. }
  3071. #u4001_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:29px;
  3077. height:30px;
  3078. background:inherit;
  3079. background-color:rgba(255, 255, 255, 0);
  3080. border:none;
  3081. border-left:0px;
  3082. border-top:0px;
  3083. border-right:0px;
  3084. border-radius:0px;
  3085. border-bottom-right-radius:0px;
  3086. border-bottom-left-radius:0px;
  3087. -moz-box-shadow:none;
  3088. -webkit-box-shadow:none;
  3089. box-shadow:none;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:14px;
  3094. text-align:center;
  3095. }
  3096. #u4001 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:1110px;
  3100. top:206px;
  3101. width:29px;
  3102. height:30px;
  3103. display:flex;
  3104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:14px;
  3108. text-align:center;
  3109. }
  3110. #u4001 .text {
  3111. position:absolute;
  3112. align-self:center;
  3113. padding:0px 0px 0px 0px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u4001_text {
  3118. border-width:0px;
  3119. white-space:nowrap;
  3120. text-transform:none;
  3121. }
  3122. #u4002_div {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:67px;
  3128. height:30px;
  3129. background:inherit;
  3130. background-color:rgba(255, 255, 255, 0);
  3131. border:none;
  3132. border-left:0px;
  3133. border-top:0px;
  3134. border-right:0px;
  3135. border-radius:0px;
  3136. border-bottom-right-radius:0px;
  3137. border-bottom-left-radius:0px;
  3138. -moz-box-shadow:none;
  3139. -webkit-box-shadow:none;
  3140. box-shadow:none;
  3141. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3142. font-weight:500;
  3143. font-style:normal;
  3144. font-size:28px;
  3145. text-align:center;
  3146. }
  3147. #u4002 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:1314px;
  3151. top:171px;
  3152. width:67px;
  3153. height:30px;
  3154. display:flex;
  3155. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3156. font-weight:500;
  3157. font-style:normal;
  3158. font-size:28px;
  3159. text-align:center;
  3160. }
  3161. #u4002 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:0px 0px 0px 0px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u4002_text {
  3169. border-width:0px;
  3170. white-space:nowrap;
  3171. text-transform:none;
  3172. }
  3173. #u4003_div {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:43px;
  3179. height:30px;
  3180. background:inherit;
  3181. background-color:rgba(255, 255, 255, 0);
  3182. border:none;
  3183. border-left:0px;
  3184. border-top:0px;
  3185. border-right:0px;
  3186. border-radius:0px;
  3187. border-bottom-right-radius:0px;
  3188. border-bottom-left-radius:0px;
  3189. -moz-box-shadow:none;
  3190. -webkit-box-shadow:none;
  3191. box-shadow:none;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:14px;
  3196. text-align:center;
  3197. }
  3198. #u4003 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:1326px;
  3202. top:206px;
  3203. width:43px;
  3204. height:30px;
  3205. display:flex;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:14px;
  3210. text-align:center;
  3211. }
  3212. #u4003 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:0px 0px 0px 0px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u4003_text {
  3220. border-width:0px;
  3221. white-space:nowrap;
  3222. text-transform:none;
  3223. }
  3224. #u4004_div {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:67px;
  3230. height:30px;
  3231. background:inherit;
  3232. background-color:rgba(255, 255, 255, 0);
  3233. border:none;
  3234. border-left:0px;
  3235. border-top:0px;
  3236. border-right:0px;
  3237. border-radius:0px;
  3238. border-bottom-right-radius:0px;
  3239. border-bottom-left-radius:0px;
  3240. -moz-box-shadow:none;
  3241. -webkit-box-shadow:none;
  3242. box-shadow:none;
  3243. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3244. font-weight:500;
  3245. font-style:normal;
  3246. font-size:28px;
  3247. text-align:center;
  3248. }
  3249. #u4004 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:1436px;
  3253. top:171px;
  3254. width:67px;
  3255. height:30px;
  3256. display:flex;
  3257. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3258. font-weight:500;
  3259. font-style:normal;
  3260. font-size:28px;
  3261. text-align:center;
  3262. }
  3263. #u4004 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:0px 0px 0px 0px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u4004_text {
  3271. border-width:0px;
  3272. white-space:nowrap;
  3273. text-transform:none;
  3274. }
  3275. #u4005_div {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:43px;
  3281. height:30px;
  3282. background:inherit;
  3283. background-color:rgba(255, 255, 255, 0);
  3284. border:none;
  3285. border-left:0px;
  3286. border-top:0px;
  3287. border-right:0px;
  3288. border-radius:0px;
  3289. border-bottom-right-radius:0px;
  3290. border-bottom-left-radius:0px;
  3291. -moz-box-shadow:none;
  3292. -webkit-box-shadow:none;
  3293. box-shadow:none;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:14px;
  3298. text-align:center;
  3299. }
  3300. #u4005 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:1448px;
  3304. top:206px;
  3305. width:43px;
  3306. height:30px;
  3307. display:flex;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:14px;
  3312. text-align:center;
  3313. }
  3314. #u4005 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:0px 0px 0px 0px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u4005_text {
  3322. border-width:0px;
  3323. white-space:nowrap;
  3324. text-transform:none;
  3325. }
  3326. #u4006_img {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:2px;
  3332. height:37px;
  3333. }
  3334. #u4006 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:507px;
  3338. top:186px;
  3339. width:1px;
  3340. height:36px;
  3341. display:flex;
  3342. }
  3343. #u4006 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:2px 2px 2px 2px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u4006_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. visibility:hidden;
  3355. }
  3356. #u4007_img {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:2px;
  3362. height:37px;
  3363. }
  3364. #u4007 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:1250px;
  3368. top:186px;
  3369. width:1px;
  3370. height:36px;
  3371. display:flex;
  3372. }
  3373. #u4007 .text {
  3374. position:absolute;
  3375. align-self:center;
  3376. padding:2px 2px 2px 2px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u4007_text {
  3381. border-width:0px;
  3382. word-wrap:break-word;
  3383. text-transform:none;
  3384. visibility:hidden;
  3385. }
  3386. #u4008_div {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:843px;
  3392. height:150px;
  3393. background:inherit;
  3394. background-color:rgba(255, 255, 255, 0);
  3395. border:none;
  3396. border-radius:0px;
  3397. -moz-box-shadow:none;
  3398. -webkit-box-shadow:none;
  3399. box-shadow:none;
  3400. line-height:30px;
  3401. }
  3402. #u4008 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:266px;
  3406. top:-1096px;
  3407. width:843px;
  3408. height:150px;
  3409. display:flex;
  3410. line-height:30px;
  3411. }
  3412. #u4008 .text {
  3413. position:absolute;
  3414. align-self:flex-start;
  3415. padding:0px 0px 0px 0px;
  3416. box-sizing:border-box;
  3417. width:100%;
  3418. }
  3419. #u4008_text {
  3420. border-width:0px;
  3421. white-space:nowrap;
  3422. text-transform:none;
  3423. }
  3424. #u4009 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:381px;
  3428. top:1194px;
  3429. width:1162px;
  3430. height:210px;
  3431. }
  3432. #u4010_img {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:0px;
  3436. top:0px;
  3437. width:106px;
  3438. height:30px;
  3439. }
  3440. #u4010 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:106px;
  3446. height:30px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. }
  3452. #u4010 .text {
  3453. position:absolute;
  3454. align-self:center;
  3455. padding:2px 2px 2px 2px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u4010_text {
  3460. border-width:0px;
  3461. word-wrap:break-word;
  3462. text-transform:none;
  3463. }
  3464. #u4011_img {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:106px;
  3470. height:30px;
  3471. }
  3472. #u4011 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:106px;
  3476. top:0px;
  3477. width:106px;
  3478. height:30px;
  3479. display:flex;
  3480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. }
  3484. #u4011 .text {
  3485. position:absolute;
  3486. align-self:center;
  3487. padding:2px 2px 2px 2px;
  3488. box-sizing:border-box;
  3489. width:100%;
  3490. }
  3491. #u4011_text {
  3492. border-width:0px;
  3493. word-wrap:break-word;
  3494. text-transform:none;
  3495. }
  3496. #u4012_img {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:0px;
  3501. width:106px;
  3502. height:30px;
  3503. }
  3504. #u4012 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:212px;
  3508. top:0px;
  3509. width:106px;
  3510. height:30px;
  3511. display:flex;
  3512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. }
  3516. #u4012 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 2px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u4012_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. }
  3528. #u4013_img {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:106px;
  3534. height:30px;
  3535. }
  3536. #u4013 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:318px;
  3540. top:0px;
  3541. width:106px;
  3542. height:30px;
  3543. display:flex;
  3544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. }
  3548. #u4013 .text {
  3549. position:absolute;
  3550. align-self:center;
  3551. padding:2px 2px 2px 2px;
  3552. box-sizing:border-box;
  3553. width:100%;
  3554. }
  3555. #u4013_text {
  3556. border-width:0px;
  3557. word-wrap:break-word;
  3558. text-transform:none;
  3559. }
  3560. #u4014_img {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:106px;
  3566. height:30px;
  3567. }
  3568. #u4014 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:424px;
  3572. top:0px;
  3573. width:106px;
  3574. height:30px;
  3575. display:flex;
  3576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. }
  3580. #u4014 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 2px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u4014_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. }
  3592. #u4015_img {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:106px;
  3598. height:30px;
  3599. }
  3600. #u4015 {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:530px;
  3604. top:0px;
  3605. width:106px;
  3606. height:30px;
  3607. display:flex;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. }
  3612. #u4015 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:2px 2px 2px 2px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u4015_text {
  3620. border-width:0px;
  3621. word-wrap:break-word;
  3622. text-transform:none;
  3623. }
  3624. #u4016_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:106px;
  3630. height:30px;
  3631. }
  3632. #u4016 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:636px;
  3636. top:0px;
  3637. width:106px;
  3638. height:30px;
  3639. display:flex;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. }
  3644. #u4016 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 2px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u4016_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. }
  3656. #u4017_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:106px;
  3662. height:30px;
  3663. }
  3664. #u4017 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:742px;
  3668. top:0px;
  3669. width:106px;
  3670. height:30px;
  3671. display:flex;
  3672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. }
  3676. #u4017 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:2px 2px 2px 2px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u4017_text {
  3684. border-width:0px;
  3685. word-wrap:break-word;
  3686. text-transform:none;
  3687. }
  3688. #u4018_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:106px;
  3694. height:30px;
  3695. }
  3696. #u4018 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:848px;
  3700. top:0px;
  3701. width:106px;
  3702. height:30px;
  3703. display:flex;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. }
  3708. #u4018 .text {
  3709. position:absolute;
  3710. align-self:center;
  3711. padding:2px 2px 2px 2px;
  3712. box-sizing:border-box;
  3713. width:100%;
  3714. }
  3715. #u4018_text {
  3716. border-width:0px;
  3717. word-wrap:break-word;
  3718. text-transform:none;
  3719. }
  3720. #u4019_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:106px;
  3726. height:30px;
  3727. }
  3728. #u4019 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:954px;
  3732. top:0px;
  3733. width:106px;
  3734. height:30px;
  3735. display:flex;
  3736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3737. font-weight:400;
  3738. font-style:normal;
  3739. }
  3740. #u4019 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 2px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u4019_text {
  3748. border-width:0px;
  3749. word-wrap:break-word;
  3750. text-transform:none;
  3751. }
  3752. #u4020_img {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:102px;
  3758. height:30px;
  3759. }
  3760. #u4020 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:1060px;
  3764. top:0px;
  3765. width:102px;
  3766. height:30px;
  3767. display:flex;
  3768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3769. font-weight:400;
  3770. font-style:normal;
  3771. }
  3772. #u4020 .text {
  3773. position:absolute;
  3774. align-self:center;
  3775. padding:2px 2px 2px 2px;
  3776. box-sizing:border-box;
  3777. width:100%;
  3778. }
  3779. #u4020_text {
  3780. border-width:0px;
  3781. word-wrap:break-word;
  3782. text-transform:none;
  3783. }
  3784. #u4021_img {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:106px;
  3790. height:30px;
  3791. }
  3792. #u4021 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:0px;
  3796. top:30px;
  3797. width:106px;
  3798. height:30px;
  3799. display:flex;
  3800. }
  3801. #u4021 .text {
  3802. position:absolute;
  3803. align-self:center;
  3804. padding:2px 2px 2px 2px;
  3805. box-sizing:border-box;
  3806. width:100%;
  3807. }
  3808. #u4021_text {
  3809. border-width:0px;
  3810. word-wrap:break-word;
  3811. text-transform:none;
  3812. visibility:hidden;
  3813. }
  3814. #u4022_img {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:106px;
  3820. height:30px;
  3821. }
  3822. #u4022 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:106px;
  3826. top:30px;
  3827. width:106px;
  3828. height:30px;
  3829. display:flex;
  3830. }
  3831. #u4022 .text {
  3832. position:absolute;
  3833. align-self:center;
  3834. padding:2px 2px 2px 2px;
  3835. box-sizing:border-box;
  3836. width:100%;
  3837. }
  3838. #u4022_text {
  3839. border-width:0px;
  3840. word-wrap:break-word;
  3841. text-transform:none;
  3842. visibility:hidden;
  3843. }
  3844. #u4023_img {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:106px;
  3850. height:30px;
  3851. }
  3852. #u4023 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:212px;
  3856. top:30px;
  3857. width:106px;
  3858. height:30px;
  3859. display:flex;
  3860. }
  3861. #u4023 .text {
  3862. position:absolute;
  3863. align-self:center;
  3864. padding:2px 2px 2px 2px;
  3865. box-sizing:border-box;
  3866. width:100%;
  3867. }
  3868. #u4023_text {
  3869. border-width:0px;
  3870. word-wrap:break-word;
  3871. text-transform:none;
  3872. visibility:hidden;
  3873. }
  3874. #u4024_img {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:106px;
  3880. height:30px;
  3881. }
  3882. #u4024 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:318px;
  3886. top:30px;
  3887. width:106px;
  3888. height:30px;
  3889. display:flex;
  3890. }
  3891. #u4024 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u4024_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u4025_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:106px;
  3910. height:30px;
  3911. }
  3912. #u4025 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:424px;
  3916. top:30px;
  3917. width:106px;
  3918. height:30px;
  3919. display:flex;
  3920. }
  3921. #u4025 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 2px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u4025_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u4026_img {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:106px;
  3940. height:30px;
  3941. }
  3942. #u4026 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:530px;
  3946. top:30px;
  3947. width:106px;
  3948. height:30px;
  3949. display:flex;
  3950. }
  3951. #u4026 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 2px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u4026_text {
  3959. border-width:0px;
  3960. word-wrap:break-word;
  3961. text-transform:none;
  3962. visibility:hidden;
  3963. }
  3964. #u4027_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:106px;
  3970. height:30px;
  3971. }
  3972. #u4027 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:636px;
  3976. top:30px;
  3977. width:106px;
  3978. height:30px;
  3979. display:flex;
  3980. }
  3981. #u4027 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 2px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u4027_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u4028_img {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:106px;
  4000. height:30px;
  4001. }
  4002. #u4028 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:742px;
  4006. top:30px;
  4007. width:106px;
  4008. height:30px;
  4009. display:flex;
  4010. }
  4011. #u4028 .text {
  4012. position:absolute;
  4013. align-self:center;
  4014. padding:2px 2px 2px 2px;
  4015. box-sizing:border-box;
  4016. width:100%;
  4017. }
  4018. #u4028_text {
  4019. border-width:0px;
  4020. word-wrap:break-word;
  4021. text-transform:none;
  4022. visibility:hidden;
  4023. }
  4024. #u4029_img {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:106px;
  4030. height:30px;
  4031. }
  4032. #u4029 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:848px;
  4036. top:30px;
  4037. width:106px;
  4038. height:30px;
  4039. display:flex;
  4040. }
  4041. #u4029 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 2px 2px 2px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u4029_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. visibility:hidden;
  4053. }
  4054. #u4030_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:106px;
  4060. height:30px;
  4061. }
  4062. #u4030 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:954px;
  4066. top:30px;
  4067. width:106px;
  4068. height:30px;
  4069. display:flex;
  4070. }
  4071. #u4030 .text {
  4072. position:absolute;
  4073. align-self:center;
  4074. padding:2px 2px 2px 2px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u4030_text {
  4079. border-width:0px;
  4080. word-wrap:break-word;
  4081. text-transform:none;
  4082. visibility:hidden;
  4083. }
  4084. #u4031_img {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:0px;
  4088. top:0px;
  4089. width:102px;
  4090. height:30px;
  4091. }
  4092. #u4031 {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:1060px;
  4096. top:30px;
  4097. width:102px;
  4098. height:30px;
  4099. display:flex;
  4100. }
  4101. #u4031 .text {
  4102. position:absolute;
  4103. align-self:center;
  4104. padding:2px 2px 2px 2px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u4031_text {
  4109. border-width:0px;
  4110. word-wrap:break-word;
  4111. text-transform:none;
  4112. visibility:hidden;
  4113. }
  4114. #u4032_img {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:106px;
  4120. height:30px;
  4121. }
  4122. #u4032 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:60px;
  4127. width:106px;
  4128. height:30px;
  4129. display:flex;
  4130. }
  4131. #u4032 .text {
  4132. position:absolute;
  4133. align-self:center;
  4134. padding:2px 2px 2px 2px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u4032_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. visibility:hidden;
  4143. }
  4144. #u4033_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:106px;
  4150. height:30px;
  4151. }
  4152. #u4033 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:106px;
  4156. top:60px;
  4157. width:106px;
  4158. height:30px;
  4159. display:flex;
  4160. }
  4161. #u4033 .text {
  4162. position:absolute;
  4163. align-self:center;
  4164. padding:2px 2px 2px 2px;
  4165. box-sizing:border-box;
  4166. width:100%;
  4167. }
  4168. #u4033_text {
  4169. border-width:0px;
  4170. word-wrap:break-word;
  4171. text-transform:none;
  4172. visibility:hidden;
  4173. }
  4174. #u4034_img {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:106px;
  4180. height:30px;
  4181. }
  4182. #u4034 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:212px;
  4186. top:60px;
  4187. width:106px;
  4188. height:30px;
  4189. display:flex;
  4190. }
  4191. #u4034 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 2px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u4034_text {
  4199. border-width:0px;
  4200. word-wrap:break-word;
  4201. text-transform:none;
  4202. visibility:hidden;
  4203. }
  4204. #u4035_img {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:106px;
  4210. height:30px;
  4211. }
  4212. #u4035 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:318px;
  4216. top:60px;
  4217. width:106px;
  4218. height:30px;
  4219. display:flex;
  4220. }
  4221. #u4035 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:2px 2px 2px 2px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u4035_text {
  4229. border-width:0px;
  4230. word-wrap:break-word;
  4231. text-transform:none;
  4232. visibility:hidden;
  4233. }
  4234. #u4036_img {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:106px;
  4240. height:30px;
  4241. }
  4242. #u4036 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:424px;
  4246. top:60px;
  4247. width:106px;
  4248. height:30px;
  4249. display:flex;
  4250. }
  4251. #u4036 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 2px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u4036_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u4037_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:106px;
  4270. height:30px;
  4271. }
  4272. #u4037 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:530px;
  4276. top:60px;
  4277. width:106px;
  4278. height:30px;
  4279. display:flex;
  4280. }
  4281. #u4037 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 2px 2px 2px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u4037_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. visibility:hidden;
  4293. }
  4294. #u4038_img {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:106px;
  4300. height:30px;
  4301. }
  4302. #u4038 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:636px;
  4306. top:60px;
  4307. width:106px;
  4308. height:30px;
  4309. display:flex;
  4310. }
  4311. #u4038 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 2px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u4038_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. visibility:hidden;
  4323. }
  4324. #u4039_img {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:106px;
  4330. height:30px;
  4331. }
  4332. #u4039 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:742px;
  4336. top:60px;
  4337. width:106px;
  4338. height:30px;
  4339. display:flex;
  4340. }
  4341. #u4039 .text {
  4342. position:absolute;
  4343. align-self:center;
  4344. padding:2px 2px 2px 2px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u4039_text {
  4349. border-width:0px;
  4350. word-wrap:break-word;
  4351. text-transform:none;
  4352. visibility:hidden;
  4353. }
  4354. #u4040_img {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:106px;
  4360. height:30px;
  4361. }
  4362. #u4040 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:848px;
  4366. top:60px;
  4367. width:106px;
  4368. height:30px;
  4369. display:flex;
  4370. }
  4371. #u4040 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u4040_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u4041_img {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:106px;
  4390. height:30px;
  4391. }
  4392. #u4041 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:954px;
  4396. top:60px;
  4397. width:106px;
  4398. height:30px;
  4399. display:flex;
  4400. }
  4401. #u4041 .text {
  4402. position:absolute;
  4403. align-self:center;
  4404. padding:2px 2px 2px 2px;
  4405. box-sizing:border-box;
  4406. width:100%;
  4407. }
  4408. #u4041_text {
  4409. border-width:0px;
  4410. word-wrap:break-word;
  4411. text-transform:none;
  4412. visibility:hidden;
  4413. }
  4414. #u4042_img {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:102px;
  4420. height:30px;
  4421. }
  4422. #u4042 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:1060px;
  4426. top:60px;
  4427. width:102px;
  4428. height:30px;
  4429. display:flex;
  4430. }
  4431. #u4042 .text {
  4432. position:absolute;
  4433. align-self:center;
  4434. padding:2px 2px 2px 2px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u4042_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. visibility:hidden;
  4443. }
  4444. #u4043_img {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:106px;
  4450. height:30px;
  4451. }
  4452. #u4043 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:90px;
  4457. width:106px;
  4458. height:30px;
  4459. display:flex;
  4460. }
  4461. #u4043 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:2px 2px 2px 2px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u4043_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u4044_img {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:106px;
  4480. height:30px;
  4481. }
  4482. #u4044 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:106px;
  4486. top:90px;
  4487. width:106px;
  4488. height:30px;
  4489. display:flex;
  4490. }
  4491. #u4044 .text {
  4492. position:absolute;
  4493. align-self:center;
  4494. padding:2px 2px 2px 2px;
  4495. box-sizing:border-box;
  4496. width:100%;
  4497. }
  4498. #u4044_text {
  4499. border-width:0px;
  4500. word-wrap:break-word;
  4501. text-transform:none;
  4502. visibility:hidden;
  4503. }
  4504. #u4045_img {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:0px;
  4508. top:0px;
  4509. width:106px;
  4510. height:30px;
  4511. }
  4512. #u4045 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:212px;
  4516. top:90px;
  4517. width:106px;
  4518. height:30px;
  4519. display:flex;
  4520. }
  4521. #u4045 .text {
  4522. position:absolute;
  4523. align-self:center;
  4524. padding:2px 2px 2px 2px;
  4525. box-sizing:border-box;
  4526. width:100%;
  4527. }
  4528. #u4045_text {
  4529. border-width:0px;
  4530. word-wrap:break-word;
  4531. text-transform:none;
  4532. visibility:hidden;
  4533. }
  4534. #u4046_img {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:106px;
  4540. height:30px;
  4541. }
  4542. #u4046 {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:318px;
  4546. top:90px;
  4547. width:106px;
  4548. height:30px;
  4549. display:flex;
  4550. }
  4551. #u4046 .text {
  4552. position:absolute;
  4553. align-self:center;
  4554. padding:2px 2px 2px 2px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u4046_text {
  4559. border-width:0px;
  4560. word-wrap:break-word;
  4561. text-transform:none;
  4562. visibility:hidden;
  4563. }
  4564. #u4047_img {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:106px;
  4570. height:30px;
  4571. }
  4572. #u4047 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:424px;
  4576. top:90px;
  4577. width:106px;
  4578. height:30px;
  4579. display:flex;
  4580. }
  4581. #u4047 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 2px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u4047_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. visibility:hidden;
  4593. }
  4594. #u4048_img {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:106px;
  4600. height:30px;
  4601. }
  4602. #u4048 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:530px;
  4606. top:90px;
  4607. width:106px;
  4608. height:30px;
  4609. display:flex;
  4610. }
  4611. #u4048 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 2px 2px 2px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u4048_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. visibility:hidden;
  4623. }
  4624. #u4049_img {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:106px;
  4630. height:30px;
  4631. }
  4632. #u4049 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:636px;
  4636. top:90px;
  4637. width:106px;
  4638. height:30px;
  4639. display:flex;
  4640. }
  4641. #u4049 .text {
  4642. position:absolute;
  4643. align-self:center;
  4644. padding:2px 2px 2px 2px;
  4645. box-sizing:border-box;
  4646. width:100%;
  4647. }
  4648. #u4049_text {
  4649. border-width:0px;
  4650. word-wrap:break-word;
  4651. text-transform:none;
  4652. visibility:hidden;
  4653. }
  4654. #u4050_img {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:106px;
  4660. height:30px;
  4661. }
  4662. #u4050 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:742px;
  4666. top:90px;
  4667. width:106px;
  4668. height:30px;
  4669. display:flex;
  4670. }
  4671. #u4050 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 2px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u4050_text {
  4679. border-width:0px;
  4680. word-wrap:break-word;
  4681. text-transform:none;
  4682. visibility:hidden;
  4683. }
  4684. #u4051_img {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:106px;
  4690. height:30px;
  4691. }
  4692. #u4051 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:848px;
  4696. top:90px;
  4697. width:106px;
  4698. height:30px;
  4699. display:flex;
  4700. }
  4701. #u4051 .text {
  4702. position:absolute;
  4703. align-self:center;
  4704. padding:2px 2px 2px 2px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u4051_text {
  4709. border-width:0px;
  4710. word-wrap:break-word;
  4711. text-transform:none;
  4712. visibility:hidden;
  4713. }
  4714. #u4052_img {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:106px;
  4720. height:30px;
  4721. }
  4722. #u4052 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:954px;
  4726. top:90px;
  4727. width:106px;
  4728. height:30px;
  4729. display:flex;
  4730. }
  4731. #u4052 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:2px 2px 2px 2px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u4052_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. visibility:hidden;
  4743. }
  4744. #u4053_img {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:0px;
  4749. width:102px;
  4750. height:30px;
  4751. }
  4752. #u4053 {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:1060px;
  4756. top:90px;
  4757. width:102px;
  4758. height:30px;
  4759. display:flex;
  4760. }
  4761. #u4053 .text {
  4762. position:absolute;
  4763. align-self:center;
  4764. padding:2px 2px 2px 2px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u4053_text {
  4769. border-width:0px;
  4770. word-wrap:break-word;
  4771. text-transform:none;
  4772. visibility:hidden;
  4773. }
  4774. #u4054_img {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:106px;
  4780. height:30px;
  4781. }
  4782. #u4054 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:120px;
  4787. width:106px;
  4788. height:30px;
  4789. display:flex;
  4790. }
  4791. #u4054 .text {
  4792. position:absolute;
  4793. align-self:center;
  4794. padding:2px 2px 2px 2px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u4054_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. visibility:hidden;
  4803. }
  4804. #u4055_img {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:106px;
  4810. height:30px;
  4811. }
  4812. #u4055 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:106px;
  4816. top:120px;
  4817. width:106px;
  4818. height:30px;
  4819. display:flex;
  4820. }
  4821. #u4055 .text {
  4822. position:absolute;
  4823. align-self:center;
  4824. padding:2px 2px 2px 2px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u4055_text {
  4829. border-width:0px;
  4830. word-wrap:break-word;
  4831. text-transform:none;
  4832. visibility:hidden;
  4833. }
  4834. #u4056_img {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:106px;
  4840. height:30px;
  4841. }
  4842. #u4056 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:212px;
  4846. top:120px;
  4847. width:106px;
  4848. height:30px;
  4849. display:flex;
  4850. }
  4851. #u4056 .text {
  4852. position:absolute;
  4853. align-self:center;
  4854. padding:2px 2px 2px 2px;
  4855. box-sizing:border-box;
  4856. width:100%;
  4857. }
  4858. #u4056_text {
  4859. border-width:0px;
  4860. word-wrap:break-word;
  4861. text-transform:none;
  4862. visibility:hidden;
  4863. }
  4864. #u4057_img {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:0px;
  4868. top:0px;
  4869. width:106px;
  4870. height:30px;
  4871. }
  4872. #u4057 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:318px;
  4876. top:120px;
  4877. width:106px;
  4878. height:30px;
  4879. display:flex;
  4880. }
  4881. #u4057 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:2px 2px 2px 2px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u4057_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u4058_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:106px;
  4900. height:30px;
  4901. }
  4902. #u4058 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:424px;
  4906. top:120px;
  4907. width:106px;
  4908. height:30px;
  4909. display:flex;
  4910. }
  4911. #u4058 .text {
  4912. position:absolute;
  4913. align-self:center;
  4914. padding:2px 2px 2px 2px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u4058_text {
  4919. border-width:0px;
  4920. word-wrap:break-word;
  4921. text-transform:none;
  4922. visibility:hidden;
  4923. }
  4924. #u4059_img {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:106px;
  4930. height:30px;
  4931. }
  4932. #u4059 {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:530px;
  4936. top:120px;
  4937. width:106px;
  4938. height:30px;
  4939. display:flex;
  4940. }
  4941. #u4059 .text {
  4942. position:absolute;
  4943. align-self:center;
  4944. padding:2px 2px 2px 2px;
  4945. box-sizing:border-box;
  4946. width:100%;
  4947. }
  4948. #u4059_text {
  4949. border-width:0px;
  4950. word-wrap:break-word;
  4951. text-transform:none;
  4952. visibility:hidden;
  4953. }
  4954. #u4060_img {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:106px;
  4960. height:30px;
  4961. }
  4962. #u4060 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:636px;
  4966. top:120px;
  4967. width:106px;
  4968. height:30px;
  4969. display:flex;
  4970. }
  4971. #u4060 .text {
  4972. position:absolute;
  4973. align-self:center;
  4974. padding:2px 2px 2px 2px;
  4975. box-sizing:border-box;
  4976. width:100%;
  4977. }
  4978. #u4060_text {
  4979. border-width:0px;
  4980. word-wrap:break-word;
  4981. text-transform:none;
  4982. visibility:hidden;
  4983. }
  4984. #u4061_img {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:0px;
  4988. top:0px;
  4989. width:106px;
  4990. height:30px;
  4991. }
  4992. #u4061 {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:742px;
  4996. top:120px;
  4997. width:106px;
  4998. height:30px;
  4999. display:flex;
  5000. }
  5001. #u4061 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:2px 2px 2px 2px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u4061_text {
  5009. border-width:0px;
  5010. word-wrap:break-word;
  5011. text-transform:none;
  5012. visibility:hidden;
  5013. }
  5014. #u4062_img {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:106px;
  5020. height:30px;
  5021. }
  5022. #u4062 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:848px;
  5026. top:120px;
  5027. width:106px;
  5028. height:30px;
  5029. display:flex;
  5030. }
  5031. #u4062 .text {
  5032. position:absolute;
  5033. align-self:center;
  5034. padding:2px 2px 2px 2px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u4062_text {
  5039. border-width:0px;
  5040. word-wrap:break-word;
  5041. text-transform:none;
  5042. visibility:hidden;
  5043. }
  5044. #u4063_img {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:106px;
  5050. height:30px;
  5051. }
  5052. #u4063 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:954px;
  5056. top:120px;
  5057. width:106px;
  5058. height:30px;
  5059. display:flex;
  5060. }
  5061. #u4063 .text {
  5062. position:absolute;
  5063. align-self:center;
  5064. padding:2px 2px 2px 2px;
  5065. box-sizing:border-box;
  5066. width:100%;
  5067. }
  5068. #u4063_text {
  5069. border-width:0px;
  5070. word-wrap:break-word;
  5071. text-transform:none;
  5072. visibility:hidden;
  5073. }
  5074. #u4064_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:102px;
  5080. height:30px;
  5081. }
  5082. #u4064 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:1060px;
  5086. top:120px;
  5087. width:102px;
  5088. height:30px;
  5089. display:flex;
  5090. }
  5091. #u4064 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 2px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u4064_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u4065_img {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:106px;
  5110. height:30px;
  5111. }
  5112. #u4065 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:150px;
  5117. width:106px;
  5118. height:30px;
  5119. display:flex;
  5120. }
  5121. #u4065 .text {
  5122. position:absolute;
  5123. align-self:center;
  5124. padding:2px 2px 2px 2px;
  5125. box-sizing:border-box;
  5126. width:100%;
  5127. }
  5128. #u4065_text {
  5129. border-width:0px;
  5130. word-wrap:break-word;
  5131. text-transform:none;
  5132. visibility:hidden;
  5133. }
  5134. #u4066_img {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:106px;
  5140. height:30px;
  5141. }
  5142. #u4066 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:106px;
  5146. top:150px;
  5147. width:106px;
  5148. height:30px;
  5149. display:flex;
  5150. }
  5151. #u4066 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 2px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u4066_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. visibility:hidden;
  5163. }
  5164. #u4067_img {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:106px;
  5170. height:30px;
  5171. }
  5172. #u4067 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:212px;
  5176. top:150px;
  5177. width:106px;
  5178. height:30px;
  5179. display:flex;
  5180. }
  5181. #u4067 .text {
  5182. position:absolute;
  5183. align-self:center;
  5184. padding:2px 2px 2px 2px;
  5185. box-sizing:border-box;
  5186. width:100%;
  5187. }
  5188. #u4067_text {
  5189. border-width:0px;
  5190. word-wrap:break-word;
  5191. text-transform:none;
  5192. visibility:hidden;
  5193. }
  5194. #u4068_img {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:0px;
  5199. width:106px;
  5200. height:30px;
  5201. }
  5202. #u4068 {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:318px;
  5206. top:150px;
  5207. width:106px;
  5208. height:30px;
  5209. display:flex;
  5210. }
  5211. #u4068 .text {
  5212. position:absolute;
  5213. align-self:center;
  5214. padding:2px 2px 2px 2px;
  5215. box-sizing:border-box;
  5216. width:100%;
  5217. }
  5218. #u4068_text {
  5219. border-width:0px;
  5220. word-wrap:break-word;
  5221. text-transform:none;
  5222. visibility:hidden;
  5223. }
  5224. #u4069_img {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:0px;
  5229. width:106px;
  5230. height:30px;
  5231. }
  5232. #u4069 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:424px;
  5236. top:150px;
  5237. width:106px;
  5238. height:30px;
  5239. display:flex;
  5240. }
  5241. #u4069 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:2px 2px 2px 2px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u4069_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. visibility:hidden;
  5253. }
  5254. #u4070_img {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:106px;
  5260. height:30px;
  5261. }
  5262. #u4070 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:530px;
  5266. top:150px;
  5267. width:106px;
  5268. height:30px;
  5269. display:flex;
  5270. }
  5271. #u4070 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:2px 2px 2px 2px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u4070_text {
  5279. border-width:0px;
  5280. word-wrap:break-word;
  5281. text-transform:none;
  5282. visibility:hidden;
  5283. }
  5284. #u4071_img {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:106px;
  5290. height:30px;
  5291. }
  5292. #u4071 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:636px;
  5296. top:150px;
  5297. width:106px;
  5298. height:30px;
  5299. display:flex;
  5300. }
  5301. #u4071 .text {
  5302. position:absolute;
  5303. align-self:center;
  5304. padding:2px 2px 2px 2px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u4071_text {
  5309. border-width:0px;
  5310. word-wrap:break-word;
  5311. text-transform:none;
  5312. visibility:hidden;
  5313. }
  5314. #u4072_img {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:106px;
  5320. height:30px;
  5321. }
  5322. #u4072 {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:742px;
  5326. top:150px;
  5327. width:106px;
  5328. height:30px;
  5329. display:flex;
  5330. }
  5331. #u4072 .text {
  5332. position:absolute;
  5333. align-self:center;
  5334. padding:2px 2px 2px 2px;
  5335. box-sizing:border-box;
  5336. width:100%;
  5337. }
  5338. #u4072_text {
  5339. border-width:0px;
  5340. word-wrap:break-word;
  5341. text-transform:none;
  5342. visibility:hidden;
  5343. }
  5344. #u4073_img {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:0px;
  5348. top:0px;
  5349. width:106px;
  5350. height:30px;
  5351. }
  5352. #u4073 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:848px;
  5356. top:150px;
  5357. width:106px;
  5358. height:30px;
  5359. display:flex;
  5360. }
  5361. #u4073 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 2px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u4073_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u4074_img {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:106px;
  5380. height:30px;
  5381. }
  5382. #u4074 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:954px;
  5386. top:150px;
  5387. width:106px;
  5388. height:30px;
  5389. display:flex;
  5390. }
  5391. #u4074 .text {
  5392. position:absolute;
  5393. align-self:center;
  5394. padding:2px 2px 2px 2px;
  5395. box-sizing:border-box;
  5396. width:100%;
  5397. }
  5398. #u4074_text {
  5399. border-width:0px;
  5400. word-wrap:break-word;
  5401. text-transform:none;
  5402. visibility:hidden;
  5403. }
  5404. #u4075_img {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:102px;
  5410. height:30px;
  5411. }
  5412. #u4075 {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:1060px;
  5416. top:150px;
  5417. width:102px;
  5418. height:30px;
  5419. display:flex;
  5420. }
  5421. #u4075 .text {
  5422. position:absolute;
  5423. align-self:center;
  5424. padding:2px 2px 2px 2px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. #u4075_text {
  5429. border-width:0px;
  5430. word-wrap:break-word;
  5431. text-transform:none;
  5432. visibility:hidden;
  5433. }
  5434. #u4076_img {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:0px;
  5438. top:0px;
  5439. width:106px;
  5440. height:30px;
  5441. }
  5442. #u4076 {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:180px;
  5447. width:106px;
  5448. height:30px;
  5449. display:flex;
  5450. }
  5451. #u4076 .text {
  5452. position:absolute;
  5453. align-self:center;
  5454. padding:2px 2px 2px 2px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u4076_text {
  5459. border-width:0px;
  5460. word-wrap:break-word;
  5461. text-transform:none;
  5462. visibility:hidden;
  5463. }
  5464. #u4077_img {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:0px;
  5468. top:0px;
  5469. width:106px;
  5470. height:30px;
  5471. }
  5472. #u4077 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:106px;
  5476. top:180px;
  5477. width:106px;
  5478. height:30px;
  5479. display:flex;
  5480. }
  5481. #u4077 .text {
  5482. position:absolute;
  5483. align-self:center;
  5484. padding:2px 2px 2px 2px;
  5485. box-sizing:border-box;
  5486. width:100%;
  5487. }
  5488. #u4077_text {
  5489. border-width:0px;
  5490. word-wrap:break-word;
  5491. text-transform:none;
  5492. visibility:hidden;
  5493. }
  5494. #u4078_img {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:106px;
  5500. height:30px;
  5501. }
  5502. #u4078 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:212px;
  5506. top:180px;
  5507. width:106px;
  5508. height:30px;
  5509. display:flex;
  5510. }
  5511. #u4078 .text {
  5512. position:absolute;
  5513. align-self:center;
  5514. padding:2px 2px 2px 2px;
  5515. box-sizing:border-box;
  5516. width:100%;
  5517. }
  5518. #u4078_text {
  5519. border-width:0px;
  5520. word-wrap:break-word;
  5521. text-transform:none;
  5522. visibility:hidden;
  5523. }
  5524. #u4079_img {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:106px;
  5530. height:30px;
  5531. }
  5532. #u4079 {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:318px;
  5536. top:180px;
  5537. width:106px;
  5538. height:30px;
  5539. display:flex;
  5540. }
  5541. #u4079 .text {
  5542. position:absolute;
  5543. align-self:center;
  5544. padding:2px 2px 2px 2px;
  5545. box-sizing:border-box;
  5546. width:100%;
  5547. }
  5548. #u4079_text {
  5549. border-width:0px;
  5550. word-wrap:break-word;
  5551. text-transform:none;
  5552. visibility:hidden;
  5553. }
  5554. #u4080_img {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:106px;
  5560. height:30px;
  5561. }
  5562. #u4080 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:424px;
  5566. top:180px;
  5567. width:106px;
  5568. height:30px;
  5569. display:flex;
  5570. }
  5571. #u4080 .text {
  5572. position:absolute;
  5573. align-self:center;
  5574. padding:2px 2px 2px 2px;
  5575. box-sizing:border-box;
  5576. width:100%;
  5577. }
  5578. #u4080_text {
  5579. border-width:0px;
  5580. word-wrap:break-word;
  5581. text-transform:none;
  5582. visibility:hidden;
  5583. }
  5584. #u4081_img {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:106px;
  5590. height:30px;
  5591. }
  5592. #u4081 {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:530px;
  5596. top:180px;
  5597. width:106px;
  5598. height:30px;
  5599. display:flex;
  5600. }
  5601. #u4081 .text {
  5602. position:absolute;
  5603. align-self:center;
  5604. padding:2px 2px 2px 2px;
  5605. box-sizing:border-box;
  5606. width:100%;
  5607. }
  5608. #u4081_text {
  5609. border-width:0px;
  5610. word-wrap:break-word;
  5611. text-transform:none;
  5612. visibility:hidden;
  5613. }
  5614. #u4082_img {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:106px;
  5620. height:30px;
  5621. }
  5622. #u4082 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:636px;
  5626. top:180px;
  5627. width:106px;
  5628. height:30px;
  5629. display:flex;
  5630. }
  5631. #u4082 .text {
  5632. position:absolute;
  5633. align-self:center;
  5634. padding:2px 2px 2px 2px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u4082_text {
  5639. border-width:0px;
  5640. word-wrap:break-word;
  5641. text-transform:none;
  5642. visibility:hidden;
  5643. }
  5644. #u4083_img {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:106px;
  5650. height:30px;
  5651. }
  5652. #u4083 {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:742px;
  5656. top:180px;
  5657. width:106px;
  5658. height:30px;
  5659. display:flex;
  5660. }
  5661. #u4083 .text {
  5662. position:absolute;
  5663. align-self:center;
  5664. padding:2px 2px 2px 2px;
  5665. box-sizing:border-box;
  5666. width:100%;
  5667. }
  5668. #u4083_text {
  5669. border-width:0px;
  5670. word-wrap:break-word;
  5671. text-transform:none;
  5672. visibility:hidden;
  5673. }
  5674. #u4084_img {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:106px;
  5680. height:30px;
  5681. }
  5682. #u4084 {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:848px;
  5686. top:180px;
  5687. width:106px;
  5688. height:30px;
  5689. display:flex;
  5690. }
  5691. #u4084 .text {
  5692. position:absolute;
  5693. align-self:center;
  5694. padding:2px 2px 2px 2px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u4084_text {
  5699. border-width:0px;
  5700. word-wrap:break-word;
  5701. text-transform:none;
  5702. visibility:hidden;
  5703. }
  5704. #u4085_img {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:106px;
  5710. height:30px;
  5711. }
  5712. #u4085 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:954px;
  5716. top:180px;
  5717. width:106px;
  5718. height:30px;
  5719. display:flex;
  5720. }
  5721. #u4085 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 2px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u4085_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u4086_img {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:102px;
  5740. height:30px;
  5741. }
  5742. #u4086 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:1060px;
  5746. top:180px;
  5747. width:102px;
  5748. height:30px;
  5749. display:flex;
  5750. }
  5751. #u4086 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:2px 2px 2px 2px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u4086_text {
  5759. border-width:0px;
  5760. word-wrap:break-word;
  5761. text-transform:none;
  5762. visibility:hidden;
  5763. }
  5764. #u4087_div {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:229px;
  5770. height:50px;
  5771. background:inherit;
  5772. background-color:rgba(255, 255, 255, 1);
  5773. border:none;
  5774. border-left:0px;
  5775. border-top:0px;
  5776. border-right:0px;
  5777. border-radius:0px;
  5778. border-bottom-right-radius:0px;
  5779. border-bottom-left-radius:0px;
  5780. -moz-box-shadow:none;
  5781. -webkit-box-shadow:none;
  5782. box-shadow:none;
  5783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:26px;
  5787. }
  5788. #u4087 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:369px;
  5792. top:1134px;
  5793. width:229px;
  5794. height:50px;
  5795. display:flex;
  5796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. font-size:26px;
  5800. }
  5801. #u4087 .text {
  5802. position:absolute;
  5803. align-self:center;
  5804. padding:0px 0px 0px 0px;
  5805. box-sizing:border-box;
  5806. width:100%;
  5807. }
  5808. #u4087_text {
  5809. border-width:0px;
  5810. word-wrap:break-word;
  5811. text-transform:none;
  5812. }
  5813. #u4088 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:0px;
  5819. height:0px;
  5820. }
  5821. #u4089_div {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:30px;
  5827. height:30px;
  5828. background:inherit;
  5829. background-color:rgba(255, 255, 255, 1);
  5830. box-sizing:border-box;
  5831. border-width:1px;
  5832. border-style:solid;
  5833. border-color:rgba(228, 228, 228, 1);
  5834. border-radius:4px;
  5835. -moz-box-shadow:none;
  5836. -webkit-box-shadow:none;
  5837. box-shadow:none;
  5838. font-family:'Microsoft YaHei', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:14px;
  5842. }
  5843. #u4089 {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:1104px;
  5847. top:1415px;
  5848. width:30px;
  5849. height:30px;
  5850. display:flex;
  5851. font-family:'Microsoft YaHei', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:14px;
  5855. }
  5856. #u4089 .text {
  5857. position:absolute;
  5858. align-self:center;
  5859. padding:2px 2px 2px 2px;
  5860. box-sizing:border-box;
  5861. width:100%;
  5862. }
  5863. #u4089_text {
  5864. border-width:0px;
  5865. word-wrap:break-word;
  5866. text-transform:none;
  5867. }
  5868. #u4090_div {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:49px;
  5874. height:30px;
  5875. background:inherit;
  5876. background-color:rgba(255, 255, 255, 0);
  5877. box-sizing:border-box;
  5878. border-width:1px;
  5879. border-style:solid;
  5880. border-color:rgba(188, 188, 188, 1);
  5881. border-radius:4px;
  5882. -moz-box-shadow:none;
  5883. -webkit-box-shadow:none;
  5884. box-shadow:none;
  5885. font-family:'Microsoft YaHei', sans-serif;
  5886. font-weight:400;
  5887. font-style:normal;
  5888. font-size:14px;
  5889. color:#1E1E1E;
  5890. }
  5891. #u4090 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:1494px;
  5895. top:1415px;
  5896. width:49px;
  5897. height:30px;
  5898. display:flex;
  5899. font-family:'Microsoft YaHei', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:14px;
  5903. color:#1E1E1E;
  5904. }
  5905. #u4090 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:5px 10px 5px 10px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u4090_text {
  5913. border-width:0px;
  5914. white-space:nowrap;
  5915. text-transform:none;
  5916. }
  5917. #u4091 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:0px;
  5923. height:0px;
  5924. }
  5925. #u4092_div {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:33px;
  5931. height:24px;
  5932. background:inherit;
  5933. background-color:rgba(255, 255, 255, 1);
  5934. border:none;
  5935. border-radius:0px;
  5936. -moz-box-shadow:none;
  5937. -webkit-box-shadow:none;
  5938. box-shadow:none;
  5939. font-family:'Microsoft YaHei', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:14px;
  5943. color:#BCBCBC;
  5944. text-align:left;
  5945. }
  5946. #u4092 {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:1388px;
  5950. top:1418px;
  5951. width:33px;
  5952. height:24px;
  5953. display:flex;
  5954. font-family:'Microsoft YaHei', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:14px;
  5958. color:#BCBCBC;
  5959. text-align:left;
  5960. }
  5961. #u4092 .text {
  5962. position:absolute;
  5963. align-self:center;
  5964. padding:2px 2px 2px 2px;
  5965. box-sizing:border-box;
  5966. width:100%;
  5967. }
  5968. #u4092_text {
  5969. border-width:0px;
  5970. white-space:nowrap;
  5971. text-transform:none;
  5972. }
  5973. #u4093_div {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:40px;
  5979. height:30px;
  5980. background:inherit;
  5981. background-color:rgba(255, 255, 255, 1);
  5982. box-sizing:border-box;
  5983. border-width:1px;
  5984. border-style:solid;
  5985. border-color:rgba(228, 228, 228, 1);
  5986. border-radius:4px;
  5987. -moz-box-shadow:none;
  5988. -webkit-box-shadow:none;
  5989. box-shadow:none;
  5990. font-family:'Microsoft YaHei', sans-serif;
  5991. font-weight:400;
  5992. font-style:normal;
  5993. font-size:14px;
  5994. }
  5995. #u4093 {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:1423px;
  5999. top:1415px;
  6000. width:40px;
  6001. height:30px;
  6002. display:flex;
  6003. font-family:'Microsoft YaHei', sans-serif;
  6004. font-weight:400;
  6005. font-style:normal;
  6006. font-size:14px;
  6007. }
  6008. #u4093 .text {
  6009. position:absolute;
  6010. align-self:center;
  6011. padding:2px 2px 2px 2px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u4093_text {
  6016. border-width:0px;
  6017. word-wrap:break-word;
  6018. text-transform:none;
  6019. visibility:hidden;
  6020. }
  6021. #u4094_div {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:19px;
  6027. height:24px;
  6028. background:inherit;
  6029. background-color:rgba(255, 255, 255, 1);
  6030. border:none;
  6031. border-radius:0px;
  6032. -moz-box-shadow:none;
  6033. -webkit-box-shadow:none;
  6034. box-shadow:none;
  6035. font-family:'Microsoft YaHei', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:14px;
  6039. color:#BCBCBC;
  6040. text-align:left;
  6041. }
  6042. #u4094 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:1465px;
  6046. top:1419px;
  6047. width:19px;
  6048. height:24px;
  6049. display:flex;
  6050. font-family:'Microsoft YaHei', sans-serif;
  6051. font-weight:400;
  6052. font-style:normal;
  6053. font-size:14px;
  6054. color:#BCBCBC;
  6055. text-align:left;
  6056. }
  6057. #u4094 .text {
  6058. position:absolute;
  6059. align-self:center;
  6060. padding:2px 2px 2px 2px;
  6061. box-sizing:border-box;
  6062. width:100%;
  6063. }
  6064. #u4094_text {
  6065. border-width:0px;
  6066. white-space:nowrap;
  6067. text-transform:none;
  6068. }
  6069. #u4095_input {
  6070. position:absolute;
  6071. left:0px;
  6072. top:0px;
  6073. width:34px;
  6074. height:25px;
  6075. padding:2px 2px 2px 2px;
  6076. font-family:'Microsoft YaHei', sans-serif;
  6077. font-weight:400;
  6078. font-style:normal;
  6079. font-size:13px;
  6080. letter-spacing:normal;
  6081. color:#000000;
  6082. vertical-align:none;
  6083. text-align:left;
  6084. text-transform:none;
  6085. background-color:transparent;
  6086. border-color:transparent;
  6087. }
  6088. #u4095_input.disabled {
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:34px;
  6093. height:25px;
  6094. padding:2px 2px 2px 2px;
  6095. font-family:'Microsoft YaHei', sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:13px;
  6099. letter-spacing:normal;
  6100. color:#000000;
  6101. vertical-align:none;
  6102. text-align:left;
  6103. text-transform:none;
  6104. background-color:transparent;
  6105. border-color:transparent;
  6106. }
  6107. #u4095_div {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:0px;
  6111. top:0px;
  6112. width:34px;
  6113. height:25px;
  6114. background:inherit;
  6115. background-color:rgba(255, 255, 255, 1);
  6116. border:none;
  6117. border-radius:0px;
  6118. -moz-box-shadow:none;
  6119. -webkit-box-shadow:none;
  6120. box-shadow:none;
  6121. font-family:'Microsoft YaHei', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. }
  6125. #u4095 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:1426px;
  6129. top:1417px;
  6130. width:34px;
  6131. height:25px;
  6132. display:flex;
  6133. font-family:'Microsoft YaHei', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. }
  6137. #u4095 .text {
  6138. position:absolute;
  6139. align-self:center;
  6140. padding:2px 2px 2px 2px;
  6141. box-sizing:border-box;
  6142. width:100%;
  6143. }
  6144. #u4095_div.disabled {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:34px;
  6150. height:25px;
  6151. background:inherit;
  6152. background-color:rgba(240, 240, 240, 1);
  6153. border:none;
  6154. border-radius:0px;
  6155. -moz-box-shadow:none;
  6156. -webkit-box-shadow:none;
  6157. box-shadow:none;
  6158. font-family:'Microsoft YaHei', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. }
  6162. #u4095.disabled {
  6163. }
  6164. #u4096_div {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:0px;
  6169. width:30px;
  6170. height:30px;
  6171. background:inherit;
  6172. background-color:rgba(24, 144, 255, 1);
  6173. border:none;
  6174. border-radius:4px;
  6175. -moz-box-shadow:none;
  6176. -webkit-box-shadow:none;
  6177. box-shadow:none;
  6178. font-family:'Microsoft YaHei', sans-serif;
  6179. font-weight:400;
  6180. font-style:normal;
  6181. font-size:14px;
  6182. color:#FFFFFF;
  6183. }
  6184. #u4096 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:1138px;
  6188. top:1415px;
  6189. width:30px;
  6190. height:30px;
  6191. display:flex;
  6192. font-family:'Microsoft YaHei', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:14px;
  6196. color:#FFFFFF;
  6197. }
  6198. #u4096 .text {
  6199. position:absolute;
  6200. align-self:center;
  6201. padding:2px 2px 2px 2px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u4096_text {
  6206. border-width:0px;
  6207. word-wrap:break-word;
  6208. text-transform:none;
  6209. }
  6210. #u4097_div {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:30px;
  6216. height:30px;
  6217. background:inherit;
  6218. background-color:rgba(255, 255, 255, 1);
  6219. box-sizing:border-box;
  6220. border-width:1px;
  6221. border-style:solid;
  6222. border-color:rgba(228, 228, 228, 1);
  6223. border-radius:4px;
  6224. -moz-box-shadow:none;
  6225. -webkit-box-shadow:none;
  6226. box-shadow:none;
  6227. font-family:'Microsoft YaHei', sans-serif;
  6228. font-weight:400;
  6229. font-style:normal;
  6230. font-size:14px;
  6231. }
  6232. #u4097 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:1172px;
  6236. top:1415px;
  6237. width:30px;
  6238. height:30px;
  6239. display:flex;
  6240. font-family:'Microsoft YaHei', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:14px;
  6244. }
  6245. #u4097 .text {
  6246. position:absolute;
  6247. align-self:center;
  6248. padding:2px 2px 2px 2px;
  6249. box-sizing:border-box;
  6250. width:100%;
  6251. }
  6252. #u4097_text {
  6253. border-width:0px;
  6254. word-wrap:break-word;
  6255. text-transform:none;
  6256. }
  6257. #u4098_div {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:30px;
  6263. height:30px;
  6264. background:inherit;
  6265. background-color:rgba(255, 255, 255, 1);
  6266. box-sizing:border-box;
  6267. border-width:1px;
  6268. border-style:solid;
  6269. border-color:rgba(228, 228, 228, 1);
  6270. border-radius:4px;
  6271. -moz-box-shadow:none;
  6272. -webkit-box-shadow:none;
  6273. box-shadow:none;
  6274. font-family:'Microsoft YaHei', sans-serif;
  6275. font-weight:400;
  6276. font-style:normal;
  6277. font-size:14px;
  6278. }
  6279. #u4098 {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:1206px;
  6283. top:1415px;
  6284. width:30px;
  6285. height:30px;
  6286. display:flex;
  6287. font-family:'Microsoft YaHei', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:14px;
  6291. }
  6292. #u4098 .text {
  6293. position:absolute;
  6294. align-self:center;
  6295. padding:2px 2px 2px 2px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u4098_text {
  6300. border-width:0px;
  6301. word-wrap:break-word;
  6302. text-transform:none;
  6303. }
  6304. #u4099_div {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:30px;
  6310. height:30px;
  6311. background:inherit;
  6312. background-color:rgba(255, 255, 255, 1);
  6313. border:none;
  6314. border-radius:4px;
  6315. -moz-box-shadow:none;
  6316. -webkit-box-shadow:none;
  6317. box-shadow:none;
  6318. font-family:'Microsoft YaHei', sans-serif;
  6319. font-weight:400;
  6320. font-style:normal;
  6321. font-size:14px;
  6322. }
  6323. #u4099 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:1236px;
  6327. top:1415px;
  6328. width:30px;
  6329. height:30px;
  6330. display:flex;
  6331. font-family:'Microsoft YaHei', sans-serif;
  6332. font-weight:400;
  6333. font-style:normal;
  6334. font-size:14px;
  6335. }
  6336. #u4099 .text {
  6337. position:absolute;
  6338. align-self:center;
  6339. padding:2px 2px 2px 2px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u4099_text {
  6344. border-width:0px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. }
  6348. #u4100_div {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:30px;
  6354. height:30px;
  6355. background:inherit;
  6356. background-color:rgba(255, 255, 255, 1);
  6357. box-sizing:border-box;
  6358. border-width:1px;
  6359. border-style:solid;
  6360. border-color:rgba(228, 228, 228, 1);
  6361. border-radius:4px;
  6362. -moz-box-shadow:none;
  6363. -webkit-box-shadow:none;
  6364. box-shadow:none;
  6365. font-family:'Microsoft YaHei', sans-serif;
  6366. font-weight:400;
  6367. font-style:normal;
  6368. font-size:14px;
  6369. }
  6370. #u4100 {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:1270px;
  6374. top:1415px;
  6375. width:30px;
  6376. height:30px;
  6377. display:flex;
  6378. font-family:'Microsoft YaHei', sans-serif;
  6379. font-weight:400;
  6380. font-style:normal;
  6381. font-size:14px;
  6382. }
  6383. #u4100 .text {
  6384. position:absolute;
  6385. align-self:center;
  6386. padding:2px 2px 2px 2px;
  6387. box-sizing:border-box;
  6388. width:100%;
  6389. }
  6390. #u4100_text {
  6391. border-width:0px;
  6392. word-wrap:break-word;
  6393. text-transform:none;
  6394. }
  6395. #u4101_div {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:0px;
  6399. top:0px;
  6400. width:32px;
  6401. height:21px;
  6402. background:inherit;
  6403. background-color:rgba(255, 255, 255, 1);
  6404. border:none;
  6405. border-radius:15px;
  6406. -moz-box-shadow:none;
  6407. -webkit-box-shadow:none;
  6408. box-shadow:none;
  6409. font-family:'Microsoft YaHei', sans-serif;
  6410. font-weight:400;
  6411. font-style:normal;
  6412. font-size:14px;
  6413. color:#1E1E1E;
  6414. }
  6415. #u4101 {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:1344px;
  6419. top:1420px;
  6420. width:32px;
  6421. height:21px;
  6422. display:flex;
  6423. font-family:'Microsoft YaHei', sans-serif;
  6424. font-weight:400;
  6425. font-style:normal;
  6426. font-size:14px;
  6427. color:#1E1E1E;
  6428. }
  6429. #u4101 .text {
  6430. position:absolute;
  6431. align-self:center;
  6432. padding:2px 2px 2px 2px;
  6433. box-sizing:border-box;
  6434. width:100%;
  6435. }
  6436. #u4101_text {
  6437. border-width:0px;
  6438. white-space:nowrap;
  6439. text-transform:none;
  6440. }
  6441. #u4102 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:0px;
  6445. top:0px;
  6446. width:0px;
  6447. height:0px;
  6448. }
  6449. #u4103_div {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:31px;
  6455. height:30px;
  6456. background:inherit;
  6457. background-color:rgba(255, 255, 255, 1);
  6458. box-sizing:border-box;
  6459. border-width:1px;
  6460. border-style:solid;
  6461. border-color:rgba(228, 228, 228, 1);
  6462. border-radius:4px;
  6463. -moz-box-shadow:none;
  6464. -webkit-box-shadow:none;
  6465. box-shadow:none;
  6466. font-family:'Microsoft YaHei', sans-serif;
  6467. font-weight:400;
  6468. font-style:normal;
  6469. font-size:12px;
  6470. }
  6471. #u4103 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:1069px;
  6475. top:1415px;
  6476. width:31px;
  6477. height:30px;
  6478. display:flex;
  6479. font-family:'Microsoft YaHei', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. font-size:12px;
  6483. }
  6484. #u4103 .text {
  6485. position:absolute;
  6486. align-self:center;
  6487. padding:2px 2px 2px 2px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u4103_text {
  6492. border-width:0px;
  6493. word-wrap:break-word;
  6494. text-transform:none;
  6495. visibility:hidden;
  6496. }
  6497. #u4104_img {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:0px;
  6501. top:0px;
  6502. width:8px;
  6503. height:14px;
  6504. }
  6505. #u4104 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:1081px;
  6509. top:1423px;
  6510. width:8px;
  6511. height:14px;
  6512. display:flex;
  6513. font-family:'Microsoft YaHei', sans-serif;
  6514. font-weight:400;
  6515. font-style:normal;
  6516. font-size:12px;
  6517. }
  6518. #u4104 .text {
  6519. position:absolute;
  6520. align-self:center;
  6521. padding:2px 2px 2px 2px;
  6522. box-sizing:border-box;
  6523. width:100%;
  6524. }
  6525. #u4104_text {
  6526. border-width:0px;
  6527. word-wrap:break-word;
  6528. text-transform:none;
  6529. visibility:hidden;
  6530. }
  6531. #u4105 {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:0px;
  6537. height:0px;
  6538. }
  6539. #u4106_div {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:0px;
  6544. width:31px;
  6545. height:30px;
  6546. background:inherit;
  6547. background-color:rgba(255, 255, 255, 1);
  6548. box-sizing:border-box;
  6549. border-width:1px;
  6550. border-style:solid;
  6551. border-color:rgba(228, 228, 228, 1);
  6552. border-radius:4px;
  6553. -moz-box-shadow:none;
  6554. -webkit-box-shadow:none;
  6555. box-shadow:none;
  6556. font-family:'Microsoft YaHei', sans-serif;
  6557. font-weight:400;
  6558. font-style:normal;
  6559. font-size:12px;
  6560. }
  6561. #u4106 {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:1303px;
  6565. top:1415px;
  6566. width:31px;
  6567. height:30px;
  6568. display:flex;
  6569. font-family:'Microsoft YaHei', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:12px;
  6573. }
  6574. #u4106 .text {
  6575. position:absolute;
  6576. align-self:center;
  6577. padding:2px 2px 2px 2px;
  6578. box-sizing:border-box;
  6579. width:100%;
  6580. }
  6581. #u4106_text {
  6582. border-width:0px;
  6583. word-wrap:break-word;
  6584. text-transform:none;
  6585. visibility:hidden;
  6586. }
  6587. #u4107_img {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:0px;
  6591. top:0px;
  6592. width:8px;
  6593. height:14px;
  6594. }
  6595. #u4107 {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:1316px;
  6599. top:1423px;
  6600. width:8px;
  6601. height:14px;
  6602. display:flex;
  6603. font-family:'Microsoft YaHei', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:12px;
  6607. }
  6608. #u4107 .text {
  6609. position:absolute;
  6610. align-self:center;
  6611. padding:2px 2px 2px 2px;
  6612. box-sizing:border-box;
  6613. width:100%;
  6614. }
  6615. #u4107_text {
  6616. border-width:0px;
  6617. word-wrap:break-word;
  6618. text-transform:none;
  6619. visibility:hidden;
  6620. }
  6621. #u4108_img {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:0px;
  6625. top:0px;
  6626. width:1225px;
  6627. height:402px;
  6628. }
  6629. #u4108 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:346px;
  6633. top:717px;
  6634. width:1225px;
  6635. height:402px;
  6636. display:flex;
  6637. }
  6638. #u4108 .text {
  6639. position:absolute;
  6640. align-self:center;
  6641. padding:2px 2px 2px 2px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u4108_text {
  6646. border-width:0px;
  6647. word-wrap:break-word;
  6648. text-transform:none;
  6649. visibility:hidden;
  6650. }
  6651. #u4109_div {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:60px;
  6657. height:30px;
  6658. background:inherit;
  6659. background-color:rgba(24, 144, 255, 1);
  6660. border:none;
  6661. border-radius:4px;
  6662. -moz-box-shadow:none;
  6663. -webkit-box-shadow:none;
  6664. box-shadow:none;
  6665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. font-size:14px;
  6669. color:#FFFFFF;
  6670. }
  6671. #u4109 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:1483px;
  6675. top:1144px;
  6676. width:60px;
  6677. height:30px;
  6678. display:flex;
  6679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. font-size:14px;
  6683. color:#FFFFFF;
  6684. }
  6685. #u4109 .text {
  6686. position:absolute;
  6687. align-self:center;
  6688. padding:2px 2px 2px 2px;
  6689. box-sizing:border-box;
  6690. width:100%;
  6691. }
  6692. #u4109_text {
  6693. border-width:0px;
  6694. word-wrap:break-word;
  6695. text-transform:none;
  6696. }
  6697. #u4110_img {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:1222px;
  6703. height:446px;
  6704. }
  6705. #u4110 {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:350px;
  6709. top:261px;
  6710. width:1222px;
  6711. height:446px;
  6712. display:flex;
  6713. }
  6714. #u4110 .text {
  6715. position:absolute;
  6716. align-self:center;
  6717. padding:2px 2px 2px 2px;
  6718. box-sizing:border-box;
  6719. width:100%;
  6720. }
  6721. #u4110_text {
  6722. border-width:0px;
  6723. word-wrap:break-word;
  6724. text-transform:none;
  6725. visibility:hidden;
  6726. }
  6727. #u4111 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:0px;
  6731. top:0px;
  6732. width:0px;
  6733. height:0px;
  6734. }
  6735. #u4112_div {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:200px;
  6741. height:1180px;
  6742. background:inherit;
  6743. background-color:rgba(255, 255, 255, 1);
  6744. border:none;
  6745. border-radius:0px;
  6746. -moz-box-shadow:none;
  6747. -webkit-box-shadow:none;
  6748. box-shadow:none;
  6749. }
  6750. #u4112 {
  6751. border-width:0px;
  6752. position:absolute;
  6753. left:119px;
  6754. top:50px;
  6755. width:200px;
  6756. height:1180px;
  6757. display:flex;
  6758. }
  6759. #u4112 .text {
  6760. position:absolute;
  6761. align-self:center;
  6762. padding:2px 2px 2px 2px;
  6763. box-sizing:border-box;
  6764. width:100%;
  6765. }
  6766. #u4112_text {
  6767. border-width:0px;
  6768. word-wrap:break-word;
  6769. text-transform:none;
  6770. visibility:hidden;
  6771. }
  6772. #u4113_div {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:200px;
  6778. height:60px;
  6779. background:inherit;
  6780. background-color:rgba(224, 231, 247, 1);
  6781. border:none;
  6782. border-radius:0px;
  6783. -moz-box-shadow:none;
  6784. -webkit-box-shadow:none;
  6785. box-shadow:none;
  6786. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6787. font-weight:500;
  6788. font-style:normal;
  6789. font-size:18px;
  6790. }
  6791. #u4113 {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:119px;
  6795. top:50px;
  6796. width:200px;
  6797. height:60px;
  6798. display:flex;
  6799. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6800. font-weight:500;
  6801. font-style:normal;
  6802. font-size:18px;
  6803. }
  6804. #u4113 .text {
  6805. position:absolute;
  6806. align-self:center;
  6807. padding:0px 0px 0px 20px;
  6808. box-sizing:border-box;
  6809. width:100%;
  6810. }
  6811. #u4113_text {
  6812. border-width:0px;
  6813. word-wrap:break-word;
  6814. text-transform:none;
  6815. }
  6816. #u4114_div {
  6817. border-width:0px;
  6818. position:absolute;
  6819. left:0px;
  6820. top:0px;
  6821. width:65px;
  6822. height:22px;
  6823. background:inherit;
  6824. background-color:rgba(255, 255, 255, 0);
  6825. border:none;
  6826. border-radius:0px;
  6827. -moz-box-shadow:none;
  6828. -webkit-box-shadow:none;
  6829. box-shadow:none;
  6830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6831. font-weight:400;
  6832. font-style:normal;
  6833. font-size:16px;
  6834. }
  6835. #u4114 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:146px;
  6839. top:165px;
  6840. width:65px;
  6841. height:22px;
  6842. display:flex;
  6843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6844. font-weight:400;
  6845. font-style:normal;
  6846. font-size:16px;
  6847. }
  6848. #u4114 .text {
  6849. position:absolute;
  6850. align-self:flex-start;
  6851. padding:0px 0px 0px 0px;
  6852. box-sizing:border-box;
  6853. width:100%;
  6854. }
  6855. #u4114_text {
  6856. border-width:0px;
  6857. white-space:nowrap;
  6858. text-transform:none;
  6859. }
  6860. #u4115_div {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:0px;
  6864. top:0px;
  6865. width:65px;
  6866. height:22px;
  6867. background:inherit;
  6868. background-color:rgba(255, 255, 255, 0);
  6869. border:none;
  6870. border-radius:0px;
  6871. -moz-box-shadow:none;
  6872. -webkit-box-shadow:none;
  6873. box-shadow:none;
  6874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6875. font-weight:400;
  6876. font-style:normal;
  6877. font-size:16px;
  6878. }
  6879. #u4115 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:146px;
  6883. top:207px;
  6884. width:65px;
  6885. height:22px;
  6886. display:flex;
  6887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6888. font-weight:400;
  6889. font-style:normal;
  6890. font-size:16px;
  6891. }
  6892. #u4115 .text {
  6893. position:absolute;
  6894. align-self:flex-start;
  6895. padding:0px 0px 0px 0px;
  6896. box-sizing:border-box;
  6897. width:100%;
  6898. }
  6899. #u4115_text {
  6900. border-width:0px;
  6901. white-space:nowrap;
  6902. text-transform:none;
  6903. }
  6904. #u4116_div {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:0px;
  6908. top:0px;
  6909. width:49px;
  6910. height:17px;
  6911. background:inherit;
  6912. background-color:rgba(255, 255, 255, 0);
  6913. border:none;
  6914. border-radius:0px;
  6915. -moz-box-shadow:none;
  6916. -webkit-box-shadow:none;
  6917. box-shadow:none;
  6918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6919. font-weight:400;
  6920. font-style:normal;
  6921. font-size:12px;
  6922. color:#AAAAAA;
  6923. }
  6924. #u4116 {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:146px;
  6928. top:129px;
  6929. width:49px;
  6930. height:17px;
  6931. display:flex;
  6932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6933. font-weight:400;
  6934. font-style:normal;
  6935. font-size:12px;
  6936. color:#AAAAAA;
  6937. }
  6938. #u4116 .text {
  6939. position:absolute;
  6940. align-self:flex-start;
  6941. padding:0px 0px 0px 0px;
  6942. box-sizing:border-box;
  6943. width:100%;
  6944. }
  6945. #u4116_text {
  6946. border-width:0px;
  6947. white-space:nowrap;
  6948. text-transform:none;
  6949. }
  6950. #u4117_div {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:0px;
  6954. top:0px;
  6955. width:65px;
  6956. height:22px;
  6957. background:inherit;
  6958. background-color:rgba(255, 255, 255, 0);
  6959. border:none;
  6960. border-radius:0px;
  6961. -moz-box-shadow:none;
  6962. -webkit-box-shadow:none;
  6963. box-shadow:none;
  6964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:16px;
  6968. }
  6969. #u4117 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:146px;
  6973. top:307px;
  6974. width:65px;
  6975. height:22px;
  6976. display:flex;
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:16px;
  6981. }
  6982. #u4117 .text {
  6983. position:absolute;
  6984. align-self:flex-start;
  6985. padding:0px 0px 0px 0px;
  6986. box-sizing:border-box;
  6987. width:100%;
  6988. }
  6989. #u4117_text {
  6990. border-width:0px;
  6991. white-space:nowrap;
  6992. text-transform:none;
  6993. }
  6994. #u4118_div {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:0px;
  6998. top:0px;
  6999. width:49px;
  7000. height:17px;
  7001. background:inherit;
  7002. background-color:rgba(255, 255, 255, 0);
  7003. border:none;
  7004. border-radius:0px;
  7005. -moz-box-shadow:none;
  7006. -webkit-box-shadow:none;
  7007. box-shadow:none;
  7008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7009. font-weight:400;
  7010. font-style:normal;
  7011. font-size:12px;
  7012. color:#AAAAAA;
  7013. }
  7014. #u4118 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:146px;
  7018. top:271px;
  7019. width:49px;
  7020. height:17px;
  7021. display:flex;
  7022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:12px;
  7026. color:#AAAAAA;
  7027. }
  7028. #u4118 .text {
  7029. position:absolute;
  7030. align-self:flex-start;
  7031. padding:0px 0px 0px 0px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u4118_text {
  7036. border-width:0px;
  7037. white-space:nowrap;
  7038. text-transform:none;
  7039. }
  7040. #u4119_img {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:201px;
  7046. height:2px;
  7047. }
  7048. #u4119 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:119px;
  7052. top:249px;
  7053. width:200px;
  7054. height:1px;
  7055. display:flex;
  7056. }
  7057. #u4119 .text {
  7058. position:absolute;
  7059. align-self:center;
  7060. padding:2px 2px 2px 2px;
  7061. box-sizing:border-box;
  7062. width:100%;
  7063. }
  7064. #u4119_text {
  7065. border-width:0px;
  7066. word-wrap:break-word;
  7067. text-transform:none;
  7068. visibility:hidden;
  7069. }