styles.css 136 KB

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