styles.css 164 KB

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