styles.css 119 KB

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