styles.css 113 KB

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