styles.css 144 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-133px;
  6. width:2032px;
  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. #u25358 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u25359_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. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u25359 {
  52. border-width:0px;
  53. position:absolute;
  54. left:133px;
  55. top:42px;
  56. width:1000px;
  57. height:1201px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u25359 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u25359_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u25360_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:47px;
  88. height:35px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 0);
  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. filter:drop-shadow(none);
  98. transition:none;
  99. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  100. font-weight:500;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u25360 {
  105. border-width:0px;
  106. position:absolute;
  107. left:153px;
  108. top:60px;
  109. width:47px;
  110. height:35px;
  111. display:flex;
  112. transition:none;
  113. transform-origin:50% 50%;
  114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  115. font-weight:500;
  116. font-style:normal;
  117. font-size:18px;
  118. }
  119. #u25360 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:5px 10px 5px 0px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u25360_text {
  127. border-width:0px;
  128. white-space:nowrap;
  129. text-transform:none;
  130. }
  131. #u25361 {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:0px;
  137. height:0px;
  138. }
  139. #u25362_div {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:40px;
  145. height:40px;
  146. background:inherit;
  147. background-color:rgba(255, 255, 255, 0);
  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. filter:drop-shadow(none);
  155. transition:none;
  156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  157. font-weight:500;
  158. font-style:normal;
  159. font-size:14px;
  160. text-align:center;
  161. }
  162. #u25362 {
  163. border-width:0px;
  164. position:absolute;
  165. left:1093px;
  166. top:42px;
  167. width:40px;
  168. height:40px;
  169. display:flex;
  170. transition:none;
  171. transform-origin:50% 50%;
  172. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  173. font-weight:500;
  174. font-style:normal;
  175. font-size:14px;
  176. text-align:center;
  177. }
  178. #u25362 .text {
  179. position:absolute;
  180. align-self:center;
  181. padding:5px 10px 5px 0px;
  182. box-sizing:border-box;
  183. width:100%;
  184. }
  185. #u25362_text {
  186. border-width:0px;
  187. word-wrap:break-word;
  188. text-transform:none;
  189. }
  190. #u25363 {
  191. border-width:0px;
  192. position:absolute;
  193. left:1081px;
  194. top:58px;
  195. width:13px;
  196. height:13px;
  197. display:flex;
  198. transition:none;
  199. font-size:14px;
  200. }
  201. #u25363 .text {
  202. position:absolute;
  203. align-self:center;
  204. padding:2px 2px 2px 2px;
  205. box-sizing:border-box;
  206. width:100%;
  207. }
  208. #u25363_img {
  209. border-width:0px;
  210. position:absolute;
  211. left:0px;
  212. top:0px;
  213. width:13px;
  214. height:13px;
  215. }
  216. #u25363_text {
  217. border-width:0px;
  218. word-wrap:break-word;
  219. text-transform:none;
  220. visibility:hidden;
  221. }
  222. #u25364 {
  223. border-width:0px;
  224. position:absolute;
  225. left:0px;
  226. top:0px;
  227. width:0px;
  228. height:0px;
  229. }
  230. #u25365_div {
  231. border-width:0px;
  232. position:absolute;
  233. left:0px;
  234. top:0px;
  235. width:1000px;
  236. height:60px;
  237. background:inherit;
  238. background-color:rgba(255, 255, 255, 1);
  239. box-sizing:border-box;
  240. border-width:1px;
  241. border-style:solid;
  242. border-color:rgba(215, 215, 215, 1);
  243. border-radius:0px;
  244. filter:drop-shadow(none);
  245. transition:none;
  246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  247. font-weight:400;
  248. font-style:normal;
  249. font-size:14px;
  250. color:#AAAAAA;
  251. text-align:center;
  252. line-height:30px;
  253. }
  254. #u25365 {
  255. border-width:0px;
  256. position:absolute;
  257. left:133px;
  258. top:1183px;
  259. width:1000px;
  260. height:60px;
  261. display:flex;
  262. transition:none;
  263. transform-origin:50% 50%;
  264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  265. font-weight:400;
  266. font-style:normal;
  267. font-size:14px;
  268. color:#AAAAAA;
  269. text-align:center;
  270. line-height:30px;
  271. }
  272. #u25365 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:5px 10px 5px 10px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u25365_text {
  280. border-width:0px;
  281. word-wrap:break-word;
  282. text-transform:none;
  283. visibility:hidden;
  284. }
  285. #u25366_div {
  286. border-width:0px;
  287. position:absolute;
  288. left:0px;
  289. top:0px;
  290. width:80px;
  291. height:30px;
  292. background:inherit;
  293. background-color:rgba(255, 255, 255, 1);
  294. box-sizing:border-box;
  295. border-width:1px;
  296. border-style:solid;
  297. border-color:rgba(170, 170, 170, 1);
  298. border-radius:4px;
  299. filter:drop-shadow(none);
  300. transition:none;
  301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  302. font-weight:400;
  303. font-style:normal;
  304. font-size:14px;
  305. }
  306. #u25366 {
  307. border-width:0px;
  308. position:absolute;
  309. left:943px;
  310. top:1198px;
  311. width:80px;
  312. height:30px;
  313. display:flex;
  314. transition:none;
  315. transform-origin:50% 50%;
  316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  317. font-weight:400;
  318. font-style:normal;
  319. font-size:14px;
  320. }
  321. #u25366 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u25366_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. }
  333. #u25367_div {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:80px;
  339. height:30px;
  340. background:inherit;
  341. background-color:rgba(24, 144, 255, 1);
  342. border-radius:4px;
  343. filter:drop-shadow(none);
  344. transition:none;
  345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  346. font-weight:400;
  347. font-style:normal;
  348. font-size:14px;
  349. color:#FFFFFF;
  350. }
  351. #u25367 {
  352. border-width:0px;
  353. position:absolute;
  354. left:1033px;
  355. top:1198px;
  356. width:80px;
  357. height:30px;
  358. display:flex;
  359. transition:none;
  360. transform-origin:50% 50%;
  361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  362. font-weight:400;
  363. font-style:normal;
  364. font-size:14px;
  365. color:#FFFFFF;
  366. }
  367. #u25367 .text {
  368. position:absolute;
  369. align-self:center;
  370. padding:2px 2px 2px 2px;
  371. box-sizing:border-box;
  372. width:100%;
  373. }
  374. #u25367_text {
  375. border-width:0px;
  376. word-wrap:break-word;
  377. text-transform:none;
  378. }
  379. #u25368_div {
  380. border-width:0px;
  381. position:absolute;
  382. left:0px;
  383. top:0px;
  384. width:71px;
  385. height:40px;
  386. background:inherit;
  387. background-color:rgba(255, 255, 255, 0);
  388. border-top:0px;
  389. border-right:0px;
  390. border-bottom:0px;
  391. border-radius:0px;
  392. border-top-left-radius:0px;
  393. border-bottom-left-radius:0px;
  394. filter:drop-shadow(none);
  395. transition:none;
  396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  397. font-weight:400;
  398. font-style:normal;
  399. font-size:14px;
  400. color:#7F7F7F;
  401. text-align:right;
  402. }
  403. #u25368 {
  404. border-width:0px;
  405. position:absolute;
  406. left:190px;
  407. top:278px;
  408. width:71px;
  409. height:40px;
  410. display:flex;
  411. transition:none;
  412. transform-origin:50% 50%;
  413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  414. font-weight:400;
  415. font-style:normal;
  416. font-size:14px;
  417. color:#7F7F7F;
  418. text-align:right;
  419. }
  420. #u25368 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:5px 0px 5px 0px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u25368_text {
  428. border-width:0px;
  429. white-space:nowrap;
  430. text-transform:none;
  431. }
  432. #u25369_div {
  433. border-width:0px;
  434. position:absolute;
  435. left:0px;
  436. top:0px;
  437. width:78px;
  438. height:40px;
  439. background:inherit;
  440. background-color:rgba(255, 255, 255, 0);
  441. border-top:0px;
  442. border-right:0px;
  443. border-bottom:0px;
  444. border-radius:0px;
  445. border-top-left-radius:0px;
  446. border-bottom-left-radius:0px;
  447. filter:drop-shadow(none);
  448. transition:none;
  449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  450. font-weight:400;
  451. font-style:normal;
  452. font-size:14px;
  453. color:#7F7F7F;
  454. text-align:right;
  455. }
  456. #u25369 {
  457. border-width:0px;
  458. position:absolute;
  459. left:621px;
  460. top:128px;
  461. width:78px;
  462. height:40px;
  463. display:flex;
  464. transition:none;
  465. transform-origin:50% 50%;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:14px;
  470. color:#7F7F7F;
  471. text-align:right;
  472. }
  473. #u25369 .text {
  474. position:absolute;
  475. align-self:center;
  476. padding:5px 0px 5px 0px;
  477. box-sizing:border-box;
  478. width:100%;
  479. }
  480. #u25369_text {
  481. border-width:0px;
  482. white-space:nowrap;
  483. text-transform:none;
  484. }
  485. #u25370 {
  486. border-width:0px;
  487. position:absolute;
  488. left:0px;
  489. top:0px;
  490. width:0px;
  491. height:0px;
  492. }
  493. #u25371_div {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:300px;
  499. height:40px;
  500. background:inherit;
  501. background-color:rgba(255, 255, 255, 1);
  502. box-sizing:border-box;
  503. border-width:1px;
  504. border-style:solid;
  505. border-color:rgba(201, 201, 201, 1);
  506. border-radius:4px;
  507. filter:drop-shadow(none);
  508. transition:none;
  509. font-family:"Microsoft YaHei", sans-serif;
  510. font-weight:400;
  511. font-style:normal;
  512. font-size:14px;
  513. color:#CCCCCC;
  514. text-align:left;
  515. }
  516. #u25371 {
  517. border-width:0px;
  518. position:absolute;
  519. left:271px;
  520. top:278px;
  521. width:300px;
  522. height:40px;
  523. display:flex;
  524. transition:none;
  525. transform-origin:50% 50%;
  526. font-family:"Microsoft YaHei", sans-serif;
  527. font-weight:400;
  528. font-style:normal;
  529. font-size:14px;
  530. color:#CCCCCC;
  531. text-align:left;
  532. }
  533. #u25371 .text {
  534. position:absolute;
  535. align-self:center;
  536. padding:2px 8px 2px 8px;
  537. box-sizing:border-box;
  538. width:100%;
  539. }
  540. #u25371_text {
  541. border-width:0px;
  542. word-wrap:break-word;
  543. text-transform:none;
  544. visibility:hidden;
  545. }
  546. #u25372_input {
  547. position:absolute;
  548. left:0px;
  549. top:0px;
  550. width:280px;
  551. height:38px;
  552. padding:2px 2px 2px 2px;
  553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  554. font-weight:400;
  555. font-style:normal;
  556. font-size:14px;
  557. letter-spacing:normal;
  558. color:#000000;
  559. vertical-align:none;
  560. text-align:left;
  561. text-transform:none;
  562. background-color:transparent;
  563. border-color:transparent;
  564. }
  565. #u25372_input.hint {
  566. position:absolute;
  567. left:0px;
  568. top:0px;
  569. width:280px;
  570. height:38px;
  571. padding:2px 2px 2px 2px;
  572. font-family:"Microsoft YaHei", sans-serif;
  573. font-weight:400;
  574. font-style:normal;
  575. font-size:12px;
  576. letter-spacing:normal;
  577. color:#AAAAAA;
  578. vertical-align:none;
  579. text-align:left;
  580. text-transform:none;
  581. background-color:transparent;
  582. border-color:transparent;
  583. }
  584. #u25372_input.disabled {
  585. position:absolute;
  586. left:0px;
  587. top:0px;
  588. width:280px;
  589. height:38px;
  590. padding:2px 2px 2px 2px;
  591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  592. font-weight:400;
  593. font-style:normal;
  594. font-size:14px;
  595. letter-spacing:normal;
  596. color:#000000;
  597. vertical-align:none;
  598. text-align:left;
  599. text-transform:none;
  600. background-color:transparent;
  601. border-color:transparent;
  602. }
  603. #u25372_input.hint.disabled {
  604. position:absolute;
  605. left:0px;
  606. top:0px;
  607. width:280px;
  608. height:38px;
  609. padding:2px 2px 2px 2px;
  610. font-family:"Microsoft YaHei", sans-serif;
  611. font-weight:400;
  612. font-style:normal;
  613. font-size:12px;
  614. letter-spacing:normal;
  615. color:#AAAAAA;
  616. vertical-align:none;
  617. text-align:left;
  618. text-transform:none;
  619. background-color:transparent;
  620. border-color:transparent;
  621. }
  622. #u25372_div {
  623. border-width:0px;
  624. position:absolute;
  625. left:0px;
  626. top:0px;
  627. width:280px;
  628. height:38px;
  629. background:inherit;
  630. background-color:rgba(255, 255, 255, 1);
  631. border-radius:0px;
  632. filter:drop-shadow(none);
  633. transition:none;
  634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  635. font-weight:400;
  636. font-style:normal;
  637. font-size:14px;
  638. }
  639. #u25372 {
  640. border-width:0px;
  641. position:absolute;
  642. left:282px;
  643. top:279px;
  644. width:280px;
  645. height:38px;
  646. display:flex;
  647. transition:none;
  648. transform-origin:50% 50%;
  649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  650. font-weight:400;
  651. font-style:normal;
  652. font-size:14px;
  653. }
  654. #u25372 .text {
  655. position:absolute;
  656. align-self:center;
  657. padding:2px 2px 2px 2px;
  658. box-sizing:border-box;
  659. width:100%;
  660. }
  661. #u25372_div.hint {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:280px;
  667. height:38px;
  668. background:inherit;
  669. background-color:rgba(255, 255, 255, 1);
  670. border-radius:0px;
  671. filter:drop-shadow(none);
  672. transition:none;
  673. font-family:"Microsoft YaHei", sans-serif;
  674. font-weight:400;
  675. font-style:normal;
  676. font-size:14px;
  677. }
  678. #u25372.hint {
  679. }
  680. #u25372_div.disabled {
  681. border-width:0px;
  682. position:absolute;
  683. left:0px;
  684. top:0px;
  685. width:280px;
  686. height:38px;
  687. background:inherit;
  688. background-color:rgba(240, 240, 240, 1);
  689. border-radius:0px;
  690. filter:drop-shadow(none);
  691. transition:none;
  692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  693. font-weight:400;
  694. font-style:normal;
  695. font-size:14px;
  696. }
  697. #u25372.disabled {
  698. }
  699. #u25372_div.hint.disabled {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:280px;
  705. height:38px;
  706. background:inherit;
  707. background-color:rgba(240, 240, 240, 1);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:"Microsoft YaHei", sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:14px;
  715. }
  716. #u25372.hint.disabled {
  717. }
  718. #u25373 {
  719. border-width:0px;
  720. position:absolute;
  721. left:548px;
  722. top:291px;
  723. width:12px;
  724. height:15px;
  725. display:flex;
  726. transition:none;
  727. }
  728. #u25373 .text {
  729. position:absolute;
  730. align-self:center;
  731. padding:2px 2px 2px 2px;
  732. box-sizing:border-box;
  733. width:100%;
  734. }
  735. #u25373_img {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:12px;
  741. height:15px;
  742. }
  743. #u25373_text {
  744. border-width:0px;
  745. word-wrap:break-word;
  746. text-transform:none;
  747. visibility:hidden;
  748. }
  749. #u25374 {
  750. border-width:0px;
  751. position:absolute;
  752. left:0px;
  753. top:0px;
  754. width:0px;
  755. height:0px;
  756. }
  757. #u25375_div {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:300px;
  763. height:40px;
  764. background:inherit;
  765. background-color:rgba(255, 255, 255, 1);
  766. box-sizing:border-box;
  767. border-width:1px;
  768. border-style:solid;
  769. border-color:rgba(215, 215, 215, 1);
  770. border-radius:4px;
  771. filter:drop-shadow(none);
  772. transition:none;
  773. font-size:14px;
  774. }
  775. #u25375 {
  776. border-width:0px;
  777. position:absolute;
  778. left:709px;
  779. top:128px;
  780. width:300px;
  781. height:40px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-size:14px;
  786. }
  787. #u25375 .text {
  788. position:absolute;
  789. align-self:center;
  790. padding:2px 2px 2px 2px;
  791. box-sizing:border-box;
  792. width:100%;
  793. }
  794. #u25375_text {
  795. border-width:0px;
  796. word-wrap:break-word;
  797. text-transform:none;
  798. visibility:hidden;
  799. }
  800. #u25376_input {
  801. position:absolute;
  802. left:0px;
  803. top:0px;
  804. width:286px;
  805. height:31px;
  806. padding:2px 2px 2px 2px;
  807. font-family:'ArialMT', 'Arial', sans-serif;
  808. font-weight:400;
  809. font-style:normal;
  810. font-size:14px;
  811. letter-spacing:normal;
  812. color:#AAAAAA;
  813. vertical-align:none;
  814. text-align:left;
  815. text-transform:none;
  816. background-color:transparent;
  817. border-color:transparent;
  818. }
  819. #u25376_input.disabled {
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:286px;
  824. height:31px;
  825. padding:2px 2px 2px 2px;
  826. font-family:'ArialMT', 'Arial', sans-serif;
  827. font-weight:400;
  828. font-style:normal;
  829. font-size:14px;
  830. letter-spacing:normal;
  831. color:#AAAAAA;
  832. vertical-align:none;
  833. text-align:left;
  834. text-transform:none;
  835. background-color:transparent;
  836. border-color:transparent;
  837. }
  838. #u25376_div {
  839. border-width:0px;
  840. position:absolute;
  841. left:0px;
  842. top:0px;
  843. width:286px;
  844. height:31px;
  845. background:inherit;
  846. background-color:rgba(255, 255, 255, 1);
  847. border-radius:0px;
  848. filter:drop-shadow(none);
  849. transition:none;
  850. font-size:14px;
  851. color:#AAAAAA;
  852. }
  853. #u25376 {
  854. border-width:0px;
  855. position:absolute;
  856. left:717px;
  857. top:131px;
  858. width:286px;
  859. height:31px;
  860. display:flex;
  861. transition:none;
  862. transform-origin:50% 50%;
  863. font-size:14px;
  864. color:#AAAAAA;
  865. }
  866. #u25376 .text {
  867. position:absolute;
  868. align-self:flex-start;
  869. padding:2px 2px 2px 2px;
  870. box-sizing:border-box;
  871. width:100%;
  872. }
  873. #u25376_div.disabled {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:286px;
  879. height:31px;
  880. background:inherit;
  881. background-color:rgba(240, 240, 240, 1);
  882. border-radius:0px;
  883. filter:drop-shadow(none);
  884. transition:none;
  885. font-size:14px;
  886. color:#AAAAAA;
  887. }
  888. #u25376.disabled {
  889. }
  890. .u25376_input_option {
  891. font-size:14px;
  892. }
  893. #u25377 {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:0px;
  899. height:0px;
  900. }
  901. #u25378_div {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:738px;
  907. height:80px;
  908. background:inherit;
  909. background-color:rgba(255, 255, 255, 1);
  910. box-sizing:border-box;
  911. border-width:1px;
  912. border-style:solid;
  913. border-color:rgba(188, 188, 188, 1);
  914. border-radius:4px;
  915. filter:drop-shadow(none);
  916. transition:none;
  917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  918. font-weight:400;
  919. font-style:normal;
  920. font-size:12px;
  921. text-align:right;
  922. }
  923. #u25378 {
  924. border-width:0px;
  925. position:absolute;
  926. left:271px;
  927. top:634px;
  928. width:738px;
  929. height:80px;
  930. display:flex;
  931. transition:none;
  932. transform-origin:50% 50%;
  933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  934. font-weight:400;
  935. font-style:normal;
  936. font-size:12px;
  937. text-align:right;
  938. }
  939. #u25378 .text {
  940. position:absolute;
  941. align-self:center;
  942. padding:8px 15px 8px 15px;
  943. box-sizing:border-box;
  944. width:100%;
  945. }
  946. #u25378_text {
  947. border-width:0px;
  948. word-wrap:break-word;
  949. text-transform:none;
  950. visibility:hidden;
  951. }
  952. #u25379_input {
  953. position:absolute;
  954. left:0px;
  955. top:0px;
  956. width:142px;
  957. height:26px;
  958. padding:2px 2px 2px 2px;
  959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  960. font-weight:400;
  961. font-style:normal;
  962. font-size:12px;
  963. letter-spacing:normal;
  964. color:#7F7F7F;
  965. vertical-align:none;
  966. text-align:left;
  967. text-transform:none;
  968. background-color:transparent;
  969. border-color:transparent;
  970. }
  971. #u25379_input.hint {
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:142px;
  976. height:26px;
  977. padding:2px 2px 2px 2px;
  978. font-family:"Microsoft YaHei", sans-serif;
  979. font-weight:400;
  980. font-style:normal;
  981. font-size:12px;
  982. letter-spacing:normal;
  983. color:#AAAAAA;
  984. vertical-align:none;
  985. text-align:left;
  986. text-transform:none;
  987. background-color:transparent;
  988. border-color:transparent;
  989. }
  990. #u25379_input.disabled {
  991. position:absolute;
  992. left:0px;
  993. top:0px;
  994. width:142px;
  995. height:26px;
  996. padding:2px 2px 2px 2px;
  997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:12px;
  1001. letter-spacing:normal;
  1002. color:#7F7F7F;
  1003. vertical-align:none;
  1004. text-align:left;
  1005. text-transform:none;
  1006. background-color:transparent;
  1007. border-color:transparent;
  1008. }
  1009. #u25379_input.hint.disabled {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:142px;
  1014. height:26px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:"Microsoft YaHei", sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:12px;
  1020. letter-spacing:normal;
  1021. color:#AAAAAA;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u25379_div {
  1029. border-width:0px;
  1030. position:absolute;
  1031. left:0px;
  1032. top:0px;
  1033. width:142px;
  1034. height:26px;
  1035. background:inherit;
  1036. background-color:rgba(255, 255, 255, 1);
  1037. border-radius:0px;
  1038. filter:drop-shadow(none);
  1039. transition:none;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. font-size:12px;
  1044. color:#7F7F7F;
  1045. }
  1046. #u25379 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:279px;
  1050. top:636px;
  1051. width:142px;
  1052. height:26px;
  1053. display:flex;
  1054. transition:none;
  1055. transform-origin:50% 50%;
  1056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1057. font-weight:400;
  1058. font-style:normal;
  1059. font-size:12px;
  1060. color:#7F7F7F;
  1061. }
  1062. #u25379 .text {
  1063. position:absolute;
  1064. align-self:center;
  1065. padding:2px 2px 2px 2px;
  1066. box-sizing:border-box;
  1067. width:100%;
  1068. }
  1069. #u25379_div.hint {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:142px;
  1075. height:26px;
  1076. background:inherit;
  1077. background-color:rgba(255, 255, 255, 1);
  1078. border-radius:0px;
  1079. filter:drop-shadow(none);
  1080. transition:none;
  1081. font-family:"Microsoft YaHei", sans-serif;
  1082. font-weight:400;
  1083. font-style:normal;
  1084. font-size:12px;
  1085. color:#7F7F7F;
  1086. }
  1087. #u25379.hint {
  1088. }
  1089. #u25379_div.disabled {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:0px;
  1093. top:0px;
  1094. width:142px;
  1095. height:26px;
  1096. background:inherit;
  1097. background-color:rgba(240, 240, 240, 1);
  1098. border-radius:0px;
  1099. filter:drop-shadow(none);
  1100. transition:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. font-size:12px;
  1105. color:#7F7F7F;
  1106. }
  1107. #u25379.disabled {
  1108. }
  1109. #u25379_div.hint.disabled {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:142px;
  1115. height:26px;
  1116. background:inherit;
  1117. background-color:rgba(240, 240, 240, 1);
  1118. border-radius:0px;
  1119. filter:drop-shadow(none);
  1120. transition:none;
  1121. font-family:"Microsoft YaHei", sans-serif;
  1122. font-weight:400;
  1123. font-style:normal;
  1124. font-size:12px;
  1125. color:#7F7F7F;
  1126. }
  1127. #u25379.hint.disabled {
  1128. }
  1129. #u25380_div {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:0px;
  1133. top:0px;
  1134. width:71px;
  1135. height:26px;
  1136. background:inherit;
  1137. background-color:rgba(255, 255, 255, 0);
  1138. border-top:0px;
  1139. border-right:0px;
  1140. border-bottom:0px;
  1141. border-radius:0px;
  1142. border-top-left-radius:0px;
  1143. border-bottom-left-radius:0px;
  1144. filter:drop-shadow(none);
  1145. transition:none;
  1146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1147. font-weight:400;
  1148. font-style:normal;
  1149. font-size:14px;
  1150. color:#7F7F7F;
  1151. text-align:right;
  1152. }
  1153. #u25380 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:190px;
  1157. top:636px;
  1158. width:71px;
  1159. height:26px;
  1160. display:flex;
  1161. transition:none;
  1162. transform-origin:50% 50%;
  1163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1164. font-weight:400;
  1165. font-style:normal;
  1166. font-size:14px;
  1167. color:#7F7F7F;
  1168. text-align:right;
  1169. }
  1170. #u25380 .text {
  1171. position:absolute;
  1172. align-self:center;
  1173. padding:5px 0px 5px 0px;
  1174. box-sizing:border-box;
  1175. width:100%;
  1176. }
  1177. #u25380_text {
  1178. border-width:0px;
  1179. white-space:nowrap;
  1180. text-transform:none;
  1181. }
  1182. #u25381_div {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:0px;
  1186. top:0px;
  1187. width:60px;
  1188. height:60px;
  1189. background:inherit;
  1190. background-color:rgba(255, 255, 255, 1);
  1191. box-sizing:border-box;
  1192. border-width:1px;
  1193. border-style:solid;
  1194. border-color:rgba(188, 188, 188, 1);
  1195. border-radius:4px;
  1196. filter:drop-shadow(none);
  1197. transition:none;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:28px;
  1202. }
  1203. #u25381 {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:271px;
  1207. top:493px;
  1208. width:60px;
  1209. height:60px;
  1210. display:flex;
  1211. transition:none;
  1212. transform-origin:50% 50%;
  1213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1214. font-weight:400;
  1215. font-style:normal;
  1216. font-size:28px;
  1217. }
  1218. #u25381 .text {
  1219. position:absolute;
  1220. align-self:center;
  1221. padding:8px 15px 8px 15px;
  1222. box-sizing:border-box;
  1223. width:100%;
  1224. }
  1225. #u25381_text {
  1226. border-width:0px;
  1227. word-wrap:break-word;
  1228. text-transform:none;
  1229. }
  1230. #u25382_div {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:0px;
  1234. top:0px;
  1235. width:71px;
  1236. height:30px;
  1237. background:inherit;
  1238. background-color:rgba(255, 255, 255, 0);
  1239. border-top:0px;
  1240. border-right:0px;
  1241. border-bottom:0px;
  1242. border-radius:0px;
  1243. border-top-left-radius:0px;
  1244. border-bottom-left-radius:0px;
  1245. filter:drop-shadow(none);
  1246. transition:none;
  1247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1248. font-weight:400;
  1249. font-style:normal;
  1250. font-size:14px;
  1251. color:#7F7F7F;
  1252. }
  1253. #u25382 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:190px;
  1257. top:493px;
  1258. width:71px;
  1259. height:30px;
  1260. display:flex;
  1261. transition:none;
  1262. transform-origin:50% 50%;
  1263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1264. font-weight:400;
  1265. font-style:normal;
  1266. font-size:14px;
  1267. color:#7F7F7F;
  1268. }
  1269. #u25382 .text {
  1270. position:absolute;
  1271. align-self:center;
  1272. padding:5px 0px 5px 0px;
  1273. box-sizing:border-box;
  1274. width:100%;
  1275. }
  1276. #u25382_text {
  1277. border-width:0px;
  1278. white-space:nowrap;
  1279. text-transform:none;
  1280. }
  1281. #u25383_div {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:78px;
  1287. height:40px;
  1288. background:inherit;
  1289. background-color:rgba(255, 255, 255, 0);
  1290. border-top:0px;
  1291. border-right:0px;
  1292. border-bottom:0px;
  1293. border-radius:0px;
  1294. border-top-left-radius:0px;
  1295. border-bottom-left-radius:0px;
  1296. filter:drop-shadow(none);
  1297. transition:none;
  1298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1299. font-weight:400;
  1300. font-style:normal;
  1301. font-size:14px;
  1302. color:#7F7F7F;
  1303. text-align:right;
  1304. }
  1305. #u25383 {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:183px;
  1309. top:178px;
  1310. width:78px;
  1311. height:40px;
  1312. display:flex;
  1313. transition:none;
  1314. transform-origin:50% 50%;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:14px;
  1319. color:#7F7F7F;
  1320. text-align:right;
  1321. }
  1322. #u25383 .text {
  1323. position:absolute;
  1324. align-self:center;
  1325. padding:5px 0px 5px 0px;
  1326. box-sizing:border-box;
  1327. width:100%;
  1328. }
  1329. #u25383_text {
  1330. border-width:0px;
  1331. white-space:nowrap;
  1332. text-transform:none;
  1333. }
  1334. #u25384 {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:0px;
  1338. top:0px;
  1339. width:0px;
  1340. height:0px;
  1341. }
  1342. #u25385_div {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:300px;
  1348. height:40px;
  1349. background:inherit;
  1350. background-color:rgba(255, 255, 255, 1);
  1351. box-sizing:border-box;
  1352. border-width:1px;
  1353. border-style:solid;
  1354. border-color:rgba(215, 215, 215, 1);
  1355. border-radius:4px;
  1356. filter:drop-shadow(none);
  1357. transition:none;
  1358. font-size:14px;
  1359. }
  1360. #u25385 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:270px;
  1364. top:178px;
  1365. width:300px;
  1366. height:40px;
  1367. display:flex;
  1368. transition:none;
  1369. transform-origin:50% 50%;
  1370. font-size:14px;
  1371. }
  1372. #u25385 .text {
  1373. position:absolute;
  1374. align-self:center;
  1375. padding:2px 2px 2px 2px;
  1376. box-sizing:border-box;
  1377. width:100%;
  1378. }
  1379. #u25385_text {
  1380. border-width:0px;
  1381. word-wrap:break-word;
  1382. text-transform:none;
  1383. visibility:hidden;
  1384. }
  1385. #u25386_input {
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:285px;
  1390. height:31px;
  1391. padding:2px 2px 2px 2px;
  1392. font-family:'ArialMT', 'Arial', sans-serif;
  1393. font-weight:400;
  1394. font-style:normal;
  1395. font-size:14px;
  1396. letter-spacing:normal;
  1397. color:#AAAAAA;
  1398. vertical-align:none;
  1399. text-align:left;
  1400. text-transform:none;
  1401. background-color:transparent;
  1402. border-color:transparent;
  1403. }
  1404. #u25386_input.disabled {
  1405. position:absolute;
  1406. left:0px;
  1407. top:0px;
  1408. width:285px;
  1409. height:31px;
  1410. padding:2px 2px 2px 2px;
  1411. font-family:'ArialMT', 'Arial', sans-serif;
  1412. font-weight:400;
  1413. font-style:normal;
  1414. font-size:14px;
  1415. letter-spacing:normal;
  1416. color:#AAAAAA;
  1417. vertical-align:none;
  1418. text-align:left;
  1419. text-transform:none;
  1420. background-color:transparent;
  1421. border-color:transparent;
  1422. }
  1423. #u25386_div {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:285px;
  1429. height:31px;
  1430. background:inherit;
  1431. background-color:rgba(255, 255, 255, 1);
  1432. border-radius:0px;
  1433. filter:drop-shadow(none);
  1434. transition:none;
  1435. font-size:14px;
  1436. color:#AAAAAA;
  1437. }
  1438. #u25386 {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:280px;
  1442. top:181px;
  1443. width:285px;
  1444. height:31px;
  1445. display:flex;
  1446. transition:none;
  1447. transform-origin:50% 50%;
  1448. font-size:14px;
  1449. color:#AAAAAA;
  1450. }
  1451. #u25386 .text {
  1452. position:absolute;
  1453. align-self:flex-start;
  1454. padding:2px 2px 2px 2px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u25386_div.disabled {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:285px;
  1464. height:31px;
  1465. background:inherit;
  1466. background-color:rgba(240, 240, 240, 1);
  1467. border-radius:0px;
  1468. filter:drop-shadow(none);
  1469. transition:none;
  1470. font-size:14px;
  1471. color:#AAAAAA;
  1472. }
  1473. #u25386.disabled {
  1474. }
  1475. .u25386_input_option {
  1476. font-size:14px;
  1477. }
  1478. #u25387_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:78px;
  1484. height:40px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border-top:0px;
  1488. border-right:0px;
  1489. border-bottom:0px;
  1490. border-radius:0px;
  1491. border-top-left-radius:0px;
  1492. border-bottom-left-radius:0px;
  1493. filter:drop-shadow(none);
  1494. transition:none;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. font-size:14px;
  1499. color:#7F7F7F;
  1500. text-align:right;
  1501. }
  1502. #u25387 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:621px;
  1506. top:228px;
  1507. width:78px;
  1508. height:40px;
  1509. display:flex;
  1510. transition:none;
  1511. transform-origin:50% 50%;
  1512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1513. font-weight:400;
  1514. font-style:normal;
  1515. font-size:14px;
  1516. color:#7F7F7F;
  1517. text-align:right;
  1518. }
  1519. #u25387 .text {
  1520. position:absolute;
  1521. align-self:center;
  1522. padding:5px 0px 5px 0px;
  1523. box-sizing:border-box;
  1524. width:100%;
  1525. }
  1526. #u25387_text {
  1527. border-width:0px;
  1528. white-space:nowrap;
  1529. text-transform:none;
  1530. }
  1531. #u25388 {
  1532. border-width:0px;
  1533. position:absolute;
  1534. left:0px;
  1535. top:0px;
  1536. width:0px;
  1537. height:0px;
  1538. }
  1539. #u25389_div {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:0px;
  1543. top:0px;
  1544. width:300px;
  1545. height:40px;
  1546. background:inherit;
  1547. background-color:rgba(255, 255, 255, 1);
  1548. box-sizing:border-box;
  1549. border-width:1px;
  1550. border-style:solid;
  1551. border-color:rgba(201, 201, 201, 1);
  1552. border-radius:4px;
  1553. filter:drop-shadow(none);
  1554. transition:none;
  1555. font-family:"Microsoft YaHei", sans-serif;
  1556. font-weight:400;
  1557. font-style:normal;
  1558. font-size:14px;
  1559. color:#CCCCCC;
  1560. text-align:left;
  1561. }
  1562. #u25389 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:709px;
  1566. top:228px;
  1567. width:300px;
  1568. height:40px;
  1569. display:flex;
  1570. transition:none;
  1571. transform-origin:50% 50%;
  1572. font-family:"Microsoft YaHei", sans-serif;
  1573. font-weight:400;
  1574. font-style:normal;
  1575. font-size:14px;
  1576. color:#CCCCCC;
  1577. text-align:left;
  1578. }
  1579. #u25389 .text {
  1580. position:absolute;
  1581. align-self:center;
  1582. padding:2px 8px 2px 8px;
  1583. box-sizing:border-box;
  1584. width:100%;
  1585. }
  1586. #u25389_text {
  1587. border-width:0px;
  1588. word-wrap:break-word;
  1589. text-transform:none;
  1590. visibility:hidden;
  1591. }
  1592. #u25390_input {
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:285px;
  1597. height:38px;
  1598. padding:2px 2px 2px 2px;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:14px;
  1603. letter-spacing:normal;
  1604. color:#000000;
  1605. vertical-align:none;
  1606. text-align:left;
  1607. text-transform:none;
  1608. background-color:transparent;
  1609. border-color:transparent;
  1610. }
  1611. #u25390_input.hint {
  1612. position:absolute;
  1613. left:0px;
  1614. top:0px;
  1615. width:285px;
  1616. height:38px;
  1617. padding:2px 2px 2px 2px;
  1618. font-family:"Microsoft YaHei", sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:12px;
  1622. letter-spacing:normal;
  1623. color:#AAAAAA;
  1624. vertical-align:none;
  1625. text-align:left;
  1626. text-transform:none;
  1627. background-color:transparent;
  1628. border-color:transparent;
  1629. }
  1630. #u25390_input.disabled {
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:285px;
  1635. height:38px;
  1636. padding:2px 2px 2px 2px;
  1637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1638. font-weight:400;
  1639. font-style:normal;
  1640. font-size:14px;
  1641. letter-spacing:normal;
  1642. color:#000000;
  1643. vertical-align:none;
  1644. text-align:left;
  1645. text-transform:none;
  1646. background-color:transparent;
  1647. border-color:transparent;
  1648. }
  1649. #u25390_input.hint.disabled {
  1650. position:absolute;
  1651. left:0px;
  1652. top:0px;
  1653. width:285px;
  1654. height:38px;
  1655. padding:2px 2px 2px 2px;
  1656. font-family:"Microsoft YaHei", sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. letter-spacing:normal;
  1661. color:#AAAAAA;
  1662. vertical-align:none;
  1663. text-align:left;
  1664. text-transform:none;
  1665. background-color:transparent;
  1666. border-color:transparent;
  1667. }
  1668. #u25390_div {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:285px;
  1674. height:38px;
  1675. background:inherit;
  1676. background-color:rgba(255, 255, 255, 1);
  1677. border-radius:0px;
  1678. filter:drop-shadow(none);
  1679. transition:none;
  1680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1681. font-weight:400;
  1682. font-style:normal;
  1683. font-size:14px;
  1684. }
  1685. #u25390 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:717px;
  1689. top:229px;
  1690. width:285px;
  1691. height:38px;
  1692. display:flex;
  1693. transition:none;
  1694. transform-origin:50% 50%;
  1695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1696. font-weight:400;
  1697. font-style:normal;
  1698. font-size:14px;
  1699. }
  1700. #u25390 .text {
  1701. position:absolute;
  1702. align-self:center;
  1703. padding:2px 2px 2px 2px;
  1704. box-sizing:border-box;
  1705. width:100%;
  1706. }
  1707. #u25390_div.hint {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:285px;
  1713. height:38px;
  1714. background:inherit;
  1715. background-color:rgba(255, 255, 255, 1);
  1716. border-radius:0px;
  1717. filter:drop-shadow(none);
  1718. transition:none;
  1719. font-family:"Microsoft YaHei", sans-serif;
  1720. font-weight:400;
  1721. font-style:normal;
  1722. font-size:14px;
  1723. }
  1724. #u25390.hint {
  1725. }
  1726. #u25390_div.disabled {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:285px;
  1732. height:38px;
  1733. background:inherit;
  1734. background-color:rgba(240, 240, 240, 1);
  1735. border-radius:0px;
  1736. filter:drop-shadow(none);
  1737. transition:none;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:14px;
  1742. }
  1743. #u25390.disabled {
  1744. }
  1745. #u25390_div.hint.disabled {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:285px;
  1751. height:38px;
  1752. background:inherit;
  1753. background-color:rgba(240, 240, 240, 1);
  1754. border-radius:0px;
  1755. filter:drop-shadow(none);
  1756. transition:none;
  1757. font-family:"Microsoft YaHei", sans-serif;
  1758. font-weight:400;
  1759. font-style:normal;
  1760. font-size:14px;
  1761. }
  1762. #u25390.hint.disabled {
  1763. }
  1764. #u25391_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:78px;
  1770. height:40px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 0);
  1773. border-top:0px;
  1774. border-right:0px;
  1775. border-bottom:0px;
  1776. border-radius:0px;
  1777. border-top-left-radius:0px;
  1778. border-bottom-left-radius:0px;
  1779. filter:drop-shadow(none);
  1780. transition:none;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. font-size:14px;
  1785. color:#7F7F7F;
  1786. text-align:right;
  1787. }
  1788. #u25391 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:621px;
  1792. top:178px;
  1793. width:78px;
  1794. height:40px;
  1795. display:flex;
  1796. transition:none;
  1797. transform-origin:50% 50%;
  1798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:14px;
  1802. color:#7F7F7F;
  1803. text-align:right;
  1804. }
  1805. #u25391 .text {
  1806. position:absolute;
  1807. align-self:center;
  1808. padding:5px 0px 5px 0px;
  1809. box-sizing:border-box;
  1810. width:100%;
  1811. }
  1812. #u25391_text {
  1813. border-width:0px;
  1814. white-space:nowrap;
  1815. text-transform:none;
  1816. }
  1817. #u25392 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:0px;
  1823. height:0px;
  1824. }
  1825. #u25393_div {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:300px;
  1831. height:40px;
  1832. background:inherit;
  1833. background-color:rgba(255, 255, 255, 1);
  1834. box-sizing:border-box;
  1835. border-width:1px;
  1836. border-style:solid;
  1837. border-color:rgba(201, 201, 201, 1);
  1838. border-radius:4px;
  1839. filter:drop-shadow(none);
  1840. transition:none;
  1841. font-family:"Microsoft YaHei", sans-serif;
  1842. font-weight:400;
  1843. font-style:normal;
  1844. font-size:14px;
  1845. color:#CCCCCC;
  1846. text-align:left;
  1847. }
  1848. #u25393 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:709px;
  1852. top:178px;
  1853. width:300px;
  1854. height:40px;
  1855. display:flex;
  1856. transition:none;
  1857. transform-origin:50% 50%;
  1858. font-family:"Microsoft YaHei", sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:14px;
  1862. color:#CCCCCC;
  1863. text-align:left;
  1864. }
  1865. #u25393 .text {
  1866. position:absolute;
  1867. align-self:center;
  1868. padding:2px 8px 2px 8px;
  1869. box-sizing:border-box;
  1870. width:100%;
  1871. }
  1872. #u25393_text {
  1873. border-width:0px;
  1874. word-wrap:break-word;
  1875. text-transform:none;
  1876. visibility:hidden;
  1877. }
  1878. #u25394_input {
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:280px;
  1883. height:38px;
  1884. padding:2px 2px 2px 2px;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:14px;
  1889. letter-spacing:normal;
  1890. color:#000000;
  1891. vertical-align:none;
  1892. text-align:left;
  1893. text-transform:none;
  1894. background-color:transparent;
  1895. border-color:transparent;
  1896. }
  1897. #u25394_input.hint {
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:280px;
  1902. height:38px;
  1903. padding:2px 2px 2px 2px;
  1904. font-family:"Microsoft YaHei", sans-serif;
  1905. font-weight:400;
  1906. font-style:normal;
  1907. font-size:12px;
  1908. letter-spacing:normal;
  1909. color:#AAAAAA;
  1910. vertical-align:none;
  1911. text-align:left;
  1912. text-transform:none;
  1913. background-color:transparent;
  1914. border-color:transparent;
  1915. }
  1916. #u25394_input.disabled {
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:280px;
  1921. height:38px;
  1922. padding:2px 2px 2px 2px;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:14px;
  1927. letter-spacing:normal;
  1928. color:#000000;
  1929. vertical-align:none;
  1930. text-align:left;
  1931. text-transform:none;
  1932. background-color:transparent;
  1933. border-color:transparent;
  1934. }
  1935. #u25394_input.hint.disabled {
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:280px;
  1940. height:38px;
  1941. padding:2px 2px 2px 2px;
  1942. font-family:"Microsoft YaHei", sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:12px;
  1946. letter-spacing:normal;
  1947. color:#AAAAAA;
  1948. vertical-align:none;
  1949. text-align:left;
  1950. text-transform:none;
  1951. background-color:transparent;
  1952. border-color:transparent;
  1953. }
  1954. #u25394_div {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:0px;
  1958. top:0px;
  1959. width:280px;
  1960. height:38px;
  1961. background:inherit;
  1962. background-color:rgba(255, 255, 255, 1);
  1963. border-radius:0px;
  1964. filter:drop-shadow(none);
  1965. transition:none;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:14px;
  1970. }
  1971. #u25394 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:720px;
  1975. top:179px;
  1976. width:280px;
  1977. height:38px;
  1978. display:flex;
  1979. transition:none;
  1980. transform-origin:50% 50%;
  1981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1982. font-weight:400;
  1983. font-style:normal;
  1984. font-size:14px;
  1985. }
  1986. #u25394 .text {
  1987. position:absolute;
  1988. align-self:center;
  1989. padding:2px 2px 2px 2px;
  1990. box-sizing:border-box;
  1991. width:100%;
  1992. }
  1993. #u25394_div.hint {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:280px;
  1999. height:38px;
  2000. background:inherit;
  2001. background-color:rgba(255, 255, 255, 1);
  2002. border-radius:0px;
  2003. filter:drop-shadow(none);
  2004. transition:none;
  2005. font-family:"Microsoft YaHei", sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:14px;
  2009. }
  2010. #u25394.hint {
  2011. }
  2012. #u25394_div.disabled {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:280px;
  2018. height:38px;
  2019. background:inherit;
  2020. background-color:rgba(240, 240, 240, 1);
  2021. border-radius:0px;
  2022. filter:drop-shadow(none);
  2023. transition:none;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. font-size:14px;
  2028. }
  2029. #u25394.disabled {
  2030. }
  2031. #u25394_div.hint.disabled {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:280px;
  2037. height:38px;
  2038. background:inherit;
  2039. background-color:rgba(240, 240, 240, 1);
  2040. border-radius:0px;
  2041. filter:drop-shadow(none);
  2042. transition:none;
  2043. font-family:"Microsoft YaHei", sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:14px;
  2047. }
  2048. #u25394.hint.disabled {
  2049. }
  2050. #u25395 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:986px;
  2054. top:191px;
  2055. width:12px;
  2056. height:15px;
  2057. display:flex;
  2058. transition:none;
  2059. }
  2060. #u25395 .text {
  2061. position:absolute;
  2062. align-self:center;
  2063. padding:2px 2px 2px 2px;
  2064. box-sizing:border-box;
  2065. width:100%;
  2066. }
  2067. #u25395_img {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:12px;
  2073. height:15px;
  2074. }
  2075. #u25395_text {
  2076. border-width:0px;
  2077. word-wrap:break-word;
  2078. text-transform:none;
  2079. visibility:hidden;
  2080. }
  2081. #u25396_div {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:57px;
  2087. height:30px;
  2088. background:inherit;
  2089. background-color:rgba(255, 255, 255, 0);
  2090. border-top:0px;
  2091. border-right:0px;
  2092. border-bottom:0px;
  2093. border-radius:0px;
  2094. border-top-left-radius:0px;
  2095. border-bottom-left-radius:0px;
  2096. filter:drop-shadow(none);
  2097. transition:none;
  2098. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2099. font-weight:500;
  2100. font-style:normal;
  2101. font-size:14px;
  2102. }
  2103. #u25396 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:183px;
  2107. top:343px;
  2108. width:57px;
  2109. height:30px;
  2110. display:flex;
  2111. transition:none;
  2112. transform-origin:50% 50%;
  2113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2114. font-weight:500;
  2115. font-style:normal;
  2116. font-size:14px;
  2117. }
  2118. #u25396 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:5px 0px 5px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u25396_text {
  2126. border-width:0px;
  2127. white-space:nowrap;
  2128. text-transform:none;
  2129. }
  2130. #u25397_div {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:64px;
  2136. height:40px;
  2137. background:inherit;
  2138. background-color:rgba(255, 255, 255, 0);
  2139. border-top:0px;
  2140. border-right:0px;
  2141. border-bottom:0px;
  2142. border-radius:0px;
  2143. border-top-left-radius:0px;
  2144. border-bottom-left-radius:0px;
  2145. filter:drop-shadow(none);
  2146. transition:none;
  2147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2148. font-weight:400;
  2149. font-style:normal;
  2150. font-size:14px;
  2151. color:#7F7F7F;
  2152. text-align:right;
  2153. }
  2154. #u25397 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:197px;
  2158. top:228px;
  2159. width:64px;
  2160. height:40px;
  2161. display:flex;
  2162. transition:none;
  2163. transform-origin:50% 50%;
  2164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2165. font-weight:400;
  2166. font-style:normal;
  2167. font-size:14px;
  2168. color:#7F7F7F;
  2169. text-align:right;
  2170. }
  2171. #u25397 .text {
  2172. position:absolute;
  2173. align-self:center;
  2174. padding:5px 0px 5px 0px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u25397_text {
  2179. border-width:0px;
  2180. white-space:nowrap;
  2181. text-transform:none;
  2182. }
  2183. #u25398 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:0px;
  2189. height:0px;
  2190. }
  2191. #u25399_div {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:300px;
  2197. height:40px;
  2198. background:inherit;
  2199. background-color:rgba(255, 255, 255, 1);
  2200. box-sizing:border-box;
  2201. border-width:1px;
  2202. border-style:solid;
  2203. border-color:rgba(201, 201, 201, 1);
  2204. border-radius:4px;
  2205. filter:drop-shadow(none);
  2206. transition:none;
  2207. font-family:"Microsoft YaHei", sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:14px;
  2211. color:#CCCCCC;
  2212. text-align:left;
  2213. }
  2214. #u25399 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:271px;
  2218. top:228px;
  2219. width:300px;
  2220. height:40px;
  2221. display:flex;
  2222. transition:none;
  2223. transform-origin:50% 50%;
  2224. font-family:"Microsoft YaHei", sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:14px;
  2228. color:#CCCCCC;
  2229. text-align:left;
  2230. }
  2231. #u25399 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 8px 2px 8px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u25399_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. visibility:hidden;
  2243. }
  2244. #u25400_input {
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:285px;
  2249. height:38px;
  2250. padding:2px 2px 2px 2px;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:14px;
  2255. letter-spacing:normal;
  2256. color:#000000;
  2257. vertical-align:none;
  2258. text-align:left;
  2259. text-transform:none;
  2260. background-color:transparent;
  2261. border-color:transparent;
  2262. }
  2263. #u25400_input.hint {
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:285px;
  2268. height:38px;
  2269. padding:2px 2px 2px 2px;
  2270. font-family:"Microsoft YaHei", sans-serif;
  2271. font-weight:400;
  2272. font-style:normal;
  2273. font-size:12px;
  2274. letter-spacing:normal;
  2275. color:#AAAAAA;
  2276. vertical-align:none;
  2277. text-align:left;
  2278. text-transform:none;
  2279. background-color:transparent;
  2280. border-color:transparent;
  2281. }
  2282. #u25400_input.disabled {
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:285px;
  2287. height:38px;
  2288. padding:2px 2px 2px 2px;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:14px;
  2293. letter-spacing:normal;
  2294. color:#000000;
  2295. vertical-align:none;
  2296. text-align:left;
  2297. text-transform:none;
  2298. background-color:transparent;
  2299. border-color:transparent;
  2300. }
  2301. #u25400_input.hint.disabled {
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:285px;
  2306. height:38px;
  2307. padding:2px 2px 2px 2px;
  2308. font-family:"Microsoft YaHei", sans-serif;
  2309. font-weight:400;
  2310. font-style:normal;
  2311. font-size:12px;
  2312. letter-spacing:normal;
  2313. color:#AAAAAA;
  2314. vertical-align:none;
  2315. text-align:left;
  2316. text-transform:none;
  2317. background-color:transparent;
  2318. border-color:transparent;
  2319. }
  2320. #u25400_div {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:0px;
  2324. top:0px;
  2325. width:285px;
  2326. height:38px;
  2327. background:inherit;
  2328. background-color:rgba(255, 255, 255, 1);
  2329. border-radius:0px;
  2330. filter:drop-shadow(none);
  2331. transition:none;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:14px;
  2336. }
  2337. #u25400 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:279px;
  2341. top:229px;
  2342. width:285px;
  2343. height:38px;
  2344. display:flex;
  2345. transition:none;
  2346. transform-origin:50% 50%;
  2347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2348. font-weight:400;
  2349. font-style:normal;
  2350. font-size:14px;
  2351. }
  2352. #u25400 .text {
  2353. position:absolute;
  2354. align-self:center;
  2355. padding:2px 2px 2px 2px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u25400_div.hint {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:285px;
  2365. height:38px;
  2366. background:inherit;
  2367. background-color:rgba(255, 255, 255, 1);
  2368. border-radius:0px;
  2369. filter:drop-shadow(none);
  2370. transition:none;
  2371. font-family:"Microsoft YaHei", sans-serif;
  2372. font-weight:400;
  2373. font-style:normal;
  2374. font-size:14px;
  2375. }
  2376. #u25400.hint {
  2377. }
  2378. #u25400_div.disabled {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:285px;
  2384. height:38px;
  2385. background:inherit;
  2386. background-color:rgba(240, 240, 240, 1);
  2387. border-radius:0px;
  2388. filter:drop-shadow(none);
  2389. transition:none;
  2390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:14px;
  2394. }
  2395. #u25400.disabled {
  2396. }
  2397. #u25400_div.hint.disabled {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:285px;
  2403. height:38px;
  2404. background:inherit;
  2405. background-color:rgba(240, 240, 240, 1);
  2406. border-radius:0px;
  2407. filter:drop-shadow(none);
  2408. transition:none;
  2409. font-family:"Microsoft YaHei", sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:14px;
  2413. }
  2414. #u25400.hint.disabled {
  2415. }
  2416. #u25401_div {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:78px;
  2422. height:30px;
  2423. background:inherit;
  2424. background-color:rgba(255, 255, 255, 0);
  2425. border-top:0px;
  2426. border-right:0px;
  2427. border-bottom:0px;
  2428. border-radius:0px;
  2429. border-top-left-radius:0px;
  2430. border-bottom-left-radius:0px;
  2431. filter:drop-shadow(none);
  2432. transition:none;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:14px;
  2437. color:#7F7F7F;
  2438. text-align:right;
  2439. }
  2440. #u25401 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:183px;
  2444. top:133px;
  2445. width:78px;
  2446. height:30px;
  2447. display:flex;
  2448. transition:none;
  2449. transform-origin:50% 50%;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:14px;
  2454. color:#7F7F7F;
  2455. text-align:right;
  2456. }
  2457. #u25401 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:5px 0px 5px 0px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u25401_text {
  2465. border-width:0px;
  2466. white-space:nowrap;
  2467. text-transform:none;
  2468. }
  2469. #u25402 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:0px;
  2475. height:0px;
  2476. }
  2477. #u25403_div {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:300px;
  2483. height:40px;
  2484. background:inherit;
  2485. background-color:rgba(255, 255, 255, 1);
  2486. box-sizing:border-box;
  2487. border-width:1px;
  2488. border-style:solid;
  2489. border-color:rgba(215, 215, 215, 1);
  2490. border-radius:4px;
  2491. filter:drop-shadow(none);
  2492. transition:none;
  2493. font-size:14px;
  2494. }
  2495. #u25403 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:271px;
  2499. top:128px;
  2500. width:300px;
  2501. height:40px;
  2502. display:flex;
  2503. transition:none;
  2504. transform-origin:50% 50%;
  2505. font-size:14px;
  2506. }
  2507. #u25403 .text {
  2508. position:absolute;
  2509. align-self:center;
  2510. padding:2px 2px 2px 2px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u25403_text {
  2515. border-width:0px;
  2516. word-wrap:break-word;
  2517. text-transform:none;
  2518. visibility:hidden;
  2519. }
  2520. #u25404_input {
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:286px;
  2525. height:31px;
  2526. padding:2px 2px 2px 2px;
  2527. font-family:'ArialMT', 'Arial', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:14px;
  2531. letter-spacing:normal;
  2532. color:#AAAAAA;
  2533. vertical-align:none;
  2534. text-align:left;
  2535. text-transform:none;
  2536. background-color:transparent;
  2537. border-color:transparent;
  2538. }
  2539. #u25404_input.disabled {
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:286px;
  2544. height:31px;
  2545. padding:2px 2px 2px 2px;
  2546. font-family:'ArialMT', 'Arial', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:14px;
  2550. letter-spacing:normal;
  2551. color:#AAAAAA;
  2552. vertical-align:none;
  2553. text-align:left;
  2554. text-transform:none;
  2555. background-color:transparent;
  2556. border-color:transparent;
  2557. }
  2558. #u25404_div {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:286px;
  2564. height:31px;
  2565. background:inherit;
  2566. background-color:rgba(255, 255, 255, 1);
  2567. border-radius:0px;
  2568. filter:drop-shadow(none);
  2569. transition:none;
  2570. font-size:14px;
  2571. color:#AAAAAA;
  2572. }
  2573. #u25404 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:278px;
  2577. top:131px;
  2578. width:286px;
  2579. height:31px;
  2580. display:flex;
  2581. transition:none;
  2582. transform-origin:50% 50%;
  2583. font-size:14px;
  2584. color:#AAAAAA;
  2585. }
  2586. #u25404 .text {
  2587. position:absolute;
  2588. align-self:flex-start;
  2589. padding:2px 2px 2px 2px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u25404_div.disabled {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:286px;
  2599. height:31px;
  2600. background:inherit;
  2601. background-color:rgba(240, 240, 240, 1);
  2602. border-radius:0px;
  2603. filter:drop-shadow(none);
  2604. transition:none;
  2605. font-size:14px;
  2606. color:#AAAAAA;
  2607. }
  2608. #u25404.disabled {
  2609. }
  2610. .u25404_input_option {
  2611. font-size:14px;
  2612. }
  2613. #u25405_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:78px;
  2619. height:40px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 0);
  2622. border-top:0px;
  2623. border-right:0px;
  2624. border-bottom:0px;
  2625. border-radius:0px;
  2626. border-top-left-radius:0px;
  2627. border-bottom-left-radius:0px;
  2628. filter:drop-shadow(none);
  2629. transition:none;
  2630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2631. font-weight:400;
  2632. font-style:normal;
  2633. font-size:14px;
  2634. color:#7F7F7F;
  2635. }
  2636. #u25405 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:623px;
  2640. top:393px;
  2641. width:78px;
  2642. height:40px;
  2643. display:flex;
  2644. transition:none;
  2645. transform-origin:50% 50%;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:14px;
  2650. color:#7F7F7F;
  2651. }
  2652. #u25405 .text {
  2653. position:absolute;
  2654. align-self:center;
  2655. padding:5px 0px 5px 0px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u25405_text {
  2660. border-width:0px;
  2661. white-space:nowrap;
  2662. text-transform:none;
  2663. }
  2664. #u25406 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:0px;
  2670. height:0px;
  2671. }
  2672. #u25407_div {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:300px;
  2678. height:40px;
  2679. background:inherit;
  2680. background-color:rgba(255, 255, 255, 1);
  2681. box-sizing:border-box;
  2682. border-width:1px;
  2683. border-style:solid;
  2684. border-color:rgba(215, 215, 215, 1);
  2685. border-radius:4px;
  2686. filter:drop-shadow(none);
  2687. transition:none;
  2688. font-size:14px;
  2689. }
  2690. #u25407 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:709px;
  2694. top:393px;
  2695. width:300px;
  2696. height:40px;
  2697. display:flex;
  2698. transition:none;
  2699. transform-origin:50% 50%;
  2700. font-size:14px;
  2701. }
  2702. #u25407 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 2px 2px 2px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u25407_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. visibility:hidden;
  2714. }
  2715. #u25408_input {
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:286px;
  2720. height:31px;
  2721. padding:2px 2px 2px 2px;
  2722. font-family:'ArialMT', 'Arial', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:14px;
  2726. letter-spacing:normal;
  2727. color:#AAAAAA;
  2728. vertical-align:none;
  2729. text-align:left;
  2730. text-transform:none;
  2731. background-color:transparent;
  2732. border-color:transparent;
  2733. }
  2734. #u25408_input.disabled {
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:286px;
  2739. height:31px;
  2740. padding:2px 2px 2px 2px;
  2741. font-family:'ArialMT', 'Arial', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:14px;
  2745. letter-spacing:normal;
  2746. color:#AAAAAA;
  2747. vertical-align:none;
  2748. text-align:left;
  2749. text-transform:none;
  2750. background-color:transparent;
  2751. border-color:transparent;
  2752. }
  2753. #u25408_div {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:286px;
  2759. height:31px;
  2760. background:inherit;
  2761. background-color:rgba(255, 255, 255, 1);
  2762. border-radius:0px;
  2763. filter:drop-shadow(none);
  2764. transition:none;
  2765. font-size:14px;
  2766. color:#AAAAAA;
  2767. }
  2768. #u25408 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:717px;
  2772. top:396px;
  2773. width:286px;
  2774. height:31px;
  2775. display:flex;
  2776. transition:none;
  2777. transform-origin:50% 50%;
  2778. font-size:14px;
  2779. color:#AAAAAA;
  2780. }
  2781. #u25408 .text {
  2782. position:absolute;
  2783. align-self:flex-start;
  2784. padding:2px 2px 2px 2px;
  2785. box-sizing:border-box;
  2786. width:100%;
  2787. }
  2788. #u25408_div.disabled {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:286px;
  2794. height:31px;
  2795. background:inherit;
  2796. background-color:rgba(240, 240, 240, 1);
  2797. border-radius:0px;
  2798. filter:drop-shadow(none);
  2799. transition:none;
  2800. font-size:14px;
  2801. color:#AAAAAA;
  2802. }
  2803. #u25408.disabled {
  2804. }
  2805. .u25408_input_option {
  2806. font-size:14px;
  2807. }
  2808. #u25409_div {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:78px;
  2814. height:40px;
  2815. background:inherit;
  2816. background-color:rgba(255, 255, 255, 0);
  2817. border-top:0px;
  2818. border-right:0px;
  2819. border-bottom:0px;
  2820. border-radius:0px;
  2821. border-top-left-radius:0px;
  2822. border-bottom-left-radius:0px;
  2823. filter:drop-shadow(none);
  2824. transition:none;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:14px;
  2829. color:#7F7F7F;
  2830. }
  2831. #u25409 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:192px;
  2835. top:393px;
  2836. width:78px;
  2837. height:40px;
  2838. display:flex;
  2839. transition:none;
  2840. transform-origin:50% 50%;
  2841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:14px;
  2845. color:#7F7F7F;
  2846. }
  2847. #u25409 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:5px 0px 5px 0px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u25409_text {
  2855. border-width:0px;
  2856. white-space:nowrap;
  2857. text-transform:none;
  2858. }
  2859. #u25410 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:0px;
  2865. height:0px;
  2866. }
  2867. #u25411_div {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:300px;
  2873. height:40px;
  2874. background:inherit;
  2875. background-color:rgba(255, 255, 255, 1);
  2876. box-sizing:border-box;
  2877. border-width:1px;
  2878. border-style:solid;
  2879. border-color:rgba(215, 215, 215, 1);
  2880. border-radius:4px;
  2881. filter:drop-shadow(none);
  2882. transition:none;
  2883. font-size:14px;
  2884. }
  2885. #u25411 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:270px;
  2889. top:393px;
  2890. width:300px;
  2891. height:40px;
  2892. display:flex;
  2893. transition:none;
  2894. transform-origin:50% 50%;
  2895. font-size:14px;
  2896. }
  2897. #u25411 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 2px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u25411_text {
  2905. border-width:0px;
  2906. word-wrap:break-word;
  2907. text-transform:none;
  2908. visibility:hidden;
  2909. }
  2910. #u25412_input {
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:286px;
  2915. height:31px;
  2916. padding:2px 2px 2px 2px;
  2917. font-family:'ArialMT', 'Arial', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:14px;
  2921. letter-spacing:normal;
  2922. color:#AAAAAA;
  2923. vertical-align:none;
  2924. text-align:left;
  2925. text-transform:none;
  2926. background-color:transparent;
  2927. border-color:transparent;
  2928. }
  2929. #u25412_input.disabled {
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:286px;
  2934. height:31px;
  2935. padding:2px 2px 2px 2px;
  2936. font-family:'ArialMT', 'Arial', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:14px;
  2940. letter-spacing:normal;
  2941. color:#AAAAAA;
  2942. vertical-align:none;
  2943. text-align:left;
  2944. text-transform:none;
  2945. background-color:transparent;
  2946. border-color:transparent;
  2947. }
  2948. #u25412_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:286px;
  2954. height:31px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 1);
  2957. border-radius:0px;
  2958. filter:drop-shadow(none);
  2959. transition:none;
  2960. font-size:14px;
  2961. color:#AAAAAA;
  2962. }
  2963. #u25412 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:278px;
  2967. top:396px;
  2968. width:286px;
  2969. height:31px;
  2970. display:flex;
  2971. transition:none;
  2972. transform-origin:50% 50%;
  2973. font-size:14px;
  2974. color:#AAAAAA;
  2975. }
  2976. #u25412 .text {
  2977. position:absolute;
  2978. align-self:flex-start;
  2979. padding:2px 2px 2px 2px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u25412_div.disabled {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:286px;
  2989. height:31px;
  2990. background:inherit;
  2991. background-color:rgba(240, 240, 240, 1);
  2992. border-radius:0px;
  2993. filter:drop-shadow(none);
  2994. transition:none;
  2995. font-size:14px;
  2996. color:#AAAAAA;
  2997. }
  2998. #u25412.disabled {
  2999. }
  3000. .u25412_input_option {
  3001. font-size:14px;
  3002. }
  3003. #u25413_div {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:78px;
  3009. height:40px;
  3010. background:inherit;
  3011. background-color:rgba(255, 255, 255, 0);
  3012. border-top:0px;
  3013. border-right:0px;
  3014. border-bottom:0px;
  3015. border-radius:0px;
  3016. border-top-left-radius:0px;
  3017. border-bottom-left-radius:0px;
  3018. filter:drop-shadow(none);
  3019. transition:none;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:14px;
  3024. color:#7F7F7F;
  3025. text-align:right;
  3026. }
  3027. #u25413 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:182px;
  3031. top:443px;
  3032. width:78px;
  3033. height:40px;
  3034. display:flex;
  3035. transition:none;
  3036. transform-origin:50% 50%;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:14px;
  3041. color:#7F7F7F;
  3042. text-align:right;
  3043. }
  3044. #u25413 .text {
  3045. position:absolute;
  3046. align-self:center;
  3047. padding:5px 0px 5px 0px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u25413_text {
  3052. border-width:0px;
  3053. white-space:nowrap;
  3054. text-transform:none;
  3055. }
  3056. #u25414 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:0px;
  3062. height:0px;
  3063. }
  3064. #u25415_div {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:302px;
  3070. height:40px;
  3071. background:inherit;
  3072. background-color:rgba(255, 255, 255, 1);
  3073. box-sizing:border-box;
  3074. border-width:1px;
  3075. border-style:solid;
  3076. border-color:rgba(201, 201, 201, 1);
  3077. border-radius:4px;
  3078. filter:drop-shadow(none);
  3079. transition:none;
  3080. font-family:"Microsoft YaHei", sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:14px;
  3084. color:#CCCCCC;
  3085. text-align:left;
  3086. }
  3087. #u25415 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:268px;
  3091. top:443px;
  3092. width:302px;
  3093. height:40px;
  3094. display:flex;
  3095. transition:none;
  3096. transform-origin:50% 50%;
  3097. font-family:"Microsoft YaHei", sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:14px;
  3101. color:#CCCCCC;
  3102. text-align:left;
  3103. }
  3104. #u25415 .text {
  3105. position:absolute;
  3106. align-self:center;
  3107. padding:2px 8px 2px 8px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u25415_text {
  3112. border-width:0px;
  3113. word-wrap:break-word;
  3114. text-transform:none;
  3115. visibility:hidden;
  3116. }
  3117. #u25416_input {
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:287px;
  3122. height:38px;
  3123. padding:2px 2px 2px 2px;
  3124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:14px;
  3128. letter-spacing:normal;
  3129. color:#000000;
  3130. vertical-align:none;
  3131. text-align:left;
  3132. text-transform:none;
  3133. background-color:transparent;
  3134. border-color:transparent;
  3135. }
  3136. #u25416_input.hint {
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:287px;
  3141. height:38px;
  3142. padding:2px 2px 2px 2px;
  3143. font-family:"Microsoft YaHei", sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. letter-spacing:normal;
  3148. color:#AAAAAA;
  3149. vertical-align:none;
  3150. text-align:left;
  3151. text-transform:none;
  3152. background-color:transparent;
  3153. border-color:transparent;
  3154. }
  3155. #u25416_input.disabled {
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:287px;
  3160. height:38px;
  3161. padding:2px 2px 2px 2px;
  3162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:14px;
  3166. letter-spacing:normal;
  3167. color:#000000;
  3168. vertical-align:none;
  3169. text-align:left;
  3170. text-transform:none;
  3171. background-color:transparent;
  3172. border-color:transparent;
  3173. }
  3174. #u25416_input.hint.disabled {
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:287px;
  3179. height:38px;
  3180. padding:2px 2px 2px 2px;
  3181. font-family:"Microsoft YaHei", sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:12px;
  3185. letter-spacing:normal;
  3186. color:#AAAAAA;
  3187. vertical-align:none;
  3188. text-align:left;
  3189. text-transform:none;
  3190. background-color:transparent;
  3191. border-color:transparent;
  3192. }
  3193. #u25416_div {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:287px;
  3199. height:38px;
  3200. background:inherit;
  3201. background-color:rgba(255, 255, 255, 1);
  3202. border-radius:0px;
  3203. filter:drop-shadow(none);
  3204. transition:none;
  3205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3206. font-weight:400;
  3207. font-style:normal;
  3208. font-size:14px;
  3209. }
  3210. #u25416 {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:276px;
  3214. top:444px;
  3215. width:287px;
  3216. height:38px;
  3217. display:flex;
  3218. transition:none;
  3219. transform-origin:50% 50%;
  3220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3221. font-weight:400;
  3222. font-style:normal;
  3223. font-size:14px;
  3224. }
  3225. #u25416 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 2px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u25416_div.hint {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:0px;
  3236. top:0px;
  3237. width:287px;
  3238. height:38px;
  3239. background:inherit;
  3240. background-color:rgba(255, 255, 255, 1);
  3241. border-radius:0px;
  3242. filter:drop-shadow(none);
  3243. transition:none;
  3244. font-family:"Microsoft YaHei", sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:14px;
  3248. }
  3249. #u25416.hint {
  3250. }
  3251. #u25416_div.disabled {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:287px;
  3257. height:38px;
  3258. background:inherit;
  3259. background-color:rgba(240, 240, 240, 1);
  3260. border-radius:0px;
  3261. filter:drop-shadow(none);
  3262. transition:none;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:14px;
  3267. }
  3268. #u25416.disabled {
  3269. }
  3270. #u25416_div.hint.disabled {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:287px;
  3276. height:38px;
  3277. background:inherit;
  3278. background-color:rgba(240, 240, 240, 1);
  3279. border-radius:0px;
  3280. filter:drop-shadow(none);
  3281. transition:none;
  3282. font-family:"Microsoft YaHei", sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:14px;
  3286. }
  3287. #u25416.hint.disabled {
  3288. }
  3289. #u25417_div {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:255px;
  3295. height:27px;
  3296. background:inherit;
  3297. background-color:rgba(255, 255, 255, 0);
  3298. border-top:0px;
  3299. border-right:0px;
  3300. border-bottom:0px;
  3301. border-radius:0px;
  3302. border-top-left-radius:0px;
  3303. border-bottom-left-radius:0px;
  3304. filter:drop-shadow(none);
  3305. transition:none;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:12px;
  3310. color:#7F7F7F;
  3311. }
  3312. #u25417 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:347px;
  3316. top:510px;
  3317. width:255px;
  3318. height:27px;
  3319. display:flex;
  3320. transition:none;
  3321. transform-origin:50% 50%;
  3322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3323. font-weight:400;
  3324. font-style:normal;
  3325. font-size:12px;
  3326. color:#7F7F7F;
  3327. }
  3328. #u25417 .text {
  3329. position:absolute;
  3330. align-self:center;
  3331. padding:5px 0px 5px 0px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u25417_text {
  3336. border-width:0px;
  3337. white-space:nowrap;
  3338. text-transform:none;
  3339. }
  3340. #u25418 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:0px;
  3346. height:0px;
  3347. }
  3348. #u25419 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:270px;
  3352. top:563px;
  3353. width:61px;
  3354. height:61px;
  3355. display:flex;
  3356. transition:none;
  3357. }
  3358. #u25419 .text {
  3359. position:absolute;
  3360. align-self:center;
  3361. padding:2px 2px 2px 2px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u25419_img {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:61px;
  3371. height:61px;
  3372. }
  3373. #u25419_text {
  3374. border-width:0px;
  3375. word-wrap:break-word;
  3376. text-transform:none;
  3377. visibility:hidden;
  3378. }
  3379. #u25420 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:314px;
  3383. top:563px;
  3384. width:17px;
  3385. height:17px;
  3386. display:flex;
  3387. transition:none;
  3388. }
  3389. #u25420 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 2px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u25420_img {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:17px;
  3402. height:17px;
  3403. }
  3404. #u25420_text {
  3405. border-width:0px;
  3406. word-wrap:break-word;
  3407. text-transform:none;
  3408. visibility:hidden;
  3409. }
  3410. #u25421 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:0px;
  3416. height:0px;
  3417. }
  3418. #u25422 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:341px;
  3422. top:563px;
  3423. width:61px;
  3424. height:61px;
  3425. display:flex;
  3426. transition:none;
  3427. }
  3428. #u25422 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 2px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u25422_img {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:61px;
  3441. height:61px;
  3442. }
  3443. #u25422_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u25423 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:385px;
  3453. top:563px;
  3454. width:17px;
  3455. height:17px;
  3456. display:flex;
  3457. transition:none;
  3458. }
  3459. #u25423 .text {
  3460. position:absolute;
  3461. align-self:center;
  3462. padding:2px 2px 2px 2px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u25423_img {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:17px;
  3472. height:17px;
  3473. }
  3474. #u25423_text {
  3475. border-width:0px;
  3476. word-wrap:break-word;
  3477. text-transform:none;
  3478. visibility:hidden;
  3479. }
  3480. #u25424 {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:0px;
  3486. height:0px;
  3487. }
  3488. #u25425 {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:412px;
  3492. top:563px;
  3493. width:61px;
  3494. height:61px;
  3495. display:flex;
  3496. transition:none;
  3497. }
  3498. #u25425 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 2px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u25425_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:61px;
  3511. height:61px;
  3512. }
  3513. #u25425_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u25426 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:456px;
  3523. top:563px;
  3524. width:17px;
  3525. height:17px;
  3526. display:flex;
  3527. transition:none;
  3528. }
  3529. #u25426 .text {
  3530. position:absolute;
  3531. align-self:center;
  3532. padding:2px 2px 2px 2px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u25426_img {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:17px;
  3542. height:17px;
  3543. }
  3544. #u25426_text {
  3545. border-width:0px;
  3546. word-wrap:break-word;
  3547. text-transform:none;
  3548. visibility:hidden;
  3549. }
  3550. #u25427 {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:0px;
  3554. top:0px;
  3555. width:0px;
  3556. height:0px;
  3557. }
  3558. #u25428 {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:483px;
  3562. top:563px;
  3563. width:61px;
  3564. height:61px;
  3565. display:flex;
  3566. transition:none;
  3567. }
  3568. #u25428 .text {
  3569. position:absolute;
  3570. align-self:center;
  3571. padding:2px 2px 2px 2px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u25428_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:61px;
  3581. height:61px;
  3582. }
  3583. #u25428_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u25429 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:527px;
  3593. top:563px;
  3594. width:17px;
  3595. height:17px;
  3596. display:flex;
  3597. transition:none;
  3598. }
  3599. #u25429 .text {
  3600. position:absolute;
  3601. align-self:center;
  3602. padding:2px 2px 2px 2px;
  3603. box-sizing:border-box;
  3604. width:100%;
  3605. }
  3606. #u25429_img {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:17px;
  3612. height:17px;
  3613. }
  3614. #u25429_text {
  3615. border-width:0px;
  3616. word-wrap:break-word;
  3617. text-transform:none;
  3618. visibility:hidden;
  3619. }
  3620. #u25430 {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:0px;
  3626. height:0px;
  3627. }
  3628. #u25431 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:0px;
  3634. height:0px;
  3635. }
  3636. #u25432_div {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:380px;
  3642. height:164px;
  3643. background:inherit;
  3644. background-color:rgba(255, 255, 255, 1);
  3645. box-sizing:border-box;
  3646. border-width:1px;
  3647. border-style:solid;
  3648. border-color:rgba(204, 204, 204, 1);
  3649. border-radius:4px;
  3650. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  3651. transition:none;
  3652. font-family:"Microsoft YaHei", sans-serif;
  3653. font-weight:400;
  3654. font-style:normal;
  3655. }
  3656. #u25432 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:693px;
  3660. top:986px;
  3661. width:380px;
  3662. height:164px;
  3663. display:flex;
  3664. transition:none;
  3665. transform-origin:50% 50%;
  3666. font-family:"Microsoft YaHei", sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. }
  3670. #u25432 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 2px 2px 2px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u25432_text {
  3678. border-width:0px;
  3679. word-wrap:break-word;
  3680. text-transform:none;
  3681. visibility:hidden;
  3682. }
  3683. #u25433_div {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:0px;
  3687. top:0px;
  3688. width:299px;
  3689. height:44px;
  3690. background:inherit;
  3691. background-color:rgba(255, 255, 255, 0);
  3692. border-radius:0px;
  3693. filter:drop-shadow(none);
  3694. transition:none;
  3695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. font-size:14px;
  3699. color:#666666;
  3700. line-height:22px;
  3701. }
  3702. #u25433 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:753px;
  3706. top:1041px;
  3707. width:299px;
  3708. height:44px;
  3709. display:flex;
  3710. transition:none;
  3711. transform-origin:50% 50%;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:14px;
  3716. color:#666666;
  3717. line-height:22px;
  3718. }
  3719. #u25433 .text {
  3720. position:absolute;
  3721. align-self:flex-start;
  3722. padding:0px 0px 0px 0px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u25433_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. }
  3731. #u25434_div {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:127px;
  3737. height:21px;
  3738. background:inherit;
  3739. background-color:rgba(255, 255, 255, 0);
  3740. border-radius:0px;
  3741. filter:drop-shadow(none);
  3742. transition:none;
  3743. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3744. font-weight:650;
  3745. font-style:normal;
  3746. font-size:18px;
  3747. color:#000000;
  3748. line-height:22px;
  3749. }
  3750. #u25434 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:753px;
  3754. top:1011px;
  3755. width:127px;
  3756. height:21px;
  3757. display:flex;
  3758. transition:none;
  3759. transform-origin:50% 50%;
  3760. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3761. font-weight:650;
  3762. font-style:normal;
  3763. font-size:18px;
  3764. color:#000000;
  3765. line-height:22px;
  3766. }
  3767. #u25434 .text {
  3768. position:absolute;
  3769. align-self:flex-start;
  3770. padding:0px 0px 0px 0px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u25434_text {
  3775. border-width:0px;
  3776. white-space:nowrap;
  3777. text-transform:none;
  3778. }
  3779. #u25435_div {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:61px;
  3785. height:30px;
  3786. background:inherit;
  3787. background-color:rgba(24, 144, 255, 1);
  3788. border-radius:4px;
  3789. filter:drop-shadow(none);
  3790. transition:none;
  3791. font-family:"Microsoft YaHei", sans-serif;
  3792. font-weight:400;
  3793. font-style:normal;
  3794. font-size:14px;
  3795. color:#FFFFFF;
  3796. }
  3797. #u25435 {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:995px;
  3801. top:1101px;
  3802. width:61px;
  3803. height:30px;
  3804. display:flex;
  3805. transition:none;
  3806. transform-origin:50% 50%;
  3807. font-family:"Microsoft YaHei", sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:14px;
  3811. color:#FFFFFF;
  3812. }
  3813. #u25435 .text {
  3814. position:absolute;
  3815. align-self:center;
  3816. padding:2px 16px 2px 16px;
  3817. box-sizing:border-box;
  3818. width:100%;
  3819. }
  3820. #u25435_text {
  3821. border-width:0px;
  3822. white-space:nowrap;
  3823. text-transform:none;
  3824. }
  3825. #u25436_div {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:66px;
  3831. height:30px;
  3832. background:inherit;
  3833. background-color:rgba(255, 255, 255, 1);
  3834. box-sizing:border-box;
  3835. border-width:1px;
  3836. border-style:solid;
  3837. border-color:rgba(217, 217, 217, 1);
  3838. border-radius:4px;
  3839. filter:drop-shadow(none);
  3840. transition:none;
  3841. font-family:"Microsoft YaHei", sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:14px;
  3845. color:rgba(0, 0, 0, 0.6470588235294118);
  3846. line-height:21px;
  3847. }
  3848. #u25436 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:913px;
  3852. top:1101px;
  3853. width:66px;
  3854. height:30px;
  3855. display:flex;
  3856. transition:none;
  3857. transform-origin:50% 50%;
  3858. font-family:"Microsoft YaHei", sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:14px;
  3862. color:rgba(0, 0, 0, 0.6470588235294118);
  3863. line-height:21px;
  3864. }
  3865. #u25436 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:2px 16px 2px 16px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u25436_text {
  3873. border-width:0px;
  3874. white-space:nowrap;
  3875. text-transform:none;
  3876. }
  3877. #u25437 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:722px;
  3881. top:1015px;
  3882. width:20px;
  3883. height:20px;
  3884. display:flex;
  3885. transition:none;
  3886. }
  3887. #u25437 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:2px 2px 2px 2px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u25437_img {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:20px;
  3900. height:20px;
  3901. }
  3902. #u25437_text {
  3903. border-width:0px;
  3904. word-wrap:break-word;
  3905. text-transform:none;
  3906. visibility:hidden;
  3907. }
  3908. #u25438 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:0px;
  3914. height:0px;
  3915. }
  3916. #u25439_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:1000px;
  3922. height:1201px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 1);
  3925. box-sizing:border-box;
  3926. border-width:1px;
  3927. border-style:solid;
  3928. border-color:rgba(215, 215, 215, 1);
  3929. border-radius:0px;
  3930. filter:drop-shadow(none);
  3931. transition:none;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. font-size:14px;
  3936. color:#AAAAAA;
  3937. text-align:center;
  3938. line-height:30px;
  3939. }
  3940. #u25439 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:1165px;
  3944. top:42px;
  3945. width:1000px;
  3946. height:1201px;
  3947. display:flex;
  3948. transition:none;
  3949. transform-origin:50% 50%;
  3950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:14px;
  3954. color:#AAAAAA;
  3955. text-align:center;
  3956. line-height:30px;
  3957. }
  3958. #u25439 .text {
  3959. position:absolute;
  3960. align-self:center;
  3961. padding:5px 10px 5px 10px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u25439_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u25440_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:47px;
  3977. height:35px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 0);
  3980. border-top:0px;
  3981. border-right:0px;
  3982. border-bottom:0px;
  3983. border-radius:0px;
  3984. border-top-left-radius:0px;
  3985. border-bottom-left-radius:0px;
  3986. filter:drop-shadow(none);
  3987. transition:none;
  3988. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3989. font-weight:500;
  3990. font-style:normal;
  3991. font-size:18px;
  3992. }
  3993. #u25440 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:1185px;
  3997. top:60px;
  3998. width:47px;
  3999. height:35px;
  4000. display:flex;
  4001. transition:none;
  4002. transform-origin:50% 50%;
  4003. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4004. font-weight:500;
  4005. font-style:normal;
  4006. font-size:18px;
  4007. }
  4008. #u25440 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:5px 10px 5px 0px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u25440_text {
  4016. border-width:0px;
  4017. white-space:nowrap;
  4018. text-transform:none;
  4019. }
  4020. #u25441 {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:0px;
  4026. height:0px;
  4027. }
  4028. #u25442_div {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:40px;
  4034. height:40px;
  4035. background:inherit;
  4036. background-color:rgba(255, 255, 255, 0);
  4037. border-top:0px;
  4038. border-right:0px;
  4039. border-bottom:0px;
  4040. border-radius:0px;
  4041. border-top-left-radius:0px;
  4042. border-bottom-left-radius:0px;
  4043. filter:drop-shadow(none);
  4044. transition:none;
  4045. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4046. font-weight:500;
  4047. font-style:normal;
  4048. font-size:14px;
  4049. text-align:center;
  4050. }
  4051. #u25442 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:2125px;
  4055. top:42px;
  4056. width:40px;
  4057. height:40px;
  4058. display:flex;
  4059. transition:none;
  4060. transform-origin:50% 50%;
  4061. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4062. font-weight:500;
  4063. font-style:normal;
  4064. font-size:14px;
  4065. text-align:center;
  4066. }
  4067. #u25442 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:5px 10px 5px 0px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u25442_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. }
  4079. #u25443 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:2113px;
  4083. top:58px;
  4084. width:13px;
  4085. height:13px;
  4086. display:flex;
  4087. transition:none;
  4088. font-size:14px;
  4089. }
  4090. #u25443 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:2px 2px 2px 2px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u25443_img {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:13px;
  4103. height:13px;
  4104. }
  4105. #u25443_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u25444 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:0px;
  4117. height:0px;
  4118. }
  4119. #u25445_div {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:1000px;
  4125. height:60px;
  4126. background:inherit;
  4127. background-color:rgba(255, 255, 255, 1);
  4128. box-sizing:border-box;
  4129. border-width:1px;
  4130. border-style:solid;
  4131. border-color:rgba(215, 215, 215, 1);
  4132. border-radius:0px;
  4133. filter:drop-shadow(none);
  4134. transition:none;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:14px;
  4139. color:#AAAAAA;
  4140. text-align:center;
  4141. line-height:30px;
  4142. }
  4143. #u25445 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:1165px;
  4147. top:1183px;
  4148. width:1000px;
  4149. height:60px;
  4150. display:flex;
  4151. transition:none;
  4152. transform-origin:50% 50%;
  4153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:14px;
  4157. color:#AAAAAA;
  4158. text-align:center;
  4159. line-height:30px;
  4160. }
  4161. #u25445 .text {
  4162. position:absolute;
  4163. align-self:center;
  4164. padding:5px 10px 5px 10px;
  4165. box-sizing:border-box;
  4166. width:100%;
  4167. }
  4168. #u25445_text {
  4169. border-width:0px;
  4170. word-wrap:break-word;
  4171. text-transform:none;
  4172. visibility:hidden;
  4173. }
  4174. #u25446_div {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:80px;
  4180. height:30px;
  4181. background:inherit;
  4182. background-color:rgba(255, 255, 255, 1);
  4183. box-sizing:border-box;
  4184. border-width:1px;
  4185. border-style:solid;
  4186. border-color:rgba(170, 170, 170, 1);
  4187. border-radius:4px;
  4188. filter:drop-shadow(none);
  4189. transition:none;
  4190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4191. font-weight:400;
  4192. font-style:normal;
  4193. font-size:14px;
  4194. }
  4195. #u25446 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:1975px;
  4199. top:1198px;
  4200. width:80px;
  4201. height:30px;
  4202. display:flex;
  4203. transition:none;
  4204. transform-origin:50% 50%;
  4205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:14px;
  4209. }
  4210. #u25446 .text {
  4211. position:absolute;
  4212. align-self:center;
  4213. padding:2px 2px 2px 2px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u25446_text {
  4218. border-width:0px;
  4219. word-wrap:break-word;
  4220. text-transform:none;
  4221. }
  4222. #u25447_div {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:0px;
  4227. width:80px;
  4228. height:30px;
  4229. background:inherit;
  4230. background-color:rgba(24, 144, 255, 1);
  4231. border-radius:4px;
  4232. filter:drop-shadow(none);
  4233. transition:none;
  4234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:14px;
  4238. color:#FFFFFF;
  4239. }
  4240. #u25447 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:2065px;
  4244. top:1198px;
  4245. width:80px;
  4246. height:30px;
  4247. display:flex;
  4248. transition:none;
  4249. transform-origin:50% 50%;
  4250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:14px;
  4254. color:#FFFFFF;
  4255. }
  4256. #u25447 .text {
  4257. position:absolute;
  4258. align-self:center;
  4259. padding:2px 2px 2px 2px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u25447_text {
  4264. border-width:0px;
  4265. word-wrap:break-word;
  4266. text-transform:none;
  4267. }
  4268. #u25448_div {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:71px;
  4274. height:40px;
  4275. background:inherit;
  4276. background-color:rgba(255, 255, 255, 0);
  4277. border-top:0px;
  4278. border-right:0px;
  4279. border-bottom:0px;
  4280. border-radius:0px;
  4281. border-top-left-radius:0px;
  4282. border-bottom-left-radius:0px;
  4283. filter:drop-shadow(none);
  4284. transition:none;
  4285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:14px;
  4289. color:#7F7F7F;
  4290. text-align:right;
  4291. }
  4292. #u25448 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:1222px;
  4296. top:278px;
  4297. width:71px;
  4298. height:40px;
  4299. display:flex;
  4300. transition:none;
  4301. transform-origin:50% 50%;
  4302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4303. font-weight:400;
  4304. font-style:normal;
  4305. font-size:14px;
  4306. color:#7F7F7F;
  4307. text-align:right;
  4308. }
  4309. #u25448 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:5px 0px 5px 0px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u25448_text {
  4317. border-width:0px;
  4318. white-space:nowrap;
  4319. text-transform:none;
  4320. }
  4321. #u25449_div {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:78px;
  4327. height:40px;
  4328. background:inherit;
  4329. background-color:rgba(255, 255, 255, 0);
  4330. border-top:0px;
  4331. border-right:0px;
  4332. border-bottom:0px;
  4333. border-radius:0px;
  4334. border-top-left-radius:0px;
  4335. border-bottom-left-radius:0px;
  4336. filter:drop-shadow(none);
  4337. transition:none;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:14px;
  4342. color:#7F7F7F;
  4343. text-align:right;
  4344. }
  4345. #u25449 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:1653px;
  4349. top:128px;
  4350. width:78px;
  4351. height:40px;
  4352. display:flex;
  4353. transition:none;
  4354. transform-origin:50% 50%;
  4355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:14px;
  4359. color:#7F7F7F;
  4360. text-align:right;
  4361. }
  4362. #u25449 .text {
  4363. position:absolute;
  4364. align-self:center;
  4365. padding:5px 0px 5px 0px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u25449_text {
  4370. border-width:0px;
  4371. white-space:nowrap;
  4372. text-transform:none;
  4373. }
  4374. #u25450 {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:0px;
  4380. height:0px;
  4381. }
  4382. #u25451_div {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:300px;
  4388. height:40px;
  4389. background:inherit;
  4390. background-color:rgba(255, 255, 255, 1);
  4391. box-sizing:border-box;
  4392. border-width:1px;
  4393. border-style:solid;
  4394. border-color:rgba(201, 201, 201, 1);
  4395. border-radius:4px;
  4396. filter:drop-shadow(none);
  4397. transition:none;
  4398. font-family:"Microsoft YaHei", sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:14px;
  4402. color:#CCCCCC;
  4403. text-align:left;
  4404. }
  4405. #u25451 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:1303px;
  4409. top:278px;
  4410. width:300px;
  4411. height:40px;
  4412. display:flex;
  4413. transition:none;
  4414. transform-origin:50% 50%;
  4415. font-family:"Microsoft YaHei", sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:14px;
  4419. color:#CCCCCC;
  4420. text-align:left;
  4421. }
  4422. #u25451 .text {
  4423. position:absolute;
  4424. align-self:center;
  4425. padding:2px 8px 2px 8px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u25451_text {
  4430. border-width:0px;
  4431. word-wrap:break-word;
  4432. text-transform:none;
  4433. visibility:hidden;
  4434. }
  4435. #u25452_input {
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:280px;
  4440. height:38px;
  4441. padding:2px 2px 2px 2px;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:14px;
  4446. letter-spacing:normal;
  4447. color:#000000;
  4448. vertical-align:none;
  4449. text-align:left;
  4450. text-transform:none;
  4451. background-color:transparent;
  4452. border-color:transparent;
  4453. }
  4454. #u25452_input.hint {
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:280px;
  4459. height:38px;
  4460. padding:2px 2px 2px 2px;
  4461. font-family:"Microsoft YaHei", sans-serif;
  4462. font-weight:400;
  4463. font-style:normal;
  4464. font-size:12px;
  4465. letter-spacing:normal;
  4466. color:#AAAAAA;
  4467. vertical-align:none;
  4468. text-align:left;
  4469. text-transform:none;
  4470. background-color:transparent;
  4471. border-color:transparent;
  4472. }
  4473. #u25452_input.disabled {
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:280px;
  4478. height:38px;
  4479. padding:2px 2px 2px 2px;
  4480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4481. font-weight:400;
  4482. font-style:normal;
  4483. font-size:14px;
  4484. letter-spacing:normal;
  4485. color:#000000;
  4486. vertical-align:none;
  4487. text-align:left;
  4488. text-transform:none;
  4489. background-color:transparent;
  4490. border-color:transparent;
  4491. }
  4492. #u25452_input.hint.disabled {
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:280px;
  4497. height:38px;
  4498. padding:2px 2px 2px 2px;
  4499. font-family:"Microsoft YaHei", sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:12px;
  4503. letter-spacing:normal;
  4504. color:#AAAAAA;
  4505. vertical-align:none;
  4506. text-align:left;
  4507. text-transform:none;
  4508. background-color:transparent;
  4509. border-color:transparent;
  4510. }
  4511. #u25452_div {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:280px;
  4517. height:38px;
  4518. background:inherit;
  4519. background-color:rgba(255, 255, 255, 1);
  4520. border-radius:0px;
  4521. filter:drop-shadow(none);
  4522. transition:none;
  4523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:14px;
  4527. }
  4528. #u25452 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:1314px;
  4532. top:279px;
  4533. width:280px;
  4534. height:38px;
  4535. display:flex;
  4536. transition:none;
  4537. transform-origin:50% 50%;
  4538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. font-size:14px;
  4542. }
  4543. #u25452 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 2px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u25452_div.hint {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:280px;
  4556. height:38px;
  4557. background:inherit;
  4558. background-color:rgba(255, 255, 255, 1);
  4559. border-radius:0px;
  4560. filter:drop-shadow(none);
  4561. transition:none;
  4562. font-family:"Microsoft YaHei", sans-serif;
  4563. font-weight:400;
  4564. font-style:normal;
  4565. font-size:14px;
  4566. }
  4567. #u25452.hint {
  4568. }
  4569. #u25452_div.disabled {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:280px;
  4575. height:38px;
  4576. background:inherit;
  4577. background-color:rgba(240, 240, 240, 1);
  4578. border-radius:0px;
  4579. filter:drop-shadow(none);
  4580. transition:none;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:14px;
  4585. }
  4586. #u25452.disabled {
  4587. }
  4588. #u25452_div.hint.disabled {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:280px;
  4594. height:38px;
  4595. background:inherit;
  4596. background-color:rgba(240, 240, 240, 1);
  4597. border-radius:0px;
  4598. filter:drop-shadow(none);
  4599. transition:none;
  4600. font-family:"Microsoft YaHei", sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:14px;
  4604. }
  4605. #u25452.hint.disabled {
  4606. }
  4607. #u25453 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:1580px;
  4611. top:291px;
  4612. width:12px;
  4613. height:15px;
  4614. display:flex;
  4615. transition:none;
  4616. }
  4617. #u25453 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 2px 2px 2px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u25453_img {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:12px;
  4630. height:15px;
  4631. }
  4632. #u25453_text {
  4633. border-width:0px;
  4634. word-wrap:break-word;
  4635. text-transform:none;
  4636. visibility:hidden;
  4637. }
  4638. #u25454 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:0px;
  4644. height:0px;
  4645. }
  4646. #u25455_div {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:300px;
  4652. height:40px;
  4653. background:inherit;
  4654. background-color:rgba(255, 255, 255, 1);
  4655. box-sizing:border-box;
  4656. border-width:1px;
  4657. border-style:solid;
  4658. border-color:rgba(215, 215, 215, 1);
  4659. border-radius:4px;
  4660. filter:drop-shadow(none);
  4661. transition:none;
  4662. font-size:14px;
  4663. }
  4664. #u25455 {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:1741px;
  4668. top:128px;
  4669. width:300px;
  4670. height:40px;
  4671. display:flex;
  4672. transition:none;
  4673. transform-origin:50% 50%;
  4674. font-size:14px;
  4675. }
  4676. #u25455 .text {
  4677. position:absolute;
  4678. align-self:center;
  4679. padding:2px 2px 2px 2px;
  4680. box-sizing:border-box;
  4681. width:100%;
  4682. }
  4683. #u25455_text {
  4684. border-width:0px;
  4685. word-wrap:break-word;
  4686. text-transform:none;
  4687. visibility:hidden;
  4688. }
  4689. #u25456_input {
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:286px;
  4694. height:31px;
  4695. padding:2px 2px 2px 2px;
  4696. font-family:'ArialMT', 'Arial', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:14px;
  4700. letter-spacing:normal;
  4701. color:#AAAAAA;
  4702. vertical-align:none;
  4703. text-align:left;
  4704. text-transform:none;
  4705. background-color:transparent;
  4706. border-color:transparent;
  4707. }
  4708. #u25456_input.disabled {
  4709. position:absolute;
  4710. left:0px;
  4711. top:0px;
  4712. width:286px;
  4713. height:31px;
  4714. padding:2px 2px 2px 2px;
  4715. font-family:'ArialMT', 'Arial', sans-serif;
  4716. font-weight:400;
  4717. font-style:normal;
  4718. font-size:14px;
  4719. letter-spacing:normal;
  4720. color:#AAAAAA;
  4721. vertical-align:none;
  4722. text-align:left;
  4723. text-transform:none;
  4724. background-color:transparent;
  4725. border-color:transparent;
  4726. }
  4727. #u25456_div {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:286px;
  4733. height:31px;
  4734. background:inherit;
  4735. background-color:rgba(255, 255, 255, 1);
  4736. border-radius:0px;
  4737. filter:drop-shadow(none);
  4738. transition:none;
  4739. font-size:14px;
  4740. color:#AAAAAA;
  4741. }
  4742. #u25456 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:1749px;
  4746. top:131px;
  4747. width:286px;
  4748. height:31px;
  4749. display:flex;
  4750. transition:none;
  4751. transform-origin:50% 50%;
  4752. font-size:14px;
  4753. color:#AAAAAA;
  4754. }
  4755. #u25456 .text {
  4756. position:absolute;
  4757. align-self:flex-start;
  4758. padding:2px 2px 2px 2px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u25456_div.disabled {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:0px;
  4767. width:286px;
  4768. height:31px;
  4769. background:inherit;
  4770. background-color:rgba(240, 240, 240, 1);
  4771. border-radius:0px;
  4772. filter:drop-shadow(none);
  4773. transition:none;
  4774. font-size:14px;
  4775. color:#AAAAAA;
  4776. }
  4777. #u25456.disabled {
  4778. }
  4779. .u25456_input_option {
  4780. font-size:14px;
  4781. }
  4782. #u25457 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:0px;
  4788. height:0px;
  4789. }
  4790. #u25458_div {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:738px;
  4796. height:80px;
  4797. background:inherit;
  4798. background-color:rgba(255, 255, 255, 1);
  4799. box-sizing:border-box;
  4800. border-width:1px;
  4801. border-style:solid;
  4802. border-color:rgba(188, 188, 188, 1);
  4803. border-radius:4px;
  4804. filter:drop-shadow(none);
  4805. transition:none;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:12px;
  4810. text-align:right;
  4811. }
  4812. #u25458 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:1303px;
  4816. top:634px;
  4817. width:738px;
  4818. height:80px;
  4819. display:flex;
  4820. transition:none;
  4821. transform-origin:50% 50%;
  4822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:12px;
  4826. text-align:right;
  4827. }
  4828. #u25458 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:8px 15px 8px 15px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u25458_text {
  4836. border-width:0px;
  4837. word-wrap:break-word;
  4838. text-transform:none;
  4839. visibility:hidden;
  4840. }
  4841. #u25459_input {
  4842. position:absolute;
  4843. left:0px;
  4844. top:0px;
  4845. width:142px;
  4846. height:26px;
  4847. padding:2px 2px 2px 2px;
  4848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4849. font-weight:400;
  4850. font-style:normal;
  4851. font-size:12px;
  4852. letter-spacing:normal;
  4853. color:#7F7F7F;
  4854. vertical-align:none;
  4855. text-align:left;
  4856. text-transform:none;
  4857. background-color:transparent;
  4858. border-color:transparent;
  4859. }
  4860. #u25459_input.hint {
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:142px;
  4865. height:26px;
  4866. padding:2px 2px 2px 2px;
  4867. font-family:"Microsoft YaHei", sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:12px;
  4871. letter-spacing:normal;
  4872. color:#AAAAAA;
  4873. vertical-align:none;
  4874. text-align:left;
  4875. text-transform:none;
  4876. background-color:transparent;
  4877. border-color:transparent;
  4878. }
  4879. #u25459_input.disabled {
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:142px;
  4884. height:26px;
  4885. padding:2px 2px 2px 2px;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:12px;
  4890. letter-spacing:normal;
  4891. color:#7F7F7F;
  4892. vertical-align:none;
  4893. text-align:left;
  4894. text-transform:none;
  4895. background-color:transparent;
  4896. border-color:transparent;
  4897. }
  4898. #u25459_input.hint.disabled {
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:142px;
  4903. height:26px;
  4904. padding:2px 2px 2px 2px;
  4905. font-family:"Microsoft YaHei", sans-serif;
  4906. font-weight:400;
  4907. font-style:normal;
  4908. font-size:12px;
  4909. letter-spacing:normal;
  4910. color:#AAAAAA;
  4911. vertical-align:none;
  4912. text-align:left;
  4913. text-transform:none;
  4914. background-color:transparent;
  4915. border-color:transparent;
  4916. }
  4917. #u25459_div {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:0px;
  4921. top:0px;
  4922. width:142px;
  4923. height:26px;
  4924. background:inherit;
  4925. background-color:rgba(255, 255, 255, 1);
  4926. border-radius:0px;
  4927. filter:drop-shadow(none);
  4928. transition:none;
  4929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:12px;
  4933. color:#7F7F7F;
  4934. }
  4935. #u25459 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:1311px;
  4939. top:636px;
  4940. width:142px;
  4941. height:26px;
  4942. display:flex;
  4943. transition:none;
  4944. transform-origin:50% 50%;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:12px;
  4949. color:#7F7F7F;
  4950. }
  4951. #u25459 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 2px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u25459_div.hint {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:142px;
  4964. height:26px;
  4965. background:inherit;
  4966. background-color:rgba(255, 255, 255, 1);
  4967. border-radius:0px;
  4968. filter:drop-shadow(none);
  4969. transition:none;
  4970. font-family:"Microsoft YaHei", sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. font-size:12px;
  4974. color:#7F7F7F;
  4975. }
  4976. #u25459.hint {
  4977. }
  4978. #u25459_div.disabled {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:142px;
  4984. height:26px;
  4985. background:inherit;
  4986. background-color:rgba(240, 240, 240, 1);
  4987. border-radius:0px;
  4988. filter:drop-shadow(none);
  4989. transition:none;
  4990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:12px;
  4994. color:#7F7F7F;
  4995. }
  4996. #u25459.disabled {
  4997. }
  4998. #u25459_div.hint.disabled {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:142px;
  5004. height:26px;
  5005. background:inherit;
  5006. background-color:rgba(240, 240, 240, 1);
  5007. border-radius:0px;
  5008. filter:drop-shadow(none);
  5009. transition:none;
  5010. font-family:"Microsoft YaHei", sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:12px;
  5014. color:#7F7F7F;
  5015. }
  5016. #u25459.hint.disabled {
  5017. }
  5018. #u25460_div {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:71px;
  5024. height:26px;
  5025. background:inherit;
  5026. background-color:rgba(255, 255, 255, 0);
  5027. border-top:0px;
  5028. border-right:0px;
  5029. border-bottom:0px;
  5030. border-radius:0px;
  5031. border-top-left-radius:0px;
  5032. border-bottom-left-radius:0px;
  5033. filter:drop-shadow(none);
  5034. transition:none;
  5035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5036. font-weight:400;
  5037. font-style:normal;
  5038. font-size:14px;
  5039. color:#7F7F7F;
  5040. text-align:right;
  5041. }
  5042. #u25460 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:1222px;
  5046. top:636px;
  5047. width:71px;
  5048. height:26px;
  5049. display:flex;
  5050. transition:none;
  5051. transform-origin:50% 50%;
  5052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:14px;
  5056. color:#7F7F7F;
  5057. text-align:right;
  5058. }
  5059. #u25460 .text {
  5060. position:absolute;
  5061. align-self:center;
  5062. padding:5px 0px 5px 0px;
  5063. box-sizing:border-box;
  5064. width:100%;
  5065. }
  5066. #u25460_text {
  5067. border-width:0px;
  5068. white-space:nowrap;
  5069. text-transform:none;
  5070. }
  5071. #u25461_div {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:60px;
  5077. height:60px;
  5078. background:inherit;
  5079. background-color:rgba(255, 255, 255, 1);
  5080. box-sizing:border-box;
  5081. border-width:1px;
  5082. border-style:solid;
  5083. border-color:rgba(188, 188, 188, 1);
  5084. border-radius:4px;
  5085. filter:drop-shadow(none);
  5086. transition:none;
  5087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:28px;
  5091. }
  5092. #u25461 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:1303px;
  5096. top:493px;
  5097. width:60px;
  5098. height:60px;
  5099. display:flex;
  5100. transition:none;
  5101. transform-origin:50% 50%;
  5102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:28px;
  5106. }
  5107. #u25461 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:8px 15px 8px 15px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u25461_text {
  5115. border-width:0px;
  5116. word-wrap:break-word;
  5117. text-transform:none;
  5118. }
  5119. #u25462_div {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:0px;
  5123. top:0px;
  5124. width:71px;
  5125. height:30px;
  5126. background:inherit;
  5127. background-color:rgba(255, 255, 255, 0);
  5128. border-top:0px;
  5129. border-right:0px;
  5130. border-bottom:0px;
  5131. border-radius:0px;
  5132. border-top-left-radius:0px;
  5133. border-bottom-left-radius:0px;
  5134. filter:drop-shadow(none);
  5135. transition:none;
  5136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:14px;
  5140. color:#7F7F7F;
  5141. }
  5142. #u25462 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:1222px;
  5146. top:493px;
  5147. width:71px;
  5148. height:30px;
  5149. display:flex;
  5150. transition:none;
  5151. transform-origin:50% 50%;
  5152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5153. font-weight:400;
  5154. font-style:normal;
  5155. font-size:14px;
  5156. color:#7F7F7F;
  5157. }
  5158. #u25462 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:5px 0px 5px 0px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u25462_text {
  5166. border-width:0px;
  5167. white-space:nowrap;
  5168. text-transform:none;
  5169. }
  5170. #u25463_div {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:78px;
  5176. height:40px;
  5177. background:inherit;
  5178. background-color:rgba(255, 255, 255, 0);
  5179. border-top:0px;
  5180. border-right:0px;
  5181. border-bottom:0px;
  5182. border-radius:0px;
  5183. border-top-left-radius:0px;
  5184. border-bottom-left-radius:0px;
  5185. filter:drop-shadow(none);
  5186. transition:none;
  5187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5188. font-weight:400;
  5189. font-style:normal;
  5190. font-size:14px;
  5191. color:#7F7F7F;
  5192. text-align:right;
  5193. }
  5194. #u25463 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:1215px;
  5198. top:178px;
  5199. width:78px;
  5200. height:40px;
  5201. display:flex;
  5202. transition:none;
  5203. transform-origin:50% 50%;
  5204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5205. font-weight:400;
  5206. font-style:normal;
  5207. font-size:14px;
  5208. color:#7F7F7F;
  5209. text-align:right;
  5210. }
  5211. #u25463 .text {
  5212. position:absolute;
  5213. align-self:center;
  5214. padding:5px 0px 5px 0px;
  5215. box-sizing:border-box;
  5216. width:100%;
  5217. }
  5218. #u25463_text {
  5219. border-width:0px;
  5220. white-space:nowrap;
  5221. text-transform:none;
  5222. }
  5223. #u25464 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:0px;
  5229. height:0px;
  5230. }
  5231. #u25465_div {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:300px;
  5237. height:40px;
  5238. background:inherit;
  5239. background-color:rgba(255, 255, 255, 1);
  5240. box-sizing:border-box;
  5241. border-width:1px;
  5242. border-style:solid;
  5243. border-color:rgba(215, 215, 215, 1);
  5244. border-radius:4px;
  5245. filter:drop-shadow(none);
  5246. transition:none;
  5247. font-size:14px;
  5248. }
  5249. #u25465 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:1302px;
  5253. top:178px;
  5254. width:300px;
  5255. height:40px;
  5256. display:flex;
  5257. transition:none;
  5258. transform-origin:50% 50%;
  5259. font-size:14px;
  5260. }
  5261. #u25465 .text {
  5262. position:absolute;
  5263. align-self:center;
  5264. padding:2px 2px 2px 2px;
  5265. box-sizing:border-box;
  5266. width:100%;
  5267. }
  5268. #u25465_text {
  5269. border-width:0px;
  5270. word-wrap:break-word;
  5271. text-transform:none;
  5272. visibility:hidden;
  5273. }
  5274. #u25466_input {
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:285px;
  5279. height:31px;
  5280. padding:2px 2px 2px 2px;
  5281. font-family:'ArialMT', 'Arial', sans-serif;
  5282. font-weight:400;
  5283. font-style:normal;
  5284. font-size:14px;
  5285. letter-spacing:normal;
  5286. color:#AAAAAA;
  5287. vertical-align:none;
  5288. text-align:left;
  5289. text-transform:none;
  5290. background-color:transparent;
  5291. border-color:transparent;
  5292. }
  5293. #u25466_input.disabled {
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:285px;
  5298. height:31px;
  5299. padding:2px 2px 2px 2px;
  5300. font-family:'ArialMT', 'Arial', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:14px;
  5304. letter-spacing:normal;
  5305. color:#AAAAAA;
  5306. vertical-align:none;
  5307. text-align:left;
  5308. text-transform:none;
  5309. background-color:transparent;
  5310. border-color:transparent;
  5311. }
  5312. #u25466_div {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:285px;
  5318. height:31px;
  5319. background:inherit;
  5320. background-color:rgba(255, 255, 255, 1);
  5321. border-radius:0px;
  5322. filter:drop-shadow(none);
  5323. transition:none;
  5324. font-size:14px;
  5325. color:#AAAAAA;
  5326. }
  5327. #u25466 {
  5328. border-width:0px;
  5329. position:absolute;
  5330. left:1312px;
  5331. top:181px;
  5332. width:285px;
  5333. height:31px;
  5334. display:flex;
  5335. transition:none;
  5336. transform-origin:50% 50%;
  5337. font-size:14px;
  5338. color:#AAAAAA;
  5339. }
  5340. #u25466 .text {
  5341. position:absolute;
  5342. align-self:flex-start;
  5343. padding:2px 2px 2px 2px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u25466_div.disabled {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:285px;
  5353. height:31px;
  5354. background:inherit;
  5355. background-color:rgba(240, 240, 240, 1);
  5356. border-radius:0px;
  5357. filter:drop-shadow(none);
  5358. transition:none;
  5359. font-size:14px;
  5360. color:#AAAAAA;
  5361. }
  5362. #u25466.disabled {
  5363. }
  5364. .u25466_input_option {
  5365. font-size:14px;
  5366. }
  5367. #u25467_div {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:78px;
  5373. height:40px;
  5374. background:inherit;
  5375. background-color:rgba(255, 255, 255, 0);
  5376. border-top:0px;
  5377. border-right:0px;
  5378. border-bottom:0px;
  5379. border-radius:0px;
  5380. border-top-left-radius:0px;
  5381. border-bottom-left-radius:0px;
  5382. filter:drop-shadow(none);
  5383. transition:none;
  5384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5385. font-weight:400;
  5386. font-style:normal;
  5387. font-size:14px;
  5388. color:#7F7F7F;
  5389. text-align:right;
  5390. }
  5391. #u25467 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:1653px;
  5395. top:228px;
  5396. width:78px;
  5397. height:40px;
  5398. display:flex;
  5399. transition:none;
  5400. transform-origin:50% 50%;
  5401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5402. font-weight:400;
  5403. font-style:normal;
  5404. font-size:14px;
  5405. color:#7F7F7F;
  5406. text-align:right;
  5407. }
  5408. #u25467 .text {
  5409. position:absolute;
  5410. align-self:center;
  5411. padding:5px 0px 5px 0px;
  5412. box-sizing:border-box;
  5413. width:100%;
  5414. }
  5415. #u25467_text {
  5416. border-width:0px;
  5417. white-space:nowrap;
  5418. text-transform:none;
  5419. }
  5420. #u25468 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:0px;
  5424. top:0px;
  5425. width:0px;
  5426. height:0px;
  5427. }
  5428. #u25469_div {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:300px;
  5434. height:40px;
  5435. background:inherit;
  5436. background-color:rgba(255, 255, 255, 1);
  5437. box-sizing:border-box;
  5438. border-width:1px;
  5439. border-style:solid;
  5440. border-color:rgba(201, 201, 201, 1);
  5441. border-radius:4px;
  5442. filter:drop-shadow(none);
  5443. transition:none;
  5444. font-family:"Microsoft YaHei", sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:14px;
  5448. color:#CCCCCC;
  5449. text-align:left;
  5450. }
  5451. #u25469 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:1741px;
  5455. top:228px;
  5456. width:300px;
  5457. height:40px;
  5458. display:flex;
  5459. transition:none;
  5460. transform-origin:50% 50%;
  5461. font-family:"Microsoft YaHei", sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. font-size:14px;
  5465. color:#CCCCCC;
  5466. text-align:left;
  5467. }
  5468. #u25469 .text {
  5469. position:absolute;
  5470. align-self:center;
  5471. padding:2px 8px 2px 8px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u25469_text {
  5476. border-width:0px;
  5477. word-wrap:break-word;
  5478. text-transform:none;
  5479. visibility:hidden;
  5480. }
  5481. #u25470_input {
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:285px;
  5486. height:38px;
  5487. padding:2px 2px 2px 2px;
  5488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5489. font-weight:400;
  5490. font-style:normal;
  5491. font-size:14px;
  5492. letter-spacing:normal;
  5493. color:#000000;
  5494. vertical-align:none;
  5495. text-align:left;
  5496. text-transform:none;
  5497. background-color:transparent;
  5498. border-color:transparent;
  5499. }
  5500. #u25470_input.hint {
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:285px;
  5505. height:38px;
  5506. padding:2px 2px 2px 2px;
  5507. font-family:"Microsoft YaHei", sans-serif;
  5508. font-weight:400;
  5509. font-style:normal;
  5510. font-size:12px;
  5511. letter-spacing:normal;
  5512. color:#AAAAAA;
  5513. vertical-align:none;
  5514. text-align:left;
  5515. text-transform:none;
  5516. background-color:transparent;
  5517. border-color:transparent;
  5518. }
  5519. #u25470_input.disabled {
  5520. position:absolute;
  5521. left:0px;
  5522. top:0px;
  5523. width:285px;
  5524. height:38px;
  5525. padding:2px 2px 2px 2px;
  5526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5527. font-weight:400;
  5528. font-style:normal;
  5529. font-size:14px;
  5530. letter-spacing:normal;
  5531. color:#000000;
  5532. vertical-align:none;
  5533. text-align:left;
  5534. text-transform:none;
  5535. background-color:transparent;
  5536. border-color:transparent;
  5537. }
  5538. #u25470_input.hint.disabled {
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:285px;
  5543. height:38px;
  5544. padding:2px 2px 2px 2px;
  5545. font-family:"Microsoft YaHei", sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:12px;
  5549. letter-spacing:normal;
  5550. color:#AAAAAA;
  5551. vertical-align:none;
  5552. text-align:left;
  5553. text-transform:none;
  5554. background-color:transparent;
  5555. border-color:transparent;
  5556. }
  5557. #u25470_div {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:285px;
  5563. height:38px;
  5564. background:inherit;
  5565. background-color:rgba(255, 255, 255, 1);
  5566. border-radius:0px;
  5567. filter:drop-shadow(none);
  5568. transition:none;
  5569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:14px;
  5573. }
  5574. #u25470 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:1749px;
  5578. top:229px;
  5579. width:285px;
  5580. height:38px;
  5581. display:flex;
  5582. transition:none;
  5583. transform-origin:50% 50%;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:14px;
  5588. }
  5589. #u25470 .text {
  5590. position:absolute;
  5591. align-self:center;
  5592. padding:2px 2px 2px 2px;
  5593. box-sizing:border-box;
  5594. width:100%;
  5595. }
  5596. #u25470_div.hint {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:285px;
  5602. height:38px;
  5603. background:inherit;
  5604. background-color:rgba(255, 255, 255, 1);
  5605. border-radius:0px;
  5606. filter:drop-shadow(none);
  5607. transition:none;
  5608. font-family:"Microsoft YaHei", sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:14px;
  5612. }
  5613. #u25470.hint {
  5614. }
  5615. #u25470_div.disabled {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:285px;
  5621. height:38px;
  5622. background:inherit;
  5623. background-color:rgba(240, 240, 240, 1);
  5624. border-radius:0px;
  5625. filter:drop-shadow(none);
  5626. transition:none;
  5627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:14px;
  5631. }
  5632. #u25470.disabled {
  5633. }
  5634. #u25470_div.hint.disabled {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:285px;
  5640. height:38px;
  5641. background:inherit;
  5642. background-color:rgba(240, 240, 240, 1);
  5643. border-radius:0px;
  5644. filter:drop-shadow(none);
  5645. transition:none;
  5646. font-family:"Microsoft YaHei", sans-serif;
  5647. font-weight:400;
  5648. font-style:normal;
  5649. font-size:14px;
  5650. }
  5651. #u25470.hint.disabled {
  5652. }
  5653. #u25471_div {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:78px;
  5659. height:40px;
  5660. background:inherit;
  5661. background-color:rgba(255, 255, 255, 0);
  5662. border-top:0px;
  5663. border-right:0px;
  5664. border-bottom:0px;
  5665. border-radius:0px;
  5666. border-top-left-radius:0px;
  5667. border-bottom-left-radius:0px;
  5668. filter:drop-shadow(none);
  5669. transition:none;
  5670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5671. font-weight:400;
  5672. font-style:normal;
  5673. font-size:14px;
  5674. color:#7F7F7F;
  5675. text-align:right;
  5676. }
  5677. #u25471 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:1653px;
  5681. top:178px;
  5682. width:78px;
  5683. height:40px;
  5684. display:flex;
  5685. transition:none;
  5686. transform-origin:50% 50%;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:14px;
  5691. color:#7F7F7F;
  5692. text-align:right;
  5693. }
  5694. #u25471 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:5px 0px 5px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u25471_text {
  5702. border-width:0px;
  5703. white-space:nowrap;
  5704. text-transform:none;
  5705. }
  5706. #u25472 {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:0px;
  5712. height:0px;
  5713. }
  5714. #u25473_div {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:0px;
  5718. top:0px;
  5719. width:300px;
  5720. height:40px;
  5721. background:inherit;
  5722. background-color:rgba(255, 255, 255, 1);
  5723. box-sizing:border-box;
  5724. border-width:1px;
  5725. border-style:solid;
  5726. border-color:rgba(201, 201, 201, 1);
  5727. border-radius:4px;
  5728. filter:drop-shadow(none);
  5729. transition:none;
  5730. font-family:"Microsoft YaHei", sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:14px;
  5734. color:#CCCCCC;
  5735. text-align:left;
  5736. }
  5737. #u25473 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:1741px;
  5741. top:178px;
  5742. width:300px;
  5743. height:40px;
  5744. display:flex;
  5745. transition:none;
  5746. transform-origin:50% 50%;
  5747. font-family:"Microsoft YaHei", sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:14px;
  5751. color:#CCCCCC;
  5752. text-align:left;
  5753. }
  5754. #u25473 .text {
  5755. position:absolute;
  5756. align-self:center;
  5757. padding:2px 8px 2px 8px;
  5758. box-sizing:border-box;
  5759. width:100%;
  5760. }
  5761. #u25473_text {
  5762. border-width:0px;
  5763. word-wrap:break-word;
  5764. text-transform:none;
  5765. visibility:hidden;
  5766. }
  5767. #u25474_input {
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:280px;
  5772. height:38px;
  5773. padding:2px 2px 2px 2px;
  5774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5775. font-weight:400;
  5776. font-style:normal;
  5777. font-size:14px;
  5778. letter-spacing:normal;
  5779. color:#000000;
  5780. vertical-align:none;
  5781. text-align:left;
  5782. text-transform:none;
  5783. background-color:transparent;
  5784. border-color:transparent;
  5785. }
  5786. #u25474_input.hint {
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:280px;
  5791. height:38px;
  5792. padding:2px 2px 2px 2px;
  5793. font-family:"Microsoft YaHei", sans-serif;
  5794. font-weight:400;
  5795. font-style:normal;
  5796. font-size:12px;
  5797. letter-spacing:normal;
  5798. color:#AAAAAA;
  5799. vertical-align:none;
  5800. text-align:left;
  5801. text-transform:none;
  5802. background-color:transparent;
  5803. border-color:transparent;
  5804. }
  5805. #u25474_input.disabled {
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:280px;
  5810. height:38px;
  5811. padding:2px 2px 2px 2px;
  5812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5813. font-weight:400;
  5814. font-style:normal;
  5815. font-size:14px;
  5816. letter-spacing:normal;
  5817. color:#000000;
  5818. vertical-align:none;
  5819. text-align:left;
  5820. text-transform:none;
  5821. background-color:transparent;
  5822. border-color:transparent;
  5823. }
  5824. #u25474_input.hint.disabled {
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:280px;
  5829. height:38px;
  5830. padding:2px 2px 2px 2px;
  5831. font-family:"Microsoft YaHei", sans-serif;
  5832. font-weight:400;
  5833. font-style:normal;
  5834. font-size:12px;
  5835. letter-spacing:normal;
  5836. color:#AAAAAA;
  5837. vertical-align:none;
  5838. text-align:left;
  5839. text-transform:none;
  5840. background-color:transparent;
  5841. border-color:transparent;
  5842. }
  5843. #u25474_div {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:280px;
  5849. height:38px;
  5850. background:inherit;
  5851. background-color:rgba(255, 255, 255, 1);
  5852. border-radius:0px;
  5853. filter:drop-shadow(none);
  5854. transition:none;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:14px;
  5859. }
  5860. #u25474 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:1752px;
  5864. top:179px;
  5865. width:280px;
  5866. height:38px;
  5867. display:flex;
  5868. transition:none;
  5869. transform-origin:50% 50%;
  5870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:14px;
  5874. }
  5875. #u25474 .text {
  5876. position:absolute;
  5877. align-self:center;
  5878. padding:2px 2px 2px 2px;
  5879. box-sizing:border-box;
  5880. width:100%;
  5881. }
  5882. #u25474_div.hint {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:0px;
  5886. top:0px;
  5887. width:280px;
  5888. height:38px;
  5889. background:inherit;
  5890. background-color:rgba(255, 255, 255, 1);
  5891. border-radius:0px;
  5892. filter:drop-shadow(none);
  5893. transition:none;
  5894. font-family:"Microsoft YaHei", sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:14px;
  5898. }
  5899. #u25474.hint {
  5900. }
  5901. #u25474_div.disabled {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:280px;
  5907. height:38px;
  5908. background:inherit;
  5909. background-color:rgba(240, 240, 240, 1);
  5910. border-radius:0px;
  5911. filter:drop-shadow(none);
  5912. transition:none;
  5913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5914. font-weight:400;
  5915. font-style:normal;
  5916. font-size:14px;
  5917. }
  5918. #u25474.disabled {
  5919. }
  5920. #u25474_div.hint.disabled {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:280px;
  5926. height:38px;
  5927. background:inherit;
  5928. background-color:rgba(240, 240, 240, 1);
  5929. border-radius:0px;
  5930. filter:drop-shadow(none);
  5931. transition:none;
  5932. font-family:"Microsoft YaHei", sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:14px;
  5936. }
  5937. #u25474.hint.disabled {
  5938. }
  5939. #u25475 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:2018px;
  5943. top:191px;
  5944. width:12px;
  5945. height:15px;
  5946. display:flex;
  5947. transition:none;
  5948. }
  5949. #u25475 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:2px 2px 2px 2px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u25475_img {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:12px;
  5962. height:15px;
  5963. }
  5964. #u25475_text {
  5965. border-width:0px;
  5966. word-wrap:break-word;
  5967. text-transform:none;
  5968. visibility:hidden;
  5969. }
  5970. #u25476_div {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:57px;
  5976. height:30px;
  5977. background:inherit;
  5978. background-color:rgba(255, 255, 255, 0);
  5979. border-top:0px;
  5980. border-right:0px;
  5981. border-bottom:0px;
  5982. border-radius:0px;
  5983. border-top-left-radius:0px;
  5984. border-bottom-left-radius:0px;
  5985. filter:drop-shadow(none);
  5986. transition:none;
  5987. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5988. font-weight:500;
  5989. font-style:normal;
  5990. font-size:14px;
  5991. }
  5992. #u25476 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:1215px;
  5996. top:343px;
  5997. width:57px;
  5998. height:30px;
  5999. display:flex;
  6000. transition:none;
  6001. transform-origin:50% 50%;
  6002. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6003. font-weight:500;
  6004. font-style:normal;
  6005. font-size:14px;
  6006. }
  6007. #u25476 .text {
  6008. position:absolute;
  6009. align-self:center;
  6010. padding:5px 0px 5px 0px;
  6011. box-sizing:border-box;
  6012. width:100%;
  6013. }
  6014. #u25476_text {
  6015. border-width:0px;
  6016. white-space:nowrap;
  6017. text-transform:none;
  6018. }
  6019. #u25477_div {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:64px;
  6025. height:40px;
  6026. background:inherit;
  6027. background-color:rgba(255, 255, 255, 0);
  6028. border-top:0px;
  6029. border-right:0px;
  6030. border-bottom:0px;
  6031. border-radius:0px;
  6032. border-top-left-radius:0px;
  6033. border-bottom-left-radius:0px;
  6034. filter:drop-shadow(none);
  6035. transition:none;
  6036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6037. font-weight:400;
  6038. font-style:normal;
  6039. font-size:14px;
  6040. color:#7F7F7F;
  6041. text-align:right;
  6042. }
  6043. #u25477 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:1229px;
  6047. top:228px;
  6048. width:64px;
  6049. height:40px;
  6050. display:flex;
  6051. transition:none;
  6052. transform-origin:50% 50%;
  6053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:14px;
  6057. color:#7F7F7F;
  6058. text-align:right;
  6059. }
  6060. #u25477 .text {
  6061. position:absolute;
  6062. align-self:center;
  6063. padding:5px 0px 5px 0px;
  6064. box-sizing:border-box;
  6065. width:100%;
  6066. }
  6067. #u25477_text {
  6068. border-width:0px;
  6069. white-space:nowrap;
  6070. text-transform:none;
  6071. }
  6072. #u25478 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:0px;
  6078. height:0px;
  6079. }
  6080. #u25479_div {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:300px;
  6086. height:40px;
  6087. background:inherit;
  6088. background-color:rgba(255, 255, 255, 1);
  6089. box-sizing:border-box;
  6090. border-width:1px;
  6091. border-style:solid;
  6092. border-color:rgba(201, 201, 201, 1);
  6093. border-radius:4px;
  6094. filter:drop-shadow(none);
  6095. transition:none;
  6096. font-family:"Microsoft YaHei", sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:14px;
  6100. color:#CCCCCC;
  6101. text-align:left;
  6102. }
  6103. #u25479 {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:1303px;
  6107. top:228px;
  6108. width:300px;
  6109. height:40px;
  6110. display:flex;
  6111. transition:none;
  6112. transform-origin:50% 50%;
  6113. font-family:"Microsoft YaHei", sans-serif;
  6114. font-weight:400;
  6115. font-style:normal;
  6116. font-size:14px;
  6117. color:#CCCCCC;
  6118. text-align:left;
  6119. }
  6120. #u25479 .text {
  6121. position:absolute;
  6122. align-self:center;
  6123. padding:2px 8px 2px 8px;
  6124. box-sizing:border-box;
  6125. width:100%;
  6126. }
  6127. #u25479_text {
  6128. border-width:0px;
  6129. word-wrap:break-word;
  6130. text-transform:none;
  6131. visibility:hidden;
  6132. }
  6133. #u25480_input {
  6134. position:absolute;
  6135. left:0px;
  6136. top:0px;
  6137. width:285px;
  6138. height:38px;
  6139. padding:2px 2px 2px 2px;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:14px;
  6144. letter-spacing:normal;
  6145. color:#000000;
  6146. vertical-align:none;
  6147. text-align:left;
  6148. text-transform:none;
  6149. background-color:transparent;
  6150. border-color:transparent;
  6151. }
  6152. #u25480_input.hint {
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:285px;
  6157. height:38px;
  6158. padding:2px 2px 2px 2px;
  6159. font-family:"Microsoft YaHei", sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. font-size:12px;
  6163. letter-spacing:normal;
  6164. color:#AAAAAA;
  6165. vertical-align:none;
  6166. text-align:left;
  6167. text-transform:none;
  6168. background-color:transparent;
  6169. border-color:transparent;
  6170. }
  6171. #u25480_input.disabled {
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:285px;
  6176. height:38px;
  6177. padding:2px 2px 2px 2px;
  6178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6179. font-weight:400;
  6180. font-style:normal;
  6181. font-size:14px;
  6182. letter-spacing:normal;
  6183. color:#000000;
  6184. vertical-align:none;
  6185. text-align:left;
  6186. text-transform:none;
  6187. background-color:transparent;
  6188. border-color:transparent;
  6189. }
  6190. #u25480_input.hint.disabled {
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:285px;
  6195. height:38px;
  6196. padding:2px 2px 2px 2px;
  6197. font-family:"Microsoft YaHei", sans-serif;
  6198. font-weight:400;
  6199. font-style:normal;
  6200. font-size:12px;
  6201. letter-spacing:normal;
  6202. color:#AAAAAA;
  6203. vertical-align:none;
  6204. text-align:left;
  6205. text-transform:none;
  6206. background-color:transparent;
  6207. border-color:transparent;
  6208. }
  6209. #u25480_div {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:285px;
  6215. height:38px;
  6216. background:inherit;
  6217. background-color:rgba(255, 255, 255, 1);
  6218. border-radius:0px;
  6219. filter:drop-shadow(none);
  6220. transition:none;
  6221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:14px;
  6225. }
  6226. #u25480 {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:1311px;
  6230. top:229px;
  6231. width:285px;
  6232. height:38px;
  6233. display:flex;
  6234. transition:none;
  6235. transform-origin:50% 50%;
  6236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:14px;
  6240. }
  6241. #u25480 .text {
  6242. position:absolute;
  6243. align-self:center;
  6244. padding:2px 2px 2px 2px;
  6245. box-sizing:border-box;
  6246. width:100%;
  6247. }
  6248. #u25480_div.hint {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:285px;
  6254. height:38px;
  6255. background:inherit;
  6256. background-color:rgba(255, 255, 255, 1);
  6257. border-radius:0px;
  6258. filter:drop-shadow(none);
  6259. transition:none;
  6260. font-family:"Microsoft YaHei", sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:14px;
  6264. }
  6265. #u25480.hint {
  6266. }
  6267. #u25480_div.disabled {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:285px;
  6273. height:38px;
  6274. background:inherit;
  6275. background-color:rgba(240, 240, 240, 1);
  6276. border-radius:0px;
  6277. filter:drop-shadow(none);
  6278. transition:none;
  6279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6280. font-weight:400;
  6281. font-style:normal;
  6282. font-size:14px;
  6283. }
  6284. #u25480.disabled {
  6285. }
  6286. #u25480_div.hint.disabled {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:285px;
  6292. height:38px;
  6293. background:inherit;
  6294. background-color:rgba(240, 240, 240, 1);
  6295. border-radius:0px;
  6296. filter:drop-shadow(none);
  6297. transition:none;
  6298. font-family:"Microsoft YaHei", sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. font-size:14px;
  6302. }
  6303. #u25480.hint.disabled {
  6304. }
  6305. #u25481_div {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:78px;
  6311. height:30px;
  6312. background:inherit;
  6313. background-color:rgba(255, 255, 255, 0);
  6314. border-top:0px;
  6315. border-right:0px;
  6316. border-bottom:0px;
  6317. border-radius:0px;
  6318. border-top-left-radius:0px;
  6319. border-bottom-left-radius:0px;
  6320. filter:drop-shadow(none);
  6321. transition:none;
  6322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:14px;
  6326. color:#7F7F7F;
  6327. text-align:right;
  6328. }
  6329. #u25481 {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:1215px;
  6333. top:133px;
  6334. width:78px;
  6335. height:30px;
  6336. display:flex;
  6337. transition:none;
  6338. transform-origin:50% 50%;
  6339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6340. font-weight:400;
  6341. font-style:normal;
  6342. font-size:14px;
  6343. color:#7F7F7F;
  6344. text-align:right;
  6345. }
  6346. #u25481 .text {
  6347. position:absolute;
  6348. align-self:center;
  6349. padding:5px 0px 5px 0px;
  6350. box-sizing:border-box;
  6351. width:100%;
  6352. }
  6353. #u25481_text {
  6354. border-width:0px;
  6355. white-space:nowrap;
  6356. text-transform:none;
  6357. }
  6358. #u25482 {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:0px;
  6364. height:0px;
  6365. }
  6366. #u25483_div {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:0px;
  6370. top:0px;
  6371. width:300px;
  6372. height:40px;
  6373. background:inherit;
  6374. background-color:rgba(255, 255, 255, 1);
  6375. box-sizing:border-box;
  6376. border-width:1px;
  6377. border-style:solid;
  6378. border-color:rgba(215, 215, 215, 1);
  6379. border-radius:4px;
  6380. filter:drop-shadow(none);
  6381. transition:none;
  6382. font-size:14px;
  6383. }
  6384. #u25483 {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:1303px;
  6388. top:128px;
  6389. width:300px;
  6390. height:40px;
  6391. display:flex;
  6392. transition:none;
  6393. transform-origin:50% 50%;
  6394. font-size:14px;
  6395. }
  6396. #u25483 .text {
  6397. position:absolute;
  6398. align-self:center;
  6399. padding:2px 2px 2px 2px;
  6400. box-sizing:border-box;
  6401. width:100%;
  6402. }
  6403. #u25483_text {
  6404. border-width:0px;
  6405. word-wrap:break-word;
  6406. text-transform:none;
  6407. visibility:hidden;
  6408. }
  6409. #u25484_input {
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:286px;
  6414. height:31px;
  6415. padding:2px 2px 2px 2px;
  6416. font-family:'ArialMT', 'Arial', sans-serif;
  6417. font-weight:400;
  6418. font-style:normal;
  6419. font-size:14px;
  6420. letter-spacing:normal;
  6421. color:#AAAAAA;
  6422. vertical-align:none;
  6423. text-align:left;
  6424. text-transform:none;
  6425. background-color:transparent;
  6426. border-color:transparent;
  6427. }
  6428. #u25484_input.disabled {
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:286px;
  6433. height:31px;
  6434. padding:2px 2px 2px 2px;
  6435. font-family:'ArialMT', 'Arial', sans-serif;
  6436. font-weight:400;
  6437. font-style:normal;
  6438. font-size:14px;
  6439. letter-spacing:normal;
  6440. color:#AAAAAA;
  6441. vertical-align:none;
  6442. text-align:left;
  6443. text-transform:none;
  6444. background-color:transparent;
  6445. border-color:transparent;
  6446. }
  6447. #u25484_div {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:286px;
  6453. height:31px;
  6454. background:inherit;
  6455. background-color:rgba(255, 255, 255, 1);
  6456. border-radius:0px;
  6457. filter:drop-shadow(none);
  6458. transition:none;
  6459. font-size:14px;
  6460. color:#AAAAAA;
  6461. }
  6462. #u25484 {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:1310px;
  6466. top:131px;
  6467. width:286px;
  6468. height:31px;
  6469. display:flex;
  6470. transition:none;
  6471. transform-origin:50% 50%;
  6472. font-size:14px;
  6473. color:#AAAAAA;
  6474. }
  6475. #u25484 .text {
  6476. position:absolute;
  6477. align-self:flex-start;
  6478. padding:2px 2px 2px 2px;
  6479. box-sizing:border-box;
  6480. width:100%;
  6481. }
  6482. #u25484_div.disabled {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:286px;
  6488. height:31px;
  6489. background:inherit;
  6490. background-color:rgba(240, 240, 240, 1);
  6491. border-radius:0px;
  6492. filter:drop-shadow(none);
  6493. transition:none;
  6494. font-size:14px;
  6495. color:#AAAAAA;
  6496. }
  6497. #u25484.disabled {
  6498. }
  6499. .u25484_input_option {
  6500. font-size:14px;
  6501. }
  6502. #u25485_div {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:78px;
  6508. height:40px;
  6509. background:inherit;
  6510. background-color:rgba(255, 255, 255, 0);
  6511. border-top:0px;
  6512. border-right:0px;
  6513. border-bottom:0px;
  6514. border-radius:0px;
  6515. border-top-left-radius:0px;
  6516. border-bottom-left-radius:0px;
  6517. filter:drop-shadow(none);
  6518. transition:none;
  6519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:14px;
  6523. color:#7F7F7F;
  6524. }
  6525. #u25485 {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:1655px;
  6529. top:393px;
  6530. width:78px;
  6531. height:40px;
  6532. display:flex;
  6533. transition:none;
  6534. transform-origin:50% 50%;
  6535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:14px;
  6539. color:#7F7F7F;
  6540. }
  6541. #u25485 .text {
  6542. position:absolute;
  6543. align-self:center;
  6544. padding:5px 0px 5px 0px;
  6545. box-sizing:border-box;
  6546. width:100%;
  6547. }
  6548. #u25485_text {
  6549. border-width:0px;
  6550. white-space:nowrap;
  6551. text-transform:none;
  6552. }
  6553. #u25486_div {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:78px;
  6559. height:40px;
  6560. background:inherit;
  6561. background-color:rgba(255, 255, 255, 0);
  6562. border-top:0px;
  6563. border-right:0px;
  6564. border-bottom:0px;
  6565. border-radius:0px;
  6566. border-top-left-radius:0px;
  6567. border-bottom-left-radius:0px;
  6568. filter:drop-shadow(none);
  6569. transition:none;
  6570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6571. font-weight:400;
  6572. font-style:normal;
  6573. font-size:14px;
  6574. color:#7F7F7F;
  6575. }
  6576. #u25486 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:1224px;
  6580. top:393px;
  6581. width:78px;
  6582. height:40px;
  6583. display:flex;
  6584. transition:none;
  6585. transform-origin:50% 50%;
  6586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:14px;
  6590. color:#7F7F7F;
  6591. }
  6592. #u25486 .text {
  6593. position:absolute;
  6594. align-self:center;
  6595. padding:5px 0px 5px 0px;
  6596. box-sizing:border-box;
  6597. width:100%;
  6598. }
  6599. #u25486_text {
  6600. border-width:0px;
  6601. white-space:nowrap;
  6602. text-transform:none;
  6603. }
  6604. #u25487 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:0px;
  6610. height:0px;
  6611. }
  6612. #u25488_div {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:300px;
  6618. height:40px;
  6619. background:inherit;
  6620. background-color:rgba(255, 255, 255, 1);
  6621. box-sizing:border-box;
  6622. border-width:1px;
  6623. border-style:solid;
  6624. border-color:rgba(215, 215, 215, 1);
  6625. border-radius:4px;
  6626. filter:drop-shadow(none);
  6627. transition:none;
  6628. font-size:14px;
  6629. }
  6630. #u25488 {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:1302px;
  6634. top:393px;
  6635. width:300px;
  6636. height:40px;
  6637. display:flex;
  6638. transition:none;
  6639. transform-origin:50% 50%;
  6640. font-size:14px;
  6641. }
  6642. #u25488 .text {
  6643. position:absolute;
  6644. align-self:center;
  6645. padding:2px 2px 2px 2px;
  6646. box-sizing:border-box;
  6647. width:100%;
  6648. }
  6649. #u25488_text {
  6650. border-width:0px;
  6651. word-wrap:break-word;
  6652. text-transform:none;
  6653. visibility:hidden;
  6654. }
  6655. #u25489_input {
  6656. position:absolute;
  6657. left:0px;
  6658. top:0px;
  6659. width:286px;
  6660. height:31px;
  6661. padding:2px 2px 2px 2px;
  6662. font-family:'ArialMT', 'Arial', sans-serif;
  6663. font-weight:400;
  6664. font-style:normal;
  6665. font-size:14px;
  6666. letter-spacing:normal;
  6667. color:#AAAAAA;
  6668. vertical-align:none;
  6669. text-align:left;
  6670. text-transform:none;
  6671. background-color:transparent;
  6672. border-color:transparent;
  6673. }
  6674. #u25489_input.disabled {
  6675. position:absolute;
  6676. left:0px;
  6677. top:0px;
  6678. width:286px;
  6679. height:31px;
  6680. padding:2px 2px 2px 2px;
  6681. font-family:'ArialMT', 'Arial', sans-serif;
  6682. font-weight:400;
  6683. font-style:normal;
  6684. font-size:14px;
  6685. letter-spacing:normal;
  6686. color:#AAAAAA;
  6687. vertical-align:none;
  6688. text-align:left;
  6689. text-transform:none;
  6690. background-color:transparent;
  6691. border-color:transparent;
  6692. }
  6693. #u25489_div {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:286px;
  6699. height:31px;
  6700. background:inherit;
  6701. background-color:rgba(255, 255, 255, 1);
  6702. border-radius:0px;
  6703. filter:drop-shadow(none);
  6704. transition:none;
  6705. font-size:14px;
  6706. color:#AAAAAA;
  6707. }
  6708. #u25489 {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:1310px;
  6712. top:396px;
  6713. width:286px;
  6714. height:31px;
  6715. display:flex;
  6716. transition:none;
  6717. transform-origin:50% 50%;
  6718. font-size:14px;
  6719. color:#AAAAAA;
  6720. }
  6721. #u25489 .text {
  6722. position:absolute;
  6723. align-self:flex-start;
  6724. padding:2px 2px 2px 2px;
  6725. box-sizing:border-box;
  6726. width:100%;
  6727. }
  6728. #u25489_div.disabled {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:0px;
  6732. top:0px;
  6733. width:286px;
  6734. height:31px;
  6735. background:inherit;
  6736. background-color:rgba(240, 240, 240, 1);
  6737. border-radius:0px;
  6738. filter:drop-shadow(none);
  6739. transition:none;
  6740. font-size:14px;
  6741. color:#AAAAAA;
  6742. }
  6743. #u25489.disabled {
  6744. }
  6745. .u25489_input_option {
  6746. font-size:14px;
  6747. }
  6748. #u25490_div {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:78px;
  6754. height:40px;
  6755. background:inherit;
  6756. background-color:rgba(255, 255, 255, 0);
  6757. border-top:0px;
  6758. border-right:0px;
  6759. border-bottom:0px;
  6760. border-radius:0px;
  6761. border-top-left-radius:0px;
  6762. border-bottom-left-radius:0px;
  6763. filter:drop-shadow(none);
  6764. transition:none;
  6765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6766. font-weight:400;
  6767. font-style:normal;
  6768. font-size:14px;
  6769. color:#7F7F7F;
  6770. text-align:right;
  6771. }
  6772. #u25490 {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:1214px;
  6776. top:443px;
  6777. width:78px;
  6778. height:40px;
  6779. display:flex;
  6780. transition:none;
  6781. transform-origin:50% 50%;
  6782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:14px;
  6786. color:#7F7F7F;
  6787. text-align:right;
  6788. }
  6789. #u25490 .text {
  6790. position:absolute;
  6791. align-self:center;
  6792. padding:5px 0px 5px 0px;
  6793. box-sizing:border-box;
  6794. width:100%;
  6795. }
  6796. #u25490_text {
  6797. border-width:0px;
  6798. white-space:nowrap;
  6799. text-transform:none;
  6800. }
  6801. #u25491 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:0px;
  6807. height:0px;
  6808. }
  6809. #u25492_div {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:0px;
  6813. top:0px;
  6814. width:302px;
  6815. height:40px;
  6816. background:inherit;
  6817. background-color:rgba(255, 255, 255, 1);
  6818. box-sizing:border-box;
  6819. border-width:1px;
  6820. border-style:solid;
  6821. border-color:rgba(201, 201, 201, 1);
  6822. border-radius:4px;
  6823. filter:drop-shadow(none);
  6824. transition:none;
  6825. font-family:"Microsoft YaHei", sans-serif;
  6826. font-weight:400;
  6827. font-style:normal;
  6828. font-size:14px;
  6829. color:#CCCCCC;
  6830. text-align:left;
  6831. }
  6832. #u25492 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:1300px;
  6836. top:443px;
  6837. width:302px;
  6838. height:40px;
  6839. display:flex;
  6840. transition:none;
  6841. transform-origin:50% 50%;
  6842. font-family:"Microsoft YaHei", sans-serif;
  6843. font-weight:400;
  6844. font-style:normal;
  6845. font-size:14px;
  6846. color:#CCCCCC;
  6847. text-align:left;
  6848. }
  6849. #u25492 .text {
  6850. position:absolute;
  6851. align-self:center;
  6852. padding:2px 8px 2px 8px;
  6853. box-sizing:border-box;
  6854. width:100%;
  6855. }
  6856. #u25492_text {
  6857. border-width:0px;
  6858. word-wrap:break-word;
  6859. text-transform:none;
  6860. visibility:hidden;
  6861. }
  6862. #u25493_input {
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:287px;
  6867. height:38px;
  6868. padding:2px 2px 2px 2px;
  6869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6870. font-weight:400;
  6871. font-style:normal;
  6872. font-size:14px;
  6873. letter-spacing:normal;
  6874. color:#000000;
  6875. vertical-align:none;
  6876. text-align:left;
  6877. text-transform:none;
  6878. background-color:transparent;
  6879. border-color:transparent;
  6880. }
  6881. #u25493_input.hint {
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:287px;
  6886. height:38px;
  6887. padding:2px 2px 2px 2px;
  6888. font-family:"Microsoft YaHei", sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. font-size:12px;
  6892. letter-spacing:normal;
  6893. color:#AAAAAA;
  6894. vertical-align:none;
  6895. text-align:left;
  6896. text-transform:none;
  6897. background-color:transparent;
  6898. border-color:transparent;
  6899. }
  6900. #u25493_input.disabled {
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:287px;
  6905. height:38px;
  6906. padding:2px 2px 2px 2px;
  6907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6908. font-weight:400;
  6909. font-style:normal;
  6910. font-size:14px;
  6911. letter-spacing:normal;
  6912. color:#000000;
  6913. vertical-align:none;
  6914. text-align:left;
  6915. text-transform:none;
  6916. background-color:transparent;
  6917. border-color:transparent;
  6918. }
  6919. #u25493_input.hint.disabled {
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:287px;
  6924. height:38px;
  6925. padding:2px 2px 2px 2px;
  6926. font-family:"Microsoft YaHei", sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:12px;
  6930. letter-spacing:normal;
  6931. color:#AAAAAA;
  6932. vertical-align:none;
  6933. text-align:left;
  6934. text-transform:none;
  6935. background-color:transparent;
  6936. border-color:transparent;
  6937. }
  6938. #u25493_div {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:0px;
  6942. top:0px;
  6943. width:287px;
  6944. height:38px;
  6945. background:inherit;
  6946. background-color:rgba(255, 255, 255, 1);
  6947. border-radius:0px;
  6948. filter:drop-shadow(none);
  6949. transition:none;
  6950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6951. font-weight:400;
  6952. font-style:normal;
  6953. font-size:14px;
  6954. }
  6955. #u25493 {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:1308px;
  6959. top:444px;
  6960. width:287px;
  6961. height:38px;
  6962. display:flex;
  6963. transition:none;
  6964. transform-origin:50% 50%;
  6965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6966. font-weight:400;
  6967. font-style:normal;
  6968. font-size:14px;
  6969. }
  6970. #u25493 .text {
  6971. position:absolute;
  6972. align-self:center;
  6973. padding:2px 2px 2px 2px;
  6974. box-sizing:border-box;
  6975. width:100%;
  6976. }
  6977. #u25493_div.hint {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:287px;
  6983. height:38px;
  6984. background:inherit;
  6985. background-color:rgba(255, 255, 255, 1);
  6986. border-radius:0px;
  6987. filter:drop-shadow(none);
  6988. transition:none;
  6989. font-family:"Microsoft YaHei", sans-serif;
  6990. font-weight:400;
  6991. font-style:normal;
  6992. font-size:14px;
  6993. }
  6994. #u25493.hint {
  6995. }
  6996. #u25493_div.disabled {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:287px;
  7002. height:38px;
  7003. background:inherit;
  7004. background-color:rgba(240, 240, 240, 1);
  7005. border-radius:0px;
  7006. filter:drop-shadow(none);
  7007. transition:none;
  7008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7009. font-weight:400;
  7010. font-style:normal;
  7011. font-size:14px;
  7012. }
  7013. #u25493.disabled {
  7014. }
  7015. #u25493_div.hint.disabled {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:287px;
  7021. height:38px;
  7022. background:inherit;
  7023. background-color:rgba(240, 240, 240, 1);
  7024. border-radius:0px;
  7025. filter:drop-shadow(none);
  7026. transition:none;
  7027. font-family:"Microsoft YaHei", sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:14px;
  7031. }
  7032. #u25493.hint.disabled {
  7033. }
  7034. #u25494_div {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:0px;
  7038. top:0px;
  7039. width:255px;
  7040. height:27px;
  7041. background:inherit;
  7042. background-color:rgba(255, 255, 255, 0);
  7043. border-top:0px;
  7044. border-right:0px;
  7045. border-bottom:0px;
  7046. border-radius:0px;
  7047. border-top-left-radius:0px;
  7048. border-bottom-left-radius:0px;
  7049. filter:drop-shadow(none);
  7050. transition:none;
  7051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7052. font-weight:400;
  7053. font-style:normal;
  7054. font-size:12px;
  7055. color:#7F7F7F;
  7056. }
  7057. #u25494 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:1379px;
  7061. top:510px;
  7062. width:255px;
  7063. height:27px;
  7064. display:flex;
  7065. transition:none;
  7066. transform-origin:50% 50%;
  7067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:12px;
  7071. color:#7F7F7F;
  7072. }
  7073. #u25494 .text {
  7074. position:absolute;
  7075. align-self:center;
  7076. padding:5px 0px 5px 0px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u25494_text {
  7081. border-width:0px;
  7082. white-space:nowrap;
  7083. text-transform:none;
  7084. }
  7085. #u25495 {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:0px;
  7091. height:0px;
  7092. }
  7093. #u25496 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:1302px;
  7097. top:563px;
  7098. width:61px;
  7099. height:61px;
  7100. display:flex;
  7101. transition:none;
  7102. }
  7103. #u25496 .text {
  7104. position:absolute;
  7105. align-self:center;
  7106. padding:2px 2px 2px 2px;
  7107. box-sizing:border-box;
  7108. width:100%;
  7109. }
  7110. #u25496_img {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:0px;
  7115. width:61px;
  7116. height:61px;
  7117. }
  7118. #u25496_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u25497 {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:1346px;
  7128. top:563px;
  7129. width:17px;
  7130. height:17px;
  7131. display:flex;
  7132. transition:none;
  7133. }
  7134. #u25497 .text {
  7135. position:absolute;
  7136. align-self:center;
  7137. padding:2px 2px 2px 2px;
  7138. box-sizing:border-box;
  7139. width:100%;
  7140. }
  7141. #u25497_img {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:17px;
  7147. height:17px;
  7148. }
  7149. #u25497_text {
  7150. border-width:0px;
  7151. word-wrap:break-word;
  7152. text-transform:none;
  7153. visibility:hidden;
  7154. }
  7155. #u25498 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:0px;
  7161. height:0px;
  7162. }
  7163. #u25499 {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:1373px;
  7167. top:563px;
  7168. width:61px;
  7169. height:61px;
  7170. display:flex;
  7171. transition:none;
  7172. }
  7173. #u25499 .text {
  7174. position:absolute;
  7175. align-self:center;
  7176. padding:2px 2px 2px 2px;
  7177. box-sizing:border-box;
  7178. width:100%;
  7179. }
  7180. #u25499_img {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:61px;
  7186. height:61px;
  7187. }
  7188. #u25499_text {
  7189. border-width:0px;
  7190. word-wrap:break-word;
  7191. text-transform:none;
  7192. visibility:hidden;
  7193. }
  7194. #u25500 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:1417px;
  7198. top:563px;
  7199. width:17px;
  7200. height:17px;
  7201. display:flex;
  7202. transition:none;
  7203. }
  7204. #u25500 .text {
  7205. position:absolute;
  7206. align-self:center;
  7207. padding:2px 2px 2px 2px;
  7208. box-sizing:border-box;
  7209. width:100%;
  7210. }
  7211. #u25500_img {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:0px;
  7215. top:0px;
  7216. width:17px;
  7217. height:17px;
  7218. }
  7219. #u25500_text {
  7220. border-width:0px;
  7221. word-wrap:break-word;
  7222. text-transform:none;
  7223. visibility:hidden;
  7224. }
  7225. #u25501 {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:0px;
  7231. height:0px;
  7232. }
  7233. #u25502 {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:1444px;
  7237. top:563px;
  7238. width:61px;
  7239. height:61px;
  7240. display:flex;
  7241. transition:none;
  7242. }
  7243. #u25502 .text {
  7244. position:absolute;
  7245. align-self:center;
  7246. padding:2px 2px 2px 2px;
  7247. box-sizing:border-box;
  7248. width:100%;
  7249. }
  7250. #u25502_img {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:61px;
  7256. height:61px;
  7257. }
  7258. #u25502_text {
  7259. border-width:0px;
  7260. word-wrap:break-word;
  7261. text-transform:none;
  7262. visibility:hidden;
  7263. }
  7264. #u25503 {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:1488px;
  7268. top:563px;
  7269. width:17px;
  7270. height:17px;
  7271. display:flex;
  7272. transition:none;
  7273. }
  7274. #u25503 .text {
  7275. position:absolute;
  7276. align-self:center;
  7277. padding:2px 2px 2px 2px;
  7278. box-sizing:border-box;
  7279. width:100%;
  7280. }
  7281. #u25503_img {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:0px;
  7286. width:17px;
  7287. height:17px;
  7288. }
  7289. #u25503_text {
  7290. border-width:0px;
  7291. word-wrap:break-word;
  7292. text-transform:none;
  7293. visibility:hidden;
  7294. }
  7295. #u25504 {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:0px;
  7299. top:0px;
  7300. width:0px;
  7301. height:0px;
  7302. }
  7303. #u25505 {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:1515px;
  7307. top:563px;
  7308. width:61px;
  7309. height:61px;
  7310. display:flex;
  7311. transition:none;
  7312. }
  7313. #u25505 .text {
  7314. position:absolute;
  7315. align-self:center;
  7316. padding:2px 2px 2px 2px;
  7317. box-sizing:border-box;
  7318. width:100%;
  7319. }
  7320. #u25505_img {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:61px;
  7326. height:61px;
  7327. }
  7328. #u25505_text {
  7329. border-width:0px;
  7330. word-wrap:break-word;
  7331. text-transform:none;
  7332. visibility:hidden;
  7333. }
  7334. #u25506 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:1559px;
  7338. top:563px;
  7339. width:17px;
  7340. height:17px;
  7341. display:flex;
  7342. transition:none;
  7343. }
  7344. #u25506 .text {
  7345. position:absolute;
  7346. align-self:center;
  7347. padding:2px 2px 2px 2px;
  7348. box-sizing:border-box;
  7349. width:100%;
  7350. }
  7351. #u25506_img {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:17px;
  7357. height:17px;
  7358. }
  7359. #u25506_text {
  7360. border-width:0px;
  7361. word-wrap:break-word;
  7362. text-transform:none;
  7363. visibility:hidden;
  7364. }
  7365. #u25507 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:0px;
  7369. top:0px;
  7370. width:0px;
  7371. height:0px;
  7372. }
  7373. #u25508_div {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:0px;
  7377. top:0px;
  7378. width:302px;
  7379. height:40px;
  7380. background:inherit;
  7381. background-color:rgba(255, 255, 255, 1);
  7382. box-sizing:border-box;
  7383. border-width:1px;
  7384. border-style:solid;
  7385. border-color:rgba(201, 201, 201, 1);
  7386. border-radius:4px;
  7387. filter:drop-shadow(none);
  7388. transition:none;
  7389. font-family:"Microsoft YaHei", sans-serif;
  7390. font-weight:400;
  7391. font-style:normal;
  7392. font-size:14px;
  7393. color:#CCCCCC;
  7394. text-align:left;
  7395. }
  7396. #u25508 {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:1733px;
  7400. top:393px;
  7401. width:302px;
  7402. height:40px;
  7403. display:flex;
  7404. transition:none;
  7405. transform-origin:50% 50%;
  7406. font-family:"Microsoft YaHei", sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:14px;
  7410. color:#CCCCCC;
  7411. text-align:left;
  7412. }
  7413. #u25508 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:2px 8px 2px 8px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u25508_text {
  7421. border-width:0px;
  7422. word-wrap:break-word;
  7423. text-transform:none;
  7424. visibility:hidden;
  7425. }
  7426. #u25509_input {
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:287px;
  7431. height:38px;
  7432. padding:2px 2px 2px 2px;
  7433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7434. font-weight:400;
  7435. font-style:normal;
  7436. font-size:14px;
  7437. letter-spacing:normal;
  7438. color:#000000;
  7439. vertical-align:none;
  7440. text-align:left;
  7441. text-transform:none;
  7442. background-color:transparent;
  7443. border-color:transparent;
  7444. }
  7445. #u25509_input.hint {
  7446. position:absolute;
  7447. left:0px;
  7448. top:0px;
  7449. width:287px;
  7450. height:38px;
  7451. padding:2px 2px 2px 2px;
  7452. font-family:"Microsoft YaHei", sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:12px;
  7456. letter-spacing:normal;
  7457. color:#AAAAAA;
  7458. vertical-align:none;
  7459. text-align:left;
  7460. text-transform:none;
  7461. background-color:transparent;
  7462. border-color:transparent;
  7463. }
  7464. #u25509_input.disabled {
  7465. position:absolute;
  7466. left:0px;
  7467. top:0px;
  7468. width:287px;
  7469. height:38px;
  7470. padding:2px 2px 2px 2px;
  7471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7472. font-weight:400;
  7473. font-style:normal;
  7474. font-size:14px;
  7475. letter-spacing:normal;
  7476. color:#000000;
  7477. vertical-align:none;
  7478. text-align:left;
  7479. text-transform:none;
  7480. background-color:transparent;
  7481. border-color:transparent;
  7482. }
  7483. #u25509_input.hint.disabled {
  7484. position:absolute;
  7485. left:0px;
  7486. top:0px;
  7487. width:287px;
  7488. height:38px;
  7489. padding:2px 2px 2px 2px;
  7490. font-family:"Microsoft YaHei", sans-serif;
  7491. font-weight:400;
  7492. font-style:normal;
  7493. font-size:12px;
  7494. letter-spacing:normal;
  7495. color:#AAAAAA;
  7496. vertical-align:none;
  7497. text-align:left;
  7498. text-transform:none;
  7499. background-color:transparent;
  7500. border-color:transparent;
  7501. }
  7502. #u25509_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:287px;
  7508. height:38px;
  7509. background:inherit;
  7510. background-color:rgba(255, 255, 255, 1);
  7511. border-radius:0px;
  7512. filter:drop-shadow(none);
  7513. transition:none;
  7514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7515. font-weight:400;
  7516. font-style:normal;
  7517. font-size:14px;
  7518. }
  7519. #u25509 {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:1741px;
  7523. top:394px;
  7524. width:287px;
  7525. height:38px;
  7526. display:flex;
  7527. transition:none;
  7528. transform-origin:50% 50%;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:14px;
  7533. }
  7534. #u25509 .text {
  7535. position:absolute;
  7536. align-self:center;
  7537. padding:2px 2px 2px 2px;
  7538. box-sizing:border-box;
  7539. width:100%;
  7540. }
  7541. #u25509_div.hint {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:287px;
  7547. height:38px;
  7548. background:inherit;
  7549. background-color:rgba(255, 255, 255, 1);
  7550. border-radius:0px;
  7551. filter:drop-shadow(none);
  7552. transition:none;
  7553. font-family:"Microsoft YaHei", sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. font-size:14px;
  7557. }
  7558. #u25509.hint {
  7559. }
  7560. #u25509_div.disabled {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:287px;
  7566. height:38px;
  7567. background:inherit;
  7568. background-color:rgba(240, 240, 240, 1);
  7569. border-radius:0px;
  7570. filter:drop-shadow(none);
  7571. transition:none;
  7572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7573. font-weight:400;
  7574. font-style:normal;
  7575. font-size:14px;
  7576. }
  7577. #u25509.disabled {
  7578. }
  7579. #u25509_div.hint.disabled {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:0px;
  7583. top:0px;
  7584. width:287px;
  7585. height:38px;
  7586. background:inherit;
  7587. background-color:rgba(240, 240, 240, 1);
  7588. border-radius:0px;
  7589. filter:drop-shadow(none);
  7590. transition:none;
  7591. font-family:"Microsoft YaHei", sans-serif;
  7592. font-weight:400;
  7593. font-style:normal;
  7594. font-size:14px;
  7595. }
  7596. #u25509.hint.disabled {
  7597. }
  7598. #u25510_div {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:0px;
  7602. top:0px;
  7603. width:483px;
  7604. height:40px;
  7605. background:inherit;
  7606. background-color:rgba(255, 255, 255, 0);
  7607. border-top:0px;
  7608. border-right:0px;
  7609. border-bottom:0px;
  7610. border-radius:0px;
  7611. border-top-left-radius:0px;
  7612. border-bottom-left-radius:0px;
  7613. filter:drop-shadow(none);
  7614. transition:none;
  7615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7616. font-weight:400;
  7617. font-style:normal;
  7618. font-size:12px;
  7619. color:#D9001B;
  7620. }
  7621. #u25510 {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:1640px;
  7625. top:62px;
  7626. width:483px;
  7627. height:40px;
  7628. display:flex;
  7629. transition:none;
  7630. transform-origin:50% 50%;
  7631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7632. font-weight:400;
  7633. font-style:normal;
  7634. font-size:12px;
  7635. color:#D9001B;
  7636. }
  7637. #u25510 .text {
  7638. position:absolute;
  7639. align-self:center;
  7640. padding:5px 0px 5px 0px;
  7641. box-sizing:border-box;
  7642. width:100%;
  7643. }
  7644. #u25510_text {
  7645. border-width:0px;
  7646. white-space:nowrap;
  7647. text-transform:none;
  7648. }