styles.css 134 KB

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