styles.css 111 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2661px;
  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. #u32266_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. #u32266 {
  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. #u32266 .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. #u32266_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u32267_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. #u32267 {
  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. #u32267 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u32267_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u32268 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u32269_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u32269 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u32269 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u32269_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u32270_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. #u32270 {
  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. #u32270 .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. #u32270_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u32271_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. #u32271 {
  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. #u32271 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u32271_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u32272_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. #u32272 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u32272 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u32272_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u32273 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u32274_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. #u32274 {
  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. #u32274 .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. #u32274_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u32275_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u32275 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u32275 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u32275_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u32276 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u32277_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. #u32277 {
  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. #u32277 .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. #u32277_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u32278_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u32278 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u32278 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u32278_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u32279 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u32280_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. #u32280 {
  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. #u32280 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u32280_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u32281_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u32281 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u32281 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u32281_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u32282 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u32283_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. #u32283 {
  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. #u32283 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u32283_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u32284_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u32284 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u32284 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u32284_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u32285 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u32286_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. #u32286 {
  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. #u32286 .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. #u32286_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u32287_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u32287 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u32287 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u32287_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u32288 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u32289_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. #u32289 {
  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. #u32289 .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. #u32289_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u32290_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u32290 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u32290 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u32290_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u32291 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u32292_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. #u32292 {
  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. #u32292 .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. #u32292_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u32293_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u32293 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u32293 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u32293_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u32294 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u32295_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. #u32295 {
  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. #u32295 .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. #u32295_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u32296_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u32296 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u32296 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u32296_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u32297 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u32298_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. #u32298 {
  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. #u32298 .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. #u32298_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u32299_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u32299 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u32299 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u32299_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u32300_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. #u32300_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. #u32300_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. #u32300 {
  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. #u32300 .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. #u32300_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. #u32300.disabled {
  1100. }
  1101. .u32300_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u32301_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u32301 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u32301 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u32301_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u32302_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. #u32302 {
  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. #u32302 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u32302_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u32303_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u32303 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u32303 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u32303_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u32304 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u32305_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. #u32305 {
  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. #u32305 .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. #u32305_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u32306_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u32306 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u32306 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u32306_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u32307 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u32308_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. #u32308 {
  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. #u32308 .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. #u32308_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u32309_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u32309 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u32309 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u32309_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u32310 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u32311_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. #u32311 {
  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. #u32311 .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. #u32311_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u32312_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u32312 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u32312 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u32312_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u32313 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u32314_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. #u32314 {
  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. #u32314 .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. #u32314_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u32315_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u32315 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u32315 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u32315_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u32316 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u32317_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. #u32317 {
  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. #u32317 .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. #u32317_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u32318_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u32318 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u32318 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u32318_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u32319_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. #u32319 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:330px;
  1649. top:50px;
  1650. width:1260px;
  1651. height:1198px;
  1652. display:flex;
  1653. }
  1654. #u32319 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u32319_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u32320_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:73px;
  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. #u32320 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:350px;
  1690. top:70px;
  1691. width:73px;
  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. #u32320 .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. #u32320_text {
  1707. border-width:0px;
  1708. white-space:nowrap;
  1709. text-transform:none;
  1710. }
  1711. #u32321_div {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:591px;
  1717. height:387px;
  1718. background:inherit;
  1719. background-color:rgba(255, 255, 255, 0);
  1720. box-sizing:border-box;
  1721. border-width:1px;
  1722. border-style:solid;
  1723. border-color:rgba(242, 242, 242, 1);
  1724. border-radius:0px;
  1725. -moz-box-shadow:none;
  1726. -webkit-box-shadow:none;
  1727. box-shadow:none;
  1728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. font-size:14px;
  1732. }
  1733. #u32321 {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:371px;
  1737. top:120px;
  1738. width:591px;
  1739. height:387px;
  1740. display:flex;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:14px;
  1745. }
  1746. #u32321 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:5px 10px 5px 0px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u32321_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u32322_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:200px;
  1765. height:60px;
  1766. background:inherit;
  1767. background-color:rgba(224, 231, 247, 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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1774. font-weight:500;
  1775. font-style:normal;
  1776. font-size:18px;
  1777. }
  1778. #u32322 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:371px;
  1782. top:120px;
  1783. width:200px;
  1784. height:60px;
  1785. display:flex;
  1786. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1787. font-weight:500;
  1788. font-style:normal;
  1789. font-size:18px;
  1790. }
  1791. #u32322 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:0px 0px 0px 20px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u32322_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. }
  1803. #u32323_div {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:116px;
  1809. height:30px;
  1810. background:inherit;
  1811. background-color:rgba(24, 144, 255, 1);
  1812. border:none;
  1813. border-radius:4px;
  1814. -moz-box-shadow:none;
  1815. -webkit-box-shadow:none;
  1816. box-shadow:none;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:14px;
  1821. color:#FFFFFF;
  1822. }
  1823. #u32323 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:826px;
  1827. top:140px;
  1828. width:116px;
  1829. height:30px;
  1830. display:flex;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:14px;
  1835. color:#FFFFFF;
  1836. }
  1837. #u32323 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 2px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u32323_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. }
  1849. #u32324 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:391px;
  1853. top:180px;
  1854. width:558px;
  1855. height:192px;
  1856. }
  1857. #u32325_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:180px;
  1863. height:30px;
  1864. }
  1865. #u32325 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:180px;
  1871. height:30px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. color:#FFFFFF;
  1877. }
  1878. #u32325 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 2px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u32325_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. }
  1890. #u32326_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:138px;
  1896. height:30px;
  1897. }
  1898. #u32326 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:180px;
  1902. top:0px;
  1903. width:138px;
  1904. height:30px;
  1905. display:flex;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. color:#FFFFFF;
  1910. }
  1911. #u32326 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u32326_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. }
  1923. #u32327_img {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:120px;
  1929. height:30px;
  1930. }
  1931. #u32327 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:318px;
  1935. top:0px;
  1936. width:120px;
  1937. height:30px;
  1938. display:flex;
  1939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1940. font-weight:400;
  1941. font-style:normal;
  1942. color:#FFFFFF;
  1943. }
  1944. #u32327 .text {
  1945. position:absolute;
  1946. align-self:center;
  1947. padding:2px 2px 2px 2px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u32327_text {
  1952. border-width:0px;
  1953. word-wrap:break-word;
  1954. text-transform:none;
  1955. }
  1956. #u32328_img {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:0px;
  1960. top:0px;
  1961. width:120px;
  1962. height:30px;
  1963. }
  1964. #u32328 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:438px;
  1968. top:0px;
  1969. width:120px;
  1970. height:30px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1973. font-weight:400;
  1974. font-style:normal;
  1975. color:#FFFFFF;
  1976. }
  1977. #u32328 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 2px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u32328_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. }
  1989. #u32329_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:180px;
  1995. height:34px;
  1996. }
  1997. #u32329 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:30px;
  2002. width:180px;
  2003. height:34px;
  2004. display:flex;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. line-height:30px;
  2009. }
  2010. #u32329 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:2px 2px 2px 2px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u32329_text {
  2018. border-width:0px;
  2019. word-wrap:break-word;
  2020. text-transform:none;
  2021. }
  2022. #u32330_img {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:138px;
  2028. height:34px;
  2029. }
  2030. #u32330 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:180px;
  2034. top:30px;
  2035. width:138px;
  2036. height:34px;
  2037. display:flex;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. }
  2042. #u32330 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 2px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u32330_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. visibility:hidden;
  2054. }
  2055. #u32331_img {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:120px;
  2061. height:34px;
  2062. }
  2063. #u32331 {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:318px;
  2067. top:30px;
  2068. width:120px;
  2069. height:34px;
  2070. display:flex;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. }
  2075. #u32331 .text {
  2076. position:absolute;
  2077. align-self:center;
  2078. padding:2px 2px 2px 2px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u32331_text {
  2083. border-width:0px;
  2084. word-wrap:break-word;
  2085. text-transform:none;
  2086. visibility:hidden;
  2087. }
  2088. #u32332_img {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:120px;
  2094. height:34px;
  2095. }
  2096. #u32332 {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:438px;
  2100. top:30px;
  2101. width:120px;
  2102. height:34px;
  2103. display:flex;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. color:#1890FF;
  2108. }
  2109. #u32332 .text {
  2110. position:absolute;
  2111. align-self:center;
  2112. padding:2px 2px 2px 2px;
  2113. box-sizing:border-box;
  2114. width:100%;
  2115. }
  2116. #u32332_text {
  2117. border-width:0px;
  2118. word-wrap:break-word;
  2119. text-transform:none;
  2120. }
  2121. #u32333_img {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:180px;
  2127. height:34px;
  2128. }
  2129. #u32333 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:64px;
  2134. width:180px;
  2135. height:34px;
  2136. display:flex;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. line-height:30px;
  2141. }
  2142. #u32333 .text {
  2143. position:absolute;
  2144. align-self:center;
  2145. padding:2px 2px 2px 2px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u32333_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. }
  2154. #u32334_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:138px;
  2160. height:34px;
  2161. }
  2162. #u32334 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:180px;
  2166. top:64px;
  2167. width:138px;
  2168. height:34px;
  2169. display:flex;
  2170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2171. font-weight:400;
  2172. font-style:normal;
  2173. }
  2174. #u32334 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:2px 2px 2px 2px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u32334_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. visibility:hidden;
  2186. }
  2187. #u32335_img {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:120px;
  2193. height:34px;
  2194. }
  2195. #u32335 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:318px;
  2199. top:64px;
  2200. width:120px;
  2201. height:34px;
  2202. display:flex;
  2203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2204. font-weight:400;
  2205. font-style:normal;
  2206. }
  2207. #u32335 .text {
  2208. position:absolute;
  2209. align-self:center;
  2210. padding:2px 2px 2px 2px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u32335_text {
  2215. border-width:0px;
  2216. word-wrap:break-word;
  2217. text-transform:none;
  2218. visibility:hidden;
  2219. }
  2220. #u32336_img {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:120px;
  2226. height:34px;
  2227. }
  2228. #u32336 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:438px;
  2232. top:64px;
  2233. width:120px;
  2234. height:34px;
  2235. display:flex;
  2236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2237. font-weight:400;
  2238. font-style:normal;
  2239. color:#1890FF;
  2240. }
  2241. #u32336 .text {
  2242. position:absolute;
  2243. align-self:center;
  2244. padding:2px 2px 2px 2px;
  2245. box-sizing:border-box;
  2246. width:100%;
  2247. }
  2248. #u32336_text {
  2249. border-width:0px;
  2250. word-wrap:break-word;
  2251. text-transform:none;
  2252. }
  2253. #u32337_img {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:0px;
  2257. top:0px;
  2258. width:180px;
  2259. height:34px;
  2260. }
  2261. #u32337 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:98px;
  2266. width:180px;
  2267. height:34px;
  2268. display:flex;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. line-height:30px;
  2273. }
  2274. #u32337 .text {
  2275. position:absolute;
  2276. align-self:center;
  2277. padding:2px 2px 2px 2px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u32337_text {
  2282. border-width:0px;
  2283. word-wrap:break-word;
  2284. text-transform:none;
  2285. }
  2286. #u32338_img {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:138px;
  2292. height:34px;
  2293. }
  2294. #u32338 {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:180px;
  2298. top:98px;
  2299. width:138px;
  2300. height:34px;
  2301. display:flex;
  2302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2303. font-weight:400;
  2304. font-style:normal;
  2305. }
  2306. #u32338 .text {
  2307. position:absolute;
  2308. align-self:center;
  2309. padding:2px 2px 2px 2px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u32338_text {
  2314. border-width:0px;
  2315. word-wrap:break-word;
  2316. text-transform:none;
  2317. visibility:hidden;
  2318. }
  2319. #u32339_img {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:120px;
  2325. height:34px;
  2326. }
  2327. #u32339 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:318px;
  2331. top:98px;
  2332. width:120px;
  2333. height:34px;
  2334. display:flex;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. }
  2339. #u32339 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 2px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u32339_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. visibility:hidden;
  2351. }
  2352. #u32340_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:120px;
  2358. height:34px;
  2359. }
  2360. #u32340 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:438px;
  2364. top:98px;
  2365. width:120px;
  2366. height:34px;
  2367. display:flex;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. color:#0099FF;
  2372. }
  2373. #u32340 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 2px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u32340_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. }
  2385. #u32341_img {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:180px;
  2391. height:30px;
  2392. }
  2393. #u32341 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:132px;
  2398. width:180px;
  2399. height:30px;
  2400. display:flex;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. line-height:30px;
  2405. }
  2406. #u32341 .text {
  2407. position:absolute;
  2408. align-self:center;
  2409. padding:2px 2px 2px 2px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u32341_text {
  2414. border-width:0px;
  2415. word-wrap:break-word;
  2416. text-transform:none;
  2417. visibility:hidden;
  2418. }
  2419. #u32342_img {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:138px;
  2425. height:30px;
  2426. }
  2427. #u32342 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:180px;
  2431. top:132px;
  2432. width:138px;
  2433. height:30px;
  2434. display:flex;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. }
  2439. #u32342 .text {
  2440. position:absolute;
  2441. align-self:center;
  2442. padding:2px 2px 2px 2px;
  2443. box-sizing:border-box;
  2444. width:100%;
  2445. }
  2446. #u32342_text {
  2447. border-width:0px;
  2448. word-wrap:break-word;
  2449. text-transform:none;
  2450. visibility:hidden;
  2451. }
  2452. #u32343_img {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:120px;
  2458. height:30px;
  2459. }
  2460. #u32343 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:318px;
  2464. top:132px;
  2465. width:120px;
  2466. height:30px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. }
  2472. #u32343 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 2px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u32343_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. visibility:hidden;
  2484. }
  2485. #u32344_img {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:120px;
  2491. height:30px;
  2492. }
  2493. #u32344 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:438px;
  2497. top:132px;
  2498. width:120px;
  2499. height:30px;
  2500. display:flex;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. }
  2505. #u32344 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 2px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u32344_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. visibility:hidden;
  2517. }
  2518. #u32345_img {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:180px;
  2524. height:30px;
  2525. }
  2526. #u32345 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:162px;
  2531. width:180px;
  2532. height:30px;
  2533. display:flex;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. line-height:30px;
  2538. }
  2539. #u32345 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 2px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u32345_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. visibility:hidden;
  2551. }
  2552. #u32346_img {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:138px;
  2558. height:30px;
  2559. }
  2560. #u32346 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:180px;
  2564. top:162px;
  2565. width:138px;
  2566. height:30px;
  2567. display:flex;
  2568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. }
  2572. #u32346 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 2px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u32346_text {
  2580. border-width:0px;
  2581. word-wrap:break-word;
  2582. text-transform:none;
  2583. visibility:hidden;
  2584. }
  2585. #u32347_img {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:120px;
  2591. height:30px;
  2592. }
  2593. #u32347 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:318px;
  2597. top:162px;
  2598. width:120px;
  2599. height:30px;
  2600. display:flex;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. }
  2605. #u32347 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 2px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u32347_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. visibility:hidden;
  2617. }
  2618. #u32348_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:120px;
  2624. height:30px;
  2625. }
  2626. #u32348 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:438px;
  2630. top:162px;
  2631. width:120px;
  2632. height:30px;
  2633. display:flex;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. }
  2638. #u32348 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 2px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u32348_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u32349_div {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:591px;
  2657. height:387px;
  2658. background:inherit;
  2659. background-color:rgba(255, 255, 255, 0);
  2660. box-sizing:border-box;
  2661. border-width:1px;
  2662. border-style:solid;
  2663. border-color:rgba(242, 242, 242, 1);
  2664. border-radius:0px;
  2665. -moz-box-shadow:none;
  2666. -webkit-box-shadow:none;
  2667. box-shadow:none;
  2668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:14px;
  2672. }
  2673. #u32349 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:982px;
  2677. top:120px;
  2678. width:591px;
  2679. height:387px;
  2680. display:flex;
  2681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:14px;
  2685. }
  2686. #u32349 .text {
  2687. position:absolute;
  2688. align-self:center;
  2689. padding:5px 10px 5px 0px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u32349_text {
  2694. border-width:0px;
  2695. word-wrap:break-word;
  2696. text-transform:none;
  2697. visibility:hidden;
  2698. }
  2699. #u32350_div {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:200px;
  2705. height:60px;
  2706. background:inherit;
  2707. background-color:rgba(224, 231, 247, 0);
  2708. border:none;
  2709. border-radius:0px;
  2710. -moz-box-shadow:none;
  2711. -webkit-box-shadow:none;
  2712. box-shadow:none;
  2713. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2714. font-weight:500;
  2715. font-style:normal;
  2716. font-size:18px;
  2717. }
  2718. #u32350 {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:982px;
  2722. top:120px;
  2723. width:200px;
  2724. height:60px;
  2725. display:flex;
  2726. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2727. font-weight:500;
  2728. font-style:normal;
  2729. font-size:18px;
  2730. }
  2731. #u32350 .text {
  2732. position:absolute;
  2733. align-self:center;
  2734. padding:0px 0px 0px 20px;
  2735. box-sizing:border-box;
  2736. width:100%;
  2737. }
  2738. #u32350_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. }
  2743. #u32351_div {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:151px;
  2749. height:30px;
  2750. background:inherit;
  2751. background-color:rgba(24, 144, 255, 1);
  2752. border:none;
  2753. border-radius:4px;
  2754. -moz-box-shadow:none;
  2755. -webkit-box-shadow:none;
  2756. box-shadow:none;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:14px;
  2761. color:#FFFFFF;
  2762. }
  2763. #u32351 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:1402px;
  2767. top:140px;
  2768. width:151px;
  2769. height:30px;
  2770. display:flex;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:14px;
  2775. color:#FFFFFF;
  2776. }
  2777. #u32351 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u32351_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u32352 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:1002px;
  2793. top:180px;
  2794. width:551px;
  2795. height:30px;
  2796. }
  2797. #u32353_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:138px;
  2803. height:30px;
  2804. }
  2805. #u32353 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:138px;
  2811. height:30px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. color:#FFFFFF;
  2817. }
  2818. #u32353 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 2px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u32353_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. }
  2830. #u32354_img {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:138px;
  2836. height:30px;
  2837. }
  2838. #u32354 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:138px;
  2842. top:0px;
  2843. width:138px;
  2844. height:30px;
  2845. display:flex;
  2846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2847. font-weight:400;
  2848. font-style:normal;
  2849. color:#FFFFFF;
  2850. }
  2851. #u32354 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 2px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u32354_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. }
  2863. #u32355_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:138px;
  2869. height:30px;
  2870. }
  2871. #u32355 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:276px;
  2875. top:0px;
  2876. width:138px;
  2877. height:30px;
  2878. display:flex;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. color:#FFFFFF;
  2883. }
  2884. #u32355 .text {
  2885. position:absolute;
  2886. align-self:center;
  2887. padding:2px 2px 2px 2px;
  2888. box-sizing:border-box;
  2889. width:100%;
  2890. }
  2891. #u32355_text {
  2892. border-width:0px;
  2893. word-wrap:break-word;
  2894. text-transform:none;
  2895. }
  2896. #u32356_img {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:137px;
  2902. height:30px;
  2903. }
  2904. #u32356 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:414px;
  2908. top:0px;
  2909. width:137px;
  2910. height:30px;
  2911. display:flex;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. color:#FFFFFF;
  2916. }
  2917. #u32356 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u32356_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. }
  2929. #u32357_img {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:127px;
  2935. height:169px;
  2936. }
  2937. #u32357 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:1214px;
  2941. top:265px;
  2942. width:127px;
  2943. height:169px;
  2944. display:flex;
  2945. }
  2946. #u32357 .text {
  2947. position:absolute;
  2948. align-self:center;
  2949. padding:2px 2px 2px 2px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u32357_text {
  2954. border-width:0px;
  2955. word-wrap:break-word;
  2956. text-transform:none;
  2957. visibility:hidden;
  2958. }
  2959. #u32358 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:0px;
  2965. height:0px;
  2966. }
  2967. #u32359_div {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:500px;
  2973. height:1198px;
  2974. background:inherit;
  2975. background-color:rgba(255, 255, 255, 1);
  2976. box-sizing:border-box;
  2977. border-width:1px;
  2978. border-style:solid;
  2979. border-color:rgba(215, 215, 215, 1);
  2980. border-radius:0px;
  2981. -moz-box-shadow:none;
  2982. -webkit-box-shadow:none;
  2983. box-shadow:none;
  2984. }
  2985. #u32359 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:1634px;
  2989. top:51px;
  2990. width:500px;
  2991. height:1198px;
  2992. display:flex;
  2993. }
  2994. #u32359 .text {
  2995. position:absolute;
  2996. align-self:center;
  2997. padding:2px 2px 2px 2px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u32359_text {
  3002. border-width:0px;
  3003. word-wrap:break-word;
  3004. text-transform:none;
  3005. visibility:hidden;
  3006. }
  3007. #u32360_div {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:145px;
  3013. height:30px;
  3014. background:inherit;
  3015. background-color:rgba(255, 255, 255, 0);
  3016. border:none;
  3017. border-radius:0px;
  3018. -moz-box-shadow:none;
  3019. -webkit-box-shadow:none;
  3020. box-shadow:none;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:18px;
  3025. color:#000000;
  3026. line-height:30px;
  3027. }
  3028. #u32360 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:1654px;
  3032. top:71px;
  3033. width:145px;
  3034. height:30px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:18px;
  3040. color:#000000;
  3041. line-height:30px;
  3042. }
  3043. #u32360 .text {
  3044. position:absolute;
  3045. align-self:flex-start;
  3046. padding:0px 0px 0px 0px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u32360_text {
  3051. border-width:0px;
  3052. white-space:nowrap;
  3053. text-transform:none;
  3054. }
  3055. #u32361 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:0px;
  3061. height:0px;
  3062. }
  3063. #u32362_div {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:400px;
  3069. height:40px;
  3070. background:inherit;
  3071. background-color:rgba(255, 255, 255, 1);
  3072. box-sizing:border-box;
  3073. border-width:1px;
  3074. border-style:solid;
  3075. border-color:rgba(170, 170, 170, 1);
  3076. border-radius:4px;
  3077. -moz-box-shadow:none;
  3078. -webkit-box-shadow:none;
  3079. box-shadow:none;
  3080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. text-align:left;
  3084. }
  3085. #u32362 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:1684px;
  3089. top:150px;
  3090. width:400px;
  3091. height:40px;
  3092. display:flex;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. text-align:left;
  3097. }
  3098. #u32362 .text {
  3099. position:absolute;
  3100. align-self:center;
  3101. padding:2px 2px 2px 10px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u32362_text {
  3106. border-width:0px;
  3107. word-wrap:break-word;
  3108. text-transform:none;
  3109. visibility:hidden;
  3110. }
  3111. #u32363_input {
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:188px;
  3116. height:31px;
  3117. padding:2px 2px 2px 2px;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:13px;
  3122. letter-spacing:normal;
  3123. color:#AAAAAA;
  3124. vertical-align:none;
  3125. text-align:left;
  3126. text-transform:none;
  3127. background-color:transparent;
  3128. border-color:transparent;
  3129. }
  3130. #u32363_input.disabled {
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:188px;
  3135. height:31px;
  3136. padding:2px 2px 2px 2px;
  3137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:13px;
  3141. letter-spacing:normal;
  3142. color:#AAAAAA;
  3143. vertical-align:none;
  3144. text-align:left;
  3145. text-transform:none;
  3146. background-color:transparent;
  3147. border-color:transparent;
  3148. }
  3149. #u32363_div {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:188px;
  3155. height:31px;
  3156. background:inherit;
  3157. background-color:rgba(255, 255, 255, 0);
  3158. border:none;
  3159. border-radius:0px;
  3160. -moz-box-shadow:none;
  3161. -webkit-box-shadow:none;
  3162. box-shadow:none;
  3163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. color:#AAAAAA;
  3167. }
  3168. #u32363 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:1694px;
  3172. top:155px;
  3173. width:188px;
  3174. height:31px;
  3175. display:flex;
  3176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. color:#AAAAAA;
  3180. }
  3181. #u32363 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u32363_div.disabled {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:188px;
  3194. height:31px;
  3195. background:inherit;
  3196. background-color:rgba(240, 240, 240, 1);
  3197. border:none;
  3198. border-radius:0px;
  3199. -moz-box-shadow:none;
  3200. -webkit-box-shadow:none;
  3201. box-shadow:none;
  3202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3203. font-weight:400;
  3204. font-style:normal;
  3205. color:#AAAAAA;
  3206. }
  3207. #u32363.disabled {
  3208. }
  3209. #u32364 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:0px;
  3213. top:0px;
  3214. width:0px;
  3215. height:0px;
  3216. }
  3217. #u32365_div {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:40px;
  3223. height:40px;
  3224. background:inherit;
  3225. background-color:rgba(255, 255, 255, 0);
  3226. border:none;
  3227. border-top:0px;
  3228. border-right:0px;
  3229. border-bottom:0px;
  3230. border-radius:0px;
  3231. border-top-left-radius:0px;
  3232. border-bottom-left-radius:0px;
  3233. -moz-box-shadow:none;
  3234. -webkit-box-shadow:none;
  3235. box-shadow:none;
  3236. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3237. font-weight:500;
  3238. font-style:normal;
  3239. font-size:18px;
  3240. text-align:center;
  3241. }
  3242. #u32365 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:2094px;
  3246. top:51px;
  3247. width:40px;
  3248. height:40px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3251. font-weight:500;
  3252. font-style:normal;
  3253. font-size:18px;
  3254. text-align:center;
  3255. }
  3256. #u32365 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:5px 10px 5px 0px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u32365_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. }
  3268. #u32366_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:13px;
  3274. height:17px;
  3275. }
  3276. #u32366 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:2077px;
  3280. top:63px;
  3281. width:13px;
  3282. height:17px;
  3283. display:flex;
  3284. }
  3285. #u32366 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 2px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u32366_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. visibility:hidden;
  3297. }
  3298. #u32367 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:0px;
  3304. height:0px;
  3305. }
  3306. #u32368_div {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:500px;
  3312. height:60px;
  3313. background:inherit;
  3314. background-color:rgba(255, 255, 255, 1);
  3315. box-sizing:border-box;
  3316. border-width:1px;
  3317. border-style:solid;
  3318. border-color:rgba(215, 215, 215, 1);
  3319. border-radius:0px;
  3320. -moz-box-shadow:none;
  3321. -webkit-box-shadow:none;
  3322. box-shadow:none;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:14px;
  3327. color:#AAAAAA;
  3328. text-align:center;
  3329. line-height:30px;
  3330. }
  3331. #u32368 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:1634px;
  3335. top:1189px;
  3336. width:500px;
  3337. height:60px;
  3338. display:flex;
  3339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. font-size:14px;
  3343. color:#AAAAAA;
  3344. text-align:center;
  3345. line-height:30px;
  3346. }
  3347. #u32368 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:5px 10px 5px 10px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u32368_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u32369_div {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:80px;
  3366. height:30px;
  3367. background:inherit;
  3368. background-color:rgba(24, 144, 255, 1);
  3369. border:none;
  3370. border-radius:4px;
  3371. -moz-box-shadow:none;
  3372. -webkit-box-shadow:none;
  3373. box-shadow:none;
  3374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3375. font-weight:400;
  3376. font-style:normal;
  3377. font-size:14px;
  3378. color:#FFFFFF;
  3379. }
  3380. #u32369 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:2009px;
  3384. top:1204px;
  3385. width:80px;
  3386. height:30px;
  3387. display:flex;
  3388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. font-size:14px;
  3392. color:#FFFFFF;
  3393. }
  3394. #u32369 .text {
  3395. position:absolute;
  3396. align-self:center;
  3397. padding:2px 2px 2px 2px;
  3398. box-sizing:border-box;
  3399. width:100%;
  3400. }
  3401. #u32369_text {
  3402. border-width:0px;
  3403. word-wrap:break-word;
  3404. text-transform:none;
  3405. }
  3406. #u32370_div {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:80px;
  3412. height:30px;
  3413. background:inherit;
  3414. background-color:rgba(255, 255, 255, 1);
  3415. box-sizing:border-box;
  3416. border-width:1px;
  3417. border-style:solid;
  3418. border-color:rgba(170, 170, 170, 1);
  3419. border-radius:4px;
  3420. -moz-box-shadow:none;
  3421. -webkit-box-shadow:none;
  3422. box-shadow:none;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:14px;
  3427. }
  3428. #u32370 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:1910px;
  3432. top:1204px;
  3433. width:80px;
  3434. height:30px;
  3435. display:flex;
  3436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:14px;
  3440. }
  3441. #u32370 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 2px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u32370_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. }
  3453. #u32371_div {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:106px;
  3459. height:30px;
  3460. background:inherit;
  3461. background-color:rgba(255, 255, 255, 0);
  3462. border:none;
  3463. border-top:0px;
  3464. border-right:0px;
  3465. border-bottom:0px;
  3466. border-radius:0px;
  3467. border-top-left-radius:0px;
  3468. border-bottom-left-radius:0px;
  3469. -moz-box-shadow:none;
  3470. -webkit-box-shadow:none;
  3471. box-shadow:none;
  3472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3473. font-weight:400;
  3474. font-style:normal;
  3475. font-size:14px;
  3476. }
  3477. #u32371 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:1684px;
  3481. top:120px;
  3482. width:106px;
  3483. height:30px;
  3484. display:flex;
  3485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:14px;
  3489. }
  3490. #u32371 .text {
  3491. position:absolute;
  3492. align-self:center;
  3493. padding:5px 0px 5px 0px;
  3494. box-sizing:border-box;
  3495. width:100%;
  3496. }
  3497. #u32371_text {
  3498. border-width:0px;
  3499. white-space:nowrap;
  3500. text-transform:none;
  3501. }
  3502. #u32372_div {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:92px;
  3508. height:30px;
  3509. background:inherit;
  3510. background-color:rgba(255, 255, 255, 0);
  3511. border:none;
  3512. border-top:0px;
  3513. border-right:0px;
  3514. border-bottom:0px;
  3515. border-radius:0px;
  3516. border-top-left-radius:0px;
  3517. border-bottom-left-radius:0px;
  3518. -moz-box-shadow:none;
  3519. -webkit-box-shadow:none;
  3520. box-shadow:none;
  3521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:14px;
  3525. }
  3526. #u32372 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:1684px;
  3530. top:210px;
  3531. width:92px;
  3532. height:30px;
  3533. display:flex;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:14px;
  3538. }
  3539. #u32372 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:5px 0px 5px 0px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u32372_text {
  3547. border-width:0px;
  3548. white-space:nowrap;
  3549. text-transform:none;
  3550. }
  3551. #u32373_div {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:36px;
  3557. height:30px;
  3558. background:inherit;
  3559. background-color:rgba(255, 255, 255, 0);
  3560. border:none;
  3561. border-top:0px;
  3562. border-right:0px;
  3563. border-bottom:0px;
  3564. border-radius:0px;
  3565. border-top-left-radius:0px;
  3566. border-bottom-left-radius:0px;
  3567. -moz-box-shadow:none;
  3568. -webkit-box-shadow:none;
  3569. box-shadow:none;
  3570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:14px;
  3574. }
  3575. #u32373 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:1684px;
  3579. top:300px;
  3580. width:36px;
  3581. height:30px;
  3582. display:flex;
  3583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3584. font-weight:400;
  3585. font-style:normal;
  3586. font-size:14px;
  3587. }
  3588. #u32373 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:5px 0px 5px 0px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u32373_text {
  3596. border-width:0px;
  3597. white-space:nowrap;
  3598. text-transform:none;
  3599. }
  3600. #u32374 {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:0px;
  3606. height:0px;
  3607. }
  3608. #u32375_div {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:400px;
  3614. height:40px;
  3615. background:inherit;
  3616. background-color:rgba(255, 255, 255, 1);
  3617. box-sizing:border-box;
  3618. border-width:1px;
  3619. border-style:solid;
  3620. border-color:rgba(170, 170, 170, 1);
  3621. border-radius:4px;
  3622. -moz-box-shadow:none;
  3623. -webkit-box-shadow:none;
  3624. box-shadow:none;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. text-align:left;
  3629. }
  3630. #u32375 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:1684px;
  3634. top:241px;
  3635. width:400px;
  3636. height:40px;
  3637. display:flex;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. text-align:left;
  3642. }
  3643. #u32375 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:2px 2px 2px 10px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u32375_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. visibility:hidden;
  3655. }
  3656. #u32376_input {
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:188px;
  3661. height:31px;
  3662. padding:2px 2px 2px 2px;
  3663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3664. font-weight:400;
  3665. font-style:normal;
  3666. font-size:13px;
  3667. letter-spacing:normal;
  3668. color:#AAAAAA;
  3669. vertical-align:none;
  3670. text-align:left;
  3671. text-transform:none;
  3672. background-color:transparent;
  3673. border-color:transparent;
  3674. }
  3675. #u32376_input.disabled {
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:188px;
  3680. height:31px;
  3681. padding:2px 2px 2px 2px;
  3682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:13px;
  3686. letter-spacing:normal;
  3687. color:#AAAAAA;
  3688. vertical-align:none;
  3689. text-align:left;
  3690. text-transform:none;
  3691. background-color:transparent;
  3692. border-color:transparent;
  3693. }
  3694. #u32376_div {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:188px;
  3700. height:31px;
  3701. background:inherit;
  3702. background-color:rgba(255, 255, 255, 0);
  3703. border:none;
  3704. border-radius:0px;
  3705. -moz-box-shadow:none;
  3706. -webkit-box-shadow:none;
  3707. box-shadow:none;
  3708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. color:#AAAAAA;
  3712. }
  3713. #u32376 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:1694px;
  3717. top:246px;
  3718. width:188px;
  3719. height:31px;
  3720. display:flex;
  3721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3722. font-weight:400;
  3723. font-style:normal;
  3724. color:#AAAAAA;
  3725. }
  3726. #u32376 .text {
  3727. position:absolute;
  3728. align-self:center;
  3729. padding:2px 2px 2px 2px;
  3730. box-sizing:border-box;
  3731. width:100%;
  3732. }
  3733. #u32376_div.disabled {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:188px;
  3739. height:31px;
  3740. background:inherit;
  3741. background-color:rgba(240, 240, 240, 1);
  3742. border:none;
  3743. border-radius:0px;
  3744. -moz-box-shadow:none;
  3745. -webkit-box-shadow:none;
  3746. box-shadow:none;
  3747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3748. font-weight:400;
  3749. font-style:normal;
  3750. color:#AAAAAA;
  3751. }
  3752. #u32376.disabled {
  3753. }
  3754. #u32377 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:0px;
  3760. height:0px;
  3761. }
  3762. #u32378_div {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:400px;
  3768. height:40px;
  3769. background:inherit;
  3770. background-color:rgba(255, 255, 255, 1);
  3771. box-sizing:border-box;
  3772. border-width:1px;
  3773. border-style:solid;
  3774. border-color:rgba(170, 170, 170, 1);
  3775. border-radius:4px;
  3776. -moz-box-shadow:none;
  3777. -webkit-box-shadow:none;
  3778. box-shadow:none;
  3779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3780. font-weight:400;
  3781. font-style:normal;
  3782. text-align:right;
  3783. }
  3784. #u32378 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:1684px;
  3788. top:330px;
  3789. width:400px;
  3790. height:40px;
  3791. display:flex;
  3792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3793. font-weight:400;
  3794. font-style:normal;
  3795. text-align:right;
  3796. }
  3797. #u32378 .text {
  3798. position:absolute;
  3799. align-self:center;
  3800. padding:2px 2px 2px 10px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u32378_text {
  3805. border-width:0px;
  3806. word-wrap:break-word;
  3807. text-transform:none;
  3808. }
  3809. #u32379_input {
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:188px;
  3814. height:31px;
  3815. padding:2px 2px 2px 2px;
  3816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:13px;
  3820. letter-spacing:normal;
  3821. color:#AAAAAA;
  3822. vertical-align:none;
  3823. text-align:left;
  3824. text-transform:none;
  3825. background-color:transparent;
  3826. border-color:transparent;
  3827. }
  3828. #u32379_input.disabled {
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:188px;
  3833. height:31px;
  3834. padding:2px 2px 2px 2px;
  3835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3836. font-weight:400;
  3837. font-style:normal;
  3838. font-size:13px;
  3839. letter-spacing:normal;
  3840. color:#AAAAAA;
  3841. vertical-align:none;
  3842. text-align:left;
  3843. text-transform:none;
  3844. background-color:transparent;
  3845. border-color:transparent;
  3846. }
  3847. #u32379_div {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:188px;
  3853. height:31px;
  3854. background:inherit;
  3855. background-color:rgba(255, 255, 255, 0);
  3856. border:none;
  3857. border-radius:0px;
  3858. -moz-box-shadow:none;
  3859. -webkit-box-shadow:none;
  3860. box-shadow:none;
  3861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. color:#AAAAAA;
  3865. }
  3866. #u32379 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:1694px;
  3870. top:335px;
  3871. width:188px;
  3872. height:31px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. color:#AAAAAA;
  3878. }
  3879. #u32379 .text {
  3880. position:absolute;
  3881. align-self:center;
  3882. padding:2px 2px 2px 2px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u32379_div.disabled {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:188px;
  3892. height:31px;
  3893. background:inherit;
  3894. background-color:rgba(240, 240, 240, 1);
  3895. border:none;
  3896. border-radius:0px;
  3897. -moz-box-shadow:none;
  3898. -webkit-box-shadow:none;
  3899. box-shadow:none;
  3900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3901. font-weight:400;
  3902. font-style:normal;
  3903. color:#AAAAAA;
  3904. }
  3905. #u32379.disabled {
  3906. }
  3907. #u32380 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:0px;
  3913. height:0px;
  3914. }
  3915. #u32381_div {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:0px;
  3919. top:0px;
  3920. width:500px;
  3921. height:1198px;
  3922. background:inherit;
  3923. background-color:rgba(255, 255, 255, 1);
  3924. box-sizing:border-box;
  3925. border-width:1px;
  3926. border-style:solid;
  3927. border-color:rgba(215, 215, 215, 1);
  3928. border-radius:0px;
  3929. -moz-box-shadow:none;
  3930. -webkit-box-shadow:none;
  3931. box-shadow:none;
  3932. }
  3933. #u32381 {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:2161px;
  3937. top:51px;
  3938. width:500px;
  3939. height:1198px;
  3940. display:flex;
  3941. }
  3942. #u32381 .text {
  3943. position:absolute;
  3944. align-self:center;
  3945. padding:2px 2px 2px 2px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u32381_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u32382_div {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:109px;
  3961. height:30px;
  3962. background:inherit;
  3963. background-color:rgba(255, 255, 255, 0);
  3964. border:none;
  3965. border-radius:0px;
  3966. -moz-box-shadow:none;
  3967. -webkit-box-shadow:none;
  3968. box-shadow:none;
  3969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:18px;
  3973. color:#000000;
  3974. line-height:30px;
  3975. }
  3976. #u32382 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:2181px;
  3980. top:71px;
  3981. width:109px;
  3982. height:30px;
  3983. display:flex;
  3984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:18px;
  3988. color:#000000;
  3989. line-height:30px;
  3990. }
  3991. #u32382 .text {
  3992. position:absolute;
  3993. align-self:flex-start;
  3994. padding:0px 0px 0px 0px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u32382_text {
  3999. border-width:0px;
  4000. white-space:nowrap;
  4001. text-transform:none;
  4002. }
  4003. #u32383 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:0px;
  4009. height:0px;
  4010. }
  4011. #u32384_div {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:400px;
  4017. height:40px;
  4018. background:inherit;
  4019. background-color:rgba(255, 255, 255, 1);
  4020. box-sizing:border-box;
  4021. border-width:1px;
  4022. border-style:solid;
  4023. border-color:rgba(170, 170, 170, 1);
  4024. border-radius:4px;
  4025. -moz-box-shadow:none;
  4026. -webkit-box-shadow:none;
  4027. box-shadow:none;
  4028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4029. font-weight:400;
  4030. font-style:normal;
  4031. text-align:left;
  4032. }
  4033. #u32384 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:2211px;
  4037. top:150px;
  4038. width:400px;
  4039. height:40px;
  4040. display:flex;
  4041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. text-align:left;
  4045. }
  4046. #u32384 .text {
  4047. position:absolute;
  4048. align-self:center;
  4049. padding:2px 2px 2px 10px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u32384_text {
  4054. border-width:0px;
  4055. word-wrap:break-word;
  4056. text-transform:none;
  4057. visibility:hidden;
  4058. }
  4059. #u32385_input {
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:188px;
  4064. height:31px;
  4065. padding:2px 2px 2px 2px;
  4066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4067. font-weight:400;
  4068. font-style:normal;
  4069. font-size:13px;
  4070. letter-spacing:normal;
  4071. color:#AAAAAA;
  4072. vertical-align:none;
  4073. text-align:left;
  4074. text-transform:none;
  4075. background-color:transparent;
  4076. border-color:transparent;
  4077. }
  4078. #u32385_input.disabled {
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:188px;
  4083. height:31px;
  4084. padding:2px 2px 2px 2px;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:13px;
  4089. letter-spacing:normal;
  4090. color:#AAAAAA;
  4091. vertical-align:none;
  4092. text-align:left;
  4093. text-transform:none;
  4094. background-color:transparent;
  4095. border-color:transparent;
  4096. }
  4097. #u32385_div {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:188px;
  4103. height:31px;
  4104. background:inherit;
  4105. background-color:rgba(255, 255, 255, 0);
  4106. border:none;
  4107. border-radius:0px;
  4108. -moz-box-shadow:none;
  4109. -webkit-box-shadow:none;
  4110. box-shadow:none;
  4111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. color:#AAAAAA;
  4115. }
  4116. #u32385 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:2221px;
  4120. top:155px;
  4121. width:188px;
  4122. height:31px;
  4123. display:flex;
  4124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. color:#AAAAAA;
  4128. }
  4129. #u32385 .text {
  4130. position:absolute;
  4131. align-self:center;
  4132. padding:2px 2px 2px 2px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u32385_div.disabled {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:188px;
  4142. height:31px;
  4143. background:inherit;
  4144. background-color:rgba(240, 240, 240, 1);
  4145. border:none;
  4146. border-radius:0px;
  4147. -moz-box-shadow:none;
  4148. -webkit-box-shadow:none;
  4149. box-shadow:none;
  4150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4151. font-weight:400;
  4152. font-style:normal;
  4153. color:#AAAAAA;
  4154. }
  4155. #u32385.disabled {
  4156. }
  4157. #u32386 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:0px;
  4163. height:0px;
  4164. }
  4165. #u32387_div {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:40px;
  4171. height:40px;
  4172. background:inherit;
  4173. background-color:rgba(255, 255, 255, 0);
  4174. border:none;
  4175. border-top:0px;
  4176. border-right:0px;
  4177. border-bottom:0px;
  4178. border-radius:0px;
  4179. border-top-left-radius:0px;
  4180. border-bottom-left-radius:0px;
  4181. -moz-box-shadow:none;
  4182. -webkit-box-shadow:none;
  4183. box-shadow:none;
  4184. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4185. font-weight:500;
  4186. font-style:normal;
  4187. font-size:18px;
  4188. text-align:center;
  4189. }
  4190. #u32387 {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:2621px;
  4194. top:51px;
  4195. width:40px;
  4196. height:40px;
  4197. display:flex;
  4198. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4199. font-weight:500;
  4200. font-style:normal;
  4201. font-size:18px;
  4202. text-align:center;
  4203. }
  4204. #u32387 .text {
  4205. position:absolute;
  4206. align-self:center;
  4207. padding:5px 10px 5px 0px;
  4208. box-sizing:border-box;
  4209. width:100%;
  4210. }
  4211. #u32387_text {
  4212. border-width:0px;
  4213. word-wrap:break-word;
  4214. text-transform:none;
  4215. }
  4216. #u32388_img {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:13px;
  4222. height:17px;
  4223. }
  4224. #u32388 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:2604px;
  4228. top:63px;
  4229. width:13px;
  4230. height:17px;
  4231. display:flex;
  4232. }
  4233. #u32388 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 2px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u32388_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. visibility:hidden;
  4245. }
  4246. #u32389 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:0px;
  4252. height:0px;
  4253. }
  4254. #u32390_div {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:500px;
  4260. height:60px;
  4261. background:inherit;
  4262. background-color:rgba(255, 255, 255, 1);
  4263. box-sizing:border-box;
  4264. border-width:1px;
  4265. border-style:solid;
  4266. border-color:rgba(215, 215, 215, 1);
  4267. border-radius:0px;
  4268. -moz-box-shadow:none;
  4269. -webkit-box-shadow:none;
  4270. box-shadow:none;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:14px;
  4275. color:#AAAAAA;
  4276. text-align:center;
  4277. line-height:30px;
  4278. }
  4279. #u32390 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:2161px;
  4283. top:1189px;
  4284. width:500px;
  4285. height:60px;
  4286. display:flex;
  4287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:14px;
  4291. color:#AAAAAA;
  4292. text-align:center;
  4293. line-height:30px;
  4294. }
  4295. #u32390 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:5px 10px 5px 10px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u32390_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u32391_div {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:80px;
  4314. height:30px;
  4315. background:inherit;
  4316. background-color:rgba(24, 144, 255, 1);
  4317. border:none;
  4318. border-radius:4px;
  4319. -moz-box-shadow:none;
  4320. -webkit-box-shadow:none;
  4321. box-shadow:none;
  4322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:14px;
  4326. color:#FFFFFF;
  4327. }
  4328. #u32391 {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:2536px;
  4332. top:1204px;
  4333. width:80px;
  4334. height:30px;
  4335. display:flex;
  4336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4337. font-weight:400;
  4338. font-style:normal;
  4339. font-size:14px;
  4340. color:#FFFFFF;
  4341. }
  4342. #u32391 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:2px 2px 2px 2px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u32391_text {
  4350. border-width:0px;
  4351. word-wrap:break-word;
  4352. text-transform:none;
  4353. }
  4354. #u32392_div {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:80px;
  4360. height:30px;
  4361. background:inherit;
  4362. background-color:rgba(255, 255, 255, 1);
  4363. box-sizing:border-box;
  4364. border-width:1px;
  4365. border-style:solid;
  4366. border-color:rgba(170, 170, 170, 1);
  4367. border-radius:4px;
  4368. -moz-box-shadow:none;
  4369. -webkit-box-shadow:none;
  4370. box-shadow:none;
  4371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4372. font-weight:400;
  4373. font-style:normal;
  4374. font-size:14px;
  4375. }
  4376. #u32392 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:2437px;
  4380. top:1204px;
  4381. width:80px;
  4382. height:30px;
  4383. display:flex;
  4384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:14px;
  4388. }
  4389. #u32392 .text {
  4390. position:absolute;
  4391. align-self:center;
  4392. padding:2px 2px 2px 2px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u32392_text {
  4397. border-width:0px;
  4398. word-wrap:break-word;
  4399. text-transform:none;
  4400. }
  4401. #u32393_div {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:64px;
  4407. height:30px;
  4408. background:inherit;
  4409. background-color:rgba(255, 255, 255, 0);
  4410. border:none;
  4411. border-top:0px;
  4412. border-right:0px;
  4413. border-bottom:0px;
  4414. border-radius:0px;
  4415. border-top-left-radius:0px;
  4416. border-bottom-left-radius:0px;
  4417. -moz-box-shadow:none;
  4418. -webkit-box-shadow:none;
  4419. box-shadow:none;
  4420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:14px;
  4424. }
  4425. #u32393 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:2211px;
  4429. top:120px;
  4430. width:64px;
  4431. height:30px;
  4432. display:flex;
  4433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4434. font-weight:400;
  4435. font-style:normal;
  4436. font-size:14px;
  4437. }
  4438. #u32393 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:5px 0px 5px 0px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u32393_text {
  4446. border-width:0px;
  4447. white-space:nowrap;
  4448. text-transform:none;
  4449. }
  4450. #u32394_div {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:92px;
  4456. height:30px;
  4457. background:inherit;
  4458. background-color:rgba(255, 255, 255, 0);
  4459. border:none;
  4460. border-top:0px;
  4461. border-right:0px;
  4462. border-bottom:0px;
  4463. border-radius:0px;
  4464. border-top-left-radius:0px;
  4465. border-bottom-left-radius:0px;
  4466. -moz-box-shadow:none;
  4467. -webkit-box-shadow:none;
  4468. box-shadow:none;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:14px;
  4473. }
  4474. #u32394 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:2211px;
  4478. top:210px;
  4479. width:92px;
  4480. height:30px;
  4481. display:flex;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:14px;
  4486. }
  4487. #u32394 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:5px 0px 5px 0px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u32394_text {
  4495. border-width:0px;
  4496. white-space:nowrap;
  4497. text-transform:none;
  4498. }
  4499. #u32395_div {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:50px;
  4505. height:30px;
  4506. background:inherit;
  4507. background-color:rgba(255, 255, 255, 0);
  4508. border:none;
  4509. border-top:0px;
  4510. border-right:0px;
  4511. border-bottom:0px;
  4512. border-radius:0px;
  4513. border-top-left-radius:0px;
  4514. border-bottom-left-radius:0px;
  4515. -moz-box-shadow:none;
  4516. -webkit-box-shadow:none;
  4517. box-shadow:none;
  4518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4519. font-weight:400;
  4520. font-style:normal;
  4521. font-size:14px;
  4522. }
  4523. #u32395 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:2211px;
  4527. top:300px;
  4528. width:50px;
  4529. height:30px;
  4530. display:flex;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:14px;
  4535. }
  4536. #u32395 .text {
  4537. position:absolute;
  4538. align-self:center;
  4539. padding:5px 0px 5px 0px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u32395_text {
  4544. border-width:0px;
  4545. white-space:nowrap;
  4546. text-transform:none;
  4547. }
  4548. #u32396 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:0px;
  4554. height:0px;
  4555. }
  4556. #u32397_div {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:400px;
  4562. height:40px;
  4563. background:inherit;
  4564. background-color:rgba(255, 255, 255, 1);
  4565. box-sizing:border-box;
  4566. border-width:1px;
  4567. border-style:solid;
  4568. border-color:rgba(170, 170, 170, 1);
  4569. border-radius:4px;
  4570. -moz-box-shadow:none;
  4571. -webkit-box-shadow:none;
  4572. box-shadow:none;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. text-align:left;
  4577. }
  4578. #u32397 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:2211px;
  4582. top:241px;
  4583. width:400px;
  4584. height:40px;
  4585. display:flex;
  4586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4587. font-weight:400;
  4588. font-style:normal;
  4589. text-align:left;
  4590. }
  4591. #u32397 .text {
  4592. position:absolute;
  4593. align-self:center;
  4594. padding:2px 2px 2px 10px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u32397_text {
  4599. border-width:0px;
  4600. word-wrap:break-word;
  4601. text-transform:none;
  4602. visibility:hidden;
  4603. }
  4604. #u32398_input {
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:188px;
  4609. height:31px;
  4610. padding:2px 2px 2px 2px;
  4611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. font-size:13px;
  4615. letter-spacing:normal;
  4616. color:#AAAAAA;
  4617. vertical-align:none;
  4618. text-align:left;
  4619. text-transform:none;
  4620. background-color:transparent;
  4621. border-color:transparent;
  4622. }
  4623. #u32398_input.disabled {
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:188px;
  4628. height:31px;
  4629. padding:2px 2px 2px 2px;
  4630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:13px;
  4634. letter-spacing:normal;
  4635. color:#AAAAAA;
  4636. vertical-align:none;
  4637. text-align:left;
  4638. text-transform:none;
  4639. background-color:transparent;
  4640. border-color:transparent;
  4641. }
  4642. #u32398_div {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:188px;
  4648. height:31px;
  4649. background:inherit;
  4650. background-color:rgba(255, 255, 255, 0);
  4651. border:none;
  4652. border-radius:0px;
  4653. -moz-box-shadow:none;
  4654. -webkit-box-shadow:none;
  4655. box-shadow:none;
  4656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4657. font-weight:400;
  4658. font-style:normal;
  4659. color:#AAAAAA;
  4660. }
  4661. #u32398 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:2221px;
  4665. top:246px;
  4666. width:188px;
  4667. height:31px;
  4668. display:flex;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. color:#AAAAAA;
  4673. }
  4674. #u32398 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 2px 2px 2px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u32398_div.disabled {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:188px;
  4687. height:31px;
  4688. background:inherit;
  4689. background-color:rgba(240, 240, 240, 1);
  4690. border:none;
  4691. border-radius:0px;
  4692. -moz-box-shadow:none;
  4693. -webkit-box-shadow:none;
  4694. box-shadow:none;
  4695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4696. font-weight:400;
  4697. font-style:normal;
  4698. color:#AAAAAA;
  4699. }
  4700. #u32398.disabled {
  4701. }
  4702. #u32399 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:0px;
  4708. height:0px;
  4709. }
  4710. #u32400_div {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:400px;
  4716. height:40px;
  4717. background:inherit;
  4718. background-color:rgba(255, 255, 255, 1);
  4719. box-sizing:border-box;
  4720. border-width:1px;
  4721. border-style:solid;
  4722. border-color:rgba(170, 170, 170, 1);
  4723. border-radius:4px;
  4724. -moz-box-shadow:none;
  4725. -webkit-box-shadow:none;
  4726. box-shadow:none;
  4727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. text-align:right;
  4731. }
  4732. #u32400 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:2211px;
  4736. top:330px;
  4737. width:400px;
  4738. height:40px;
  4739. display:flex;
  4740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. text-align:right;
  4744. }
  4745. #u32400 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:2px 2px 2px 10px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u32400_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. visibility:hidden;
  4757. }
  4758. #u32401_input {
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:188px;
  4763. height:31px;
  4764. padding:2px 2px 2px 2px;
  4765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4766. font-weight:400;
  4767. font-style:normal;
  4768. font-size:13px;
  4769. letter-spacing:normal;
  4770. color:#AAAAAA;
  4771. vertical-align:none;
  4772. text-align:left;
  4773. text-transform:none;
  4774. background-color:transparent;
  4775. border-color:transparent;
  4776. }
  4777. #u32401_input.disabled {
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:188px;
  4782. height:31px;
  4783. padding:2px 2px 2px 2px;
  4784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:13px;
  4788. letter-spacing:normal;
  4789. color:#AAAAAA;
  4790. vertical-align:none;
  4791. text-align:left;
  4792. text-transform:none;
  4793. background-color:transparent;
  4794. border-color:transparent;
  4795. }
  4796. #u32401_div {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:188px;
  4802. height:31px;
  4803. background:inherit;
  4804. background-color:rgba(255, 255, 255, 0);
  4805. border:none;
  4806. border-radius:0px;
  4807. -moz-box-shadow:none;
  4808. -webkit-box-shadow:none;
  4809. box-shadow:none;
  4810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. color:#AAAAAA;
  4814. }
  4815. #u32401 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:2221px;
  4819. top:335px;
  4820. width:188px;
  4821. height:31px;
  4822. display:flex;
  4823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4824. font-weight:400;
  4825. font-style:normal;
  4826. color:#AAAAAA;
  4827. }
  4828. #u32401 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:2px 2px 2px 2px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u32401_div.disabled {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:188px;
  4841. height:31px;
  4842. background:inherit;
  4843. background-color:rgba(240, 240, 240, 1);
  4844. border:none;
  4845. border-radius:0px;
  4846. -moz-box-shadow:none;
  4847. -webkit-box-shadow:none;
  4848. box-shadow:none;
  4849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. color:#AAAAAA;
  4853. }
  4854. #u32401.disabled {
  4855. }
  4856. #u32402 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:0px;
  4862. height:0px;
  4863. }
  4864. #u32403_div {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:0px;
  4868. top:0px;
  4869. width:400px;
  4870. height:40px;
  4871. background:inherit;
  4872. background-color:rgba(255, 255, 255, 1);
  4873. box-sizing:border-box;
  4874. border-width:1px;
  4875. border-style:solid;
  4876. border-color:rgba(170, 170, 170, 1);
  4877. border-radius:4px;
  4878. -moz-box-shadow:none;
  4879. -webkit-box-shadow:none;
  4880. box-shadow:none;
  4881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. text-align:left;
  4885. }
  4886. #u32403 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:2211px;
  4890. top:420px;
  4891. width:400px;
  4892. height:40px;
  4893. display:flex;
  4894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4895. font-weight:400;
  4896. font-style:normal;
  4897. text-align:left;
  4898. }
  4899. #u32403 .text {
  4900. position:absolute;
  4901. align-self:center;
  4902. padding:2px 2px 2px 10px;
  4903. box-sizing:border-box;
  4904. width:100%;
  4905. }
  4906. #u32403_text {
  4907. border-width:0px;
  4908. word-wrap:break-word;
  4909. text-transform:none;
  4910. visibility:hidden;
  4911. }
  4912. #u32404_input {
  4913. position:absolute;
  4914. left:0px;
  4915. top:0px;
  4916. width:188px;
  4917. height:31px;
  4918. padding:2px 2px 2px 2px;
  4919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:13px;
  4923. letter-spacing:normal;
  4924. color:#AAAAAA;
  4925. vertical-align:none;
  4926. text-align:left;
  4927. text-transform:none;
  4928. background-color:transparent;
  4929. border-color:transparent;
  4930. }
  4931. #u32404_input.disabled {
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:188px;
  4936. height:31px;
  4937. padding:2px 2px 2px 2px;
  4938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. font-size:13px;
  4942. letter-spacing:normal;
  4943. color:#AAAAAA;
  4944. vertical-align:none;
  4945. text-align:left;
  4946. text-transform:none;
  4947. background-color:transparent;
  4948. border-color:transparent;
  4949. }
  4950. #u32404_div {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:0px;
  4954. top:0px;
  4955. width:188px;
  4956. height:31px;
  4957. background:inherit;
  4958. background-color:rgba(255, 255, 255, 0);
  4959. border:none;
  4960. border-radius:0px;
  4961. -moz-box-shadow:none;
  4962. -webkit-box-shadow:none;
  4963. box-shadow:none;
  4964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4965. font-weight:400;
  4966. font-style:normal;
  4967. color:#AAAAAA;
  4968. }
  4969. #u32404 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:2221px;
  4973. top:425px;
  4974. width:188px;
  4975. height:31px;
  4976. display:flex;
  4977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. color:#AAAAAA;
  4981. }
  4982. #u32404 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:2px 2px 2px 2px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u32404_div.disabled {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:188px;
  4995. height:31px;
  4996. background:inherit;
  4997. background-color:rgba(240, 240, 240, 1);
  4998. border:none;
  4999. border-radius:0px;
  5000. -moz-box-shadow:none;
  5001. -webkit-box-shadow:none;
  5002. box-shadow:none;
  5003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. color:#AAAAAA;
  5007. }
  5008. #u32404.disabled {
  5009. }
  5010. #u32405_div {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:0px;
  5014. top:0px;
  5015. width:36px;
  5016. height:30px;
  5017. background:inherit;
  5018. background-color:rgba(255, 255, 255, 0);
  5019. border:none;
  5020. border-top:0px;
  5021. border-right:0px;
  5022. border-bottom:0px;
  5023. border-radius:0px;
  5024. border-top-left-radius:0px;
  5025. border-bottom-left-radius:0px;
  5026. -moz-box-shadow:none;
  5027. -webkit-box-shadow:none;
  5028. box-shadow:none;
  5029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:14px;
  5033. }
  5034. #u32405 {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:2211px;
  5038. top:390px;
  5039. width:36px;
  5040. height:30px;
  5041. display:flex;
  5042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5043. font-weight:400;
  5044. font-style:normal;
  5045. font-size:14px;
  5046. }
  5047. #u32405 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:5px 0px 5px 0px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u32405_text {
  5055. border-width:0px;
  5056. white-space:nowrap;
  5057. text-transform:none;
  5058. }
  5059. #u32406_div {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:36px;
  5065. height:30px;
  5066. background:inherit;
  5067. background-color:rgba(255, 255, 255, 0);
  5068. border:none;
  5069. border-top:0px;
  5070. border-right:0px;
  5071. border-bottom:0px;
  5072. border-radius:0px;
  5073. border-top-left-radius:0px;
  5074. border-bottom-left-radius:0px;
  5075. -moz-box-shadow:none;
  5076. -webkit-box-shadow:none;
  5077. box-shadow:none;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:14px;
  5082. }
  5083. #u32406 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:2211px;
  5087. top:480px;
  5088. width:36px;
  5089. height:30px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:14px;
  5095. }
  5096. #u32406 .text {
  5097. position:absolute;
  5098. align-self:center;
  5099. padding:5px 0px 5px 0px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u32406_text {
  5104. border-width:0px;
  5105. white-space:nowrap;
  5106. text-transform:none;
  5107. }
  5108. #u32407_div {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:64px;
  5114. height:30px;
  5115. background:inherit;
  5116. background-color:rgba(255, 255, 255, 0);
  5117. border:none;
  5118. border-top:0px;
  5119. border-right:0px;
  5120. border-bottom:0px;
  5121. border-radius:0px;
  5122. border-top-left-radius:0px;
  5123. border-bottom-left-radius:0px;
  5124. -moz-box-shadow:none;
  5125. -webkit-box-shadow:none;
  5126. box-shadow:none;
  5127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:14px;
  5131. }
  5132. #u32407 {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:2211px;
  5136. top:570px;
  5137. width:64px;
  5138. height:30px;
  5139. display:flex;
  5140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:14px;
  5144. }
  5145. #u32407 .text {
  5146. position:absolute;
  5147. align-self:center;
  5148. padding:5px 0px 5px 0px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u32407_text {
  5153. border-width:0px;
  5154. white-space:nowrap;
  5155. text-transform:none;
  5156. }
  5157. #u32408 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:0px;
  5163. height:0px;
  5164. }
  5165. #u32409_div {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:0px;
  5169. top:0px;
  5170. width:400px;
  5171. height:40px;
  5172. background:inherit;
  5173. background-color:rgba(255, 255, 255, 1);
  5174. box-sizing:border-box;
  5175. border-width:1px;
  5176. border-style:solid;
  5177. border-color:rgba(170, 170, 170, 1);
  5178. border-radius:4px;
  5179. -moz-box-shadow:none;
  5180. -webkit-box-shadow:none;
  5181. box-shadow:none;
  5182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5183. font-weight:400;
  5184. font-style:normal;
  5185. text-align:left;
  5186. }
  5187. #u32409 {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:2211px;
  5191. top:511px;
  5192. width:400px;
  5193. height:40px;
  5194. display:flex;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. text-align:left;
  5199. }
  5200. #u32409 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 10px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u32409_text {
  5208. border-width:0px;
  5209. word-wrap:break-word;
  5210. text-transform:none;
  5211. visibility:hidden;
  5212. }
  5213. #u32410_input {
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:188px;
  5218. height:31px;
  5219. padding:2px 2px 2px 2px;
  5220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5221. font-weight:400;
  5222. font-style:normal;
  5223. font-size:13px;
  5224. letter-spacing:normal;
  5225. color:#AAAAAA;
  5226. vertical-align:none;
  5227. text-align:left;
  5228. text-transform:none;
  5229. background-color:transparent;
  5230. border-color:transparent;
  5231. }
  5232. #u32410_input.disabled {
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:188px;
  5237. height:31px;
  5238. padding:2px 2px 2px 2px;
  5239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5240. font-weight:400;
  5241. font-style:normal;
  5242. font-size:13px;
  5243. letter-spacing:normal;
  5244. color:#AAAAAA;
  5245. vertical-align:none;
  5246. text-align:left;
  5247. text-transform:none;
  5248. background-color:transparent;
  5249. border-color:transparent;
  5250. }
  5251. #u32410_div {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:188px;
  5257. height:31px;
  5258. background:inherit;
  5259. background-color:rgba(255, 255, 255, 0);
  5260. border:none;
  5261. border-radius:0px;
  5262. -moz-box-shadow:none;
  5263. -webkit-box-shadow:none;
  5264. box-shadow:none;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. color:#AAAAAA;
  5269. }
  5270. #u32410 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:2221px;
  5274. top:516px;
  5275. width:188px;
  5276. height:31px;
  5277. display:flex;
  5278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5279. font-weight:400;
  5280. font-style:normal;
  5281. color:#AAAAAA;
  5282. }
  5283. #u32410 .text {
  5284. position:absolute;
  5285. align-self:center;
  5286. padding:2px 2px 2px 2px;
  5287. box-sizing:border-box;
  5288. width:100%;
  5289. }
  5290. #u32410_div.disabled {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:188px;
  5296. height:31px;
  5297. background:inherit;
  5298. background-color:rgba(240, 240, 240, 1);
  5299. border:none;
  5300. border-radius:0px;
  5301. -moz-box-shadow:none;
  5302. -webkit-box-shadow:none;
  5303. box-shadow:none;
  5304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5305. font-weight:400;
  5306. font-style:normal;
  5307. color:#AAAAAA;
  5308. }
  5309. #u32410.disabled {
  5310. }
  5311. #u32411 {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:0px;
  5317. height:0px;
  5318. }
  5319. #u32412_div {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:0px;
  5323. top:0px;
  5324. width:400px;
  5325. height:40px;
  5326. background:inherit;
  5327. background-color:rgba(255, 255, 255, 1);
  5328. box-sizing:border-box;
  5329. border-width:1px;
  5330. border-style:solid;
  5331. border-color:rgba(170, 170, 170, 1);
  5332. border-radius:4px;
  5333. -moz-box-shadow:none;
  5334. -webkit-box-shadow:none;
  5335. box-shadow:none;
  5336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5337. font-weight:400;
  5338. font-style:normal;
  5339. text-align:right;
  5340. }
  5341. #u32412 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:2211px;
  5345. top:600px;
  5346. width:400px;
  5347. height:40px;
  5348. display:flex;
  5349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. text-align:right;
  5353. }
  5354. #u32412 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:2px 2px 2px 10px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u32412_text {
  5362. border-width:0px;
  5363. word-wrap:break-word;
  5364. text-transform:none;
  5365. visibility:hidden;
  5366. }
  5367. #u32413_input {
  5368. position:absolute;
  5369. left:0px;
  5370. top:0px;
  5371. width:188px;
  5372. height:31px;
  5373. padding:2px 2px 2px 2px;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:13px;
  5378. letter-spacing:normal;
  5379. color:#AAAAAA;
  5380. vertical-align:none;
  5381. text-align:left;
  5382. text-transform:none;
  5383. background-color:transparent;
  5384. border-color:transparent;
  5385. }
  5386. #u32413_input.disabled {
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:188px;
  5391. height:31px;
  5392. padding:2px 2px 2px 2px;
  5393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5394. font-weight:400;
  5395. font-style:normal;
  5396. font-size:13px;
  5397. letter-spacing:normal;
  5398. color:#AAAAAA;
  5399. vertical-align:none;
  5400. text-align:left;
  5401. text-transform:none;
  5402. background-color:transparent;
  5403. border-color:transparent;
  5404. }
  5405. #u32413_div {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:188px;
  5411. height:31px;
  5412. background:inherit;
  5413. background-color:rgba(255, 255, 255, 0);
  5414. border:none;
  5415. border-radius:0px;
  5416. -moz-box-shadow:none;
  5417. -webkit-box-shadow:none;
  5418. box-shadow:none;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. color:#AAAAAA;
  5423. }
  5424. #u32413 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:2221px;
  5428. top:605px;
  5429. width:188px;
  5430. height:31px;
  5431. display:flex;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. color:#AAAAAA;
  5436. }
  5437. #u32413 .text {
  5438. position:absolute;
  5439. align-self:center;
  5440. padding:2px 2px 2px 2px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u32413_div.disabled {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:188px;
  5450. height:31px;
  5451. background:inherit;
  5452. background-color:rgba(240, 240, 240, 1);
  5453. border:none;
  5454. border-radius:0px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. color:#AAAAAA;
  5462. }
  5463. #u32413.disabled {
  5464. }
  5465. #u32414 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:0px;
  5471. height:0px;
  5472. }
  5473. #u32415_div {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:200px;
  5479. height:1192px;
  5480. background:inherit;
  5481. background-color:rgba(255, 255, 255, 1);
  5482. border:none;
  5483. border-radius:0px;
  5484. -moz-box-shadow:none;
  5485. -webkit-box-shadow:none;
  5486. box-shadow:none;
  5487. }
  5488. #u32415 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:120px;
  5492. top:51px;
  5493. width:200px;
  5494. height:1192px;
  5495. display:flex;
  5496. }
  5497. #u32415 .text {
  5498. position:absolute;
  5499. align-self:center;
  5500. padding:2px 2px 2px 2px;
  5501. box-sizing:border-box;
  5502. width:100%;
  5503. }
  5504. #u32415_text {
  5505. border-width:0px;
  5506. word-wrap:break-word;
  5507. text-transform:none;
  5508. visibility:hidden;
  5509. }
  5510. #u32416_div {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:200px;
  5516. height:60px;
  5517. background:inherit;
  5518. background-color:rgba(224, 231, 247, 1);
  5519. border:none;
  5520. border-radius:0px;
  5521. -moz-box-shadow:none;
  5522. -webkit-box-shadow:none;
  5523. box-shadow:none;
  5524. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5525. font-weight:500;
  5526. font-style:normal;
  5527. font-size:18px;
  5528. }
  5529. #u32416 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:120px;
  5533. top:51px;
  5534. width:200px;
  5535. height:60px;
  5536. display:flex;
  5537. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5538. font-weight:500;
  5539. font-style:normal;
  5540. font-size:18px;
  5541. }
  5542. #u32416 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:0px 0px 0px 20px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u32416_text {
  5550. border-width:0px;
  5551. word-wrap:break-word;
  5552. text-transform:none;
  5553. }
  5554. #u32417_div {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:97px;
  5560. height:22px;
  5561. background:inherit;
  5562. background-color:rgba(255, 255, 255, 0);
  5563. border:none;
  5564. border-radius:0px;
  5565. -moz-box-shadow:none;
  5566. -webkit-box-shadow:none;
  5567. box-shadow:none;
  5568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:16px;
  5572. }
  5573. #u32417 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:147px;
  5577. top:291px;
  5578. width:97px;
  5579. height:22px;
  5580. display:flex;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:16px;
  5585. }
  5586. #u32417 .text {
  5587. position:absolute;
  5588. align-self:flex-start;
  5589. padding:0px 0px 0px 0px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u32417_text {
  5594. border-width:0px;
  5595. white-space:nowrap;
  5596. text-transform:none;
  5597. }
  5598. #u32418_div {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:65px;
  5604. height:22px;
  5605. background:inherit;
  5606. background-color:rgba(255, 255, 255, 0);
  5607. border:none;
  5608. border-radius:0px;
  5609. -moz-box-shadow:none;
  5610. -webkit-box-shadow:none;
  5611. box-shadow:none;
  5612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5613. font-weight:400;
  5614. font-style:normal;
  5615. font-size:16px;
  5616. }
  5617. #u32418 {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:147px;
  5621. top:167px;
  5622. width:65px;
  5623. height:22px;
  5624. display:flex;
  5625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5626. font-weight:400;
  5627. font-style:normal;
  5628. font-size:16px;
  5629. }
  5630. #u32418 .text {
  5631. position:absolute;
  5632. align-self:flex-start;
  5633. padding:0px 0px 0px 0px;
  5634. box-sizing:border-box;
  5635. width:100%;
  5636. }
  5637. #u32418_text {
  5638. border-width:0px;
  5639. white-space:nowrap;
  5640. text-transform:none;
  5641. }
  5642. #u32419_div {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:49px;
  5648. height:17px;
  5649. background:inherit;
  5650. background-color:rgba(255, 255, 255, 0);
  5651. border:none;
  5652. border-radius:0px;
  5653. -moz-box-shadow:none;
  5654. -webkit-box-shadow:none;
  5655. box-shadow:none;
  5656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:12px;
  5660. color:#AAAAAA;
  5661. }
  5662. #u32419 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:147px;
  5666. top:131px;
  5667. width:49px;
  5668. height:17px;
  5669. display:flex;
  5670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5671. font-weight:400;
  5672. font-style:normal;
  5673. font-size:12px;
  5674. color:#AAAAAA;
  5675. }
  5676. #u32419 .text {
  5677. position:absolute;
  5678. align-self:flex-start;
  5679. padding:0px 0px 0px 0px;
  5680. box-sizing:border-box;
  5681. width:100%;
  5682. }
  5683. #u32419_text {
  5684. border-width:0px;
  5685. white-space:nowrap;
  5686. text-transform:none;
  5687. }
  5688. #u32420_div {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:0px;
  5692. top:0px;
  5693. width:65px;
  5694. height:22px;
  5695. background:inherit;
  5696. background-color:rgba(255, 255, 255, 0);
  5697. border:none;
  5698. border-radius:0px;
  5699. -moz-box-shadow:none;
  5700. -webkit-box-shadow:none;
  5701. box-shadow:none;
  5702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:16px;
  5706. }
  5707. #u32420 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:147px;
  5711. top:209px;
  5712. width:65px;
  5713. height:22px;
  5714. display:flex;
  5715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:16px;
  5719. }
  5720. #u32420 .text {
  5721. position:absolute;
  5722. align-self:flex-start;
  5723. padding:0px 0px 0px 0px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u32420_text {
  5728. border-width:0px;
  5729. white-space:nowrap;
  5730. text-transform:none;
  5731. }
  5732. #u32421_div {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:97px;
  5738. height:22px;
  5739. background:inherit;
  5740. background-color:rgba(255, 255, 255, 0);
  5741. border:none;
  5742. border-radius:0px;
  5743. -moz-box-shadow:none;
  5744. -webkit-box-shadow:none;
  5745. box-shadow:none;
  5746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5747. font-weight:400;
  5748. font-style:normal;
  5749. font-size:16px;
  5750. }
  5751. #u32421 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:147px;
  5755. top:333px;
  5756. width:97px;
  5757. height:22px;
  5758. display:flex;
  5759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:16px;
  5763. }
  5764. #u32421 .text {
  5765. position:absolute;
  5766. align-self:flex-start;
  5767. padding:0px 0px 0px 0px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u32421_text {
  5772. border-width:0px;
  5773. white-space:nowrap;
  5774. text-transform:none;
  5775. }
  5776. #u32422_div {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:65px;
  5782. height:22px;
  5783. background:inherit;
  5784. background-color:rgba(255, 255, 255, 0);
  5785. border:none;
  5786. border-radius:0px;
  5787. -moz-box-shadow:none;
  5788. -webkit-box-shadow:none;
  5789. box-shadow:none;
  5790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:16px;
  5794. }
  5795. #u32422 {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:147px;
  5799. top:440px;
  5800. width:65px;
  5801. height:22px;
  5802. display:flex;
  5803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5804. font-weight:400;
  5805. font-style:normal;
  5806. font-size:16px;
  5807. }
  5808. #u32422 .text {
  5809. position:absolute;
  5810. align-self:flex-start;
  5811. padding:0px 0px 0px 0px;
  5812. box-sizing:border-box;
  5813. width:100%;
  5814. }
  5815. #u32422_text {
  5816. border-width:0px;
  5817. white-space:nowrap;
  5818. text-transform:none;
  5819. }
  5820. #u32423_img {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:201px;
  5826. height:2px;
  5827. }
  5828. #u32423 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:120px;
  5832. top:378px;
  5833. width:200px;
  5834. height:1px;
  5835. display:flex;
  5836. }
  5837. #u32423 .text {
  5838. position:absolute;
  5839. align-self:center;
  5840. padding:2px 2px 2px 2px;
  5841. box-sizing:border-box;
  5842. width:100%;
  5843. }
  5844. #u32423_text {
  5845. border-width:0px;
  5846. word-wrap:break-word;
  5847. text-transform:none;
  5848. visibility:hidden;
  5849. }
  5850. #u32424_div {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:0px;
  5854. top:0px;
  5855. width:49px;
  5856. height:17px;
  5857. background:inherit;
  5858. background-color:rgba(255, 255, 255, 0);
  5859. border:none;
  5860. border-radius:0px;
  5861. -moz-box-shadow:none;
  5862. -webkit-box-shadow:none;
  5863. box-shadow:none;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:12px;
  5868. color:#AAAAAA;
  5869. }
  5870. #u32424 {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:147px;
  5874. top:404px;
  5875. width:49px;
  5876. height:17px;
  5877. display:flex;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. font-size:12px;
  5882. color:#AAAAAA;
  5883. }
  5884. #u32424 .text {
  5885. position:absolute;
  5886. align-self:flex-start;
  5887. padding:0px 0px 0px 0px;
  5888. box-sizing:border-box;
  5889. width:100%;
  5890. }
  5891. #u32424_text {
  5892. border-width:0px;
  5893. white-space:nowrap;
  5894. text-transform:none;
  5895. }
  5896. #u32425_div {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:65px;
  5902. height:22px;
  5903. background:inherit;
  5904. background-color:rgba(255, 255, 255, 0);
  5905. border:none;
  5906. border-radius:0px;
  5907. -moz-box-shadow:none;
  5908. -webkit-box-shadow:none;
  5909. box-shadow:none;
  5910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5911. font-weight:400;
  5912. font-style:normal;
  5913. font-size:16px;
  5914. }
  5915. #u32425 {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:147px;
  5919. top:482px;
  5920. width:65px;
  5921. height:22px;
  5922. display:flex;
  5923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. font-size:16px;
  5927. }
  5928. #u32425 .text {
  5929. position:absolute;
  5930. align-self:flex-start;
  5931. padding:0px 0px 0px 0px;
  5932. box-sizing:border-box;
  5933. width:100%;
  5934. }
  5935. #u32425_text {
  5936. border-width:0px;
  5937. white-space:nowrap;
  5938. text-transform:none;
  5939. }
  5940. #u32426_div {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:65px;
  5946. height:22px;
  5947. background:inherit;
  5948. background-color:rgba(255, 255, 255, 0);
  5949. border:none;
  5950. border-radius:0px;
  5951. -moz-box-shadow:none;
  5952. -webkit-box-shadow:none;
  5953. box-shadow:none;
  5954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:16px;
  5958. }
  5959. #u32426 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:147px;
  5963. top:586px;
  5964. width:65px;
  5965. height:22px;
  5966. display:flex;
  5967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. font-size:16px;
  5971. }
  5972. #u32426 .text {
  5973. position:absolute;
  5974. align-self:flex-start;
  5975. padding:0px 0px 0px 0px;
  5976. box-sizing:border-box;
  5977. width:100%;
  5978. }
  5979. #u32426_text {
  5980. border-width:0px;
  5981. white-space:nowrap;
  5982. text-transform:none;
  5983. }
  5984. #u32427_img {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:201px;
  5990. height:2px;
  5991. }
  5992. #u32427 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:120px;
  5996. top:524px;
  5997. width:200px;
  5998. height:1px;
  5999. display:flex;
  6000. }
  6001. #u32427 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:2px 2px 2px 2px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u32427_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. visibility:hidden;
  6013. }
  6014. #u32428_div {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:49px;
  6020. height:17px;
  6021. background:inherit;
  6022. background-color:rgba(255, 255, 255, 0);
  6023. border:none;
  6024. border-radius:0px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:12px;
  6032. color:#AAAAAA;
  6033. }
  6034. #u32428 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:147px;
  6038. top:550px;
  6039. width:49px;
  6040. height:17px;
  6041. display:flex;
  6042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6043. font-weight:400;
  6044. font-style:normal;
  6045. font-size:12px;
  6046. color:#AAAAAA;
  6047. }
  6048. #u32428 .text {
  6049. position:absolute;
  6050. align-self:flex-start;
  6051. padding:0px 0px 0px 0px;
  6052. box-sizing:border-box;
  6053. width:100%;
  6054. }
  6055. #u32428_text {
  6056. border-width:0px;
  6057. white-space:nowrap;
  6058. text-transform:none;
  6059. }
  6060. #u32429_div {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:65px;
  6066. height:22px;
  6067. background:inherit;
  6068. background-color:rgba(255, 255, 255, 0);
  6069. border:none;
  6070. border-radius:0px;
  6071. -moz-box-shadow:none;
  6072. -webkit-box-shadow:none;
  6073. box-shadow:none;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:16px;
  6078. }
  6079. #u32429 {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:147px;
  6083. top:251px;
  6084. width:65px;
  6085. height:22px;
  6086. display:flex;
  6087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:16px;
  6091. }
  6092. #u32429 .text {
  6093. position:absolute;
  6094. align-self:flex-start;
  6095. padding:0px 0px 0px 0px;
  6096. box-sizing:border-box;
  6097. width:100%;
  6098. }
  6099. #u32429_text {
  6100. border-width:0px;
  6101. white-space:nowrap;
  6102. text-transform:none;
  6103. }