styles.css 127 KB

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