styles.css 144 KB

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