styles.css 264 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-97px;
  6. width:1826px;
  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. #u15868 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u15869_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  33. height:60px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 1);
  40. border-radius:0px;
  41. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u15869 {
  52. border-width:0px;
  53. position:absolute;
  54. left:2534px;
  55. top:93px;
  56. width:800px;
  57. height:60px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u15869 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u15869_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u15870_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:119px;
  88. height:35px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 0);
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. filter:drop-shadow(none);
  98. transition:none;
  99. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  100. font-weight:500;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u15870 {
  105. border-width:0px;
  106. position:absolute;
  107. left:2565px;
  108. top:106px;
  109. width:119px;
  110. height:35px;
  111. display:flex;
  112. transition:none;
  113. transform-origin:50% 50%;
  114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  115. font-weight:500;
  116. font-style:normal;
  117. font-size:18px;
  118. }
  119. #u15870 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:5px 10px 5px 0px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u15870_text {
  127. border-width:0px;
  128. white-space:nowrap;
  129. text-transform:none;
  130. }
  131. #u15871_div {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:800px;
  137. height:1142px;
  138. background:inherit;
  139. background-color:rgba(255, 255, 255, 1);
  140. box-sizing:border-box;
  141. border-width:1px;
  142. border-style:solid;
  143. border-color:rgba(242, 242, 242, 1);
  144. border-radius:0px;
  145. filter:drop-shadow(none);
  146. transition:none;
  147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  148. font-weight:400;
  149. font-style:normal;
  150. font-size:14px;
  151. color:#AAAAAA;
  152. text-align:center;
  153. line-height:30px;
  154. }
  155. #u15871 {
  156. border-width:0px;
  157. position:absolute;
  158. left:2534px;
  159. top:153px;
  160. width:800px;
  161. height:1142px;
  162. display:flex;
  163. transition:none;
  164. transform-origin:50% 50%;
  165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:14px;
  169. color:#AAAAAA;
  170. text-align:center;
  171. line-height:30px;
  172. }
  173. #u15871 .text {
  174. position:absolute;
  175. align-self:center;
  176. padding:5px 10px 5px 10px;
  177. box-sizing:border-box;
  178. width:100%;
  179. }
  180. #u15871_text {
  181. border-width:0px;
  182. word-wrap:break-word;
  183. text-transform:none;
  184. visibility:hidden;
  185. }
  186. #u15872 {
  187. border-width:0px;
  188. position:absolute;
  189. left:0px;
  190. top:0px;
  191. width:0px;
  192. height:0px;
  193. }
  194. #u15873_div {
  195. border-width:0px;
  196. position:absolute;
  197. left:0px;
  198. top:0px;
  199. width:800px;
  200. height:60px;
  201. background:inherit;
  202. background-color:rgba(255, 255, 255, 1);
  203. box-sizing:border-box;
  204. border-width:1px;
  205. border-style:solid;
  206. border-color:rgba(215, 215, 215, 1);
  207. border-radius:0px;
  208. filter:drop-shadow(none);
  209. transition:none;
  210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  211. font-weight:400;
  212. font-style:normal;
  213. font-size:14px;
  214. color:#AAAAAA;
  215. text-align:center;
  216. line-height:30px;
  217. }
  218. #u15873 {
  219. border-width:0px;
  220. position:absolute;
  221. left:2534px;
  222. top:1234px;
  223. width:800px;
  224. height:60px;
  225. display:flex;
  226. transition:none;
  227. transform-origin:50% 50%;
  228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  229. font-weight:400;
  230. font-style:normal;
  231. font-size:14px;
  232. color:#AAAAAA;
  233. text-align:center;
  234. line-height:30px;
  235. }
  236. #u15873 .text {
  237. position:absolute;
  238. align-self:center;
  239. padding:5px 10px 5px 10px;
  240. box-sizing:border-box;
  241. width:100%;
  242. }
  243. #u15873_text {
  244. border-width:0px;
  245. word-wrap:break-word;
  246. text-transform:none;
  247. visibility:hidden;
  248. }
  249. #u15874 {
  250. border-width:0px;
  251. position:absolute;
  252. left:3214px;
  253. top:1249px;
  254. width:80px;
  255. height:30px;
  256. display:flex;
  257. transition:none;
  258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  259. font-weight:400;
  260. font-style:normal;
  261. font-size:14px;
  262. color:#FFFFFF;
  263. }
  264. #u15874 .text {
  265. position:absolute;
  266. align-self:center;
  267. padding:2px 2px 2px 2px;
  268. box-sizing:border-box;
  269. width:100%;
  270. }
  271. #u15874_img {
  272. border-width:0px;
  273. position:absolute;
  274. left:0px;
  275. top:0px;
  276. width:80px;
  277. height:30px;
  278. }
  279. #u15874_text {
  280. border-width:0px;
  281. word-wrap:break-word;
  282. text-transform:none;
  283. }
  284. #u15875_div {
  285. border-width:0px;
  286. position:absolute;
  287. left:0px;
  288. top:0px;
  289. width:80px;
  290. height:30px;
  291. background:inherit;
  292. background-color:rgba(255, 255, 255, 1);
  293. box-sizing:border-box;
  294. border-width:1px;
  295. border-style:solid;
  296. border-color:rgba(170, 170, 170, 1);
  297. border-radius:4px;
  298. filter:drop-shadow(none);
  299. transition:none;
  300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  301. font-weight:400;
  302. font-style:normal;
  303. font-size:14px;
  304. }
  305. #u15875 {
  306. border-width:0px;
  307. position:absolute;
  308. left:3124px;
  309. top:1249px;
  310. width:80px;
  311. height:30px;
  312. display:flex;
  313. transition:none;
  314. transform-origin:50% 50%;
  315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  316. font-weight:400;
  317. font-style:normal;
  318. font-size:14px;
  319. }
  320. #u15875 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:2px 2px 2px 2px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u15875_text {
  328. border-width:0px;
  329. word-wrap:break-word;
  330. text-transform:none;
  331. }
  332. #u15876_div {
  333. border-width:0px;
  334. position:absolute;
  335. left:0px;
  336. top:0px;
  337. width:73px;
  338. height:40px;
  339. background:inherit;
  340. background-color:rgba(255, 255, 255, 0);
  341. border-left:0px;
  342. border-top:0px;
  343. border-right:0px;
  344. border-radius:0px;
  345. border-bottom-right-radius:0px;
  346. border-bottom-left-radius:0px;
  347. filter:drop-shadow(none);
  348. transition:none;
  349. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  350. font-weight:500;
  351. font-style:normal;
  352. font-size:18px;
  353. }
  354. #u15876 {
  355. border-width:0px;
  356. position:absolute;
  357. left:2573px;
  358. top:179px;
  359. width:73px;
  360. height:40px;
  361. display:flex;
  362. transition:none;
  363. transform-origin:50% 50%;
  364. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  365. font-weight:500;
  366. font-style:normal;
  367. font-size:18px;
  368. }
  369. #u15876 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:0px 0px 0px 0px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u15876_text {
  377. border-width:0px;
  378. white-space:nowrap;
  379. text-transform:none;
  380. }
  381. #u15877_div {
  382. border-width:0px;
  383. position:absolute;
  384. left:0px;
  385. top:0px;
  386. width:40px;
  387. height:40px;
  388. background:inherit;
  389. background-color:rgba(255, 255, 255, 0);
  390. border-top:0px;
  391. border-right:0px;
  392. border-bottom:0px;
  393. border-radius:0px;
  394. border-top-left-radius:0px;
  395. border-bottom-left-radius:0px;
  396. filter:drop-shadow(none);
  397. transition:none;
  398. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  399. font-weight:500;
  400. font-style:normal;
  401. font-size:24px;
  402. text-align:center;
  403. }
  404. #u15877 {
  405. border-width:0px;
  406. position:absolute;
  407. left:3294px;
  408. top:93px;
  409. width:40px;
  410. height:40px;
  411. display:flex;
  412. transition:none;
  413. transform-origin:50% 50%;
  414. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  415. font-weight:500;
  416. font-style:normal;
  417. font-size:24px;
  418. text-align:center;
  419. }
  420. #u15877 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:5px 10px 5px 0px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u15877_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. }
  432. #u15878 {
  433. border-width:0px;
  434. position:absolute;
  435. left:0px;
  436. top:0px;
  437. width:0px;
  438. height:0px;
  439. }
  440. #u15879_div {
  441. border-width:0px;
  442. position:absolute;
  443. left:0px;
  444. top:0px;
  445. width:140px;
  446. height:40px;
  447. background:inherit;
  448. background-color:rgba(255, 255, 255, 1);
  449. box-sizing:border-box;
  450. border-width:1px;
  451. border-style:solid;
  452. border-color:rgba(215, 215, 215, 1);
  453. border-radius:4px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-size:14px;
  457. }
  458. #u15879 {
  459. border-width:0px;
  460. position:absolute;
  461. left:2573px;
  462. top:229px;
  463. width:140px;
  464. height:40px;
  465. display:flex;
  466. transition:none;
  467. transform-origin:50% 50%;
  468. font-size:14px;
  469. }
  470. #u15879 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:2px 2px 2px 2px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u15879_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. visibility:hidden;
  482. }
  483. #u15880_input {
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:134px;
  488. height:31px;
  489. padding:2px 2px 2px 2px;
  490. font-family:'ArialMT', 'Arial', sans-serif;
  491. font-weight:400;
  492. font-style:normal;
  493. font-size:14px;
  494. letter-spacing:normal;
  495. color:#AAAAAA;
  496. vertical-align:none;
  497. text-align:left;
  498. text-transform:none;
  499. background-color:transparent;
  500. border-color:transparent;
  501. }
  502. #u15880_input.disabled {
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:134px;
  507. height:31px;
  508. padding:2px 2px 2px 2px;
  509. font-family:'ArialMT', 'Arial', sans-serif;
  510. font-weight:400;
  511. font-style:normal;
  512. font-size:14px;
  513. letter-spacing:normal;
  514. color:#AAAAAA;
  515. vertical-align:none;
  516. text-align:left;
  517. text-transform:none;
  518. background-color:transparent;
  519. border-color:transparent;
  520. }
  521. #u15880_div {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:134px;
  527. height:31px;
  528. background:inherit;
  529. background-color:rgba(255, 255, 255, 1);
  530. border-radius:0px;
  531. filter:drop-shadow(none);
  532. transition:none;
  533. font-size:14px;
  534. color:#AAAAAA;
  535. }
  536. #u15880 {
  537. border-width:0px;
  538. position:absolute;
  539. left:2577px;
  540. top:232px;
  541. width:134px;
  542. height:31px;
  543. display:flex;
  544. transition:none;
  545. transform-origin:50% 50%;
  546. font-size:14px;
  547. color:#AAAAAA;
  548. }
  549. #u15880 .text {
  550. position:absolute;
  551. align-self:flex-start;
  552. padding:2px 2px 2px 2px;
  553. box-sizing:border-box;
  554. width:100%;
  555. }
  556. #u15880_div.disabled {
  557. border-width:0px;
  558. position:absolute;
  559. left:0px;
  560. top:0px;
  561. width:134px;
  562. height:31px;
  563. background:inherit;
  564. background-color:rgba(240, 240, 240, 1);
  565. border-radius:0px;
  566. filter:drop-shadow(none);
  567. transition:none;
  568. font-size:14px;
  569. color:#AAAAAA;
  570. }
  571. #u15880.disabled {
  572. }
  573. .u15880_input_option {
  574. font-size:14px;
  575. }
  576. #u15881 {
  577. border-width:0px;
  578. position:absolute;
  579. left:0px;
  580. top:0px;
  581. width:0px;
  582. height:0px;
  583. }
  584. #u15882_div {
  585. border-width:0px;
  586. position:absolute;
  587. left:0px;
  588. top:0px;
  589. width:120px;
  590. height:40px;
  591. background:inherit;
  592. background-color:rgba(255, 255, 255, 1);
  593. box-sizing:border-box;
  594. border-width:1px;
  595. border-style:solid;
  596. border-color:rgba(215, 215, 215, 1);
  597. border-radius:4px;
  598. filter:drop-shadow(none);
  599. transition:none;
  600. font-size:14px;
  601. }
  602. #u15882 {
  603. border-width:0px;
  604. position:absolute;
  605. left:2723px;
  606. top:229px;
  607. width:120px;
  608. height:40px;
  609. display:flex;
  610. transition:none;
  611. transform-origin:50% 50%;
  612. font-size:14px;
  613. }
  614. #u15882 .text {
  615. position:absolute;
  616. align-self:center;
  617. padding:2px 2px 2px 2px;
  618. box-sizing:border-box;
  619. width:100%;
  620. }
  621. #u15882_text {
  622. border-width:0px;
  623. word-wrap:break-word;
  624. text-transform:none;
  625. visibility:hidden;
  626. }
  627. #u15883_input {
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:115px;
  632. height:31px;
  633. padding:2px 2px 2px 2px;
  634. font-family:'ArialMT', 'Arial', sans-serif;
  635. font-weight:400;
  636. font-style:normal;
  637. font-size:14px;
  638. letter-spacing:normal;
  639. color:#AAAAAA;
  640. vertical-align:none;
  641. text-align:left;
  642. text-transform:none;
  643. background-color:transparent;
  644. border-color:transparent;
  645. }
  646. #u15883_input.disabled {
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:115px;
  651. height:31px;
  652. padding:2px 2px 2px 2px;
  653. font-family:'ArialMT', 'Arial', sans-serif;
  654. font-weight:400;
  655. font-style:normal;
  656. font-size:14px;
  657. letter-spacing:normal;
  658. color:#AAAAAA;
  659. vertical-align:none;
  660. text-align:left;
  661. text-transform:none;
  662. background-color:transparent;
  663. border-color:transparent;
  664. }
  665. #u15883_div {
  666. border-width:0px;
  667. position:absolute;
  668. left:0px;
  669. top:0px;
  670. width:115px;
  671. height:31px;
  672. background:inherit;
  673. background-color:rgba(255, 255, 255, 1);
  674. border-radius:0px;
  675. filter:drop-shadow(none);
  676. transition:none;
  677. font-size:14px;
  678. color:#AAAAAA;
  679. }
  680. #u15883 {
  681. border-width:0px;
  682. position:absolute;
  683. left:2727px;
  684. top:232px;
  685. width:115px;
  686. height:31px;
  687. display:flex;
  688. transition:none;
  689. transform-origin:50% 50%;
  690. font-size:14px;
  691. color:#AAAAAA;
  692. }
  693. #u15883 .text {
  694. position:absolute;
  695. align-self:flex-start;
  696. padding:2px 2px 2px 2px;
  697. box-sizing:border-box;
  698. width:100%;
  699. }
  700. #u15883_div.disabled {
  701. border-width:0px;
  702. position:absolute;
  703. left:0px;
  704. top:0px;
  705. width:115px;
  706. height:31px;
  707. background:inherit;
  708. background-color:rgba(240, 240, 240, 1);
  709. border-radius:0px;
  710. filter:drop-shadow(none);
  711. transition:none;
  712. font-size:14px;
  713. color:#AAAAAA;
  714. }
  715. #u15883.disabled {
  716. }
  717. .u15883_input_option {
  718. font-size:14px;
  719. }
  720. #u15884_div {
  721. border-width:0px;
  722. position:absolute;
  723. left:0px;
  724. top:0px;
  725. width:64px;
  726. height:40px;
  727. background:inherit;
  728. background-color:rgba(255, 255, 255, 0);
  729. border-left:0px;
  730. border-top:0px;
  731. border-right:0px;
  732. border-radius:0px;
  733. border-bottom-right-radius:0px;
  734. border-bottom-left-radius:0px;
  735. filter:drop-shadow(none);
  736. transition:none;
  737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  738. font-weight:400;
  739. font-style:normal;
  740. font-size:14px;
  741. }
  742. #u15884 {
  743. border-width:0px;
  744. position:absolute;
  745. left:2773px;
  746. top:444px;
  747. width:64px;
  748. height:40px;
  749. display:flex;
  750. transition:none;
  751. transform-origin:50% 50%;
  752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  753. font-weight:400;
  754. font-style:normal;
  755. font-size:14px;
  756. }
  757. #u15884 .text {
  758. position:absolute;
  759. align-self:center;
  760. padding:0px 0px 0px 0px;
  761. box-sizing:border-box;
  762. width:100%;
  763. }
  764. #u15884_text {
  765. border-width:0px;
  766. white-space:nowrap;
  767. text-transform:none;
  768. }
  769. #u15885 {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:0px;
  775. height:0px;
  776. }
  777. #u15886_div {
  778. border-width:0px;
  779. position:absolute;
  780. left:0px;
  781. top:0px;
  782. width:200px;
  783. height:40px;
  784. background:inherit;
  785. background-color:rgba(255, 255, 255, 1);
  786. box-sizing:border-box;
  787. border-width:1px;
  788. border-style:solid;
  789. border-color:rgba(201, 201, 201, 1);
  790. border-radius:4px;
  791. filter:drop-shadow(none);
  792. transition:none;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:14px;
  797. text-align:right;
  798. }
  799. #u15886 {
  800. border-width:0px;
  801. position:absolute;
  802. left:3003px;
  803. top:483px;
  804. width:200px;
  805. height:40px;
  806. display:flex;
  807. transition:none;
  808. transform-origin:50% 50%;
  809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  810. font-weight:400;
  811. font-style:normal;
  812. font-size:14px;
  813. text-align:right;
  814. }
  815. #u15886 .text {
  816. position:absolute;
  817. align-self:center;
  818. padding:2px 8px 2px 8px;
  819. box-sizing:border-box;
  820. width:100%;
  821. }
  822. #u15886_text {
  823. border-width:0px;
  824. word-wrap:break-word;
  825. text-transform:none;
  826. visibility:hidden;
  827. }
  828. #u15887_input {
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:161px;
  833. height:33px;
  834. padding:2px 2px 2px 2px;
  835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  836. font-weight:400;
  837. font-style:normal;
  838. font-size:14px;
  839. letter-spacing:normal;
  840. color:#D7D7D7;
  841. vertical-align:none;
  842. text-align:left;
  843. text-transform:none;
  844. background-color:transparent;
  845. border-color:transparent;
  846. }
  847. #u15887_input.hint {
  848. position:absolute;
  849. left:0px;
  850. top:0px;
  851. width:161px;
  852. height:33px;
  853. padding:2px 2px 2px 2px;
  854. font-family:"Microsoft YaHei", sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:14px;
  858. letter-spacing:normal;
  859. color:#AAAAAA;
  860. vertical-align:none;
  861. text-align:left;
  862. text-transform:none;
  863. background-color:transparent;
  864. border-color:transparent;
  865. }
  866. #u15887_input.disabled {
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:161px;
  871. height:33px;
  872. padding:2px 2px 2px 2px;
  873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  874. font-weight:400;
  875. font-style:normal;
  876. font-size:14px;
  877. letter-spacing:normal;
  878. color:#D7D7D7;
  879. vertical-align:none;
  880. text-align:left;
  881. text-transform:none;
  882. background-color:transparent;
  883. border-color:transparent;
  884. }
  885. #u15887_input.hint.disabled {
  886. position:absolute;
  887. left:0px;
  888. top:0px;
  889. width:161px;
  890. height:33px;
  891. padding:2px 2px 2px 2px;
  892. font-family:"Microsoft YaHei", sans-serif;
  893. font-weight:400;
  894. font-style:normal;
  895. font-size:14px;
  896. letter-spacing:normal;
  897. color:#AAAAAA;
  898. vertical-align:none;
  899. text-align:left;
  900. text-transform:none;
  901. background-color:transparent;
  902. border-color:transparent;
  903. }
  904. #u15887_div {
  905. border-width:0px;
  906. position:absolute;
  907. left:0px;
  908. top:0px;
  909. width:161px;
  910. height:33px;
  911. background:inherit;
  912. background-color:rgba(255, 255, 255, 0);
  913. border-radius:0px;
  914. filter:drop-shadow(none);
  915. transition:none;
  916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  917. font-weight:400;
  918. font-style:normal;
  919. font-size:14px;
  920. color:#D7D7D7;
  921. }
  922. #u15887 {
  923. border-width:0px;
  924. position:absolute;
  925. left:3011px;
  926. top:486px;
  927. width:161px;
  928. height:33px;
  929. display:flex;
  930. transition:none;
  931. transform-origin:50% 50%;
  932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  933. font-weight:400;
  934. font-style:normal;
  935. font-size:14px;
  936. color:#D7D7D7;
  937. }
  938. #u15887 .text {
  939. position:absolute;
  940. align-self:center;
  941. padding:2px 2px 2px 2px;
  942. box-sizing:border-box;
  943. width:100%;
  944. }
  945. #u15887_div.hint {
  946. border-width:0px;
  947. position:absolute;
  948. left:0px;
  949. top:0px;
  950. width:161px;
  951. height:33px;
  952. background:inherit;
  953. background-color:rgba(255, 255, 255, 0);
  954. border-radius:0px;
  955. filter:drop-shadow(none);
  956. transition:none;
  957. font-family:"Microsoft YaHei", sans-serif;
  958. font-weight:400;
  959. font-style:normal;
  960. font-size:14px;
  961. color:#D7D7D7;
  962. }
  963. #u15887.hint {
  964. }
  965. #u15887_div.disabled {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:161px;
  971. height:33px;
  972. background:inherit;
  973. background-color:rgba(240, 240, 240, 1);
  974. border-radius:0px;
  975. filter:drop-shadow(none);
  976. transition:none;
  977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  978. font-weight:400;
  979. font-style:normal;
  980. font-size:14px;
  981. color:#D7D7D7;
  982. }
  983. #u15887.disabled {
  984. }
  985. #u15887_div.hint.disabled {
  986. border-width:0px;
  987. position:absolute;
  988. left:0px;
  989. top:0px;
  990. width:161px;
  991. height:33px;
  992. background:inherit;
  993. background-color:rgba(240, 240, 240, 1);
  994. border-radius:0px;
  995. filter:drop-shadow(none);
  996. transition:none;
  997. font-family:"Microsoft YaHei", sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:14px;
  1001. color:#D7D7D7;
  1002. }
  1003. #u15887.hint.disabled {
  1004. }
  1005. #u15888_div {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:0px;
  1009. top:0px;
  1010. width:78px;
  1011. height:40px;
  1012. background:inherit;
  1013. background-color:rgba(255, 255, 255, 0);
  1014. border-left:0px;
  1015. border-top:0px;
  1016. border-right:0px;
  1017. border-radius:0px;
  1018. border-bottom-right-radius:0px;
  1019. border-bottom-left-radius:0px;
  1020. filter:drop-shadow(none);
  1021. transition:none;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:14px;
  1026. }
  1027. #u15888 {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:3003px;
  1031. top:444px;
  1032. width:78px;
  1033. height:40px;
  1034. display:flex;
  1035. transition:none;
  1036. transform-origin:50% 50%;
  1037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1038. font-weight:400;
  1039. font-style:normal;
  1040. font-size:14px;
  1041. }
  1042. #u15888 .text {
  1043. position:absolute;
  1044. align-self:center;
  1045. padding:0px 0px 0px 0px;
  1046. box-sizing:border-box;
  1047. width:100%;
  1048. }
  1049. #u15888_text {
  1050. border-width:0px;
  1051. white-space:nowrap;
  1052. text-transform:none;
  1053. }
  1054. #u15889 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:0px;
  1058. top:0px;
  1059. width:0px;
  1060. height:0px;
  1061. }
  1062. #u15890_div {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:0px;
  1066. top:0px;
  1067. width:200px;
  1068. height:40px;
  1069. background:inherit;
  1070. background-color:rgba(255, 255, 255, 1);
  1071. box-sizing:border-box;
  1072. border-width:1px;
  1073. border-style:solid;
  1074. border-color:rgba(201, 201, 201, 1);
  1075. border-radius:4px;
  1076. filter:drop-shadow(none);
  1077. transition:none;
  1078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1079. font-weight:400;
  1080. font-style:normal;
  1081. font-size:14px;
  1082. text-align:right;
  1083. }
  1084. #u15890 {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:2773px;
  1088. top:662px;
  1089. width:200px;
  1090. height:40px;
  1091. display:flex;
  1092. transition:none;
  1093. transform-origin:50% 50%;
  1094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1095. font-weight:400;
  1096. font-style:normal;
  1097. font-size:14px;
  1098. text-align:right;
  1099. }
  1100. #u15890 .text {
  1101. position:absolute;
  1102. align-self:center;
  1103. padding:2px 8px 2px 8px;
  1104. box-sizing:border-box;
  1105. width:100%;
  1106. }
  1107. #u15890_text {
  1108. border-width:0px;
  1109. word-wrap:break-word;
  1110. text-transform:none;
  1111. visibility:hidden;
  1112. }
  1113. #u15891_input {
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:161px;
  1118. height:33px;
  1119. padding:2px 2px 2px 2px;
  1120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1121. font-weight:400;
  1122. font-style:normal;
  1123. font-size:14px;
  1124. letter-spacing:normal;
  1125. color:#D7D7D7;
  1126. vertical-align:none;
  1127. text-align:left;
  1128. text-transform:none;
  1129. background-color:transparent;
  1130. border-color:transparent;
  1131. }
  1132. #u15891_input.hint {
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:161px;
  1137. height:33px;
  1138. padding:2px 2px 2px 2px;
  1139. font-family:"Microsoft YaHei", sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. letter-spacing:normal;
  1144. color:#AAAAAA;
  1145. vertical-align:none;
  1146. text-align:left;
  1147. text-transform:none;
  1148. background-color:transparent;
  1149. border-color:transparent;
  1150. }
  1151. #u15891_input.disabled {
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:161px;
  1156. height:33px;
  1157. padding:2px 2px 2px 2px;
  1158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1159. font-weight:400;
  1160. font-style:normal;
  1161. font-size:14px;
  1162. letter-spacing:normal;
  1163. color:#D7D7D7;
  1164. vertical-align:none;
  1165. text-align:left;
  1166. text-transform:none;
  1167. background-color:transparent;
  1168. border-color:transparent;
  1169. }
  1170. #u15891_input.hint.disabled {
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:161px;
  1175. height:33px;
  1176. padding:2px 2px 2px 2px;
  1177. font-family:"Microsoft YaHei", sans-serif;
  1178. font-weight:400;
  1179. font-style:normal;
  1180. font-size:14px;
  1181. letter-spacing:normal;
  1182. color:#AAAAAA;
  1183. vertical-align:none;
  1184. text-align:left;
  1185. text-transform:none;
  1186. background-color:transparent;
  1187. border-color:transparent;
  1188. }
  1189. #u15891_div {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:161px;
  1195. height:33px;
  1196. background:inherit;
  1197. background-color:rgba(255, 255, 255, 0);
  1198. border-radius:0px;
  1199. filter:drop-shadow(none);
  1200. transition:none;
  1201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1202. font-weight:400;
  1203. font-style:normal;
  1204. font-size:14px;
  1205. color:#D7D7D7;
  1206. }
  1207. #u15891 {
  1208. border-width:0px;
  1209. position:absolute;
  1210. left:2781px;
  1211. top:665px;
  1212. width:161px;
  1213. height:33px;
  1214. display:flex;
  1215. transition:none;
  1216. transform-origin:50% 50%;
  1217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1218. font-weight:400;
  1219. font-style:normal;
  1220. font-size:14px;
  1221. color:#D7D7D7;
  1222. }
  1223. #u15891 .text {
  1224. position:absolute;
  1225. align-self:center;
  1226. padding:2px 2px 2px 2px;
  1227. box-sizing:border-box;
  1228. width:100%;
  1229. }
  1230. #u15891_div.hint {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:0px;
  1234. top:0px;
  1235. width:161px;
  1236. height:33px;
  1237. background:inherit;
  1238. background-color:rgba(255, 255, 255, 0);
  1239. border-radius:0px;
  1240. filter:drop-shadow(none);
  1241. transition:none;
  1242. font-family:"Microsoft YaHei", sans-serif;
  1243. font-weight:400;
  1244. font-style:normal;
  1245. font-size:14px;
  1246. color:#D7D7D7;
  1247. }
  1248. #u15891.hint {
  1249. }
  1250. #u15891_div.disabled {
  1251. border-width:0px;
  1252. position:absolute;
  1253. left:0px;
  1254. top:0px;
  1255. width:161px;
  1256. height:33px;
  1257. background:inherit;
  1258. background-color:rgba(240, 240, 240, 1);
  1259. border-radius:0px;
  1260. filter:drop-shadow(none);
  1261. transition:none;
  1262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1263. font-weight:400;
  1264. font-style:normal;
  1265. font-size:14px;
  1266. color:#D7D7D7;
  1267. }
  1268. #u15891.disabled {
  1269. }
  1270. #u15891_div.hint.disabled {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:0px;
  1274. top:0px;
  1275. width:161px;
  1276. height:33px;
  1277. background:inherit;
  1278. background-color:rgba(240, 240, 240, 1);
  1279. border-radius:0px;
  1280. filter:drop-shadow(none);
  1281. transition:none;
  1282. font-family:"Microsoft YaHei", sans-serif;
  1283. font-weight:400;
  1284. font-style:normal;
  1285. font-size:14px;
  1286. color:#D7D7D7;
  1287. }
  1288. #u15891.hint.disabled {
  1289. }
  1290. #u15892_div {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:0px;
  1294. top:0px;
  1295. width:50px;
  1296. height:40px;
  1297. background:inherit;
  1298. background-color:rgba(255, 255, 255, 0);
  1299. border-left:0px;
  1300. border-top:0px;
  1301. border-right:0px;
  1302. border-radius:0px;
  1303. border-bottom-right-radius:0px;
  1304. border-bottom-left-radius:0px;
  1305. filter:drop-shadow(none);
  1306. transition:none;
  1307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1308. font-weight:400;
  1309. font-style:normal;
  1310. font-size:14px;
  1311. }
  1312. #u15892 {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:2773px;
  1316. top:623px;
  1317. width:50px;
  1318. height:40px;
  1319. display:flex;
  1320. transition:none;
  1321. transform-origin:50% 50%;
  1322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1323. font-weight:400;
  1324. font-style:normal;
  1325. font-size:14px;
  1326. }
  1327. #u15892 .text {
  1328. position:absolute;
  1329. align-self:center;
  1330. padding:0px 0px 0px 0px;
  1331. box-sizing:border-box;
  1332. width:100%;
  1333. }
  1334. #u15892_text {
  1335. border-width:0px;
  1336. white-space:nowrap;
  1337. text-transform:none;
  1338. }
  1339. #u15893_div {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:0px;
  1343. top:0px;
  1344. width:71px;
  1345. height:40px;
  1346. background:inherit;
  1347. background-color:rgba(255, 255, 255, 0);
  1348. border-left:0px;
  1349. border-top:0px;
  1350. border-right:0px;
  1351. border-radius:0px;
  1352. border-bottom-right-radius:0px;
  1353. border-bottom-left-radius:0px;
  1354. filter:drop-shadow(none);
  1355. transition:none;
  1356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1357. font-weight:400;
  1358. font-style:normal;
  1359. font-size:14px;
  1360. }
  1361. #u15893 {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:2773px;
  1365. top:802px;
  1366. width:71px;
  1367. height:40px;
  1368. display:flex;
  1369. transition:none;
  1370. transform-origin:50% 50%;
  1371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1372. font-weight:400;
  1373. font-style:normal;
  1374. font-size:14px;
  1375. }
  1376. #u15893 .text {
  1377. position:absolute;
  1378. align-self:center;
  1379. padding:0px 0px 0px 0px;
  1380. box-sizing:border-box;
  1381. width:100%;
  1382. }
  1383. #u15893_text {
  1384. border-width:0px;
  1385. white-space:nowrap;
  1386. text-transform:none;
  1387. }
  1388. #u15894 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:0px;
  1392. top:0px;
  1393. width:0px;
  1394. height:0px;
  1395. }
  1396. #u15895_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:200px;
  1402. height:40px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 1);
  1405. box-sizing:border-box;
  1406. border-width:1px;
  1407. border-style:solid;
  1408. border-color:rgba(201, 201, 201, 1);
  1409. border-radius:4px;
  1410. filter:drop-shadow(none);
  1411. transition:none;
  1412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1413. font-weight:400;
  1414. font-style:normal;
  1415. font-size:14px;
  1416. text-align:right;
  1417. }
  1418. #u15895 {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:3003px;
  1422. top:841px;
  1423. width:200px;
  1424. height:40px;
  1425. display:flex;
  1426. transition:none;
  1427. transform-origin:50% 50%;
  1428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1429. font-weight:400;
  1430. font-style:normal;
  1431. font-size:14px;
  1432. text-align:right;
  1433. }
  1434. #u15895 .text {
  1435. position:absolute;
  1436. align-self:center;
  1437. padding:2px 8px 2px 8px;
  1438. box-sizing:border-box;
  1439. width:100%;
  1440. }
  1441. #u15895_text {
  1442. border-width:0px;
  1443. word-wrap:break-word;
  1444. text-transform:none;
  1445. visibility:hidden;
  1446. }
  1447. #u15896_input {
  1448. position:absolute;
  1449. left:0px;
  1450. top:0px;
  1451. width:161px;
  1452. height:33px;
  1453. padding:2px 2px 2px 2px;
  1454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1455. font-weight:400;
  1456. font-style:normal;
  1457. font-size:14px;
  1458. letter-spacing:normal;
  1459. color:#D7D7D7;
  1460. vertical-align:none;
  1461. text-align:left;
  1462. text-transform:none;
  1463. background-color:transparent;
  1464. border-color:transparent;
  1465. }
  1466. #u15896_input.hint {
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:161px;
  1471. height:33px;
  1472. padding:2px 2px 2px 2px;
  1473. font-family:"Microsoft YaHei", sans-serif;
  1474. font-weight:400;
  1475. font-style:normal;
  1476. font-size:14px;
  1477. letter-spacing:normal;
  1478. color:#AAAAAA;
  1479. vertical-align:none;
  1480. text-align:left;
  1481. text-transform:none;
  1482. background-color:transparent;
  1483. border-color:transparent;
  1484. }
  1485. #u15896_input.disabled {
  1486. position:absolute;
  1487. left:0px;
  1488. top:0px;
  1489. width:161px;
  1490. height:33px;
  1491. padding:2px 2px 2px 2px;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:14px;
  1496. letter-spacing:normal;
  1497. color:#D7D7D7;
  1498. vertical-align:none;
  1499. text-align:left;
  1500. text-transform:none;
  1501. background-color:transparent;
  1502. border-color:transparent;
  1503. }
  1504. #u15896_input.hint.disabled {
  1505. position:absolute;
  1506. left:0px;
  1507. top:0px;
  1508. width:161px;
  1509. height:33px;
  1510. padding:2px 2px 2px 2px;
  1511. font-family:"Microsoft YaHei", sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. font-size:14px;
  1515. letter-spacing:normal;
  1516. color:#AAAAAA;
  1517. vertical-align:none;
  1518. text-align:left;
  1519. text-transform:none;
  1520. background-color:transparent;
  1521. border-color:transparent;
  1522. }
  1523. #u15896_div {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:0px;
  1527. top:0px;
  1528. width:161px;
  1529. height:33px;
  1530. background:inherit;
  1531. background-color:rgba(255, 255, 255, 0);
  1532. border-radius:0px;
  1533. filter:drop-shadow(none);
  1534. transition:none;
  1535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1536. font-weight:400;
  1537. font-style:normal;
  1538. font-size:14px;
  1539. color:#D7D7D7;
  1540. }
  1541. #u15896 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:3011px;
  1545. top:844px;
  1546. width:161px;
  1547. height:33px;
  1548. display:flex;
  1549. transition:none;
  1550. transform-origin:50% 50%;
  1551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1552. font-weight:400;
  1553. font-style:normal;
  1554. font-size:14px;
  1555. color:#D7D7D7;
  1556. }
  1557. #u15896 .text {
  1558. position:absolute;
  1559. align-self:center;
  1560. padding:2px 2px 2px 2px;
  1561. box-sizing:border-box;
  1562. width:100%;
  1563. }
  1564. #u15896_div.hint {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:0px;
  1568. top:0px;
  1569. width:161px;
  1570. height:33px;
  1571. background:inherit;
  1572. background-color:rgba(255, 255, 255, 0);
  1573. border-radius:0px;
  1574. filter:drop-shadow(none);
  1575. transition:none;
  1576. font-family:"Microsoft YaHei", sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:14px;
  1580. color:#D7D7D7;
  1581. }
  1582. #u15896.hint {
  1583. }
  1584. #u15896_div.disabled {
  1585. border-width:0px;
  1586. position:absolute;
  1587. left:0px;
  1588. top:0px;
  1589. width:161px;
  1590. height:33px;
  1591. background:inherit;
  1592. background-color:rgba(240, 240, 240, 1);
  1593. border-radius:0px;
  1594. filter:drop-shadow(none);
  1595. transition:none;
  1596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1597. font-weight:400;
  1598. font-style:normal;
  1599. font-size:14px;
  1600. color:#D7D7D7;
  1601. }
  1602. #u15896.disabled {
  1603. }
  1604. #u15896_div.hint.disabled {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:0px;
  1608. top:0px;
  1609. width:161px;
  1610. height:33px;
  1611. background:inherit;
  1612. background-color:rgba(240, 240, 240, 1);
  1613. border-radius:0px;
  1614. filter:drop-shadow(none);
  1615. transition:none;
  1616. font-family:"Microsoft YaHei", sans-serif;
  1617. font-weight:400;
  1618. font-style:normal;
  1619. font-size:14px;
  1620. color:#D7D7D7;
  1621. }
  1622. #u15896.hint.disabled {
  1623. }
  1624. #u15897_div {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:0px;
  1628. top:0px;
  1629. width:85px;
  1630. height:40px;
  1631. background:inherit;
  1632. background-color:rgba(255, 255, 255, 0);
  1633. border-left:0px;
  1634. border-top:0px;
  1635. border-right:0px;
  1636. border-radius:0px;
  1637. border-bottom-right-radius:0px;
  1638. border-bottom-left-radius:0px;
  1639. filter:drop-shadow(none);
  1640. transition:none;
  1641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1642. font-weight:400;
  1643. font-style:normal;
  1644. font-size:14px;
  1645. }
  1646. #u15897 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:3003px;
  1650. top:802px;
  1651. width:85px;
  1652. height:40px;
  1653. display:flex;
  1654. transition:none;
  1655. transform-origin:50% 50%;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:14px;
  1660. }
  1661. #u15897 .text {
  1662. position:absolute;
  1663. align-self:center;
  1664. padding:0px 0px 0px 0px;
  1665. box-sizing:border-box;
  1666. width:100%;
  1667. }
  1668. #u15897_text {
  1669. border-width:0px;
  1670. white-space:nowrap;
  1671. text-transform:none;
  1672. }
  1673. #u15898 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:0px;
  1679. height:0px;
  1680. }
  1681. #u15899_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:200px;
  1687. height:40px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 1);
  1690. box-sizing:border-box;
  1691. border-width:1px;
  1692. border-style:solid;
  1693. border-color:rgba(201, 201, 201, 1);
  1694. border-radius:4px;
  1695. filter:drop-shadow(none);
  1696. transition:none;
  1697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1698. font-weight:400;
  1699. font-style:normal;
  1700. font-size:14px;
  1701. text-align:right;
  1702. }
  1703. #u15899 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:2773px;
  1707. top:842px;
  1708. width:200px;
  1709. height:40px;
  1710. display:flex;
  1711. transition:none;
  1712. transform-origin:50% 50%;
  1713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1714. font-weight:400;
  1715. font-style:normal;
  1716. font-size:14px;
  1717. text-align:right;
  1718. }
  1719. #u15899 .text {
  1720. position:absolute;
  1721. align-self:center;
  1722. padding:2px 8px 2px 8px;
  1723. box-sizing:border-box;
  1724. width:100%;
  1725. }
  1726. #u15899_text {
  1727. border-width:0px;
  1728. word-wrap:break-word;
  1729. text-transform:none;
  1730. visibility:hidden;
  1731. }
  1732. #u15900_input {
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:161px;
  1737. height:33px;
  1738. padding:2px 2px 2px 2px;
  1739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1740. font-weight:400;
  1741. font-style:normal;
  1742. font-size:14px;
  1743. letter-spacing:normal;
  1744. color:#D7D7D7;
  1745. vertical-align:none;
  1746. text-align:left;
  1747. text-transform:none;
  1748. background-color:transparent;
  1749. border-color:transparent;
  1750. }
  1751. #u15900_input.hint {
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:161px;
  1756. height:33px;
  1757. padding:2px 2px 2px 2px;
  1758. font-family:"Microsoft YaHei", sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:14px;
  1762. letter-spacing:normal;
  1763. color:#AAAAAA;
  1764. vertical-align:none;
  1765. text-align:left;
  1766. text-transform:none;
  1767. background-color:transparent;
  1768. border-color:transparent;
  1769. }
  1770. #u15900_input.disabled {
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:161px;
  1775. height:33px;
  1776. padding:2px 2px 2px 2px;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:14px;
  1781. letter-spacing:normal;
  1782. color:#D7D7D7;
  1783. vertical-align:none;
  1784. text-align:left;
  1785. text-transform:none;
  1786. background-color:transparent;
  1787. border-color:transparent;
  1788. }
  1789. #u15900_input.hint.disabled {
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:161px;
  1794. height:33px;
  1795. padding:2px 2px 2px 2px;
  1796. font-family:"Microsoft YaHei", sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:14px;
  1800. letter-spacing:normal;
  1801. color:#AAAAAA;
  1802. vertical-align:none;
  1803. text-align:left;
  1804. text-transform:none;
  1805. background-color:transparent;
  1806. border-color:transparent;
  1807. }
  1808. #u15900_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:161px;
  1814. height:33px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 0);
  1817. border-radius:0px;
  1818. filter:drop-shadow(none);
  1819. transition:none;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:14px;
  1824. color:#D7D7D7;
  1825. }
  1826. #u15900 {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:2781px;
  1830. top:845px;
  1831. width:161px;
  1832. height:33px;
  1833. display:flex;
  1834. transition:none;
  1835. transform-origin:50% 50%;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:14px;
  1840. color:#D7D7D7;
  1841. }
  1842. #u15900 .text {
  1843. position:absolute;
  1844. align-self:center;
  1845. padding:2px 2px 2px 2px;
  1846. box-sizing:border-box;
  1847. width:100%;
  1848. }
  1849. #u15900_div.hint {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:161px;
  1855. height:33px;
  1856. background:inherit;
  1857. background-color:rgba(255, 255, 255, 0);
  1858. border-radius:0px;
  1859. filter:drop-shadow(none);
  1860. transition:none;
  1861. font-family:"Microsoft YaHei", sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:14px;
  1865. color:#D7D7D7;
  1866. }
  1867. #u15900.hint {
  1868. }
  1869. #u15900_div.disabled {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:161px;
  1875. height:33px;
  1876. background:inherit;
  1877. background-color:rgba(240, 240, 240, 1);
  1878. border-radius:0px;
  1879. filter:drop-shadow(none);
  1880. transition:none;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:14px;
  1885. color:#D7D7D7;
  1886. }
  1887. #u15900.disabled {
  1888. }
  1889. #u15900_div.hint.disabled {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:161px;
  1895. height:33px;
  1896. background:inherit;
  1897. background-color:rgba(240, 240, 240, 1);
  1898. border-radius:0px;
  1899. filter:drop-shadow(none);
  1900. transition:none;
  1901. font-family:"Microsoft YaHei", sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:14px;
  1905. color:#D7D7D7;
  1906. }
  1907. #u15900.hint.disabled {
  1908. }
  1909. #u15901_div {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:64px;
  1915. height:40px;
  1916. background:inherit;
  1917. background-color:rgba(255, 255, 255, 0);
  1918. border-left:0px;
  1919. border-top:0px;
  1920. border-right:0px;
  1921. border-radius:0px;
  1922. border-bottom-right-radius:0px;
  1923. border-bottom-left-radius:0px;
  1924. filter:drop-shadow(none);
  1925. transition:none;
  1926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:14px;
  1930. }
  1931. #u15901 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:2773px;
  1935. top:533px;
  1936. width:64px;
  1937. height:40px;
  1938. display:flex;
  1939. transition:none;
  1940. transform-origin:50% 50%;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:14px;
  1945. }
  1946. #u15901 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:0px 0px 0px 0px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u15901_text {
  1954. border-width:0px;
  1955. white-space:nowrap;
  1956. text-transform:none;
  1957. }
  1958. #u15902 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:0px;
  1964. height:0px;
  1965. }
  1966. #u15903_div {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:200px;
  1972. height:40px;
  1973. background:inherit;
  1974. background-color:rgba(255, 255, 255, 1);
  1975. box-sizing:border-box;
  1976. border-width:1px;
  1977. border-style:solid;
  1978. border-color:rgba(215, 215, 215, 1);
  1979. border-radius:4px;
  1980. filter:drop-shadow(none);
  1981. transition:none;
  1982. font-size:14px;
  1983. }
  1984. #u15903 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:2773px;
  1988. top:573px;
  1989. width:200px;
  1990. height:40px;
  1991. display:flex;
  1992. transition:none;
  1993. transform-origin:50% 50%;
  1994. font-size:14px;
  1995. }
  1996. #u15903 .text {
  1997. position:absolute;
  1998. align-self:center;
  1999. padding:2px 2px 2px 2px;
  2000. box-sizing:border-box;
  2001. width:100%;
  2002. }
  2003. #u15903_text {
  2004. border-width:0px;
  2005. word-wrap:break-word;
  2006. text-transform:none;
  2007. visibility:hidden;
  2008. }
  2009. #u15904_input {
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:191px;
  2014. height:31px;
  2015. padding:2px 2px 2px 2px;
  2016. font-family:'ArialMT', 'Arial', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:14px;
  2020. letter-spacing:normal;
  2021. color:#AAAAAA;
  2022. vertical-align:none;
  2023. text-align:left;
  2024. text-transform:none;
  2025. background-color:transparent;
  2026. border-color:transparent;
  2027. }
  2028. #u15904_input.disabled {
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:191px;
  2033. height:31px;
  2034. padding:2px 2px 2px 2px;
  2035. font-family:'ArialMT', 'Arial', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:14px;
  2039. letter-spacing:normal;
  2040. color:#AAAAAA;
  2041. vertical-align:none;
  2042. text-align:left;
  2043. text-transform:none;
  2044. background-color:transparent;
  2045. border-color:transparent;
  2046. }
  2047. #u15904_div {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:191px;
  2053. height:31px;
  2054. background:inherit;
  2055. background-color:rgba(255, 255, 255, 1);
  2056. border-radius:0px;
  2057. filter:drop-shadow(none);
  2058. transition:none;
  2059. font-size:14px;
  2060. color:#AAAAAA;
  2061. }
  2062. #u15904 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:2779px;
  2066. top:576px;
  2067. width:191px;
  2068. height:31px;
  2069. display:flex;
  2070. transition:none;
  2071. transform-origin:50% 50%;
  2072. font-size:14px;
  2073. color:#AAAAAA;
  2074. }
  2075. #u15904 .text {
  2076. position:absolute;
  2077. align-self:flex-start;
  2078. padding:2px 2px 2px 2px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u15904_div.disabled {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:191px;
  2088. height:31px;
  2089. background:inherit;
  2090. background-color:rgba(240, 240, 240, 1);
  2091. border-radius:0px;
  2092. filter:drop-shadow(none);
  2093. transition:none;
  2094. font-size:14px;
  2095. color:#AAAAAA;
  2096. }
  2097. #u15904.disabled {
  2098. }
  2099. .u15904_input_option {
  2100. font-size:14px;
  2101. }
  2102. #u15905_div {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:64px;
  2108. height:40px;
  2109. background:inherit;
  2110. background-color:rgba(255, 255, 255, 0);
  2111. border-left:0px;
  2112. border-top:0px;
  2113. border-right:0px;
  2114. border-radius:0px;
  2115. border-bottom-right-radius:0px;
  2116. border-bottom-left-radius:0px;
  2117. filter:drop-shadow(none);
  2118. transition:none;
  2119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2120. font-weight:400;
  2121. font-style:normal;
  2122. font-size:14px;
  2123. }
  2124. #u15905 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:2573px;
  2128. top:359px;
  2129. width:64px;
  2130. height:40px;
  2131. display:flex;
  2132. transition:none;
  2133. transform-origin:50% 50%;
  2134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2135. font-weight:400;
  2136. font-style:normal;
  2137. font-size:14px;
  2138. }
  2139. #u15905 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:0px 0px 0px 0px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u15905_text {
  2147. border-width:0px;
  2148. white-space:nowrap;
  2149. text-transform:none;
  2150. }
  2151. #u15906_div {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:120px;
  2157. height:120px;
  2158. background:inherit;
  2159. background-color:rgba(255, 255, 255, 1);
  2160. box-sizing:border-box;
  2161. border-width:1px;
  2162. border-style:solid;
  2163. border-color:rgba(201, 201, 201, 1);
  2164. border-radius:4px;
  2165. filter:drop-shadow(none);
  2166. transition:none;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:38px;
  2171. }
  2172. #u15906 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:2573px;
  2176. top:399px;
  2177. width:120px;
  2178. height:120px;
  2179. display:flex;
  2180. transition:none;
  2181. transform-origin:50% 50%;
  2182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:38px;
  2186. }
  2187. #u15906 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:2px 8px 2px 8px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u15906_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. }
  2199. #u15907 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:0px;
  2203. top:0px;
  2204. width:0px;
  2205. height:0px;
  2206. }
  2207. #u15908_div {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:120px;
  2213. height:40px;
  2214. background:inherit;
  2215. background-color:rgba(255, 255, 255, 1);
  2216. box-sizing:border-box;
  2217. border-width:1px;
  2218. border-style:solid;
  2219. border-color:rgba(215, 215, 215, 1);
  2220. border-radius:4px;
  2221. filter:drop-shadow(none);
  2222. transition:none;
  2223. font-size:14px;
  2224. }
  2225. #u15908 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:2853px;
  2229. top:229px;
  2230. width:120px;
  2231. height:40px;
  2232. display:flex;
  2233. transition:none;
  2234. transform-origin:50% 50%;
  2235. font-size:14px;
  2236. }
  2237. #u15908 .text {
  2238. position:absolute;
  2239. align-self:center;
  2240. padding:2px 2px 2px 2px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u15908_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u15909_input {
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:115px;
  2255. height:31px;
  2256. padding:2px 2px 2px 2px;
  2257. font-family:'ArialMT', 'Arial', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:14px;
  2261. letter-spacing:normal;
  2262. color:#AAAAAA;
  2263. vertical-align:none;
  2264. text-align:left;
  2265. text-transform:none;
  2266. background-color:transparent;
  2267. border-color:transparent;
  2268. }
  2269. #u15909_input.disabled {
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:115px;
  2274. height:31px;
  2275. padding:2px 2px 2px 2px;
  2276. font-family:'ArialMT', 'Arial', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:14px;
  2280. letter-spacing:normal;
  2281. color:#AAAAAA;
  2282. vertical-align:none;
  2283. text-align:left;
  2284. text-transform:none;
  2285. background-color:transparent;
  2286. border-color:transparent;
  2287. }
  2288. #u15909_div {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:115px;
  2294. height:31px;
  2295. background:inherit;
  2296. background-color:rgba(255, 255, 255, 1);
  2297. border-radius:0px;
  2298. filter:drop-shadow(none);
  2299. transition:none;
  2300. font-size:14px;
  2301. color:#AAAAAA;
  2302. }
  2303. #u15909 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:2857px;
  2307. top:232px;
  2308. width:115px;
  2309. height:31px;
  2310. display:flex;
  2311. transition:none;
  2312. transform-origin:50% 50%;
  2313. font-size:14px;
  2314. color:#AAAAAA;
  2315. }
  2316. #u15909 .text {
  2317. position:absolute;
  2318. align-self:flex-start;
  2319. padding:2px 2px 2px 2px;
  2320. box-sizing:border-box;
  2321. width:100%;
  2322. }
  2323. #u15909_div.disabled {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:115px;
  2329. height:31px;
  2330. background:inherit;
  2331. background-color:rgba(240, 240, 240, 1);
  2332. border-radius:0px;
  2333. filter:drop-shadow(none);
  2334. transition:none;
  2335. font-size:14px;
  2336. color:#AAAAAA;
  2337. }
  2338. #u15909.disabled {
  2339. }
  2340. .u15909_input_option {
  2341. font-size:14px;
  2342. }
  2343. #u15910 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:0px;
  2349. height:0px;
  2350. }
  2351. #u15911_div {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:120px;
  2357. height:40px;
  2358. background:inherit;
  2359. background-color:rgba(255, 255, 255, 1);
  2360. box-sizing:border-box;
  2361. border-width:1px;
  2362. border-style:solid;
  2363. border-color:rgba(215, 215, 215, 1);
  2364. border-radius:4px;
  2365. filter:drop-shadow(none);
  2366. transition:none;
  2367. font-size:14px;
  2368. }
  2369. #u15911 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:2983px;
  2373. top:229px;
  2374. width:120px;
  2375. height:40px;
  2376. display:flex;
  2377. transition:none;
  2378. transform-origin:50% 50%;
  2379. font-size:14px;
  2380. }
  2381. #u15911 .text {
  2382. position:absolute;
  2383. align-self:center;
  2384. padding:2px 2px 2px 2px;
  2385. box-sizing:border-box;
  2386. width:100%;
  2387. }
  2388. #u15911_text {
  2389. border-width:0px;
  2390. word-wrap:break-word;
  2391. text-transform:none;
  2392. visibility:hidden;
  2393. }
  2394. #u15912_input {
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:115px;
  2399. height:31px;
  2400. padding:2px 2px 2px 2px;
  2401. font-family:'ArialMT', 'Arial', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:14px;
  2405. letter-spacing:normal;
  2406. color:#AAAAAA;
  2407. vertical-align:none;
  2408. text-align:left;
  2409. text-transform:none;
  2410. background-color:transparent;
  2411. border-color:transparent;
  2412. }
  2413. #u15912_input.disabled {
  2414. position:absolute;
  2415. left:0px;
  2416. top:0px;
  2417. width:115px;
  2418. height:31px;
  2419. padding:2px 2px 2px 2px;
  2420. font-family:'ArialMT', 'Arial', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:14px;
  2424. letter-spacing:normal;
  2425. color:#AAAAAA;
  2426. vertical-align:none;
  2427. text-align:left;
  2428. text-transform:none;
  2429. background-color:transparent;
  2430. border-color:transparent;
  2431. }
  2432. #u15912_div {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:115px;
  2438. height:31px;
  2439. background:inherit;
  2440. background-color:rgba(255, 255, 255, 1);
  2441. border-radius:0px;
  2442. filter:drop-shadow(none);
  2443. transition:none;
  2444. font-size:14px;
  2445. color:#AAAAAA;
  2446. }
  2447. #u15912 {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:2987px;
  2451. top:232px;
  2452. width:115px;
  2453. height:31px;
  2454. display:flex;
  2455. transition:none;
  2456. transform-origin:50% 50%;
  2457. font-size:14px;
  2458. color:#AAAAAA;
  2459. }
  2460. #u15912 .text {
  2461. position:absolute;
  2462. align-self:flex-start;
  2463. padding:2px 2px 2px 2px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u15912_div.disabled {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:115px;
  2473. height:31px;
  2474. background:inherit;
  2475. background-color:rgba(240, 240, 240, 1);
  2476. border-radius:0px;
  2477. filter:drop-shadow(none);
  2478. transition:none;
  2479. font-size:14px;
  2480. color:#AAAAAA;
  2481. }
  2482. #u15912.disabled {
  2483. }
  2484. .u15912_input_option {
  2485. font-size:14px;
  2486. }
  2487. #u15913_div {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:73px;
  2493. height:40px;
  2494. background:inherit;
  2495. background-color:rgba(255, 255, 255, 0);
  2496. border-left:0px;
  2497. border-top:0px;
  2498. border-right:0px;
  2499. border-radius:0px;
  2500. border-bottom-right-radius:0px;
  2501. border-bottom-left-radius:0px;
  2502. filter:drop-shadow(none);
  2503. transition:none;
  2504. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2505. font-weight:500;
  2506. font-style:normal;
  2507. font-size:18px;
  2508. }
  2509. #u15913 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:2573px;
  2513. top:299px;
  2514. width:73px;
  2515. height:40px;
  2516. display:flex;
  2517. transition:none;
  2518. transform-origin:50% 50%;
  2519. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2520. font-weight:500;
  2521. font-style:normal;
  2522. font-size:18px;
  2523. }
  2524. #u15913 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:0px 0px 0px 0px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u15913_text {
  2532. border-width:0px;
  2533. white-space:nowrap;
  2534. text-transform:none;
  2535. }
  2536. #u15914_div {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:64px;
  2542. height:40px;
  2543. background:inherit;
  2544. background-color:rgba(255, 255, 255, 0);
  2545. border-left:0px;
  2546. border-top:0px;
  2547. border-right:0px;
  2548. border-radius:0px;
  2549. border-bottom-right-radius:0px;
  2550. border-bottom-left-radius:0px;
  2551. filter:drop-shadow(none);
  2552. transition:none;
  2553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:14px;
  2557. }
  2558. #u15914 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:2773px;
  2562. top:359px;
  2563. width:64px;
  2564. height:40px;
  2565. display:flex;
  2566. transition:none;
  2567. transform-origin:50% 50%;
  2568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. font-size:14px;
  2572. }
  2573. #u15914 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:0px 0px 0px 0px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u15914_text {
  2581. border-width:0px;
  2582. white-space:nowrap;
  2583. text-transform:none;
  2584. }
  2585. #u15915 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:0px;
  2591. height:0px;
  2592. }
  2593. #u15916_div {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:120px;
  2599. height:40px;
  2600. background:inherit;
  2601. background-color:rgba(242, 242, 242, 1);
  2602. box-sizing:border-box;
  2603. border-width:1px;
  2604. border-style:solid;
  2605. border-color:rgba(215, 215, 215, 1);
  2606. border-radius:4px;
  2607. filter:drop-shadow(none);
  2608. transition:none;
  2609. font-size:14px;
  2610. }
  2611. #u15916 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:3113px;
  2615. top:228px;
  2616. width:120px;
  2617. height:40px;
  2618. display:flex;
  2619. transition:none;
  2620. transform-origin:50% 50%;
  2621. font-size:14px;
  2622. }
  2623. #u15916 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 2px 2px 2px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u15916_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. visibility:hidden;
  2635. }
  2636. #u15917_input {
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:115px;
  2641. height:31px;
  2642. padding:2px 2px 2px 2px;
  2643. font-family:'ArialMT', 'Arial', sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:14px;
  2647. letter-spacing:normal;
  2648. color:#AAAAAA;
  2649. vertical-align:none;
  2650. text-align:left;
  2651. text-transform:none;
  2652. background-color:transparent;
  2653. border-color:transparent;
  2654. }
  2655. #u15917_input.disabled {
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:115px;
  2660. height:31px;
  2661. padding:2px 2px 2px 2px;
  2662. font-family:'ArialMT', 'Arial', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:14px;
  2666. letter-spacing:normal;
  2667. color:#AAAAAA;
  2668. vertical-align:none;
  2669. text-align:left;
  2670. text-transform:none;
  2671. background-color:transparent;
  2672. border-color:transparent;
  2673. }
  2674. #u15917_div {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:115px;
  2680. height:31px;
  2681. background:inherit;
  2682. background-color:rgba(242, 242, 242, 1);
  2683. border-radius:0px;
  2684. filter:drop-shadow(none);
  2685. transition:none;
  2686. font-size:14px;
  2687. color:#AAAAAA;
  2688. }
  2689. #u15917 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:3117px;
  2693. top:231px;
  2694. width:115px;
  2695. height:31px;
  2696. display:flex;
  2697. transition:none;
  2698. transform-origin:50% 50%;
  2699. font-size:14px;
  2700. color:#AAAAAA;
  2701. }
  2702. #u15917 .text {
  2703. position:absolute;
  2704. align-self:flex-start;
  2705. padding:2px 2px 2px 2px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u15917_div.disabled {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:115px;
  2715. height:31px;
  2716. background:inherit;
  2717. background-color:rgba(240, 240, 240, 1);
  2718. border-radius:0px;
  2719. filter:drop-shadow(none);
  2720. transition:none;
  2721. font-size:14px;
  2722. color:#AAAAAA;
  2723. }
  2724. #u15917.disabled {
  2725. }
  2726. .u15917_input_option {
  2727. font-size:14px;
  2728. }
  2729. #u15918 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:0px;
  2735. height:0px;
  2736. }
  2737. #u15919_div {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:200px;
  2743. height:40px;
  2744. background:inherit;
  2745. background-color:rgba(255, 255, 255, 1);
  2746. box-sizing:border-box;
  2747. border-width:1px;
  2748. border-style:solid;
  2749. border-color:rgba(201, 201, 201, 1);
  2750. border-radius:4px;
  2751. filter:drop-shadow(none);
  2752. transition:none;
  2753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2754. font-weight:400;
  2755. font-style:normal;
  2756. font-size:14px;
  2757. text-align:right;
  2758. }
  2759. #u15919 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:2773px;
  2763. top:483px;
  2764. width:200px;
  2765. height:40px;
  2766. display:flex;
  2767. transition:none;
  2768. transform-origin:50% 50%;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:14px;
  2773. text-align:right;
  2774. }
  2775. #u15919 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 8px 2px 8px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u15919_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u15920_input {
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:161px;
  2793. height:33px;
  2794. padding:2px 2px 2px 2px;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:14px;
  2799. letter-spacing:normal;
  2800. color:#D7D7D7;
  2801. vertical-align:none;
  2802. text-align:left;
  2803. text-transform:none;
  2804. background-color:transparent;
  2805. border-color:transparent;
  2806. }
  2807. #u15920_input.hint {
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:161px;
  2812. height:33px;
  2813. padding:2px 2px 2px 2px;
  2814. font-family:"Microsoft YaHei", sans-serif;
  2815. font-weight:400;
  2816. font-style:normal;
  2817. font-size:14px;
  2818. letter-spacing:normal;
  2819. color:#AAAAAA;
  2820. vertical-align:none;
  2821. text-align:left;
  2822. text-transform:none;
  2823. background-color:transparent;
  2824. border-color:transparent;
  2825. }
  2826. #u15920_input.disabled {
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:161px;
  2831. height:33px;
  2832. padding:2px 2px 2px 2px;
  2833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. font-size:14px;
  2837. letter-spacing:normal;
  2838. color:#D7D7D7;
  2839. vertical-align:none;
  2840. text-align:left;
  2841. text-transform:none;
  2842. background-color:transparent;
  2843. border-color:transparent;
  2844. }
  2845. #u15920_input.hint.disabled {
  2846. position:absolute;
  2847. left:0px;
  2848. top:0px;
  2849. width:161px;
  2850. height:33px;
  2851. padding:2px 2px 2px 2px;
  2852. font-family:"Microsoft YaHei", sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:14px;
  2856. letter-spacing:normal;
  2857. color:#AAAAAA;
  2858. vertical-align:none;
  2859. text-align:left;
  2860. text-transform:none;
  2861. background-color:transparent;
  2862. border-color:transparent;
  2863. }
  2864. #u15920_div {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:161px;
  2870. height:33px;
  2871. background:inherit;
  2872. background-color:rgba(255, 255, 255, 0);
  2873. border-radius:0px;
  2874. filter:drop-shadow(none);
  2875. transition:none;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:14px;
  2880. color:#D7D7D7;
  2881. }
  2882. #u15920 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:2781px;
  2886. top:486px;
  2887. width:161px;
  2888. height:33px;
  2889. display:flex;
  2890. transition:none;
  2891. transform-origin:50% 50%;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:14px;
  2896. color:#D7D7D7;
  2897. }
  2898. #u15920 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 2px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u15920_div.hint {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:161px;
  2911. height:33px;
  2912. background:inherit;
  2913. background-color:rgba(255, 255, 255, 0);
  2914. border-radius:0px;
  2915. filter:drop-shadow(none);
  2916. transition:none;
  2917. font-family:"Microsoft YaHei", sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:14px;
  2921. color:#D7D7D7;
  2922. }
  2923. #u15920.hint {
  2924. }
  2925. #u15920_div.disabled {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:161px;
  2931. height:33px;
  2932. background:inherit;
  2933. background-color:rgba(240, 240, 240, 1);
  2934. border-radius:0px;
  2935. filter:drop-shadow(none);
  2936. transition:none;
  2937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:14px;
  2941. color:#D7D7D7;
  2942. }
  2943. #u15920.disabled {
  2944. }
  2945. #u15920_div.hint.disabled {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:161px;
  2951. height:33px;
  2952. background:inherit;
  2953. background-color:rgba(240, 240, 240, 1);
  2954. border-radius:0px;
  2955. filter:drop-shadow(none);
  2956. transition:none;
  2957. font-family:"Microsoft YaHei", sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:14px;
  2961. color:#D7D7D7;
  2962. }
  2963. #u15920.hint.disabled {
  2964. }
  2965. #u15921 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:2951px;
  2969. top:496px;
  2970. width:13px;
  2971. height:13px;
  2972. display:flex;
  2973. transition:none;
  2974. }
  2975. #u15921 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:2px 2px 2px 2px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u15921_img {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:13px;
  2988. height:13px;
  2989. }
  2990. #u15921_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. visibility:hidden;
  2995. }
  2996. #u15922_div {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:64px;
  3002. height:40px;
  3003. background:inherit;
  3004. background-color:rgba(255, 255, 255, 0);
  3005. border-left:0px;
  3006. border-top:0px;
  3007. border-right:0px;
  3008. border-radius:0px;
  3009. border-bottom-right-radius:0px;
  3010. border-bottom-left-radius:0px;
  3011. filter:drop-shadow(none);
  3012. transition:none;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:14px;
  3017. }
  3018. #u15922 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:3003px;
  3022. top:533px;
  3023. width:64px;
  3024. height:40px;
  3025. display:flex;
  3026. transition:none;
  3027. transform-origin:50% 50%;
  3028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3029. font-weight:400;
  3030. font-style:normal;
  3031. font-size:14px;
  3032. }
  3033. #u15922 .text {
  3034. position:absolute;
  3035. align-self:center;
  3036. padding:0px 0px 0px 0px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u15922_text {
  3041. border-width:0px;
  3042. white-space:nowrap;
  3043. text-transform:none;
  3044. }
  3045. #u15923 label {
  3046. left:0px;
  3047. width:100%;
  3048. height:100%;
  3049. }
  3050. #u15923_img {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:4px;
  3055. width:12px;
  3056. height:12px;
  3057. }
  3058. #u15923 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:2781px;
  3062. top:409px;
  3063. width:100px;
  3064. height:20px;
  3065. display:flex;
  3066. transition:none;
  3067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3068. font-weight:400;
  3069. font-style:normal;
  3070. font-size:14px;
  3071. }
  3072. #u15923 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:0px 2px 0px 2px;
  3076. box-sizing:border-box;
  3077. }
  3078. #u15923_img.selected {
  3079. }
  3080. #u15923.selected {
  3081. }
  3082. #u15923_img.disabled {
  3083. }
  3084. #u15923.disabled {
  3085. }
  3086. #u15923_img.selected.error {
  3087. }
  3088. #u15923.selected.error {
  3089. }
  3090. #u15923_img.selected.hint {
  3091. }
  3092. #u15923.selected.hint {
  3093. }
  3094. #u15923_img.selected.error.hint {
  3095. }
  3096. #u15923.selected.error.hint {
  3097. }
  3098. #u15923_img.mouseOver.selected {
  3099. }
  3100. #u15923.mouseOver.selected {
  3101. }
  3102. #u15923_img.mouseOver.selected.error {
  3103. }
  3104. #u15923.mouseOver.selected.error {
  3105. }
  3106. #u15923_img.mouseOver.selected.hint {
  3107. }
  3108. #u15923.mouseOver.selected.hint {
  3109. }
  3110. #u15923_img.mouseOver.selected.error.hint {
  3111. }
  3112. #u15923.mouseOver.selected.error.hint {
  3113. }
  3114. #u15923_img.mouseDown.selected {
  3115. }
  3116. #u15923.mouseDown.selected {
  3117. }
  3118. #u15923_img.mouseDown.selected.error {
  3119. }
  3120. #u15923.mouseDown.selected.error {
  3121. }
  3122. #u15923_img.mouseDown.selected.hint {
  3123. }
  3124. #u15923.mouseDown.selected.hint {
  3125. }
  3126. #u15923_img.mouseDown.selected.error.hint {
  3127. }
  3128. #u15923.mouseDown.selected.error.hint {
  3129. }
  3130. #u15923_img.mouseOver.mouseDown.selected {
  3131. }
  3132. #u15923.mouseOver.mouseDown.selected {
  3133. }
  3134. #u15923_img.mouseOver.mouseDown.selected.error {
  3135. }
  3136. #u15923.mouseOver.mouseDown.selected.error {
  3137. }
  3138. #u15923_img.mouseOver.mouseDown.selected.hint {
  3139. }
  3140. #u15923.mouseOver.mouseDown.selected.hint {
  3141. }
  3142. #u15923_img.mouseOver.mouseDown.selected.error.hint {
  3143. }
  3144. #u15923.mouseOver.mouseDown.selected.error.hint {
  3145. }
  3146. #u15923_img.focused.selected {
  3147. }
  3148. #u15923.focused.selected {
  3149. }
  3150. #u15923_img.focused.selected.error {
  3151. }
  3152. #u15923.focused.selected.error {
  3153. }
  3154. #u15923_img.focused.selected.hint {
  3155. }
  3156. #u15923.focused.selected.hint {
  3157. }
  3158. #u15923_img.focused.selected.error.hint {
  3159. }
  3160. #u15923.focused.selected.error.hint {
  3161. }
  3162. #u15923_img.selected.disabled {
  3163. }
  3164. #u15923.selected.disabled {
  3165. }
  3166. #u15923_img.selected.hint.disabled {
  3167. }
  3168. #u15923.selected.hint.disabled {
  3169. }
  3170. #u15923_img.selected.error.disabled {
  3171. }
  3172. #u15923.selected.error.disabled {
  3173. }
  3174. #u15923_img.selected.error.hint.disabled {
  3175. }
  3176. #u15923.selected.error.hint.disabled {
  3177. }
  3178. #u15923_text {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:12px;
  3182. top:0px;
  3183. width:88px;
  3184. word-wrap:break-word;
  3185. text-transform:none;
  3186. }
  3187. #u15923_input {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:0px;
  3193. height:0px;
  3194. opacity:0;
  3195. }
  3196. #u15924 label {
  3197. left:0px;
  3198. width:100%;
  3199. height:100%;
  3200. }
  3201. #u15924_img {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:4px;
  3206. width:12px;
  3207. height:12px;
  3208. }
  3209. #u15924 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:3003px;
  3213. top:409px;
  3214. width:100px;
  3215. height:20px;
  3216. display:flex;
  3217. transition:none;
  3218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3219. font-weight:400;
  3220. font-style:normal;
  3221. font-size:14px;
  3222. }
  3223. #u15924 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:0px 2px 0px 2px;
  3227. box-sizing:border-box;
  3228. }
  3229. #u15924_img.selected {
  3230. }
  3231. #u15924.selected {
  3232. }
  3233. #u15924_img.disabled {
  3234. }
  3235. #u15924.disabled {
  3236. }
  3237. #u15924_img.selected.error {
  3238. }
  3239. #u15924.selected.error {
  3240. }
  3241. #u15924_img.selected.hint {
  3242. }
  3243. #u15924.selected.hint {
  3244. }
  3245. #u15924_img.selected.error.hint {
  3246. }
  3247. #u15924.selected.error.hint {
  3248. }
  3249. #u15924_img.mouseOver.selected {
  3250. }
  3251. #u15924.mouseOver.selected {
  3252. }
  3253. #u15924_img.mouseOver.selected.error {
  3254. }
  3255. #u15924.mouseOver.selected.error {
  3256. }
  3257. #u15924_img.mouseOver.selected.hint {
  3258. }
  3259. #u15924.mouseOver.selected.hint {
  3260. }
  3261. #u15924_img.mouseOver.selected.error.hint {
  3262. }
  3263. #u15924.mouseOver.selected.error.hint {
  3264. }
  3265. #u15924_img.mouseDown.selected {
  3266. }
  3267. #u15924.mouseDown.selected {
  3268. }
  3269. #u15924_img.mouseDown.selected.error {
  3270. }
  3271. #u15924.mouseDown.selected.error {
  3272. }
  3273. #u15924_img.mouseDown.selected.hint {
  3274. }
  3275. #u15924.mouseDown.selected.hint {
  3276. }
  3277. #u15924_img.mouseDown.selected.error.hint {
  3278. }
  3279. #u15924.mouseDown.selected.error.hint {
  3280. }
  3281. #u15924_img.mouseOver.mouseDown.selected {
  3282. }
  3283. #u15924.mouseOver.mouseDown.selected {
  3284. }
  3285. #u15924_img.mouseOver.mouseDown.selected.error {
  3286. }
  3287. #u15924.mouseOver.mouseDown.selected.error {
  3288. }
  3289. #u15924_img.mouseOver.mouseDown.selected.hint {
  3290. }
  3291. #u15924.mouseOver.mouseDown.selected.hint {
  3292. }
  3293. #u15924_img.mouseOver.mouseDown.selected.error.hint {
  3294. }
  3295. #u15924.mouseOver.mouseDown.selected.error.hint {
  3296. }
  3297. #u15924_img.focused.selected {
  3298. }
  3299. #u15924.focused.selected {
  3300. }
  3301. #u15924_img.focused.selected.error {
  3302. }
  3303. #u15924.focused.selected.error {
  3304. }
  3305. #u15924_img.focused.selected.hint {
  3306. }
  3307. #u15924.focused.selected.hint {
  3308. }
  3309. #u15924_img.focused.selected.error.hint {
  3310. }
  3311. #u15924.focused.selected.error.hint {
  3312. }
  3313. #u15924_img.selected.disabled {
  3314. }
  3315. #u15924.selected.disabled {
  3316. }
  3317. #u15924_img.selected.hint.disabled {
  3318. }
  3319. #u15924.selected.hint.disabled {
  3320. }
  3321. #u15924_img.selected.error.disabled {
  3322. }
  3323. #u15924.selected.error.disabled {
  3324. }
  3325. #u15924_img.selected.error.hint.disabled {
  3326. }
  3327. #u15924.selected.error.hint.disabled {
  3328. }
  3329. #u15924_text {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:12px;
  3333. top:0px;
  3334. width:88px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. }
  3338. #u15924_input {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:0px;
  3344. height:0px;
  3345. opacity:0;
  3346. }
  3347. #u15925 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:0px;
  3353. height:0px;
  3354. }
  3355. #u15926_div {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:200px;
  3361. height:40px;
  3362. background:inherit;
  3363. background-color:rgba(255, 255, 255, 1);
  3364. box-sizing:border-box;
  3365. border-width:1px;
  3366. border-style:solid;
  3367. border-color:rgba(215, 215, 215, 1);
  3368. border-radius:4px;
  3369. filter:drop-shadow(none);
  3370. transition:none;
  3371. font-size:14px;
  3372. }
  3373. #u15926 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:3003px;
  3377. top:573px;
  3378. width:200px;
  3379. height:40px;
  3380. display:flex;
  3381. transition:none;
  3382. transform-origin:50% 50%;
  3383. font-size:14px;
  3384. }
  3385. #u15926 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 2px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u15926_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. visibility:hidden;
  3397. }
  3398. #u15927_input {
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:191px;
  3403. height:31px;
  3404. padding:2px 2px 2px 2px;
  3405. font-family:'ArialMT', 'Arial', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:14px;
  3409. letter-spacing:normal;
  3410. color:#AAAAAA;
  3411. vertical-align:none;
  3412. text-align:left;
  3413. text-transform:none;
  3414. background-color:transparent;
  3415. border-color:transparent;
  3416. }
  3417. #u15927_input.disabled {
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:191px;
  3422. height:31px;
  3423. padding:2px 2px 2px 2px;
  3424. font-family:'ArialMT', 'Arial', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:14px;
  3428. letter-spacing:normal;
  3429. color:#AAAAAA;
  3430. vertical-align:none;
  3431. text-align:left;
  3432. text-transform:none;
  3433. background-color:transparent;
  3434. border-color:transparent;
  3435. }
  3436. #u15927_div {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:191px;
  3442. height:31px;
  3443. background:inherit;
  3444. background-color:rgba(255, 255, 255, 1);
  3445. border-radius:0px;
  3446. filter:drop-shadow(none);
  3447. transition:none;
  3448. font-size:14px;
  3449. color:#AAAAAA;
  3450. }
  3451. #u15927 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:3009px;
  3455. top:576px;
  3456. width:191px;
  3457. height:31px;
  3458. display:flex;
  3459. transition:none;
  3460. transform-origin:50% 50%;
  3461. font-size:14px;
  3462. color:#AAAAAA;
  3463. }
  3464. #u15927 .text {
  3465. position:absolute;
  3466. align-self:flex-start;
  3467. padding:2px 2px 2px 2px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u15927_div.disabled {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:191px;
  3477. height:31px;
  3478. background:inherit;
  3479. background-color:rgba(240, 240, 240, 1);
  3480. border-radius:0px;
  3481. filter:drop-shadow(none);
  3482. transition:none;
  3483. font-size:14px;
  3484. color:#AAAAAA;
  3485. }
  3486. #u15927.disabled {
  3487. }
  3488. .u15927_input_option {
  3489. font-size:14px;
  3490. }
  3491. #u15928 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:0px;
  3497. height:0px;
  3498. }
  3499. #u15929_div {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:200px;
  3505. height:40px;
  3506. background:inherit;
  3507. background-color:rgba(255, 255, 255, 1);
  3508. box-sizing:border-box;
  3509. border-width:1px;
  3510. border-style:solid;
  3511. border-color:rgba(201, 201, 201, 1);
  3512. border-radius:4px;
  3513. filter:drop-shadow(none);
  3514. transition:none;
  3515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:14px;
  3519. text-align:right;
  3520. }
  3521. #u15929 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:3003px;
  3525. top:662px;
  3526. width:200px;
  3527. height:40px;
  3528. display:flex;
  3529. transition:none;
  3530. transform-origin:50% 50%;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:14px;
  3535. text-align:right;
  3536. }
  3537. #u15929 .text {
  3538. position:absolute;
  3539. align-self:center;
  3540. padding:2px 8px 2px 8px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u15929_text {
  3545. border-width:0px;
  3546. word-wrap:break-word;
  3547. text-transform:none;
  3548. visibility:hidden;
  3549. }
  3550. #u15930_input {
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:161px;
  3555. height:33px;
  3556. padding:2px 2px 2px 2px;
  3557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3558. font-weight:400;
  3559. font-style:normal;
  3560. font-size:14px;
  3561. letter-spacing:normal;
  3562. color:#D7D7D7;
  3563. vertical-align:none;
  3564. text-align:left;
  3565. text-transform:none;
  3566. background-color:transparent;
  3567. border-color:transparent;
  3568. }
  3569. #u15930_input.hint {
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:161px;
  3574. height:33px;
  3575. padding:2px 2px 2px 2px;
  3576. font-family:"Microsoft YaHei", sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:14px;
  3580. letter-spacing:normal;
  3581. color:#AAAAAA;
  3582. vertical-align:none;
  3583. text-align:left;
  3584. text-transform:none;
  3585. background-color:transparent;
  3586. border-color:transparent;
  3587. }
  3588. #u15930_input.disabled {
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:161px;
  3593. height:33px;
  3594. padding:2px 2px 2px 2px;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:14px;
  3599. letter-spacing:normal;
  3600. color:#D7D7D7;
  3601. vertical-align:none;
  3602. text-align:left;
  3603. text-transform:none;
  3604. background-color:transparent;
  3605. border-color:transparent;
  3606. }
  3607. #u15930_input.hint.disabled {
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:161px;
  3612. height:33px;
  3613. padding:2px 2px 2px 2px;
  3614. font-family:"Microsoft YaHei", sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:14px;
  3618. letter-spacing:normal;
  3619. color:#AAAAAA;
  3620. vertical-align:none;
  3621. text-align:left;
  3622. text-transform:none;
  3623. background-color:transparent;
  3624. border-color:transparent;
  3625. }
  3626. #u15930_div {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:161px;
  3632. height:33px;
  3633. background:inherit;
  3634. background-color:rgba(255, 255, 255, 0);
  3635. border-radius:0px;
  3636. filter:drop-shadow(none);
  3637. transition:none;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:14px;
  3642. color:#D7D7D7;
  3643. }
  3644. #u15930 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:3011px;
  3648. top:665px;
  3649. width:161px;
  3650. height:33px;
  3651. display:flex;
  3652. transition:none;
  3653. transform-origin:50% 50%;
  3654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:14px;
  3658. color:#D7D7D7;
  3659. }
  3660. #u15930 .text {
  3661. position:absolute;
  3662. align-self:center;
  3663. padding:2px 2px 2px 2px;
  3664. box-sizing:border-box;
  3665. width:100%;
  3666. }
  3667. #u15930_div.hint {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:161px;
  3673. height:33px;
  3674. background:inherit;
  3675. background-color:rgba(255, 255, 255, 0);
  3676. border-radius:0px;
  3677. filter:drop-shadow(none);
  3678. transition:none;
  3679. font-family:"Microsoft YaHei", sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:14px;
  3683. color:#D7D7D7;
  3684. }
  3685. #u15930.hint {
  3686. }
  3687. #u15930_div.disabled {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:161px;
  3693. height:33px;
  3694. background:inherit;
  3695. background-color:rgba(240, 240, 240, 1);
  3696. border-radius:0px;
  3697. filter:drop-shadow(none);
  3698. transition:none;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:14px;
  3703. color:#D7D7D7;
  3704. }
  3705. #u15930.disabled {
  3706. }
  3707. #u15930_div.hint.disabled {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:161px;
  3713. height:33px;
  3714. background:inherit;
  3715. background-color:rgba(240, 240, 240, 1);
  3716. border-radius:0px;
  3717. filter:drop-shadow(none);
  3718. transition:none;
  3719. font-family:"Microsoft YaHei", sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:14px;
  3723. color:#D7D7D7;
  3724. }
  3725. #u15930.hint.disabled {
  3726. }
  3727. #u15931_div {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:78px;
  3733. height:40px;
  3734. background:inherit;
  3735. background-color:rgba(255, 255, 255, 0);
  3736. border-left:0px;
  3737. border-top:0px;
  3738. border-right:0px;
  3739. border-radius:0px;
  3740. border-bottom-right-radius:0px;
  3741. border-bottom-left-radius:0px;
  3742. filter:drop-shadow(none);
  3743. transition:none;
  3744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3745. font-weight:400;
  3746. font-style:normal;
  3747. font-size:14px;
  3748. }
  3749. #u15931 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:3003px;
  3753. top:623px;
  3754. width:78px;
  3755. height:40px;
  3756. display:flex;
  3757. transition:none;
  3758. transform-origin:50% 50%;
  3759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3760. font-weight:400;
  3761. font-style:normal;
  3762. font-size:14px;
  3763. }
  3764. #u15931 .text {
  3765. position:absolute;
  3766. align-self:center;
  3767. padding:0px 0px 0px 0px;
  3768. box-sizing:border-box;
  3769. width:100%;
  3770. }
  3771. #u15931_text {
  3772. border-width:0px;
  3773. white-space:nowrap;
  3774. text-transform:none;
  3775. }
  3776. #u15932_div {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:64px;
  3782. height:40px;
  3783. background:inherit;
  3784. background-color:rgba(255, 255, 255, 0);
  3785. border-left:0px;
  3786. border-top:0px;
  3787. border-right:0px;
  3788. border-radius:0px;
  3789. border-bottom-right-radius:0px;
  3790. border-bottom-left-radius:0px;
  3791. filter:drop-shadow(none);
  3792. transition:none;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:14px;
  3797. }
  3798. #u15932 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:2773px;
  3802. top:712px;
  3803. width:64px;
  3804. height:40px;
  3805. display:flex;
  3806. transition:none;
  3807. transform-origin:50% 50%;
  3808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3809. font-weight:400;
  3810. font-style:normal;
  3811. font-size:14px;
  3812. }
  3813. #u15932 .text {
  3814. position:absolute;
  3815. align-self:center;
  3816. padding:0px 0px 0px 0px;
  3817. box-sizing:border-box;
  3818. width:100%;
  3819. }
  3820. #u15932_text {
  3821. border-width:0px;
  3822. white-space:nowrap;
  3823. text-transform:none;
  3824. }
  3825. #u15933 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:0px;
  3831. height:0px;
  3832. }
  3833. #u15934_div {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:200px;
  3839. height:40px;
  3840. background:inherit;
  3841. background-color:rgba(255, 255, 255, 1);
  3842. box-sizing:border-box;
  3843. border-width:1px;
  3844. border-style:solid;
  3845. border-color:rgba(215, 215, 215, 1);
  3846. border-radius:4px;
  3847. filter:drop-shadow(none);
  3848. transition:none;
  3849. font-size:14px;
  3850. }
  3851. #u15934 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:2773px;
  3855. top:752px;
  3856. width:200px;
  3857. height:40px;
  3858. display:flex;
  3859. transition:none;
  3860. transform-origin:50% 50%;
  3861. font-size:14px;
  3862. }
  3863. #u15934 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 2px 2px 2px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u15934_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. visibility:hidden;
  3875. }
  3876. #u15935_input {
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:191px;
  3881. height:31px;
  3882. padding:2px 2px 2px 2px;
  3883. font-family:'ArialMT', 'Arial', sans-serif;
  3884. font-weight:400;
  3885. font-style:normal;
  3886. font-size:14px;
  3887. letter-spacing:normal;
  3888. color:#AAAAAA;
  3889. vertical-align:none;
  3890. text-align:left;
  3891. text-transform:none;
  3892. background-color:transparent;
  3893. border-color:transparent;
  3894. }
  3895. #u15935_input.disabled {
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:191px;
  3900. height:31px;
  3901. padding:2px 2px 2px 2px;
  3902. font-family:'ArialMT', 'Arial', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:14px;
  3906. letter-spacing:normal;
  3907. color:#AAAAAA;
  3908. vertical-align:none;
  3909. text-align:left;
  3910. text-transform:none;
  3911. background-color:transparent;
  3912. border-color:transparent;
  3913. }
  3914. #u15935_div {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:0px;
  3918. top:0px;
  3919. width:191px;
  3920. height:31px;
  3921. background:inherit;
  3922. background-color:rgba(255, 255, 255, 1);
  3923. border-radius:0px;
  3924. filter:drop-shadow(none);
  3925. transition:none;
  3926. font-size:14px;
  3927. color:#AAAAAA;
  3928. }
  3929. #u15935 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:2779px;
  3933. top:755px;
  3934. width:191px;
  3935. height:31px;
  3936. display:flex;
  3937. transition:none;
  3938. transform-origin:50% 50%;
  3939. font-size:14px;
  3940. color:#AAAAAA;
  3941. }
  3942. #u15935 .text {
  3943. position:absolute;
  3944. align-self:flex-start;
  3945. padding:2px 2px 2px 2px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u15935_div.disabled {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:0px;
  3953. top:0px;
  3954. width:191px;
  3955. height:31px;
  3956. background:inherit;
  3957. background-color:rgba(240, 240, 240, 1);
  3958. border-radius:0px;
  3959. filter:drop-shadow(none);
  3960. transition:none;
  3961. font-size:14px;
  3962. color:#AAAAAA;
  3963. }
  3964. #u15935.disabled {
  3965. }
  3966. .u15935_input_option {
  3967. font-size:14px;
  3968. }
  3969. #u15936 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:0px;
  3975. height:0px;
  3976. }
  3977. #u15937_div {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:200px;
  3983. height:40px;
  3984. background:inherit;
  3985. background-color:rgba(255, 255, 255, 1);
  3986. box-sizing:border-box;
  3987. border-width:1px;
  3988. border-style:solid;
  3989. border-color:rgba(201, 201, 201, 1);
  3990. border-radius:4px;
  3991. filter:drop-shadow(none);
  3992. transition:none;
  3993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3994. font-weight:400;
  3995. font-style:normal;
  3996. font-size:14px;
  3997. text-align:right;
  3998. }
  3999. #u15937 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:3003px;
  4003. top:752px;
  4004. width:200px;
  4005. height:40px;
  4006. display:flex;
  4007. transition:none;
  4008. transform-origin:50% 50%;
  4009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:14px;
  4013. text-align:right;
  4014. }
  4015. #u15937 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 8px 2px 8px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u15937_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u15938_input {
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:161px;
  4033. height:33px;
  4034. padding:2px 2px 2px 2px;
  4035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4036. font-weight:400;
  4037. font-style:normal;
  4038. font-size:14px;
  4039. letter-spacing:normal;
  4040. color:#D7D7D7;
  4041. vertical-align:none;
  4042. text-align:left;
  4043. text-transform:none;
  4044. background-color:transparent;
  4045. border-color:transparent;
  4046. }
  4047. #u15938_input.hint {
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:161px;
  4052. height:33px;
  4053. padding:2px 2px 2px 2px;
  4054. font-family:"Microsoft YaHei", sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:14px;
  4058. letter-spacing:normal;
  4059. color:#AAAAAA;
  4060. vertical-align:none;
  4061. text-align:left;
  4062. text-transform:none;
  4063. background-color:transparent;
  4064. border-color:transparent;
  4065. }
  4066. #u15938_input.disabled {
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:161px;
  4071. height:33px;
  4072. padding:2px 2px 2px 2px;
  4073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4074. font-weight:400;
  4075. font-style:normal;
  4076. font-size:14px;
  4077. letter-spacing:normal;
  4078. color:#D7D7D7;
  4079. vertical-align:none;
  4080. text-align:left;
  4081. text-transform:none;
  4082. background-color:transparent;
  4083. border-color:transparent;
  4084. }
  4085. #u15938_input.hint.disabled {
  4086. position:absolute;
  4087. left:0px;
  4088. top:0px;
  4089. width:161px;
  4090. height:33px;
  4091. padding:2px 2px 2px 2px;
  4092. font-family:"Microsoft YaHei", sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:14px;
  4096. letter-spacing:normal;
  4097. color:#AAAAAA;
  4098. vertical-align:none;
  4099. text-align:left;
  4100. text-transform:none;
  4101. background-color:transparent;
  4102. border-color:transparent;
  4103. }
  4104. #u15938_div {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:0px;
  4108. top:0px;
  4109. width:161px;
  4110. height:33px;
  4111. background:inherit;
  4112. background-color:rgba(255, 255, 255, 0);
  4113. border-radius:0px;
  4114. filter:drop-shadow(none);
  4115. transition:none;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:14px;
  4120. color:#D7D7D7;
  4121. }
  4122. #u15938 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:3011px;
  4126. top:755px;
  4127. width:161px;
  4128. height:33px;
  4129. display:flex;
  4130. transition:none;
  4131. transform-origin:50% 50%;
  4132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4133. font-weight:400;
  4134. font-style:normal;
  4135. font-size:14px;
  4136. color:#D7D7D7;
  4137. }
  4138. #u15938 .text {
  4139. position:absolute;
  4140. align-self:center;
  4141. padding:2px 2px 2px 2px;
  4142. box-sizing:border-box;
  4143. width:100%;
  4144. }
  4145. #u15938_div.hint {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:0px;
  4149. top:0px;
  4150. width:161px;
  4151. height:33px;
  4152. background:inherit;
  4153. background-color:rgba(255, 255, 255, 0);
  4154. border-radius:0px;
  4155. filter:drop-shadow(none);
  4156. transition:none;
  4157. font-family:"Microsoft YaHei", sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:14px;
  4161. color:#D7D7D7;
  4162. }
  4163. #u15938.hint {
  4164. }
  4165. #u15938_div.disabled {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:161px;
  4171. height:33px;
  4172. background:inherit;
  4173. background-color:rgba(240, 240, 240, 1);
  4174. border-radius:0px;
  4175. filter:drop-shadow(none);
  4176. transition:none;
  4177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:14px;
  4181. color:#D7D7D7;
  4182. }
  4183. #u15938.disabled {
  4184. }
  4185. #u15938_div.hint.disabled {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:161px;
  4191. height:33px;
  4192. background:inherit;
  4193. background-color:rgba(240, 240, 240, 1);
  4194. border-radius:0px;
  4195. filter:drop-shadow(none);
  4196. transition:none;
  4197. font-family:"Microsoft YaHei", sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:14px;
  4201. color:#D7D7D7;
  4202. }
  4203. #u15938.hint.disabled {
  4204. }
  4205. #u15939_div {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:64px;
  4211. height:40px;
  4212. background:inherit;
  4213. background-color:rgba(255, 255, 255, 0);
  4214. border-left:0px;
  4215. border-top:0px;
  4216. border-right:0px;
  4217. border-radius:0px;
  4218. border-bottom-right-radius:0px;
  4219. border-bottom-left-radius:0px;
  4220. filter:drop-shadow(none);
  4221. transition:none;
  4222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:14px;
  4226. }
  4227. #u15939 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:3003px;
  4231. top:713px;
  4232. width:64px;
  4233. height:40px;
  4234. display:flex;
  4235. transition:none;
  4236. transform-origin:50% 50%;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:14px;
  4241. }
  4242. #u15939 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:0px 0px 0px 0px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u15939_text {
  4250. border-width:0px;
  4251. white-space:nowrap;
  4252. text-transform:none;
  4253. }
  4254. #u15940 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:0px;
  4260. height:0px;
  4261. }
  4262. #u15941_div {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:427px;
  4268. height:80px;
  4269. background:inherit;
  4270. background-color:rgba(255, 255, 255, 1);
  4271. box-sizing:border-box;
  4272. border-width:1px;
  4273. border-style:solid;
  4274. border-color:rgba(201, 201, 201, 1);
  4275. border-radius:4px;
  4276. filter:drop-shadow(none);
  4277. transition:none;
  4278. font-family:"Microsoft YaHei", sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:14px;
  4282. color:#CCCCCC;
  4283. text-align:left;
  4284. }
  4285. #u15941 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:2773px;
  4289. top:1042px;
  4290. width:427px;
  4291. height:80px;
  4292. display:flex;
  4293. transition:none;
  4294. transform-origin:50% 50%;
  4295. font-family:"Microsoft YaHei", sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:14px;
  4299. color:#CCCCCC;
  4300. text-align:left;
  4301. }
  4302. #u15941 .text {
  4303. position:absolute;
  4304. align-self:center;
  4305. padding:2px 8px 2px 8px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u15941_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. visibility:hidden;
  4314. }
  4315. #u15942_input {
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:389px;
  4320. height:33px;
  4321. padding:2px 2px 2px 2px;
  4322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:14px;
  4326. letter-spacing:normal;
  4327. color:#D7D7D7;
  4328. vertical-align:none;
  4329. text-align:left;
  4330. text-transform:none;
  4331. background-color:transparent;
  4332. border-color:transparent;
  4333. }
  4334. #u15942_input.hint {
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:389px;
  4339. height:33px;
  4340. padding:2px 2px 2px 2px;
  4341. font-family:"Microsoft YaHei", sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. letter-spacing:normal;
  4346. color:#AAAAAA;
  4347. vertical-align:none;
  4348. text-align:left;
  4349. text-transform:none;
  4350. background-color:transparent;
  4351. border-color:transparent;
  4352. }
  4353. #u15942_input.disabled {
  4354. position:absolute;
  4355. left:0px;
  4356. top:0px;
  4357. width:389px;
  4358. height:33px;
  4359. padding:2px 2px 2px 2px;
  4360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:14px;
  4364. letter-spacing:normal;
  4365. color:#D7D7D7;
  4366. vertical-align:none;
  4367. text-align:left;
  4368. text-transform:none;
  4369. background-color:transparent;
  4370. border-color:transparent;
  4371. }
  4372. #u15942_input.hint.disabled {
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:389px;
  4377. height:33px;
  4378. padding:2px 2px 2px 2px;
  4379. font-family:"Microsoft YaHei", sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:14px;
  4383. letter-spacing:normal;
  4384. color:#AAAAAA;
  4385. vertical-align:none;
  4386. text-align:left;
  4387. text-transform:none;
  4388. background-color:transparent;
  4389. border-color:transparent;
  4390. }
  4391. #u15942_div {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:389px;
  4397. height:33px;
  4398. background:inherit;
  4399. background-color:rgba(255, 255, 255, 0);
  4400. border-radius:0px;
  4401. filter:drop-shadow(none);
  4402. transition:none;
  4403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4404. font-weight:400;
  4405. font-style:normal;
  4406. font-size:14px;
  4407. color:#D7D7D7;
  4408. }
  4409. #u15942 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:2790px;
  4413. top:1045px;
  4414. width:389px;
  4415. height:33px;
  4416. display:flex;
  4417. transition:none;
  4418. transform-origin:50% 50%;
  4419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4420. font-weight:400;
  4421. font-style:normal;
  4422. font-size:14px;
  4423. color:#D7D7D7;
  4424. }
  4425. #u15942 .text {
  4426. position:absolute;
  4427. align-self:center;
  4428. padding:2px 2px 2px 2px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u15942_div.hint {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:389px;
  4438. height:33px;
  4439. background:inherit;
  4440. background-color:rgba(255, 255, 255, 0);
  4441. border-radius:0px;
  4442. filter:drop-shadow(none);
  4443. transition:none;
  4444. font-family:"Microsoft YaHei", sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:14px;
  4448. color:#D7D7D7;
  4449. }
  4450. #u15942.hint {
  4451. }
  4452. #u15942_div.disabled {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:389px;
  4458. height:33px;
  4459. background:inherit;
  4460. background-color:rgba(240, 240, 240, 1);
  4461. border-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. color:#D7D7D7;
  4469. }
  4470. #u15942.disabled {
  4471. }
  4472. #u15942_div.hint.disabled {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:389px;
  4478. height:33px;
  4479. background:inherit;
  4480. background-color:rgba(240, 240, 240, 1);
  4481. border-radius:0px;
  4482. filter:drop-shadow(none);
  4483. transition:none;
  4484. font-family:"Microsoft YaHei", sans-serif;
  4485. font-weight:400;
  4486. font-style:normal;
  4487. font-size:14px;
  4488. color:#D7D7D7;
  4489. }
  4490. #u15942.hint.disabled {
  4491. }
  4492. #u15943_div {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:71px;
  4498. height:40px;
  4499. background:inherit;
  4500. background-color:rgba(255, 255, 255, 0);
  4501. border-left:0px;
  4502. border-top:0px;
  4503. border-right:0px;
  4504. border-radius:0px;
  4505. border-bottom-right-radius:0px;
  4506. border-bottom-left-radius:0px;
  4507. filter:drop-shadow(none);
  4508. transition:none;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:14px;
  4513. }
  4514. #u15943 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:2773px;
  4518. top:1002px;
  4519. width:71px;
  4520. height:40px;
  4521. display:flex;
  4522. transition:none;
  4523. transform-origin:50% 50%;
  4524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:14px;
  4528. }
  4529. #u15943 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:0px 0px 0px 0px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u15943_text {
  4537. border-width:0px;
  4538. white-space:nowrap;
  4539. text-transform:none;
  4540. }
  4541. #u15944 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:0px;
  4547. height:0px;
  4548. }
  4549. #u15945_div {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:83px;
  4555. height:80px;
  4556. background:inherit;
  4557. background-color:rgba(255, 255, 255, 1);
  4558. box-sizing:border-box;
  4559. border-width:1px;
  4560. border-style:solid;
  4561. border-color:rgba(201, 201, 201, 1);
  4562. border-radius:4px;
  4563. filter:drop-shadow(none);
  4564. transition:none;
  4565. font-family:'Helvetica', sans-serif;
  4566. font-weight:400;
  4567. font-style:normal;
  4568. font-size:24px;
  4569. }
  4570. #u15945 {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:2773px;
  4574. top:922px;
  4575. width:83px;
  4576. height:80px;
  4577. display:flex;
  4578. transition:none;
  4579. transform-origin:50% 50%;
  4580. font-family:'Helvetica', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. font-size:24px;
  4584. }
  4585. #u15945 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:2px 8px 2px 8px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u15945_text {
  4593. border-width:0px;
  4594. word-wrap:break-word;
  4595. text-transform:none;
  4596. }
  4597. #u15946_div {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:57px;
  4603. height:40px;
  4604. background:inherit;
  4605. background-color:rgba(255, 255, 255, 0);
  4606. border-left:0px;
  4607. border-top:0px;
  4608. border-right:0px;
  4609. border-radius:0px;
  4610. border-bottom-right-radius:0px;
  4611. border-bottom-left-radius:0px;
  4612. filter:drop-shadow(none);
  4613. transition:none;
  4614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:14px;
  4618. color:#D9001B;
  4619. }
  4620. #u15946 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:2773px;
  4624. top:882px;
  4625. width:57px;
  4626. height:40px;
  4627. display:flex;
  4628. transition:none;
  4629. transform-origin:50% 50%;
  4630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:14px;
  4634. color:#D9001B;
  4635. }
  4636. #u15946 .text {
  4637. position:absolute;
  4638. align-self:center;
  4639. padding:0px 0px 0px 0px;
  4640. box-sizing:border-box;
  4641. width:100%;
  4642. }
  4643. #u15946_text {
  4644. border-width:0px;
  4645. white-space:nowrap;
  4646. text-transform:none;
  4647. }
  4648. #u15947_div {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:800px;
  4654. height:60px;
  4655. background:inherit;
  4656. background-color:rgba(255, 255, 255, 1);
  4657. box-sizing:border-box;
  4658. border-width:1px;
  4659. border-style:solid;
  4660. border-color:rgba(242, 242, 242, 1);
  4661. border-radius:0px;
  4662. filter:drop-shadow(none);
  4663. transition:none;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:14px;
  4668. color:#AAAAAA;
  4669. text-align:center;
  4670. line-height:30px;
  4671. }
  4672. #u15947 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:97px;
  4676. top:73px;
  4677. width:800px;
  4678. height:60px;
  4679. display:flex;
  4680. transition:none;
  4681. transform-origin:50% 50%;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:14px;
  4686. color:#AAAAAA;
  4687. text-align:center;
  4688. line-height:30px;
  4689. }
  4690. #u15947 .text {
  4691. position:absolute;
  4692. align-self:center;
  4693. padding:5px 10px 5px 10px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u15947_text {
  4698. border-width:0px;
  4699. word-wrap:break-word;
  4700. text-transform:none;
  4701. visibility:hidden;
  4702. }
  4703. #u15948_div {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:0px;
  4707. top:0px;
  4708. width:47px;
  4709. height:35px;
  4710. background:inherit;
  4711. background-color:rgba(255, 255, 255, 0);
  4712. border-top:0px;
  4713. border-right:0px;
  4714. border-bottom:0px;
  4715. border-radius:0px;
  4716. border-top-left-radius:0px;
  4717. border-bottom-left-radius:0px;
  4718. filter:drop-shadow(none);
  4719. transition:none;
  4720. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4721. font-weight:500;
  4722. font-style:normal;
  4723. font-size:18px;
  4724. }
  4725. #u15948 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:128px;
  4729. top:86px;
  4730. width:47px;
  4731. height:35px;
  4732. display:flex;
  4733. transition:none;
  4734. transform-origin:50% 50%;
  4735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4736. font-weight:500;
  4737. font-style:normal;
  4738. font-size:18px;
  4739. }
  4740. #u15948 .text {
  4741. position:absolute;
  4742. align-self:center;
  4743. padding:5px 10px 5px 0px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u15948_text {
  4748. border-width:0px;
  4749. white-space:nowrap;
  4750. text-transform:none;
  4751. }
  4752. #u15949_div {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:800px;
  4758. height:1069px;
  4759. background:inherit;
  4760. background-color:rgba(255, 255, 255, 1);
  4761. box-sizing:border-box;
  4762. border-width:1px;
  4763. border-style:solid;
  4764. border-color:rgba(242, 242, 242, 1);
  4765. border-radius:0px;
  4766. filter:drop-shadow(none);
  4767. transition:none;
  4768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:14px;
  4772. color:#AAAAAA;
  4773. text-align:center;
  4774. line-height:30px;
  4775. }
  4776. #u15949 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:97px;
  4780. top:133px;
  4781. width:800px;
  4782. height:1069px;
  4783. display:flex;
  4784. transition:none;
  4785. transform-origin:50% 50%;
  4786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:14px;
  4790. color:#AAAAAA;
  4791. text-align:center;
  4792. line-height:30px;
  4793. }
  4794. #u15949 .text {
  4795. position:absolute;
  4796. align-self:center;
  4797. padding:5px 10px 5px 10px;
  4798. box-sizing:border-box;
  4799. width:100%;
  4800. }
  4801. #u15949_text {
  4802. border-width:0px;
  4803. word-wrap:break-word;
  4804. text-transform:none;
  4805. visibility:hidden;
  4806. }
  4807. #u15950_div {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:82px;
  4813. height:40px;
  4814. background:inherit;
  4815. background-color:rgba(255, 255, 255, 0);
  4816. border-left:0px;
  4817. border-top:0px;
  4818. border-right:0px;
  4819. border-radius:0px;
  4820. border-bottom-right-radius:0px;
  4821. border-bottom-left-radius:0px;
  4822. filter:drop-shadow(none);
  4823. transition:none;
  4824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4825. font-weight:500;
  4826. font-style:normal;
  4827. font-size:18px;
  4828. }
  4829. #u15950 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:136px;
  4833. top:159px;
  4834. width:82px;
  4835. height:40px;
  4836. display:flex;
  4837. transition:none;
  4838. transform-origin:50% 50%;
  4839. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4840. font-weight:500;
  4841. font-style:normal;
  4842. font-size:18px;
  4843. }
  4844. #u15950 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:0px 0px 0px 0px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u15950_text {
  4852. border-width:0px;
  4853. white-space:nowrap;
  4854. text-transform:none;
  4855. }
  4856. #u15951_div {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:40px;
  4862. height:40px;
  4863. background:inherit;
  4864. background-color:rgba(255, 255, 255, 0);
  4865. border-top:0px;
  4866. border-right:0px;
  4867. border-bottom:0px;
  4868. border-radius:0px;
  4869. border-top-left-radius:0px;
  4870. border-bottom-left-radius:0px;
  4871. filter:drop-shadow(none);
  4872. transition:none;
  4873. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4874. font-weight:500;
  4875. font-style:normal;
  4876. font-size:24px;
  4877. text-align:center;
  4878. }
  4879. #u15951 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:857px;
  4883. top:73px;
  4884. width:40px;
  4885. height:40px;
  4886. display:flex;
  4887. transition:none;
  4888. transform-origin:50% 50%;
  4889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4890. font-weight:500;
  4891. font-style:normal;
  4892. font-size:24px;
  4893. text-align:center;
  4894. }
  4895. #u15951 .text {
  4896. position:absolute;
  4897. align-self:center;
  4898. padding:5px 10px 5px 0px;
  4899. box-sizing:border-box;
  4900. width:100%;
  4901. }
  4902. #u15951_text {
  4903. border-width:0px;
  4904. word-wrap:break-word;
  4905. text-transform:none;
  4906. }
  4907. #u15952_div {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:57px;
  4913. height:40px;
  4914. background:inherit;
  4915. background-color:rgba(255, 255, 255, 0);
  4916. border-left:0px;
  4917. border-top:0px;
  4918. border-right:0px;
  4919. border-radius:0px;
  4920. border-bottom-right-radius:0px;
  4921. border-bottom-left-radius:0px;
  4922. filter:drop-shadow(none);
  4923. transition:none;
  4924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:14px;
  4928. }
  4929. #u15952 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:643px;
  4933. top:339px;
  4934. width:57px;
  4935. height:40px;
  4936. display:flex;
  4937. transition:none;
  4938. transform-origin:50% 50%;
  4939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4940. font-weight:400;
  4941. font-style:normal;
  4942. font-size:14px;
  4943. }
  4944. #u15952 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:0px 0px 0px 0px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u15952_text {
  4952. border-width:0px;
  4953. white-space:nowrap;
  4954. text-transform:none;
  4955. }
  4956. #u15953_div {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:180px;
  4962. height:180px;
  4963. background:inherit;
  4964. background-color:rgba(255, 255, 255, 1);
  4965. box-sizing:border-box;
  4966. border-width:1px;
  4967. border-style:solid;
  4968. border-color:rgba(201, 201, 201, 1);
  4969. border-radius:4px;
  4970. filter:drop-shadow(none);
  4971. transition:none;
  4972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:38px;
  4976. }
  4977. #u15953 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:643px;
  4981. top:379px;
  4982. width:180px;
  4983. height:180px;
  4984. display:flex;
  4985. transition:none;
  4986. transform-origin:50% 50%;
  4987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:38px;
  4991. }
  4992. #u15953 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 8px 2px 8px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u15953_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. }
  5004. #u15954_div {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:0px;
  5008. top:0px;
  5009. width:73px;
  5010. height:40px;
  5011. background:inherit;
  5012. background-color:rgba(255, 255, 255, 0);
  5013. border-left:0px;
  5014. border-top:0px;
  5015. border-right:0px;
  5016. border-radius:0px;
  5017. border-bottom-right-radius:0px;
  5018. border-bottom-left-radius:0px;
  5019. filter:drop-shadow(none);
  5020. transition:none;
  5021. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5022. font-weight:500;
  5023. font-style:normal;
  5024. font-size:18px;
  5025. }
  5026. #u15954 {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:136px;
  5030. top:279px;
  5031. width:73px;
  5032. height:40px;
  5033. display:flex;
  5034. transition:none;
  5035. transform-origin:50% 50%;
  5036. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5037. font-weight:500;
  5038. font-style:normal;
  5039. font-size:18px;
  5040. }
  5041. #u15954 .text {
  5042. position:absolute;
  5043. align-self:center;
  5044. padding:0px 0px 0px 0px;
  5045. box-sizing:border-box;
  5046. width:100%;
  5047. }
  5048. #u15954_text {
  5049. border-width:0px;
  5050. white-space:nowrap;
  5051. text-transform:none;
  5052. }
  5053. #u15955_div {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:78px;
  5059. height:40px;
  5060. background:inherit;
  5061. background-color:rgba(255, 255, 255, 0);
  5062. border-left:0px;
  5063. border-top:0px;
  5064. border-right:0px;
  5065. border-radius:0px;
  5066. border-bottom-right-radius:0px;
  5067. border-bottom-left-radius:0px;
  5068. filter:drop-shadow(none);
  5069. transition:none;
  5070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5071. font-weight:400;
  5072. font-style:normal;
  5073. font-size:14px;
  5074. }
  5075. #u15955 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:136px;
  5079. top:692px;
  5080. width:78px;
  5081. height:40px;
  5082. display:flex;
  5083. transition:none;
  5084. transform-origin:50% 50%;
  5085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:14px;
  5089. }
  5090. #u15955 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:0px 0px 0px 0px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u15955_text {
  5098. border-width:0px;
  5099. white-space:nowrap;
  5100. text-transform:none;
  5101. }
  5102. #u15956 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:0px;
  5108. height:0px;
  5109. }
  5110. #u15957_div {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:200px;
  5116. height:40px;
  5117. background:inherit;
  5118. background-color:rgba(242, 242, 242, 1);
  5119. box-sizing:border-box;
  5120. border-width:1px;
  5121. border-style:solid;
  5122. border-color:rgba(215, 215, 215, 1);
  5123. border-radius:4px;
  5124. filter:drop-shadow(none);
  5125. transition:none;
  5126. font-size:14px;
  5127. }
  5128. #u15957 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:136px;
  5132. top:732px;
  5133. width:200px;
  5134. height:40px;
  5135. display:flex;
  5136. transition:none;
  5137. transform-origin:50% 50%;
  5138. font-size:14px;
  5139. }
  5140. #u15957 .text {
  5141. position:absolute;
  5142. align-self:center;
  5143. padding:2px 2px 2px 2px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u15957_text {
  5148. border-width:0px;
  5149. word-wrap:break-word;
  5150. text-transform:none;
  5151. visibility:hidden;
  5152. }
  5153. #u15958_input {
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:191px;
  5158. height:31px;
  5159. padding:2px 2px 2px 2px;
  5160. font-family:'ArialMT', 'Arial', sans-serif;
  5161. font-weight:400;
  5162. font-style:normal;
  5163. font-size:14px;
  5164. letter-spacing:normal;
  5165. color:#AAAAAA;
  5166. vertical-align:none;
  5167. text-align:left;
  5168. text-transform:none;
  5169. background-color:transparent;
  5170. border-color:transparent;
  5171. }
  5172. #u15958_input.disabled {
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:191px;
  5177. height:31px;
  5178. padding:2px 2px 2px 2px;
  5179. font-family:'ArialMT', 'Arial', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:14px;
  5183. letter-spacing:normal;
  5184. color:#AAAAAA;
  5185. vertical-align:none;
  5186. text-align:left;
  5187. text-transform:none;
  5188. background-color:transparent;
  5189. border-color:transparent;
  5190. }
  5191. #u15958_div {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:191px;
  5197. height:31px;
  5198. background:inherit;
  5199. background-color:rgba(242, 242, 242, 1);
  5200. border-radius:0px;
  5201. filter:drop-shadow(none);
  5202. transition:none;
  5203. font-size:14px;
  5204. color:#AAAAAA;
  5205. }
  5206. #u15958 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:142px;
  5210. top:735px;
  5211. width:191px;
  5212. height:31px;
  5213. display:flex;
  5214. transition:none;
  5215. transform-origin:50% 50%;
  5216. font-size:14px;
  5217. color:#AAAAAA;
  5218. }
  5219. #u15958 .text {
  5220. position:absolute;
  5221. align-self:flex-start;
  5222. padding:2px 2px 2px 2px;
  5223. box-sizing:border-box;
  5224. width:100%;
  5225. }
  5226. #u15958_div.disabled {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:191px;
  5232. height:31px;
  5233. background:inherit;
  5234. background-color:rgba(240, 240, 240, 1);
  5235. border-radius:0px;
  5236. filter:drop-shadow(none);
  5237. transition:none;
  5238. font-size:14px;
  5239. color:#AAAAAA;
  5240. }
  5241. #u15958.disabled {
  5242. }
  5243. .u15958_input_option {
  5244. font-size:14px;
  5245. }
  5246. #u15959_div {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:57px;
  5252. height:40px;
  5253. background:inherit;
  5254. background-color:rgba(255, 255, 255, 0);
  5255. border-left:0px;
  5256. border-top:0px;
  5257. border-right:0px;
  5258. border-radius:0px;
  5259. border-bottom-right-radius:0px;
  5260. border-bottom-left-radius:0px;
  5261. filter:drop-shadow(none);
  5262. transition:none;
  5263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5264. font-weight:400;
  5265. font-style:normal;
  5266. font-size:14px;
  5267. }
  5268. #u15959 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:366px;
  5272. top:692px;
  5273. width:57px;
  5274. height:40px;
  5275. display:flex;
  5276. transition:none;
  5277. transform-origin:50% 50%;
  5278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5279. font-weight:400;
  5280. font-style:normal;
  5281. font-size:14px;
  5282. }
  5283. #u15959 .text {
  5284. position:absolute;
  5285. align-self:center;
  5286. padding:0px 0px 0px 0px;
  5287. box-sizing:border-box;
  5288. width:100%;
  5289. }
  5290. #u15959_text {
  5291. border-width:0px;
  5292. white-space:nowrap;
  5293. text-transform:none;
  5294. }
  5295. #u15960 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:0px;
  5301. height:0px;
  5302. }
  5303. #u15961_div {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:200px;
  5309. height:40px;
  5310. background:inherit;
  5311. background-color:rgba(255, 255, 255, 1);
  5312. box-sizing:border-box;
  5313. border-width:1px;
  5314. border-style:solid;
  5315. border-color:rgba(215, 215, 215, 1);
  5316. border-radius:4px;
  5317. filter:drop-shadow(none);
  5318. transition:none;
  5319. font-size:14px;
  5320. }
  5321. #u15961 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:366px;
  5325. top:732px;
  5326. width:200px;
  5327. height:40px;
  5328. display:flex;
  5329. transition:none;
  5330. transform-origin:50% 50%;
  5331. font-size:14px;
  5332. }
  5333. #u15961 .text {
  5334. position:absolute;
  5335. align-self:center;
  5336. padding:2px 2px 2px 2px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u15961_text {
  5341. border-width:0px;
  5342. word-wrap:break-word;
  5343. text-transform:none;
  5344. visibility:hidden;
  5345. }
  5346. #u15962_input {
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:191px;
  5351. height:31px;
  5352. padding:2px 2px 2px 2px;
  5353. font-family:'ArialMT', 'Arial', sans-serif;
  5354. font-weight:400;
  5355. font-style:normal;
  5356. font-size:14px;
  5357. letter-spacing:normal;
  5358. color:#AAAAAA;
  5359. vertical-align:none;
  5360. text-align:left;
  5361. text-transform:none;
  5362. background-color:transparent;
  5363. border-color:transparent;
  5364. }
  5365. #u15962_input.disabled {
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:191px;
  5370. height:31px;
  5371. padding:2px 2px 2px 2px;
  5372. font-family:'ArialMT', 'Arial', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:14px;
  5376. letter-spacing:normal;
  5377. color:#AAAAAA;
  5378. vertical-align:none;
  5379. text-align:left;
  5380. text-transform:none;
  5381. background-color:transparent;
  5382. border-color:transparent;
  5383. }
  5384. #u15962_div {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:191px;
  5390. height:31px;
  5391. background:inherit;
  5392. background-color:rgba(255, 255, 255, 1);
  5393. border-radius:0px;
  5394. filter:drop-shadow(none);
  5395. transition:none;
  5396. font-size:14px;
  5397. color:#AAAAAA;
  5398. }
  5399. #u15962 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:372px;
  5403. top:735px;
  5404. width:191px;
  5405. height:31px;
  5406. display:flex;
  5407. transition:none;
  5408. transform-origin:50% 50%;
  5409. font-size:14px;
  5410. color:#AAAAAA;
  5411. }
  5412. #u15962 .text {
  5413. position:absolute;
  5414. align-self:flex-start;
  5415. padding:2px 2px 2px 2px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u15962_div.disabled {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:191px;
  5425. height:31px;
  5426. background:inherit;
  5427. background-color:rgba(240, 240, 240, 1);
  5428. border-radius:0px;
  5429. filter:drop-shadow(none);
  5430. transition:none;
  5431. font-size:14px;
  5432. color:#AAAAAA;
  5433. }
  5434. #u15962.disabled {
  5435. }
  5436. .u15962_input_option {
  5437. font-size:14px;
  5438. }
  5439. #u15963 label {
  5440. left:0px;
  5441. width:100%;
  5442. height:100%;
  5443. }
  5444. #u15963_img {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:3px;
  5449. width:12px;
  5450. height:12px;
  5451. }
  5452. #u15963 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:295px;
  5456. top:703px;
  5457. width:55px;
  5458. height:18px;
  5459. display:flex;
  5460. transition:none;
  5461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. }
  5465. #u15963 .text {
  5466. position:absolute;
  5467. align-self:center;
  5468. padding:0px 2px 0px 2px;
  5469. box-sizing:border-box;
  5470. }
  5471. #u15963_img.selected {
  5472. }
  5473. #u15963.selected {
  5474. }
  5475. #u15963_img.disabled {
  5476. }
  5477. #u15963.disabled {
  5478. }
  5479. #u15963_img.selected.error {
  5480. }
  5481. #u15963.selected.error {
  5482. }
  5483. #u15963_img.selected.hint {
  5484. }
  5485. #u15963.selected.hint {
  5486. }
  5487. #u15963_img.selected.error.hint {
  5488. }
  5489. #u15963.selected.error.hint {
  5490. }
  5491. #u15963_img.mouseOver.selected {
  5492. }
  5493. #u15963.mouseOver.selected {
  5494. }
  5495. #u15963_img.mouseOver.selected.error {
  5496. }
  5497. #u15963.mouseOver.selected.error {
  5498. }
  5499. #u15963_img.mouseOver.selected.hint {
  5500. }
  5501. #u15963.mouseOver.selected.hint {
  5502. }
  5503. #u15963_img.mouseOver.selected.error.hint {
  5504. }
  5505. #u15963.mouseOver.selected.error.hint {
  5506. }
  5507. #u15963_img.mouseDown.selected {
  5508. }
  5509. #u15963.mouseDown.selected {
  5510. }
  5511. #u15963_img.mouseDown.selected.error {
  5512. }
  5513. #u15963.mouseDown.selected.error {
  5514. }
  5515. #u15963_img.mouseDown.selected.hint {
  5516. }
  5517. #u15963.mouseDown.selected.hint {
  5518. }
  5519. #u15963_img.mouseDown.selected.error.hint {
  5520. }
  5521. #u15963.mouseDown.selected.error.hint {
  5522. }
  5523. #u15963_img.mouseOver.mouseDown.selected {
  5524. }
  5525. #u15963.mouseOver.mouseDown.selected {
  5526. }
  5527. #u15963_img.mouseOver.mouseDown.selected.error {
  5528. }
  5529. #u15963.mouseOver.mouseDown.selected.error {
  5530. }
  5531. #u15963_img.mouseOver.mouseDown.selected.hint {
  5532. }
  5533. #u15963.mouseOver.mouseDown.selected.hint {
  5534. }
  5535. #u15963_img.mouseOver.mouseDown.selected.error.hint {
  5536. }
  5537. #u15963.mouseOver.mouseDown.selected.error.hint {
  5538. }
  5539. #u15963_img.focused.selected {
  5540. }
  5541. #u15963.focused.selected {
  5542. }
  5543. #u15963_img.focused.selected.error {
  5544. }
  5545. #u15963.focused.selected.error {
  5546. }
  5547. #u15963_img.focused.selected.hint {
  5548. }
  5549. #u15963.focused.selected.hint {
  5550. }
  5551. #u15963_img.focused.selected.error.hint {
  5552. }
  5553. #u15963.focused.selected.error.hint {
  5554. }
  5555. #u15963_img.selected.disabled {
  5556. }
  5557. #u15963.selected.disabled {
  5558. }
  5559. #u15963_img.selected.hint.disabled {
  5560. }
  5561. #u15963.selected.hint.disabled {
  5562. }
  5563. #u15963_img.selected.error.disabled {
  5564. }
  5565. #u15963.selected.error.disabled {
  5566. }
  5567. #u15963_img.selected.error.hint.disabled {
  5568. }
  5569. #u15963.selected.error.hint.disabled {
  5570. }
  5571. #u15963_text {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:12px;
  5575. top:0px;
  5576. width:43px;
  5577. word-wrap:break-word;
  5578. text-transform:none;
  5579. }
  5580. #u15963_input {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:0px;
  5586. height:0px;
  5587. opacity:0;
  5588. }
  5589. #u15964_div {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:0px;
  5593. top:0px;
  5594. width:180px;
  5595. height:40px;
  5596. background:inherit;
  5597. background-color:rgba(24, 144, 255, 1);
  5598. border-radius:4px;
  5599. filter:drop-shadow(none);
  5600. transition:none;
  5601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:14px;
  5605. color:#FFFFFF;
  5606. }
  5607. #u15964 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:643px;
  5611. top:582px;
  5612. width:180px;
  5613. height:40px;
  5614. display:flex;
  5615. transition:none;
  5616. transform-origin:50% 50%;
  5617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5618. font-weight:400;
  5619. font-style:normal;
  5620. font-size:14px;
  5621. color:#FFFFFF;
  5622. }
  5623. #u15964 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:2px 2px 2px 2px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u15964_text {
  5631. border-width:0px;
  5632. word-wrap:break-word;
  5633. text-transform:none;
  5634. }
  5635. #u15965_div {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:0px;
  5640. width:180px;
  5641. height:40px;
  5642. background:inherit;
  5643. background-color:rgba(24, 144, 255, 1);
  5644. border-radius:4px;
  5645. filter:drop-shadow(none);
  5646. transition:none;
  5647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:14px;
  5651. color:#FFFFFF;
  5652. }
  5653. #u15965 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:643px;
  5657. top:642px;
  5658. width:180px;
  5659. height:40px;
  5660. display:flex;
  5661. transition:none;
  5662. transform-origin:50% 50%;
  5663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:14px;
  5667. color:#FFFFFF;
  5668. }
  5669. #u15965 .text {
  5670. position:absolute;
  5671. align-self:center;
  5672. padding:2px 2px 2px 2px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u15965_text {
  5677. border-width:0px;
  5678. word-wrap:break-word;
  5679. text-transform:none;
  5680. }
  5681. #u15966 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:0px;
  5685. top:0px;
  5686. width:0px;
  5687. height:0px;
  5688. }
  5689. #u15967_div {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:800px;
  5695. height:60px;
  5696. background:inherit;
  5697. background-color:rgba(255, 255, 255, 1);
  5698. box-sizing:border-box;
  5699. border-width:1px;
  5700. border-style:solid;
  5701. border-color:rgba(215, 215, 215, 1);
  5702. border-radius:0px;
  5703. filter:drop-shadow(none);
  5704. transition:none;
  5705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5706. font-weight:400;
  5707. font-style:normal;
  5708. font-size:14px;
  5709. color:#AAAAAA;
  5710. text-align:center;
  5711. line-height:30px;
  5712. }
  5713. #u15967 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:97px;
  5717. top:1202px;
  5718. width:800px;
  5719. height:60px;
  5720. display:flex;
  5721. transition:none;
  5722. transform-origin:50% 50%;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:14px;
  5727. color:#AAAAAA;
  5728. text-align:center;
  5729. line-height:30px;
  5730. }
  5731. #u15967 .text {
  5732. position:absolute;
  5733. align-self:center;
  5734. padding:5px 10px 5px 10px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u15967_text {
  5739. border-width:0px;
  5740. word-wrap:break-word;
  5741. text-transform:none;
  5742. visibility:hidden;
  5743. }
  5744. #u15968 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:777px;
  5748. top:1217px;
  5749. width:80px;
  5750. height:30px;
  5751. display:flex;
  5752. transition:none;
  5753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:14px;
  5757. color:#FFFFFF;
  5758. }
  5759. #u15968 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 2px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u15968_img {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:80px;
  5772. height:30px;
  5773. }
  5774. #u15968_text {
  5775. border-width:0px;
  5776. word-wrap:break-word;
  5777. text-transform:none;
  5778. }
  5779. #u15969_div {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:80px;
  5785. height:30px;
  5786. background:inherit;
  5787. background-color:rgba(255, 255, 255, 1);
  5788. box-sizing:border-box;
  5789. border-width:1px;
  5790. border-style:solid;
  5791. border-color:rgba(170, 170, 170, 1);
  5792. border-radius:4px;
  5793. filter:drop-shadow(none);
  5794. transition:none;
  5795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5796. font-weight:400;
  5797. font-style:normal;
  5798. font-size:14px;
  5799. }
  5800. #u15969 {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:687px;
  5804. top:1217px;
  5805. width:80px;
  5806. height:30px;
  5807. display:flex;
  5808. transition:none;
  5809. transform-origin:50% 50%;
  5810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:14px;
  5814. }
  5815. #u15969 .text {
  5816. position:absolute;
  5817. align-self:center;
  5818. padding:2px 2px 2px 2px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u15969_text {
  5823. border-width:0px;
  5824. word-wrap:break-word;
  5825. text-transform:none;
  5826. }
  5827. #u15970_div {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:0px;
  5831. top:0px;
  5832. width:525px;
  5833. height:20px;
  5834. background:inherit;
  5835. background-color:rgba(255, 255, 255, 0);
  5836. border-left:0px;
  5837. border-top:0px;
  5838. border-right:0px;
  5839. border-radius:0px;
  5840. border-bottom-right-radius:0px;
  5841. border-bottom-left-radius:0px;
  5842. filter:drop-shadow(none);
  5843. transition:none;
  5844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5845. font-weight:400;
  5846. font-style:normal;
  5847. font-size:14px;
  5848. color:#D9001B;
  5849. }
  5850. #u15970 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:332px;
  5854. top:1275px;
  5855. width:525px;
  5856. height:20px;
  5857. display:flex;
  5858. transition:none;
  5859. transform-origin:50% 50%;
  5860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5861. font-weight:400;
  5862. font-style:normal;
  5863. font-size:14px;
  5864. color:#D9001B;
  5865. }
  5866. #u15970 .text {
  5867. position:absolute;
  5868. align-self:center;
  5869. padding:0px 0px 0px 0px;
  5870. box-sizing:border-box;
  5871. width:100%;
  5872. }
  5873. #u15970_text {
  5874. border-width:0px;
  5875. white-space:nowrap;
  5876. text-transform:none;
  5877. }
  5878. #u15971 {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:0px;
  5884. height:0px;
  5885. }
  5886. #u15972_div {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:140px;
  5892. height:40px;
  5893. background:inherit;
  5894. background-color:rgba(255, 255, 255, 1);
  5895. box-sizing:border-box;
  5896. border-width:1px;
  5897. border-style:solid;
  5898. border-color:rgba(215, 215, 215, 1);
  5899. border-radius:4px;
  5900. filter:drop-shadow(none);
  5901. transition:none;
  5902. font-size:14px;
  5903. }
  5904. #u15972 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:136px;
  5908. top:209px;
  5909. width:140px;
  5910. height:40px;
  5911. display:flex;
  5912. transition:none;
  5913. transform-origin:50% 50%;
  5914. font-size:14px;
  5915. }
  5916. #u15972 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:2px 2px 2px 2px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u15972_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. visibility:hidden;
  5928. }
  5929. #u15973_input {
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:134px;
  5934. height:31px;
  5935. padding:2px 2px 2px 2px;
  5936. font-family:'ArialMT', 'Arial', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:14px;
  5940. letter-spacing:normal;
  5941. color:#AAAAAA;
  5942. vertical-align:none;
  5943. text-align:left;
  5944. text-transform:none;
  5945. background-color:transparent;
  5946. border-color:transparent;
  5947. }
  5948. #u15973_input.disabled {
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:134px;
  5953. height:31px;
  5954. padding:2px 2px 2px 2px;
  5955. font-family:'ArialMT', 'Arial', sans-serif;
  5956. font-weight:400;
  5957. font-style:normal;
  5958. font-size:14px;
  5959. letter-spacing:normal;
  5960. color:#AAAAAA;
  5961. vertical-align:none;
  5962. text-align:left;
  5963. text-transform:none;
  5964. background-color:transparent;
  5965. border-color:transparent;
  5966. }
  5967. #u15973_div {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:134px;
  5973. height:31px;
  5974. background:inherit;
  5975. background-color:rgba(255, 255, 255, 1);
  5976. border-radius:0px;
  5977. filter:drop-shadow(none);
  5978. transition:none;
  5979. font-size:14px;
  5980. color:#AAAAAA;
  5981. }
  5982. #u15973 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:140px;
  5986. top:212px;
  5987. width:134px;
  5988. height:31px;
  5989. display:flex;
  5990. transition:none;
  5991. transform-origin:50% 50%;
  5992. font-size:14px;
  5993. color:#AAAAAA;
  5994. }
  5995. #u15973 .text {
  5996. position:absolute;
  5997. align-self:flex-start;
  5998. padding:2px 2px 2px 2px;
  5999. box-sizing:border-box;
  6000. width:100%;
  6001. }
  6002. #u15973_div.disabled {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:0px;
  6006. top:0px;
  6007. width:134px;
  6008. height:31px;
  6009. background:inherit;
  6010. background-color:rgba(240, 240, 240, 1);
  6011. border-radius:0px;
  6012. filter:drop-shadow(none);
  6013. transition:none;
  6014. font-size:14px;
  6015. color:#AAAAAA;
  6016. }
  6017. #u15973.disabled {
  6018. }
  6019. .u15973_input_option {
  6020. font-size:14px;
  6021. }
  6022. #u15974 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:0px;
  6028. height:0px;
  6029. }
  6030. #u15975_div {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:120px;
  6036. height:40px;
  6037. background:inherit;
  6038. background-color:rgba(255, 255, 255, 1);
  6039. box-sizing:border-box;
  6040. border-width:1px;
  6041. border-style:solid;
  6042. border-color:rgba(215, 215, 215, 1);
  6043. border-radius:4px;
  6044. filter:drop-shadow(none);
  6045. transition:none;
  6046. font-size:14px;
  6047. }
  6048. #u15975 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:286px;
  6052. top:209px;
  6053. width:120px;
  6054. height:40px;
  6055. display:flex;
  6056. transition:none;
  6057. transform-origin:50% 50%;
  6058. font-size:14px;
  6059. }
  6060. #u15975 .text {
  6061. position:absolute;
  6062. align-self:center;
  6063. padding:2px 2px 2px 2px;
  6064. box-sizing:border-box;
  6065. width:100%;
  6066. }
  6067. #u15975_text {
  6068. border-width:0px;
  6069. word-wrap:break-word;
  6070. text-transform:none;
  6071. visibility:hidden;
  6072. }
  6073. #u15976_input {
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:115px;
  6078. height:31px;
  6079. padding:2px 2px 2px 2px;
  6080. font-family:'ArialMT', 'Arial', sans-serif;
  6081. font-weight:400;
  6082. font-style:normal;
  6083. font-size:14px;
  6084. letter-spacing:normal;
  6085. color:#AAAAAA;
  6086. vertical-align:none;
  6087. text-align:left;
  6088. text-transform:none;
  6089. background-color:transparent;
  6090. border-color:transparent;
  6091. }
  6092. #u15976_input.disabled {
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:115px;
  6097. height:31px;
  6098. padding:2px 2px 2px 2px;
  6099. font-family:'ArialMT', 'Arial', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:14px;
  6103. letter-spacing:normal;
  6104. color:#AAAAAA;
  6105. vertical-align:none;
  6106. text-align:left;
  6107. text-transform:none;
  6108. background-color:transparent;
  6109. border-color:transparent;
  6110. }
  6111. #u15976_div {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:115px;
  6117. height:31px;
  6118. background:inherit;
  6119. background-color:rgba(255, 255, 255, 1);
  6120. border-radius:0px;
  6121. filter:drop-shadow(none);
  6122. transition:none;
  6123. font-size:14px;
  6124. color:#AAAAAA;
  6125. }
  6126. #u15976 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:290px;
  6130. top:212px;
  6131. width:115px;
  6132. height:31px;
  6133. display:flex;
  6134. transition:none;
  6135. transform-origin:50% 50%;
  6136. font-size:14px;
  6137. color:#AAAAAA;
  6138. }
  6139. #u15976 .text {
  6140. position:absolute;
  6141. align-self:flex-start;
  6142. padding:2px 2px 2px 2px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u15976_div.disabled {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:115px;
  6152. height:31px;
  6153. background:inherit;
  6154. background-color:rgba(240, 240, 240, 1);
  6155. border-radius:0px;
  6156. filter:drop-shadow(none);
  6157. transition:none;
  6158. font-size:14px;
  6159. color:#AAAAAA;
  6160. }
  6161. #u15976.disabled {
  6162. }
  6163. .u15976_input_option {
  6164. font-size:14px;
  6165. }
  6166. #u15977 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:0px;
  6172. height:0px;
  6173. }
  6174. #u15978_div {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:120px;
  6180. height:40px;
  6181. background:inherit;
  6182. background-color:rgba(255, 255, 255, 1);
  6183. box-sizing:border-box;
  6184. border-width:1px;
  6185. border-style:solid;
  6186. border-color:rgba(215, 215, 215, 1);
  6187. border-radius:4px;
  6188. filter:drop-shadow(none);
  6189. transition:none;
  6190. font-size:14px;
  6191. }
  6192. #u15978 {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:416px;
  6196. top:209px;
  6197. width:120px;
  6198. height:40px;
  6199. display:flex;
  6200. transition:none;
  6201. transform-origin:50% 50%;
  6202. font-size:14px;
  6203. }
  6204. #u15978 .text {
  6205. position:absolute;
  6206. align-self:center;
  6207. padding:2px 2px 2px 2px;
  6208. box-sizing:border-box;
  6209. width:100%;
  6210. }
  6211. #u15978_text {
  6212. border-width:0px;
  6213. word-wrap:break-word;
  6214. text-transform:none;
  6215. visibility:hidden;
  6216. }
  6217. #u15979_input {
  6218. position:absolute;
  6219. left:0px;
  6220. top:0px;
  6221. width:115px;
  6222. height:31px;
  6223. padding:2px 2px 2px 2px;
  6224. font-family:'ArialMT', 'Arial', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:14px;
  6228. letter-spacing:normal;
  6229. color:#AAAAAA;
  6230. vertical-align:none;
  6231. text-align:left;
  6232. text-transform:none;
  6233. background-color:transparent;
  6234. border-color:transparent;
  6235. }
  6236. #u15979_input.disabled {
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:115px;
  6241. height:31px;
  6242. padding:2px 2px 2px 2px;
  6243. font-family:'ArialMT', 'Arial', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:14px;
  6247. letter-spacing:normal;
  6248. color:#AAAAAA;
  6249. vertical-align:none;
  6250. text-align:left;
  6251. text-transform:none;
  6252. background-color:transparent;
  6253. border-color:transparent;
  6254. }
  6255. #u15979_div {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:115px;
  6261. height:31px;
  6262. background:inherit;
  6263. background-color:rgba(255, 255, 255, 1);
  6264. border-radius:0px;
  6265. filter:drop-shadow(none);
  6266. transition:none;
  6267. font-size:14px;
  6268. color:#AAAAAA;
  6269. }
  6270. #u15979 {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:420px;
  6274. top:212px;
  6275. width:115px;
  6276. height:31px;
  6277. display:flex;
  6278. transition:none;
  6279. transform-origin:50% 50%;
  6280. font-size:14px;
  6281. color:#AAAAAA;
  6282. }
  6283. #u15979 .text {
  6284. position:absolute;
  6285. align-self:flex-start;
  6286. padding:2px 2px 2px 2px;
  6287. box-sizing:border-box;
  6288. width:100%;
  6289. }
  6290. #u15979_div.disabled {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:115px;
  6296. height:31px;
  6297. background:inherit;
  6298. background-color:rgba(240, 240, 240, 1);
  6299. border-radius:0px;
  6300. filter:drop-shadow(none);
  6301. transition:none;
  6302. font-size:14px;
  6303. color:#AAAAAA;
  6304. }
  6305. #u15979.disabled {
  6306. }
  6307. .u15979_input_option {
  6308. font-size:14px;
  6309. }
  6310. #u15980_div {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:36px;
  6316. height:40px;
  6317. background:inherit;
  6318. background-color:rgba(255, 255, 255, 0);
  6319. border-left:0px;
  6320. border-top:0px;
  6321. border-right:0px;
  6322. border-radius:0px;
  6323. border-bottom-right-radius:0px;
  6324. border-bottom-left-radius:0px;
  6325. filter:drop-shadow(none);
  6326. transition:none;
  6327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6328. font-weight:400;
  6329. font-style:normal;
  6330. font-size:14px;
  6331. }
  6332. #u15980 {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:136px;
  6336. top:424px;
  6337. width:36px;
  6338. height:40px;
  6339. display:flex;
  6340. transition:none;
  6341. transform-origin:50% 50%;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:14px;
  6346. }
  6347. #u15980 .text {
  6348. position:absolute;
  6349. align-self:center;
  6350. padding:0px 0px 0px 0px;
  6351. box-sizing:border-box;
  6352. width:100%;
  6353. }
  6354. #u15980_text {
  6355. border-width:0px;
  6356. white-space:nowrap;
  6357. text-transform:none;
  6358. }
  6359. #u15981 {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:0px;
  6365. height:0px;
  6366. }
  6367. #u15982_div {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:200px;
  6373. height:40px;
  6374. background:inherit;
  6375. background-color:rgba(255, 255, 255, 1);
  6376. box-sizing:border-box;
  6377. border-width:1px;
  6378. border-style:solid;
  6379. border-color:rgba(201, 201, 201, 1);
  6380. border-radius:4px;
  6381. filter:drop-shadow(none);
  6382. transition:none;
  6383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6384. font-weight:400;
  6385. font-style:normal;
  6386. font-size:14px;
  6387. text-align:right;
  6388. }
  6389. #u15982 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:366px;
  6393. top:463px;
  6394. width:200px;
  6395. height:40px;
  6396. display:flex;
  6397. transition:none;
  6398. transform-origin:50% 50%;
  6399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6400. font-weight:400;
  6401. font-style:normal;
  6402. font-size:14px;
  6403. text-align:right;
  6404. }
  6405. #u15982 .text {
  6406. position:absolute;
  6407. align-self:center;
  6408. padding:2px 8px 2px 8px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u15982_text {
  6413. border-width:0px;
  6414. word-wrap:break-word;
  6415. text-transform:none;
  6416. visibility:hidden;
  6417. }
  6418. #u15983_input {
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:161px;
  6423. height:33px;
  6424. padding:2px 2px 2px 2px;
  6425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6426. font-weight:400;
  6427. font-style:normal;
  6428. font-size:14px;
  6429. letter-spacing:normal;
  6430. color:#D7D7D7;
  6431. vertical-align:none;
  6432. text-align:left;
  6433. text-transform:none;
  6434. background-color:transparent;
  6435. border-color:transparent;
  6436. }
  6437. #u15983_input.hint {
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:161px;
  6442. height:33px;
  6443. padding:2px 2px 2px 2px;
  6444. font-family:"Microsoft YaHei", sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:14px;
  6448. letter-spacing:normal;
  6449. color:#AAAAAA;
  6450. vertical-align:none;
  6451. text-align:left;
  6452. text-transform:none;
  6453. background-color:transparent;
  6454. border-color:transparent;
  6455. }
  6456. #u15983_input.disabled {
  6457. position:absolute;
  6458. left:0px;
  6459. top:0px;
  6460. width:161px;
  6461. height:33px;
  6462. padding:2px 2px 2px 2px;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:14px;
  6467. letter-spacing:normal;
  6468. color:#D7D7D7;
  6469. vertical-align:none;
  6470. text-align:left;
  6471. text-transform:none;
  6472. background-color:transparent;
  6473. border-color:transparent;
  6474. }
  6475. #u15983_input.hint.disabled {
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:161px;
  6480. height:33px;
  6481. padding:2px 2px 2px 2px;
  6482. font-family:"Microsoft YaHei", sans-serif;
  6483. font-weight:400;
  6484. font-style:normal;
  6485. font-size:14px;
  6486. letter-spacing:normal;
  6487. color:#AAAAAA;
  6488. vertical-align:none;
  6489. text-align:left;
  6490. text-transform:none;
  6491. background-color:transparent;
  6492. border-color:transparent;
  6493. }
  6494. #u15983_div {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:161px;
  6500. height:33px;
  6501. background:inherit;
  6502. background-color:rgba(255, 255, 255, 0);
  6503. border-radius:0px;
  6504. filter:drop-shadow(none);
  6505. transition:none;
  6506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:14px;
  6510. color:#D7D7D7;
  6511. }
  6512. #u15983 {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:374px;
  6516. top:466px;
  6517. width:161px;
  6518. height:33px;
  6519. display:flex;
  6520. transition:none;
  6521. transform-origin:50% 50%;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:14px;
  6526. color:#D7D7D7;
  6527. }
  6528. #u15983 .text {
  6529. position:absolute;
  6530. align-self:center;
  6531. padding:2px 2px 2px 2px;
  6532. box-sizing:border-box;
  6533. width:100%;
  6534. }
  6535. #u15983_div.hint {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:161px;
  6541. height:33px;
  6542. background:inherit;
  6543. background-color:rgba(255, 255, 255, 0);
  6544. border-radius:0px;
  6545. filter:drop-shadow(none);
  6546. transition:none;
  6547. font-family:"Microsoft YaHei", sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:14px;
  6551. color:#D7D7D7;
  6552. }
  6553. #u15983.hint {
  6554. }
  6555. #u15983_div.disabled {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:161px;
  6561. height:33px;
  6562. background:inherit;
  6563. background-color:rgba(240, 240, 240, 1);
  6564. border-radius:0px;
  6565. filter:drop-shadow(none);
  6566. transition:none;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:14px;
  6571. color:#D7D7D7;
  6572. }
  6573. #u15983.disabled {
  6574. }
  6575. #u15983_div.hint.disabled {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:161px;
  6581. height:33px;
  6582. background:inherit;
  6583. background-color:rgba(240, 240, 240, 1);
  6584. border-radius:0px;
  6585. filter:drop-shadow(none);
  6586. transition:none;
  6587. font-family:"Microsoft YaHei", sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:14px;
  6591. color:#D7D7D7;
  6592. }
  6593. #u15983.hint.disabled {
  6594. }
  6595. #u15984_div {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:50px;
  6601. height:40px;
  6602. background:inherit;
  6603. background-color:rgba(255, 255, 255, 0);
  6604. border-left:0px;
  6605. border-top:0px;
  6606. border-right:0px;
  6607. border-radius:0px;
  6608. border-bottom-right-radius:0px;
  6609. border-bottom-left-radius:0px;
  6610. filter:drop-shadow(none);
  6611. transition:none;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:14px;
  6616. }
  6617. #u15984 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:366px;
  6621. top:424px;
  6622. width:50px;
  6623. height:40px;
  6624. display:flex;
  6625. transition:none;
  6626. transform-origin:50% 50%;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:14px;
  6631. }
  6632. #u15984 .text {
  6633. position:absolute;
  6634. align-self:center;
  6635. padding:0px 0px 0px 0px;
  6636. box-sizing:border-box;
  6637. width:100%;
  6638. }
  6639. #u15984_text {
  6640. border-width:0px;
  6641. white-space:nowrap;
  6642. text-transform:none;
  6643. }
  6644. #u15985 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:0px;
  6650. height:0px;
  6651. }
  6652. #u15986_div {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:200px;
  6658. height:40px;
  6659. background:inherit;
  6660. background-color:rgba(255, 255, 255, 1);
  6661. box-sizing:border-box;
  6662. border-width:1px;
  6663. border-style:solid;
  6664. border-color:rgba(201, 201, 201, 1);
  6665. border-radius:4px;
  6666. filter:drop-shadow(none);
  6667. transition:none;
  6668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6669. font-weight:400;
  6670. font-style:normal;
  6671. font-size:14px;
  6672. text-align:right;
  6673. }
  6674. #u15986 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:136px;
  6678. top:642px;
  6679. width:200px;
  6680. height:40px;
  6681. display:flex;
  6682. transition:none;
  6683. transform-origin:50% 50%;
  6684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6685. font-weight:400;
  6686. font-style:normal;
  6687. font-size:14px;
  6688. text-align:right;
  6689. }
  6690. #u15986 .text {
  6691. position:absolute;
  6692. align-self:center;
  6693. padding:2px 8px 2px 8px;
  6694. box-sizing:border-box;
  6695. width:100%;
  6696. }
  6697. #u15986_text {
  6698. border-width:0px;
  6699. word-wrap:break-word;
  6700. text-transform:none;
  6701. visibility:hidden;
  6702. }
  6703. #u15987_input {
  6704. position:absolute;
  6705. left:0px;
  6706. top:0px;
  6707. width:161px;
  6708. height:33px;
  6709. padding:2px 2px 2px 2px;
  6710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6711. font-weight:400;
  6712. font-style:normal;
  6713. font-size:14px;
  6714. letter-spacing:normal;
  6715. color:#D7D7D7;
  6716. vertical-align:none;
  6717. text-align:left;
  6718. text-transform:none;
  6719. background-color:transparent;
  6720. border-color:transparent;
  6721. }
  6722. #u15987_input.hint {
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:161px;
  6727. height:33px;
  6728. padding:2px 2px 2px 2px;
  6729. font-family:"Microsoft YaHei", sans-serif;
  6730. font-weight:400;
  6731. font-style:normal;
  6732. font-size:14px;
  6733. letter-spacing:normal;
  6734. color:#AAAAAA;
  6735. vertical-align:none;
  6736. text-align:left;
  6737. text-transform:none;
  6738. background-color:transparent;
  6739. border-color:transparent;
  6740. }
  6741. #u15987_input.disabled {
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:161px;
  6746. height:33px;
  6747. padding:2px 2px 2px 2px;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:14px;
  6752. letter-spacing:normal;
  6753. color:#D7D7D7;
  6754. vertical-align:none;
  6755. text-align:left;
  6756. text-transform:none;
  6757. background-color:transparent;
  6758. border-color:transparent;
  6759. }
  6760. #u15987_input.hint.disabled {
  6761. position:absolute;
  6762. left:0px;
  6763. top:0px;
  6764. width:161px;
  6765. height:33px;
  6766. padding:2px 2px 2px 2px;
  6767. font-family:"Microsoft YaHei", sans-serif;
  6768. font-weight:400;
  6769. font-style:normal;
  6770. font-size:14px;
  6771. letter-spacing:normal;
  6772. color:#AAAAAA;
  6773. vertical-align:none;
  6774. text-align:left;
  6775. text-transform:none;
  6776. background-color:transparent;
  6777. border-color:transparent;
  6778. }
  6779. #u15987_div {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:161px;
  6785. height:33px;
  6786. background:inherit;
  6787. background-color:rgba(255, 255, 255, 0);
  6788. border-radius:0px;
  6789. filter:drop-shadow(none);
  6790. transition:none;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:14px;
  6795. color:#D7D7D7;
  6796. }
  6797. #u15987 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:144px;
  6801. top:645px;
  6802. width:161px;
  6803. height:33px;
  6804. display:flex;
  6805. transition:none;
  6806. transform-origin:50% 50%;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:14px;
  6811. color:#D7D7D7;
  6812. }
  6813. #u15987 .text {
  6814. position:absolute;
  6815. align-self:center;
  6816. padding:2px 2px 2px 2px;
  6817. box-sizing:border-box;
  6818. width:100%;
  6819. }
  6820. #u15987_div.hint {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:0px;
  6824. top:0px;
  6825. width:161px;
  6826. height:33px;
  6827. background:inherit;
  6828. background-color:rgba(255, 255, 255, 0);
  6829. border-radius:0px;
  6830. filter:drop-shadow(none);
  6831. transition:none;
  6832. font-family:"Microsoft YaHei", sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:14px;
  6836. color:#D7D7D7;
  6837. }
  6838. #u15987.hint {
  6839. }
  6840. #u15987_div.disabled {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:0px;
  6844. top:0px;
  6845. width:161px;
  6846. height:33px;
  6847. background:inherit;
  6848. background-color:rgba(240, 240, 240, 1);
  6849. border-radius:0px;
  6850. filter:drop-shadow(none);
  6851. transition:none;
  6852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6853. font-weight:400;
  6854. font-style:normal;
  6855. font-size:14px;
  6856. color:#D7D7D7;
  6857. }
  6858. #u15987.disabled {
  6859. }
  6860. #u15987_div.hint.disabled {
  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(240, 240, 240, 1);
  6869. border-radius:0px;
  6870. filter:drop-shadow(none);
  6871. transition:none;
  6872. font-family:"Microsoft YaHei", sans-serif;
  6873. font-weight:400;
  6874. font-style:normal;
  6875. font-size:14px;
  6876. color:#D7D7D7;
  6877. }
  6878. #u15987.hint.disabled {
  6879. }
  6880. #u15988_div {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:78px;
  6886. height:40px;
  6887. background:inherit;
  6888. background-color:rgba(255, 255, 255, 0);
  6889. border-left:0px;
  6890. border-top:0px;
  6891. border-right:0px;
  6892. border-radius:0px;
  6893. border-bottom-right-radius:0px;
  6894. border-bottom-left-radius:0px;
  6895. filter:drop-shadow(none);
  6896. transition:none;
  6897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:14px;
  6901. }
  6902. #u15988 {
  6903. border-width:0px;
  6904. position:absolute;
  6905. left:136px;
  6906. top:603px;
  6907. width:78px;
  6908. height:40px;
  6909. display:flex;
  6910. transition:none;
  6911. transform-origin:50% 50%;
  6912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:14px;
  6916. }
  6917. #u15988 .text {
  6918. position:absolute;
  6919. align-self:center;
  6920. padding:0px 0px 0px 0px;
  6921. box-sizing:border-box;
  6922. width:100%;
  6923. }
  6924. #u15988_text {
  6925. border-width:0px;
  6926. white-space:nowrap;
  6927. text-transform:none;
  6928. }
  6929. #u15989_div {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:36px;
  6935. height:40px;
  6936. background:inherit;
  6937. background-color:rgba(255, 255, 255, 0);
  6938. border-left:0px;
  6939. border-top:0px;
  6940. border-right:0px;
  6941. border-radius:0px;
  6942. border-bottom-right-radius:0px;
  6943. border-bottom-left-radius:0px;
  6944. filter:drop-shadow(none);
  6945. transition:none;
  6946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6947. font-weight:400;
  6948. font-style:normal;
  6949. font-size:14px;
  6950. }
  6951. #u15989 {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:136px;
  6955. top:513px;
  6956. width:36px;
  6957. height:40px;
  6958. display:flex;
  6959. transition:none;
  6960. transform-origin:50% 50%;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:14px;
  6965. }
  6966. #u15989 .text {
  6967. position:absolute;
  6968. align-self:center;
  6969. padding:0px 0px 0px 0px;
  6970. box-sizing:border-box;
  6971. width:100%;
  6972. }
  6973. #u15989_text {
  6974. border-width:0px;
  6975. white-space:nowrap;
  6976. text-transform:none;
  6977. }
  6978. #u15990 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:0px;
  6984. height:0px;
  6985. }
  6986. #u15991_div {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:200px;
  6992. height:40px;
  6993. background:inherit;
  6994. background-color:rgba(255, 255, 255, 1);
  6995. box-sizing:border-box;
  6996. border-width:1px;
  6997. border-style:solid;
  6998. border-color:rgba(215, 215, 215, 1);
  6999. border-radius:4px;
  7000. filter:drop-shadow(none);
  7001. transition:none;
  7002. font-size:14px;
  7003. }
  7004. #u15991 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:136px;
  7008. top:553px;
  7009. width:200px;
  7010. height:40px;
  7011. display:flex;
  7012. transition:none;
  7013. transform-origin:50% 50%;
  7014. font-size:14px;
  7015. }
  7016. #u15991 .text {
  7017. position:absolute;
  7018. align-self:center;
  7019. padding:2px 2px 2px 2px;
  7020. box-sizing:border-box;
  7021. width:100%;
  7022. }
  7023. #u15991_text {
  7024. border-width:0px;
  7025. word-wrap:break-word;
  7026. text-transform:none;
  7027. visibility:hidden;
  7028. }
  7029. #u15992_input {
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:191px;
  7034. height:31px;
  7035. padding:2px 2px 2px 2px;
  7036. font-family:'ArialMT', 'Arial', sans-serif;
  7037. font-weight:400;
  7038. font-style:normal;
  7039. font-size:14px;
  7040. letter-spacing:normal;
  7041. color:#AAAAAA;
  7042. vertical-align:none;
  7043. text-align:left;
  7044. text-transform:none;
  7045. background-color:transparent;
  7046. border-color:transparent;
  7047. }
  7048. #u15992_input.disabled {
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:191px;
  7053. height:31px;
  7054. padding:2px 2px 2px 2px;
  7055. font-family:'ArialMT', 'Arial', sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. font-size:14px;
  7059. letter-spacing:normal;
  7060. color:#AAAAAA;
  7061. vertical-align:none;
  7062. text-align:left;
  7063. text-transform:none;
  7064. background-color:transparent;
  7065. border-color:transparent;
  7066. }
  7067. #u15992_div {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:191px;
  7073. height:31px;
  7074. background:inherit;
  7075. background-color:rgba(255, 255, 255, 1);
  7076. border-radius:0px;
  7077. filter:drop-shadow(none);
  7078. transition:none;
  7079. font-size:14px;
  7080. color:#AAAAAA;
  7081. }
  7082. #u15992 {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:142px;
  7086. top:556px;
  7087. width:191px;
  7088. height:31px;
  7089. display:flex;
  7090. transition:none;
  7091. transform-origin:50% 50%;
  7092. font-size:14px;
  7093. color:#AAAAAA;
  7094. }
  7095. #u15992 .text {
  7096. position:absolute;
  7097. align-self:flex-start;
  7098. padding:2px 2px 2px 2px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u15992_div.disabled {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:0px;
  7106. top:0px;
  7107. width:191px;
  7108. height:31px;
  7109. background:inherit;
  7110. background-color:rgba(240, 240, 240, 1);
  7111. border-radius:0px;
  7112. filter:drop-shadow(none);
  7113. transition:none;
  7114. font-size:14px;
  7115. color:#AAAAAA;
  7116. }
  7117. #u15992.disabled {
  7118. }
  7119. .u15992_input_option {
  7120. font-size:14px;
  7121. }
  7122. #u15993 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:0px;
  7126. top:0px;
  7127. width:0px;
  7128. height:0px;
  7129. }
  7130. #u15994_div {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:0px;
  7134. top:0px;
  7135. width:200px;
  7136. height:40px;
  7137. background:inherit;
  7138. background-color:rgba(255, 255, 255, 1);
  7139. box-sizing:border-box;
  7140. border-width:1px;
  7141. border-style:solid;
  7142. border-color:rgba(201, 201, 201, 1);
  7143. border-radius:4px;
  7144. filter:drop-shadow(none);
  7145. transition:none;
  7146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7147. font-weight:400;
  7148. font-style:normal;
  7149. font-size:14px;
  7150. text-align:right;
  7151. }
  7152. #u15994 {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:366px;
  7156. top:642px;
  7157. width:200px;
  7158. height:40px;
  7159. display:flex;
  7160. transition:none;
  7161. transform-origin:50% 50%;
  7162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7163. font-weight:400;
  7164. font-style:normal;
  7165. font-size:14px;
  7166. text-align:right;
  7167. }
  7168. #u15994 .text {
  7169. position:absolute;
  7170. align-self:center;
  7171. padding:2px 8px 2px 8px;
  7172. box-sizing:border-box;
  7173. width:100%;
  7174. }
  7175. #u15994_text {
  7176. border-width:0px;
  7177. word-wrap:break-word;
  7178. text-transform:none;
  7179. visibility:hidden;
  7180. }
  7181. #u15995_input {
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:161px;
  7186. height:33px;
  7187. padding:2px 2px 2px 2px;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:14px;
  7192. letter-spacing:normal;
  7193. color:#D7D7D7;
  7194. vertical-align:none;
  7195. text-align:left;
  7196. text-transform:none;
  7197. background-color:transparent;
  7198. border-color:transparent;
  7199. }
  7200. #u15995_input.hint {
  7201. position:absolute;
  7202. left:0px;
  7203. top:0px;
  7204. width:161px;
  7205. height:33px;
  7206. padding:2px 2px 2px 2px;
  7207. font-family:"Microsoft YaHei", sans-serif;
  7208. font-weight:400;
  7209. font-style:normal;
  7210. font-size:14px;
  7211. letter-spacing:normal;
  7212. color:#AAAAAA;
  7213. vertical-align:none;
  7214. text-align:left;
  7215. text-transform:none;
  7216. background-color:transparent;
  7217. border-color:transparent;
  7218. }
  7219. #u15995_input.disabled {
  7220. position:absolute;
  7221. left:0px;
  7222. top:0px;
  7223. width:161px;
  7224. height:33px;
  7225. padding:2px 2px 2px 2px;
  7226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7227. font-weight:400;
  7228. font-style:normal;
  7229. font-size:14px;
  7230. letter-spacing:normal;
  7231. color:#D7D7D7;
  7232. vertical-align:none;
  7233. text-align:left;
  7234. text-transform:none;
  7235. background-color:transparent;
  7236. border-color:transparent;
  7237. }
  7238. #u15995_input.hint.disabled {
  7239. position:absolute;
  7240. left:0px;
  7241. top:0px;
  7242. width:161px;
  7243. height:33px;
  7244. padding:2px 2px 2px 2px;
  7245. font-family:"Microsoft YaHei", sans-serif;
  7246. font-weight:400;
  7247. font-style:normal;
  7248. font-size:14px;
  7249. letter-spacing:normal;
  7250. color:#AAAAAA;
  7251. vertical-align:none;
  7252. text-align:left;
  7253. text-transform:none;
  7254. background-color:transparent;
  7255. border-color:transparent;
  7256. }
  7257. #u15995_div {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:161px;
  7263. height:33px;
  7264. background:inherit;
  7265. background-color:rgba(255, 255, 255, 0);
  7266. border-radius:0px;
  7267. filter:drop-shadow(none);
  7268. transition:none;
  7269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:14px;
  7273. color:#D7D7D7;
  7274. }
  7275. #u15995 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:374px;
  7279. top:645px;
  7280. width:161px;
  7281. height:33px;
  7282. display:flex;
  7283. transition:none;
  7284. transform-origin:50% 50%;
  7285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7286. font-weight:400;
  7287. font-style:normal;
  7288. font-size:14px;
  7289. color:#D7D7D7;
  7290. }
  7291. #u15995 .text {
  7292. position:absolute;
  7293. align-self:center;
  7294. padding:2px 2px 2px 2px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u15995_div.hint {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:0px;
  7302. top:0px;
  7303. width:161px;
  7304. height:33px;
  7305. background:inherit;
  7306. background-color:rgba(255, 255, 255, 0);
  7307. border-radius:0px;
  7308. filter:drop-shadow(none);
  7309. transition:none;
  7310. font-family:"Microsoft YaHei", sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:14px;
  7314. color:#D7D7D7;
  7315. }
  7316. #u15995.hint {
  7317. }
  7318. #u15995_div.disabled {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:0px;
  7322. top:0px;
  7323. width:161px;
  7324. height:33px;
  7325. background:inherit;
  7326. background-color:rgba(240, 240, 240, 1);
  7327. border-radius:0px;
  7328. filter:drop-shadow(none);
  7329. transition:none;
  7330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7331. font-weight:400;
  7332. font-style:normal;
  7333. font-size:14px;
  7334. color:#D7D7D7;
  7335. }
  7336. #u15995.disabled {
  7337. }
  7338. #u15995_div.hint.disabled {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:161px;
  7344. height:33px;
  7345. background:inherit;
  7346. background-color:rgba(240, 240, 240, 1);
  7347. border-radius:0px;
  7348. filter:drop-shadow(none);
  7349. transition:none;
  7350. font-family:"Microsoft YaHei", sans-serif;
  7351. font-weight:400;
  7352. font-style:normal;
  7353. font-size:14px;
  7354. color:#D7D7D7;
  7355. }
  7356. #u15995.hint.disabled {
  7357. }
  7358. #u15996_div {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:0px;
  7362. top:0px;
  7363. width:78px;
  7364. height:40px;
  7365. background:inherit;
  7366. background-color:rgba(255, 255, 255, 0);
  7367. border-left:0px;
  7368. border-top:0px;
  7369. border-right:0px;
  7370. border-radius:0px;
  7371. border-bottom-right-radius:0px;
  7372. border-bottom-left-radius:0px;
  7373. filter:drop-shadow(none);
  7374. transition:none;
  7375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7376. font-weight:400;
  7377. font-style:normal;
  7378. font-size:14px;
  7379. }
  7380. #u15996 {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:366px;
  7384. top:603px;
  7385. width:78px;
  7386. height:40px;
  7387. display:flex;
  7388. transition:none;
  7389. transform-origin:50% 50%;
  7390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7391. font-weight:400;
  7392. font-style:normal;
  7393. font-size:14px;
  7394. }
  7395. #u15996 .text {
  7396. position:absolute;
  7397. align-self:center;
  7398. padding:0px 0px 0px 0px;
  7399. box-sizing:border-box;
  7400. width:100%;
  7401. }
  7402. #u15996_text {
  7403. border-width:0px;
  7404. white-space:nowrap;
  7405. text-transform:none;
  7406. }
  7407. #u15997_div {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:0px;
  7411. top:0px;
  7412. width:64px;
  7413. height:40px;
  7414. background:inherit;
  7415. background-color:rgba(255, 255, 255, 0);
  7416. border-left:0px;
  7417. border-top:0px;
  7418. border-right:0px;
  7419. border-radius:0px;
  7420. border-bottom-right-radius:0px;
  7421. border-bottom-left-radius:0px;
  7422. filter:drop-shadow(none);
  7423. transition:none;
  7424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:14px;
  7428. }
  7429. #u15997 {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:136px;
  7433. top:339px;
  7434. width:64px;
  7435. height:40px;
  7436. display:flex;
  7437. transition:none;
  7438. transform-origin:50% 50%;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:14px;
  7443. }
  7444. #u15997 .text {
  7445. position:absolute;
  7446. align-self:center;
  7447. padding:0px 0px 0px 0px;
  7448. box-sizing:border-box;
  7449. width:100%;
  7450. }
  7451. #u15997_text {
  7452. border-width:0px;
  7453. white-space:nowrap;
  7454. text-transform:none;
  7455. }
  7456. #u15998 {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:0px;
  7462. height:0px;
  7463. }
  7464. #u15999_div {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:0px;
  7469. width:200px;
  7470. height:40px;
  7471. background:inherit;
  7472. background-color:rgba(255, 255, 255, 1);
  7473. box-sizing:border-box;
  7474. border-width:1px;
  7475. border-style:solid;
  7476. border-color:rgba(201, 201, 201, 1);
  7477. border-radius:4px;
  7478. filter:drop-shadow(none);
  7479. transition:none;
  7480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7481. font-weight:400;
  7482. font-style:normal;
  7483. font-size:14px;
  7484. text-align:right;
  7485. }
  7486. #u15999 {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:136px;
  7490. top:463px;
  7491. width:200px;
  7492. height:40px;
  7493. display:flex;
  7494. transition:none;
  7495. transform-origin:50% 50%;
  7496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:14px;
  7500. text-align:right;
  7501. }
  7502. #u15999 .text {
  7503. position:absolute;
  7504. align-self:center;
  7505. padding:2px 8px 2px 8px;
  7506. box-sizing:border-box;
  7507. width:100%;
  7508. }
  7509. #u15999_text {
  7510. border-width:0px;
  7511. word-wrap:break-word;
  7512. text-transform:none;
  7513. visibility:hidden;
  7514. }
  7515. #u16000_input {
  7516. position:absolute;
  7517. left:0px;
  7518. top:0px;
  7519. width:161px;
  7520. height:33px;
  7521. padding:2px 2px 2px 2px;
  7522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7523. font-weight:400;
  7524. font-style:normal;
  7525. font-size:14px;
  7526. letter-spacing:normal;
  7527. color:#D7D7D7;
  7528. vertical-align:none;
  7529. text-align:left;
  7530. text-transform:none;
  7531. background-color:transparent;
  7532. border-color:transparent;
  7533. }
  7534. #u16000_input.hint {
  7535. position:absolute;
  7536. left:0px;
  7537. top:0px;
  7538. width:161px;
  7539. height:33px;
  7540. padding:2px 2px 2px 2px;
  7541. font-family:"Microsoft YaHei", sans-serif;
  7542. font-weight:400;
  7543. font-style:normal;
  7544. font-size:14px;
  7545. letter-spacing:normal;
  7546. color:#AAAAAA;
  7547. vertical-align:none;
  7548. text-align:left;
  7549. text-transform:none;
  7550. background-color:transparent;
  7551. border-color:transparent;
  7552. }
  7553. #u16000_input.disabled {
  7554. position:absolute;
  7555. left:0px;
  7556. top:0px;
  7557. width:161px;
  7558. height:33px;
  7559. padding:2px 2px 2px 2px;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:14px;
  7564. letter-spacing:normal;
  7565. color:#D7D7D7;
  7566. vertical-align:none;
  7567. text-align:left;
  7568. text-transform:none;
  7569. background-color:transparent;
  7570. border-color:transparent;
  7571. }
  7572. #u16000_input.hint.disabled {
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:161px;
  7577. height:33px;
  7578. padding:2px 2px 2px 2px;
  7579. font-family:"Microsoft YaHei", sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:14px;
  7583. letter-spacing:normal;
  7584. color:#AAAAAA;
  7585. vertical-align:none;
  7586. text-align:left;
  7587. text-transform:none;
  7588. background-color:transparent;
  7589. border-color:transparent;
  7590. }
  7591. #u16000_div {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:0px;
  7595. top:0px;
  7596. width:161px;
  7597. height:33px;
  7598. background:inherit;
  7599. background-color:rgba(255, 255, 255, 0);
  7600. border-radius:0px;
  7601. filter:drop-shadow(none);
  7602. transition:none;
  7603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7604. font-weight:400;
  7605. font-style:normal;
  7606. font-size:14px;
  7607. color:#D7D7D7;
  7608. }
  7609. #u16000 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:144px;
  7613. top:466px;
  7614. width:161px;
  7615. height:33px;
  7616. display:flex;
  7617. transition:none;
  7618. transform-origin:50% 50%;
  7619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7620. font-weight:400;
  7621. font-style:normal;
  7622. font-size:14px;
  7623. color:#D7D7D7;
  7624. }
  7625. #u16000 .text {
  7626. position:absolute;
  7627. align-self:center;
  7628. padding:2px 2px 2px 2px;
  7629. box-sizing:border-box;
  7630. width:100%;
  7631. }
  7632. #u16000_div.hint {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:161px;
  7638. height:33px;
  7639. background:inherit;
  7640. background-color:rgba(255, 255, 255, 0);
  7641. border-radius:0px;
  7642. filter:drop-shadow(none);
  7643. transition:none;
  7644. font-family:"Microsoft YaHei", sans-serif;
  7645. font-weight:400;
  7646. font-style:normal;
  7647. font-size:14px;
  7648. color:#D7D7D7;
  7649. }
  7650. #u16000.hint {
  7651. }
  7652. #u16000_div.disabled {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:161px;
  7658. height:33px;
  7659. background:inherit;
  7660. background-color:rgba(240, 240, 240, 1);
  7661. border-radius:0px;
  7662. filter:drop-shadow(none);
  7663. transition:none;
  7664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7665. font-weight:400;
  7666. font-style:normal;
  7667. font-size:14px;
  7668. color:#D7D7D7;
  7669. }
  7670. #u16000.disabled {
  7671. }
  7672. #u16000_div.hint.disabled {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:0px;
  7676. top:0px;
  7677. width:161px;
  7678. height:33px;
  7679. background:inherit;
  7680. background-color:rgba(240, 240, 240, 1);
  7681. border-radius:0px;
  7682. filter:drop-shadow(none);
  7683. transition:none;
  7684. font-family:"Microsoft YaHei", sans-serif;
  7685. font-weight:400;
  7686. font-style:normal;
  7687. font-size:14px;
  7688. color:#D7D7D7;
  7689. }
  7690. #u16000.hint.disabled {
  7691. }
  7692. #u16001 {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:314px;
  7696. top:476px;
  7697. width:13px;
  7698. height:13px;
  7699. display:flex;
  7700. transition:none;
  7701. }
  7702. #u16001 .text {
  7703. position:absolute;
  7704. align-self:center;
  7705. padding:2px 2px 2px 2px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u16001_img {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:0px;
  7713. top:0px;
  7714. width:13px;
  7715. height:13px;
  7716. }
  7717. #u16001_text {
  7718. border-width:0px;
  7719. word-wrap:break-word;
  7720. text-transform:none;
  7721. visibility:hidden;
  7722. }
  7723. #u16002_div {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:0px;
  7727. top:0px;
  7728. width:64px;
  7729. height:40px;
  7730. background:inherit;
  7731. background-color:rgba(255, 255, 255, 0);
  7732. border-left:0px;
  7733. border-top:0px;
  7734. border-right:0px;
  7735. border-radius:0px;
  7736. border-bottom-right-radius:0px;
  7737. border-bottom-left-radius:0px;
  7738. filter:drop-shadow(none);
  7739. transition:none;
  7740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7741. font-weight:400;
  7742. font-style:normal;
  7743. font-size:14px;
  7744. }
  7745. #u16002 {
  7746. border-width:0px;
  7747. position:absolute;
  7748. left:366px;
  7749. top:513px;
  7750. width:64px;
  7751. height:40px;
  7752. display:flex;
  7753. transition:none;
  7754. transform-origin:50% 50%;
  7755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7756. font-weight:400;
  7757. font-style:normal;
  7758. font-size:14px;
  7759. }
  7760. #u16002 .text {
  7761. position:absolute;
  7762. align-self:center;
  7763. padding:0px 0px 0px 0px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u16002_text {
  7768. border-width:0px;
  7769. white-space:nowrap;
  7770. text-transform:none;
  7771. }
  7772. #u16003 {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:0px;
  7776. top:0px;
  7777. width:0px;
  7778. height:0px;
  7779. }
  7780. #u16004_div {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:200px;
  7786. height:40px;
  7787. background:inherit;
  7788. background-color:rgba(255, 255, 255, 1);
  7789. box-sizing:border-box;
  7790. border-width:1px;
  7791. border-style:solid;
  7792. border-color:rgba(215, 215, 215, 1);
  7793. border-radius:4px;
  7794. filter:drop-shadow(none);
  7795. transition:none;
  7796. font-size:14px;
  7797. }
  7798. #u16004 {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:366px;
  7802. top:553px;
  7803. width:200px;
  7804. height:40px;
  7805. display:flex;
  7806. transition:none;
  7807. transform-origin:50% 50%;
  7808. font-size:14px;
  7809. }
  7810. #u16004 .text {
  7811. position:absolute;
  7812. align-self:center;
  7813. padding:2px 2px 2px 2px;
  7814. box-sizing:border-box;
  7815. width:100%;
  7816. }
  7817. #u16004_text {
  7818. border-width:0px;
  7819. word-wrap:break-word;
  7820. text-transform:none;
  7821. visibility:hidden;
  7822. }
  7823. #u16005_input {
  7824. position:absolute;
  7825. left:0px;
  7826. top:0px;
  7827. width:191px;
  7828. height:31px;
  7829. padding:2px 2px 2px 2px;
  7830. font-family:'ArialMT', 'Arial', sans-serif;
  7831. font-weight:400;
  7832. font-style:normal;
  7833. font-size:14px;
  7834. letter-spacing:normal;
  7835. color:#AAAAAA;
  7836. vertical-align:none;
  7837. text-align:left;
  7838. text-transform:none;
  7839. background-color:transparent;
  7840. border-color:transparent;
  7841. }
  7842. #u16005_input.disabled {
  7843. position:absolute;
  7844. left:0px;
  7845. top:0px;
  7846. width:191px;
  7847. height:31px;
  7848. padding:2px 2px 2px 2px;
  7849. font-family:'ArialMT', 'Arial', sans-serif;
  7850. font-weight:400;
  7851. font-style:normal;
  7852. font-size:14px;
  7853. letter-spacing:normal;
  7854. color:#AAAAAA;
  7855. vertical-align:none;
  7856. text-align:left;
  7857. text-transform:none;
  7858. background-color:transparent;
  7859. border-color:transparent;
  7860. }
  7861. #u16005_div {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:0px;
  7865. top:0px;
  7866. width:191px;
  7867. height:31px;
  7868. background:inherit;
  7869. background-color:rgba(255, 255, 255, 1);
  7870. border-radius:0px;
  7871. filter:drop-shadow(none);
  7872. transition:none;
  7873. font-size:14px;
  7874. color:#AAAAAA;
  7875. }
  7876. #u16005 {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:372px;
  7880. top:556px;
  7881. width:191px;
  7882. height:31px;
  7883. display:flex;
  7884. transition:none;
  7885. transform-origin:50% 50%;
  7886. font-size:14px;
  7887. color:#AAAAAA;
  7888. }
  7889. #u16005 .text {
  7890. position:absolute;
  7891. align-self:flex-start;
  7892. padding:2px 2px 2px 2px;
  7893. box-sizing:border-box;
  7894. width:100%;
  7895. }
  7896. #u16005_div.disabled {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:0px;
  7900. top:0px;
  7901. width:191px;
  7902. height:31px;
  7903. background:inherit;
  7904. background-color:rgba(240, 240, 240, 1);
  7905. border-radius:0px;
  7906. filter:drop-shadow(none);
  7907. transition:none;
  7908. font-size:14px;
  7909. color:#AAAAAA;
  7910. }
  7911. #u16005.disabled {
  7912. }
  7913. .u16005_input_option {
  7914. font-size:14px;
  7915. }
  7916. #u16006 label {
  7917. left:0px;
  7918. width:100%;
  7919. height:100%;
  7920. }
  7921. #u16006_img {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:4px;
  7926. width:12px;
  7927. height:12px;
  7928. }
  7929. #u16006 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:144px;
  7933. top:389px;
  7934. width:100px;
  7935. height:20px;
  7936. display:flex;
  7937. transition:none;
  7938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7939. font-weight:400;
  7940. font-style:normal;
  7941. font-size:14px;
  7942. }
  7943. #u16006 .text {
  7944. position:absolute;
  7945. align-self:center;
  7946. padding:0px 2px 0px 2px;
  7947. box-sizing:border-box;
  7948. }
  7949. #u16006_img.selected {
  7950. }
  7951. #u16006.selected {
  7952. }
  7953. #u16006_img.disabled {
  7954. }
  7955. #u16006.disabled {
  7956. }
  7957. #u16006_img.selected.error {
  7958. }
  7959. #u16006.selected.error {
  7960. }
  7961. #u16006_img.selected.hint {
  7962. }
  7963. #u16006.selected.hint {
  7964. }
  7965. #u16006_img.selected.error.hint {
  7966. }
  7967. #u16006.selected.error.hint {
  7968. }
  7969. #u16006_img.mouseOver.selected {
  7970. }
  7971. #u16006.mouseOver.selected {
  7972. }
  7973. #u16006_img.mouseOver.selected.error {
  7974. }
  7975. #u16006.mouseOver.selected.error {
  7976. }
  7977. #u16006_img.mouseOver.selected.hint {
  7978. }
  7979. #u16006.mouseOver.selected.hint {
  7980. }
  7981. #u16006_img.mouseOver.selected.error.hint {
  7982. }
  7983. #u16006.mouseOver.selected.error.hint {
  7984. }
  7985. #u16006_img.mouseDown.selected {
  7986. }
  7987. #u16006.mouseDown.selected {
  7988. }
  7989. #u16006_img.mouseDown.selected.error {
  7990. }
  7991. #u16006.mouseDown.selected.error {
  7992. }
  7993. #u16006_img.mouseDown.selected.hint {
  7994. }
  7995. #u16006.mouseDown.selected.hint {
  7996. }
  7997. #u16006_img.mouseDown.selected.error.hint {
  7998. }
  7999. #u16006.mouseDown.selected.error.hint {
  8000. }
  8001. #u16006_img.mouseOver.mouseDown.selected {
  8002. }
  8003. #u16006.mouseOver.mouseDown.selected {
  8004. }
  8005. #u16006_img.mouseOver.mouseDown.selected.error {
  8006. }
  8007. #u16006.mouseOver.mouseDown.selected.error {
  8008. }
  8009. #u16006_img.mouseOver.mouseDown.selected.hint {
  8010. }
  8011. #u16006.mouseOver.mouseDown.selected.hint {
  8012. }
  8013. #u16006_img.mouseOver.mouseDown.selected.error.hint {
  8014. }
  8015. #u16006.mouseOver.mouseDown.selected.error.hint {
  8016. }
  8017. #u16006_img.focused.selected {
  8018. }
  8019. #u16006.focused.selected {
  8020. }
  8021. #u16006_img.focused.selected.error {
  8022. }
  8023. #u16006.focused.selected.error {
  8024. }
  8025. #u16006_img.focused.selected.hint {
  8026. }
  8027. #u16006.focused.selected.hint {
  8028. }
  8029. #u16006_img.focused.selected.error.hint {
  8030. }
  8031. #u16006.focused.selected.error.hint {
  8032. }
  8033. #u16006_img.selected.disabled {
  8034. }
  8035. #u16006.selected.disabled {
  8036. }
  8037. #u16006_img.selected.hint.disabled {
  8038. }
  8039. #u16006.selected.hint.disabled {
  8040. }
  8041. #u16006_img.selected.error.disabled {
  8042. }
  8043. #u16006.selected.error.disabled {
  8044. }
  8045. #u16006_img.selected.error.hint.disabled {
  8046. }
  8047. #u16006.selected.error.hint.disabled {
  8048. }
  8049. #u16006_text {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:12px;
  8053. top:0px;
  8054. width:88px;
  8055. word-wrap:break-word;
  8056. text-transform:none;
  8057. }
  8058. #u16006_input {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:0px;
  8062. top:0px;
  8063. width:0px;
  8064. height:0px;
  8065. opacity:0;
  8066. }
  8067. #u16007 label {
  8068. left:0px;
  8069. width:100%;
  8070. height:100%;
  8071. }
  8072. #u16007_img {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:0px;
  8076. top:4px;
  8077. width:12px;
  8078. height:12px;
  8079. }
  8080. #u16007 {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:366px;
  8084. top:389px;
  8085. width:100px;
  8086. height:20px;
  8087. display:flex;
  8088. transition:none;
  8089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8090. font-weight:400;
  8091. font-style:normal;
  8092. font-size:14px;
  8093. }
  8094. #u16007 .text {
  8095. position:absolute;
  8096. align-self:center;
  8097. padding:0px 2px 0px 2px;
  8098. box-sizing:border-box;
  8099. }
  8100. #u16007_img.selected {
  8101. }
  8102. #u16007.selected {
  8103. }
  8104. #u16007_img.disabled {
  8105. }
  8106. #u16007.disabled {
  8107. }
  8108. #u16007_img.selected.error {
  8109. }
  8110. #u16007.selected.error {
  8111. }
  8112. #u16007_img.selected.hint {
  8113. }
  8114. #u16007.selected.hint {
  8115. }
  8116. #u16007_img.selected.error.hint {
  8117. }
  8118. #u16007.selected.error.hint {
  8119. }
  8120. #u16007_img.mouseOver.selected {
  8121. }
  8122. #u16007.mouseOver.selected {
  8123. }
  8124. #u16007_img.mouseOver.selected.error {
  8125. }
  8126. #u16007.mouseOver.selected.error {
  8127. }
  8128. #u16007_img.mouseOver.selected.hint {
  8129. }
  8130. #u16007.mouseOver.selected.hint {
  8131. }
  8132. #u16007_img.mouseOver.selected.error.hint {
  8133. }
  8134. #u16007.mouseOver.selected.error.hint {
  8135. }
  8136. #u16007_img.mouseDown.selected {
  8137. }
  8138. #u16007.mouseDown.selected {
  8139. }
  8140. #u16007_img.mouseDown.selected.error {
  8141. }
  8142. #u16007.mouseDown.selected.error {
  8143. }
  8144. #u16007_img.mouseDown.selected.hint {
  8145. }
  8146. #u16007.mouseDown.selected.hint {
  8147. }
  8148. #u16007_img.mouseDown.selected.error.hint {
  8149. }
  8150. #u16007.mouseDown.selected.error.hint {
  8151. }
  8152. #u16007_img.mouseOver.mouseDown.selected {
  8153. }
  8154. #u16007.mouseOver.mouseDown.selected {
  8155. }
  8156. #u16007_img.mouseOver.mouseDown.selected.error {
  8157. }
  8158. #u16007.mouseOver.mouseDown.selected.error {
  8159. }
  8160. #u16007_img.mouseOver.mouseDown.selected.hint {
  8161. }
  8162. #u16007.mouseOver.mouseDown.selected.hint {
  8163. }
  8164. #u16007_img.mouseOver.mouseDown.selected.error.hint {
  8165. }
  8166. #u16007.mouseOver.mouseDown.selected.error.hint {
  8167. }
  8168. #u16007_img.focused.selected {
  8169. }
  8170. #u16007.focused.selected {
  8171. }
  8172. #u16007_img.focused.selected.error {
  8173. }
  8174. #u16007.focused.selected.error {
  8175. }
  8176. #u16007_img.focused.selected.hint {
  8177. }
  8178. #u16007.focused.selected.hint {
  8179. }
  8180. #u16007_img.focused.selected.error.hint {
  8181. }
  8182. #u16007.focused.selected.error.hint {
  8183. }
  8184. #u16007_img.selected.disabled {
  8185. }
  8186. #u16007.selected.disabled {
  8187. }
  8188. #u16007_img.selected.hint.disabled {
  8189. }
  8190. #u16007.selected.hint.disabled {
  8191. }
  8192. #u16007_img.selected.error.disabled {
  8193. }
  8194. #u16007.selected.error.disabled {
  8195. }
  8196. #u16007_img.selected.error.hint.disabled {
  8197. }
  8198. #u16007.selected.error.hint.disabled {
  8199. }
  8200. #u16007_text {
  8201. border-width:0px;
  8202. position:absolute;
  8203. left:12px;
  8204. top:0px;
  8205. width:88px;
  8206. word-wrap:break-word;
  8207. text-transform:none;
  8208. }
  8209. #u16007_input {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:0px;
  8213. top:0px;
  8214. width:0px;
  8215. height:0px;
  8216. opacity:0;
  8217. }
  8218. #u16008_div {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:0px;
  8222. top:0px;
  8223. width:298px;
  8224. height:85px;
  8225. background:inherit;
  8226. background-color:rgba(255, 255, 255, 0);
  8227. border-left:0px;
  8228. border-top:0px;
  8229. border-right:0px;
  8230. border-radius:0px;
  8231. border-bottom-right-radius:0px;
  8232. border-bottom-left-radius:0px;
  8233. filter:drop-shadow(none);
  8234. transition:none;
  8235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8236. font-weight:400;
  8237. font-style:normal;
  8238. font-size:12px;
  8239. color:#D9001B;
  8240. }
  8241. #u16008 {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:593px;
  8245. top:692px;
  8246. width:298px;
  8247. height:85px;
  8248. display:flex;
  8249. transition:none;
  8250. transform-origin:50% 50%;
  8251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8252. font-weight:400;
  8253. font-style:normal;
  8254. font-size:12px;
  8255. color:#D9001B;
  8256. }
  8257. #u16008 .text {
  8258. position:absolute;
  8259. align-self:center;
  8260. padding:0px 0px 0px 0px;
  8261. box-sizing:border-box;
  8262. width:100%;
  8263. }
  8264. #u16008_text {
  8265. border-width:0px;
  8266. word-wrap:break-word;
  8267. text-transform:none;
  8268. }
  8269. #u16009_div {
  8270. border-width:0px;
  8271. position:absolute;
  8272. left:0px;
  8273. top:0px;
  8274. width:121px;
  8275. height:17px;
  8276. background:inherit;
  8277. background-color:rgba(255, 255, 255, 0);
  8278. border-left:0px;
  8279. border-top:0px;
  8280. border-right:0px;
  8281. border-radius:0px;
  8282. border-bottom-right-radius:0px;
  8283. border-bottom-left-radius:0px;
  8284. filter:drop-shadow(none);
  8285. transition:none;
  8286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8287. font-weight:400;
  8288. font-style:normal;
  8289. font-size:12px;
  8290. color:#D9001B;
  8291. }
  8292. #u16009 {
  8293. border-width:0px;
  8294. position:absolute;
  8295. left:445px;
  8296. top:436px;
  8297. width:121px;
  8298. height:17px;
  8299. display:flex;
  8300. transition:none;
  8301. transform-origin:50% 50%;
  8302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8303. font-weight:400;
  8304. font-style:normal;
  8305. font-size:12px;
  8306. color:#D9001B;
  8307. }
  8308. #u16009 .text {
  8309. position:absolute;
  8310. align-self:center;
  8311. padding:0px 0px 0px 0px;
  8312. box-sizing:border-box;
  8313. width:100%;
  8314. }
  8315. #u16009_text {
  8316. border-width:0px;
  8317. white-space:nowrap;
  8318. text-transform:none;
  8319. }
  8320. #u16010_div {
  8321. border-width:0px;
  8322. position:absolute;
  8323. left:0px;
  8324. top:0px;
  8325. width:121px;
  8326. height:17px;
  8327. background:inherit;
  8328. background-color:rgba(255, 255, 255, 0);
  8329. border-left:0px;
  8330. border-top:0px;
  8331. border-right:0px;
  8332. border-radius:0px;
  8333. border-bottom-right-radius:0px;
  8334. border-bottom-left-radius:0px;
  8335. filter:drop-shadow(none);
  8336. transition:none;
  8337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8338. font-weight:400;
  8339. font-style:normal;
  8340. font-size:12px;
  8341. color:#D9001B;
  8342. }
  8343. #u16010 {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:215px;
  8347. top:595px;
  8348. width:121px;
  8349. height:17px;
  8350. display:flex;
  8351. transition:none;
  8352. transform-origin:50% 50%;
  8353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8354. font-weight:400;
  8355. font-style:normal;
  8356. font-size:12px;
  8357. color:#D9001B;
  8358. }
  8359. #u16010 .text {
  8360. position:absolute;
  8361. align-self:center;
  8362. padding:0px 0px 0px 0px;
  8363. box-sizing:border-box;
  8364. width:100%;
  8365. }
  8366. #u16010_text {
  8367. border-width:0px;
  8368. white-space:nowrap;
  8369. text-transform:none;
  8370. }
  8371. #u16011_div {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:0px;
  8375. top:0px;
  8376. width:800px;
  8377. height:60px;
  8378. background:inherit;
  8379. background-color:rgba(255, 255, 255, 1);
  8380. box-sizing:border-box;
  8381. border-width:1px;
  8382. border-style:solid;
  8383. border-color:rgba(242, 242, 242, 1);
  8384. border-radius:0px;
  8385. filter:drop-shadow(none);
  8386. transition:none;
  8387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8388. font-weight:400;
  8389. font-style:normal;
  8390. font-size:14px;
  8391. color:#AAAAAA;
  8392. text-align:center;
  8393. line-height:30px;
  8394. }
  8395. #u16011 {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:917px;
  8399. top:72px;
  8400. width:800px;
  8401. height:60px;
  8402. display:flex;
  8403. transition:none;
  8404. transform-origin:50% 50%;
  8405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8406. font-weight:400;
  8407. font-style:normal;
  8408. font-size:14px;
  8409. color:#AAAAAA;
  8410. text-align:center;
  8411. line-height:30px;
  8412. }
  8413. #u16011 .text {
  8414. position:absolute;
  8415. align-self:center;
  8416. padding:5px 10px 5px 10px;
  8417. box-sizing:border-box;
  8418. width:100%;
  8419. }
  8420. #u16011_text {
  8421. border-width:0px;
  8422. word-wrap:break-word;
  8423. text-transform:none;
  8424. visibility:hidden;
  8425. }
  8426. #u16012_div {
  8427. border-width:0px;
  8428. position:absolute;
  8429. left:0px;
  8430. top:0px;
  8431. width:47px;
  8432. height:35px;
  8433. background:inherit;
  8434. background-color:rgba(255, 255, 255, 0);
  8435. border-top:0px;
  8436. border-right:0px;
  8437. border-bottom:0px;
  8438. border-radius:0px;
  8439. border-top-left-radius:0px;
  8440. border-bottom-left-radius:0px;
  8441. filter:drop-shadow(none);
  8442. transition:none;
  8443. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8444. font-weight:500;
  8445. font-style:normal;
  8446. font-size:18px;
  8447. }
  8448. #u16012 {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:948px;
  8452. top:85px;
  8453. width:47px;
  8454. height:35px;
  8455. display:flex;
  8456. transition:none;
  8457. transform-origin:50% 50%;
  8458. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8459. font-weight:500;
  8460. font-style:normal;
  8461. font-size:18px;
  8462. }
  8463. #u16012 .text {
  8464. position:absolute;
  8465. align-self:center;
  8466. padding:5px 10px 5px 0px;
  8467. box-sizing:border-box;
  8468. width:100%;
  8469. }
  8470. #u16012_text {
  8471. border-width:0px;
  8472. white-space:nowrap;
  8473. text-transform:none;
  8474. }
  8475. #u16013_div {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:800px;
  8481. height:1069px;
  8482. background:inherit;
  8483. background-color:rgba(255, 255, 255, 1);
  8484. box-sizing:border-box;
  8485. border-width:1px;
  8486. border-style:solid;
  8487. border-color:rgba(242, 242, 242, 1);
  8488. border-radius:0px;
  8489. filter:drop-shadow(none);
  8490. transition:none;
  8491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8492. font-weight:400;
  8493. font-style:normal;
  8494. font-size:14px;
  8495. color:#AAAAAA;
  8496. text-align:center;
  8497. line-height:30px;
  8498. }
  8499. #u16013 {
  8500. border-width:0px;
  8501. position:absolute;
  8502. left:917px;
  8503. top:132px;
  8504. width:800px;
  8505. height:1069px;
  8506. display:flex;
  8507. transition:none;
  8508. transform-origin:50% 50%;
  8509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8510. font-weight:400;
  8511. font-style:normal;
  8512. font-size:14px;
  8513. color:#AAAAAA;
  8514. text-align:center;
  8515. line-height:30px;
  8516. }
  8517. #u16013 .text {
  8518. position:absolute;
  8519. align-self:center;
  8520. padding:5px 10px 5px 10px;
  8521. box-sizing:border-box;
  8522. width:100%;
  8523. }
  8524. #u16013_text {
  8525. border-width:0px;
  8526. word-wrap:break-word;
  8527. text-transform:none;
  8528. visibility:hidden;
  8529. }
  8530. #u16014_div {
  8531. border-width:0px;
  8532. position:absolute;
  8533. left:0px;
  8534. top:0px;
  8535. width:82px;
  8536. height:40px;
  8537. background:inherit;
  8538. background-color:rgba(255, 255, 255, 0);
  8539. border-left:0px;
  8540. border-top:0px;
  8541. border-right:0px;
  8542. border-radius:0px;
  8543. border-bottom-right-radius:0px;
  8544. border-bottom-left-radius:0px;
  8545. filter:drop-shadow(none);
  8546. transition:none;
  8547. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8548. font-weight:500;
  8549. font-style:normal;
  8550. font-size:18px;
  8551. }
  8552. #u16014 {
  8553. border-width:0px;
  8554. position:absolute;
  8555. left:956px;
  8556. top:158px;
  8557. width:82px;
  8558. height:40px;
  8559. display:flex;
  8560. transition:none;
  8561. transform-origin:50% 50%;
  8562. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8563. font-weight:500;
  8564. font-style:normal;
  8565. font-size:18px;
  8566. }
  8567. #u16014 .text {
  8568. position:absolute;
  8569. align-self:center;
  8570. padding:0px 0px 0px 0px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u16014_text {
  8575. border-width:0px;
  8576. white-space:nowrap;
  8577. text-transform:none;
  8578. }
  8579. #u16015_div {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:0px;
  8583. top:0px;
  8584. width:40px;
  8585. height:40px;
  8586. background:inherit;
  8587. background-color:rgba(255, 255, 255, 0);
  8588. border-top:0px;
  8589. border-right:0px;
  8590. border-bottom:0px;
  8591. border-radius:0px;
  8592. border-top-left-radius:0px;
  8593. border-bottom-left-radius:0px;
  8594. filter:drop-shadow(none);
  8595. transition:none;
  8596. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8597. font-weight:500;
  8598. font-style:normal;
  8599. font-size:24px;
  8600. text-align:center;
  8601. }
  8602. #u16015 {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:1677px;
  8606. top:72px;
  8607. width:40px;
  8608. height:40px;
  8609. display:flex;
  8610. transition:none;
  8611. transform-origin:50% 50%;
  8612. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8613. font-weight:500;
  8614. font-style:normal;
  8615. font-size:24px;
  8616. text-align:center;
  8617. }
  8618. #u16015 .text {
  8619. position:absolute;
  8620. align-self:center;
  8621. padding:5px 10px 5px 0px;
  8622. box-sizing:border-box;
  8623. width:100%;
  8624. }
  8625. #u16015_text {
  8626. border-width:0px;
  8627. word-wrap:break-word;
  8628. text-transform:none;
  8629. }
  8630. #u16016_div {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:0px;
  8634. top:0px;
  8635. width:64px;
  8636. height:40px;
  8637. background:inherit;
  8638. background-color:rgba(255, 255, 255, 0);
  8639. border-left:0px;
  8640. border-top:0px;
  8641. border-right:0px;
  8642. border-radius:0px;
  8643. border-bottom-right-radius:0px;
  8644. border-bottom-left-radius:0px;
  8645. filter:drop-shadow(none);
  8646. transition:none;
  8647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8648. font-weight:400;
  8649. font-style:normal;
  8650. font-size:14px;
  8651. }
  8652. #u16016 {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:1463px;
  8656. top:338px;
  8657. width:64px;
  8658. height:40px;
  8659. display:flex;
  8660. transition:none;
  8661. transform-origin:50% 50%;
  8662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8663. font-weight:400;
  8664. font-style:normal;
  8665. font-size:14px;
  8666. }
  8667. #u16016 .text {
  8668. position:absolute;
  8669. align-self:center;
  8670. padding:0px 0px 0px 0px;
  8671. box-sizing:border-box;
  8672. width:100%;
  8673. }
  8674. #u16016_text {
  8675. border-width:0px;
  8676. white-space:nowrap;
  8677. text-transform:none;
  8678. }
  8679. #u16017_div {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:0px;
  8683. top:0px;
  8684. width:180px;
  8685. height:180px;
  8686. background:inherit;
  8687. background-color:rgba(255, 255, 255, 1);
  8688. box-sizing:border-box;
  8689. border-width:1px;
  8690. border-style:solid;
  8691. border-color:rgba(201, 201, 201, 1);
  8692. border-radius:4px;
  8693. filter:drop-shadow(none);
  8694. transition:none;
  8695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8696. font-weight:400;
  8697. font-style:normal;
  8698. font-size:38px;
  8699. }
  8700. #u16017 {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:1463px;
  8704. top:378px;
  8705. width:180px;
  8706. height:180px;
  8707. display:flex;
  8708. transition:none;
  8709. transform-origin:50% 50%;
  8710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8711. font-weight:400;
  8712. font-style:normal;
  8713. font-size:38px;
  8714. }
  8715. #u16017 .text {
  8716. position:absolute;
  8717. align-self:center;
  8718. padding:2px 8px 2px 8px;
  8719. box-sizing:border-box;
  8720. width:100%;
  8721. }
  8722. #u16017_text {
  8723. border-width:0px;
  8724. word-wrap:break-word;
  8725. text-transform:none;
  8726. }
  8727. #u16018_div {
  8728. border-width:0px;
  8729. position:absolute;
  8730. left:0px;
  8731. top:0px;
  8732. width:73px;
  8733. height:40px;
  8734. background:inherit;
  8735. background-color:rgba(255, 255, 255, 0);
  8736. border-left:0px;
  8737. border-top:0px;
  8738. border-right:0px;
  8739. border-radius:0px;
  8740. border-bottom-right-radius:0px;
  8741. border-bottom-left-radius:0px;
  8742. filter:drop-shadow(none);
  8743. transition:none;
  8744. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8745. font-weight:500;
  8746. font-style:normal;
  8747. font-size:18px;
  8748. }
  8749. #u16018 {
  8750. border-width:0px;
  8751. position:absolute;
  8752. left:956px;
  8753. top:278px;
  8754. width:73px;
  8755. height:40px;
  8756. display:flex;
  8757. transition:none;
  8758. transform-origin:50% 50%;
  8759. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8760. font-weight:500;
  8761. font-style:normal;
  8762. font-size:18px;
  8763. }
  8764. #u16018 .text {
  8765. position:absolute;
  8766. align-self:center;
  8767. padding:0px 0px 0px 0px;
  8768. box-sizing:border-box;
  8769. width:100%;
  8770. }
  8771. #u16018_text {
  8772. border-width:0px;
  8773. white-space:nowrap;
  8774. text-transform:none;
  8775. }
  8776. #u16019 {
  8777. border-width:0px;
  8778. position:absolute;
  8779. left:0px;
  8780. top:0px;
  8781. width:0px;
  8782. height:0px;
  8783. }
  8784. #u16020_div {
  8785. border-width:0px;
  8786. position:absolute;
  8787. left:0px;
  8788. top:0px;
  8789. width:427px;
  8790. height:80px;
  8791. background:inherit;
  8792. background-color:rgba(255, 255, 255, 1);
  8793. box-sizing:border-box;
  8794. border-width:1px;
  8795. border-style:solid;
  8796. border-color:rgba(201, 201, 201, 1);
  8797. border-radius:4px;
  8798. filter:drop-shadow(none);
  8799. transition:none;
  8800. font-family:"Microsoft YaHei", sans-serif;
  8801. font-weight:400;
  8802. font-style:normal;
  8803. font-size:14px;
  8804. color:#CCCCCC;
  8805. text-align:left;
  8806. }
  8807. #u16020 {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:956px;
  8811. top:901px;
  8812. width:427px;
  8813. height:80px;
  8814. display:flex;
  8815. transition:none;
  8816. transform-origin:50% 50%;
  8817. font-family:"Microsoft YaHei", sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:14px;
  8821. color:#CCCCCC;
  8822. text-align:left;
  8823. }
  8824. #u16020 .text {
  8825. position:absolute;
  8826. align-self:center;
  8827. padding:2px 8px 2px 8px;
  8828. box-sizing:border-box;
  8829. width:100%;
  8830. }
  8831. #u16020_text {
  8832. border-width:0px;
  8833. word-wrap:break-word;
  8834. text-transform:none;
  8835. visibility:hidden;
  8836. }
  8837. #u16021_input {
  8838. position:absolute;
  8839. left:0px;
  8840. top:0px;
  8841. width:389px;
  8842. height:33px;
  8843. padding:2px 2px 2px 2px;
  8844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8845. font-weight:400;
  8846. font-style:normal;
  8847. font-size:14px;
  8848. letter-spacing:normal;
  8849. color:#D7D7D7;
  8850. vertical-align:none;
  8851. text-align:left;
  8852. text-transform:none;
  8853. background-color:transparent;
  8854. border-color:transparent;
  8855. }
  8856. #u16021_input.hint {
  8857. position:absolute;
  8858. left:0px;
  8859. top:0px;
  8860. width:389px;
  8861. height:33px;
  8862. padding:2px 2px 2px 2px;
  8863. font-family:"Microsoft YaHei", sans-serif;
  8864. font-weight:400;
  8865. font-style:normal;
  8866. font-size:14px;
  8867. letter-spacing:normal;
  8868. color:#AAAAAA;
  8869. vertical-align:none;
  8870. text-align:left;
  8871. text-transform:none;
  8872. background-color:transparent;
  8873. border-color:transparent;
  8874. }
  8875. #u16021_input.disabled {
  8876. position:absolute;
  8877. left:0px;
  8878. top:0px;
  8879. width:389px;
  8880. height:33px;
  8881. padding:2px 2px 2px 2px;
  8882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8883. font-weight:400;
  8884. font-style:normal;
  8885. font-size:14px;
  8886. letter-spacing:normal;
  8887. color:#D7D7D7;
  8888. vertical-align:none;
  8889. text-align:left;
  8890. text-transform:none;
  8891. background-color:transparent;
  8892. border-color:transparent;
  8893. }
  8894. #u16021_input.hint.disabled {
  8895. position:absolute;
  8896. left:0px;
  8897. top:0px;
  8898. width:389px;
  8899. height:33px;
  8900. padding:2px 2px 2px 2px;
  8901. font-family:"Microsoft YaHei", sans-serif;
  8902. font-weight:400;
  8903. font-style:normal;
  8904. font-size:14px;
  8905. letter-spacing:normal;
  8906. color:#AAAAAA;
  8907. vertical-align:none;
  8908. text-align:left;
  8909. text-transform:none;
  8910. background-color:transparent;
  8911. border-color:transparent;
  8912. }
  8913. #u16021_div {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:0px;
  8917. top:0px;
  8918. width:389px;
  8919. height:33px;
  8920. background:inherit;
  8921. background-color:rgba(255, 255, 255, 0);
  8922. border-radius:0px;
  8923. filter:drop-shadow(none);
  8924. transition:none;
  8925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8926. font-weight:400;
  8927. font-style:normal;
  8928. font-size:14px;
  8929. color:#D7D7D7;
  8930. }
  8931. #u16021 {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:973px;
  8935. top:904px;
  8936. width:389px;
  8937. height:33px;
  8938. display:flex;
  8939. transition:none;
  8940. transform-origin:50% 50%;
  8941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8942. font-weight:400;
  8943. font-style:normal;
  8944. font-size:14px;
  8945. color:#D7D7D7;
  8946. }
  8947. #u16021 .text {
  8948. position:absolute;
  8949. align-self:center;
  8950. padding:2px 2px 2px 2px;
  8951. box-sizing:border-box;
  8952. width:100%;
  8953. }
  8954. #u16021_div.hint {
  8955. border-width:0px;
  8956. position:absolute;
  8957. left:0px;
  8958. top:0px;
  8959. width:389px;
  8960. height:33px;
  8961. background:inherit;
  8962. background-color:rgba(255, 255, 255, 0);
  8963. border-radius:0px;
  8964. filter:drop-shadow(none);
  8965. transition:none;
  8966. font-family:"Microsoft YaHei", sans-serif;
  8967. font-weight:400;
  8968. font-style:normal;
  8969. font-size:14px;
  8970. color:#D7D7D7;
  8971. }
  8972. #u16021.hint {
  8973. }
  8974. #u16021_div.disabled {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:0px;
  8978. top:0px;
  8979. width:389px;
  8980. height:33px;
  8981. background:inherit;
  8982. background-color:rgba(240, 240, 240, 1);
  8983. border-radius:0px;
  8984. filter:drop-shadow(none);
  8985. transition:none;
  8986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8987. font-weight:400;
  8988. font-style:normal;
  8989. font-size:14px;
  8990. color:#D7D7D7;
  8991. }
  8992. #u16021.disabled {
  8993. }
  8994. #u16021_div.hint.disabled {
  8995. border-width:0px;
  8996. position:absolute;
  8997. left:0px;
  8998. top:0px;
  8999. width:389px;
  9000. height:33px;
  9001. background:inherit;
  9002. background-color:rgba(240, 240, 240, 1);
  9003. border-radius:0px;
  9004. filter:drop-shadow(none);
  9005. transition:none;
  9006. font-family:"Microsoft YaHei", sans-serif;
  9007. font-weight:400;
  9008. font-style:normal;
  9009. font-size:14px;
  9010. color:#D7D7D7;
  9011. }
  9012. #u16021.hint.disabled {
  9013. }
  9014. #u16022_div {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:0px;
  9018. top:0px;
  9019. width:71px;
  9020. height:40px;
  9021. background:inherit;
  9022. background-color:rgba(255, 255, 255, 0);
  9023. border-left:0px;
  9024. border-top:0px;
  9025. border-right:0px;
  9026. border-radius:0px;
  9027. border-bottom-right-radius:0px;
  9028. border-bottom-left-radius:0px;
  9029. filter:drop-shadow(none);
  9030. transition:none;
  9031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9032. font-weight:400;
  9033. font-style:normal;
  9034. font-size:14px;
  9035. }
  9036. #u16022 {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:956px;
  9040. top:861px;
  9041. width:71px;
  9042. height:40px;
  9043. display:flex;
  9044. transition:none;
  9045. transform-origin:50% 50%;
  9046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9047. font-weight:400;
  9048. font-style:normal;
  9049. font-size:14px;
  9050. }
  9051. #u16022 .text {
  9052. position:absolute;
  9053. align-self:center;
  9054. padding:0px 0px 0px 0px;
  9055. box-sizing:border-box;
  9056. width:100%;
  9057. }
  9058. #u16022_text {
  9059. border-width:0px;
  9060. white-space:nowrap;
  9061. text-transform:none;
  9062. }
  9063. #u16023 {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:0px;
  9069. height:0px;
  9070. }
  9071. #u16024_div {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:0px;
  9075. top:0px;
  9076. width:800px;
  9077. height:60px;
  9078. background:inherit;
  9079. background-color:rgba(255, 255, 255, 1);
  9080. box-sizing:border-box;
  9081. border-width:1px;
  9082. border-style:solid;
  9083. border-color:rgba(215, 215, 215, 1);
  9084. border-radius:0px;
  9085. filter:drop-shadow(none);
  9086. transition:none;
  9087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9088. font-weight:400;
  9089. font-style:normal;
  9090. font-size:14px;
  9091. color:#AAAAAA;
  9092. text-align:center;
  9093. line-height:30px;
  9094. }
  9095. #u16024 {
  9096. border-width:0px;
  9097. position:absolute;
  9098. left:917px;
  9099. top:1141px;
  9100. width:800px;
  9101. height:60px;
  9102. display:flex;
  9103. transition:none;
  9104. transform-origin:50% 50%;
  9105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9106. font-weight:400;
  9107. font-style:normal;
  9108. font-size:14px;
  9109. color:#AAAAAA;
  9110. text-align:center;
  9111. line-height:30px;
  9112. }
  9113. #u16024 .text {
  9114. position:absolute;
  9115. align-self:center;
  9116. padding:5px 10px 5px 10px;
  9117. box-sizing:border-box;
  9118. width:100%;
  9119. }
  9120. #u16024_text {
  9121. border-width:0px;
  9122. word-wrap:break-word;
  9123. text-transform:none;
  9124. visibility:hidden;
  9125. }
  9126. #u16025 {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:1597px;
  9130. top:1156px;
  9131. width:80px;
  9132. height:30px;
  9133. display:flex;
  9134. transition:none;
  9135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9136. font-weight:400;
  9137. font-style:normal;
  9138. font-size:14px;
  9139. color:#FFFFFF;
  9140. }
  9141. #u16025 .text {
  9142. position:absolute;
  9143. align-self:center;
  9144. padding:2px 2px 2px 2px;
  9145. box-sizing:border-box;
  9146. width:100%;
  9147. }
  9148. #u16025_img {
  9149. border-width:0px;
  9150. position:absolute;
  9151. left:0px;
  9152. top:0px;
  9153. width:80px;
  9154. height:30px;
  9155. }
  9156. #u16025_text {
  9157. border-width:0px;
  9158. word-wrap:break-word;
  9159. text-transform:none;
  9160. }
  9161. #u16026_div {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:0px;
  9165. top:0px;
  9166. width:80px;
  9167. height:30px;
  9168. background:inherit;
  9169. background-color:rgba(255, 255, 255, 1);
  9170. box-sizing:border-box;
  9171. border-width:1px;
  9172. border-style:solid;
  9173. border-color:rgba(170, 170, 170, 1);
  9174. border-radius:4px;
  9175. filter:drop-shadow(none);
  9176. transition:none;
  9177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9178. font-weight:400;
  9179. font-style:normal;
  9180. font-size:14px;
  9181. }
  9182. #u16026 {
  9183. border-width:0px;
  9184. position:absolute;
  9185. left:1507px;
  9186. top:1156px;
  9187. width:80px;
  9188. height:30px;
  9189. display:flex;
  9190. transition:none;
  9191. transform-origin:50% 50%;
  9192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9193. font-weight:400;
  9194. font-style:normal;
  9195. font-size:14px;
  9196. }
  9197. #u16026 .text {
  9198. position:absolute;
  9199. align-self:center;
  9200. padding:2px 2px 2px 2px;
  9201. box-sizing:border-box;
  9202. width:100%;
  9203. }
  9204. #u16026_text {
  9205. border-width:0px;
  9206. word-wrap:break-word;
  9207. text-transform:none;
  9208. }
  9209. #u16027_div {
  9210. border-width:0px;
  9211. position:absolute;
  9212. left:0px;
  9213. top:0px;
  9214. width:525px;
  9215. height:20px;
  9216. background:inherit;
  9217. background-color:rgba(255, 255, 255, 0);
  9218. border-left:0px;
  9219. border-top:0px;
  9220. border-right:0px;
  9221. border-radius:0px;
  9222. border-bottom-right-radius:0px;
  9223. border-bottom-left-radius:0px;
  9224. filter:drop-shadow(none);
  9225. transition:none;
  9226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9227. font-weight:400;
  9228. font-style:normal;
  9229. font-size:14px;
  9230. color:#D9001B;
  9231. }
  9232. #u16027 {
  9233. border-width:0px;
  9234. position:absolute;
  9235. left:1192px;
  9236. top:1209px;
  9237. width:525px;
  9238. height:20px;
  9239. display:flex;
  9240. transition:none;
  9241. transform-origin:50% 50%;
  9242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9243. font-weight:400;
  9244. font-style:normal;
  9245. font-size:14px;
  9246. color:#D9001B;
  9247. }
  9248. #u16027 .text {
  9249. position:absolute;
  9250. align-self:center;
  9251. padding:0px 0px 0px 0px;
  9252. box-sizing:border-box;
  9253. width:100%;
  9254. }
  9255. #u16027_text {
  9256. border-width:0px;
  9257. white-space:nowrap;
  9258. text-transform:none;
  9259. }
  9260. #u16028 {
  9261. border-width:0px;
  9262. position:absolute;
  9263. left:0px;
  9264. top:0px;
  9265. width:0px;
  9266. height:0px;
  9267. }
  9268. #u16029_div {
  9269. border-width:0px;
  9270. position:absolute;
  9271. left:0px;
  9272. top:0px;
  9273. width:140px;
  9274. height:40px;
  9275. background:inherit;
  9276. background-color:rgba(255, 255, 255, 1);
  9277. box-sizing:border-box;
  9278. border-width:1px;
  9279. border-style:solid;
  9280. border-color:rgba(215, 215, 215, 1);
  9281. border-radius:4px;
  9282. filter:drop-shadow(none);
  9283. transition:none;
  9284. font-size:14px;
  9285. }
  9286. #u16029 {
  9287. border-width:0px;
  9288. position:absolute;
  9289. left:956px;
  9290. top:208px;
  9291. width:140px;
  9292. height:40px;
  9293. display:flex;
  9294. transition:none;
  9295. transform-origin:50% 50%;
  9296. font-size:14px;
  9297. }
  9298. #u16029 .text {
  9299. position:absolute;
  9300. align-self:center;
  9301. padding:2px 2px 2px 2px;
  9302. box-sizing:border-box;
  9303. width:100%;
  9304. }
  9305. #u16029_text {
  9306. border-width:0px;
  9307. word-wrap:break-word;
  9308. text-transform:none;
  9309. visibility:hidden;
  9310. }
  9311. #u16030_input {
  9312. position:absolute;
  9313. left:0px;
  9314. top:0px;
  9315. width:134px;
  9316. height:31px;
  9317. padding:2px 2px 2px 2px;
  9318. font-family:'ArialMT', 'Arial', sans-serif;
  9319. font-weight:400;
  9320. font-style:normal;
  9321. font-size:14px;
  9322. letter-spacing:normal;
  9323. color:#AAAAAA;
  9324. vertical-align:none;
  9325. text-align:left;
  9326. text-transform:none;
  9327. background-color:transparent;
  9328. border-color:transparent;
  9329. }
  9330. #u16030_input.disabled {
  9331. position:absolute;
  9332. left:0px;
  9333. top:0px;
  9334. width:134px;
  9335. height:31px;
  9336. padding:2px 2px 2px 2px;
  9337. font-family:'ArialMT', 'Arial', sans-serif;
  9338. font-weight:400;
  9339. font-style:normal;
  9340. font-size:14px;
  9341. letter-spacing:normal;
  9342. color:#AAAAAA;
  9343. vertical-align:none;
  9344. text-align:left;
  9345. text-transform:none;
  9346. background-color:transparent;
  9347. border-color:transparent;
  9348. }
  9349. #u16030_div {
  9350. border-width:0px;
  9351. position:absolute;
  9352. left:0px;
  9353. top:0px;
  9354. width:134px;
  9355. height:31px;
  9356. background:inherit;
  9357. background-color:rgba(255, 255, 255, 1);
  9358. border-radius:0px;
  9359. filter:drop-shadow(none);
  9360. transition:none;
  9361. font-size:14px;
  9362. color:#AAAAAA;
  9363. }
  9364. #u16030 {
  9365. border-width:0px;
  9366. position:absolute;
  9367. left:960px;
  9368. top:211px;
  9369. width:134px;
  9370. height:31px;
  9371. display:flex;
  9372. transition:none;
  9373. transform-origin:50% 50%;
  9374. font-size:14px;
  9375. color:#AAAAAA;
  9376. }
  9377. #u16030 .text {
  9378. position:absolute;
  9379. align-self:flex-start;
  9380. padding:2px 2px 2px 2px;
  9381. box-sizing:border-box;
  9382. width:100%;
  9383. }
  9384. #u16030_div.disabled {
  9385. border-width:0px;
  9386. position:absolute;
  9387. left:0px;
  9388. top:0px;
  9389. width:134px;
  9390. height:31px;
  9391. background:inherit;
  9392. background-color:rgba(240, 240, 240, 1);
  9393. border-radius:0px;
  9394. filter:drop-shadow(none);
  9395. transition:none;
  9396. font-size:14px;
  9397. color:#AAAAAA;
  9398. }
  9399. #u16030.disabled {
  9400. }
  9401. .u16030_input_option {
  9402. font-size:14px;
  9403. }
  9404. #u16031_div {
  9405. border-width:0px;
  9406. position:absolute;
  9407. left:0px;
  9408. top:0px;
  9409. width:64px;
  9410. height:40px;
  9411. background:inherit;
  9412. background-color:rgba(255, 255, 255, 0);
  9413. border-left:0px;
  9414. border-top:0px;
  9415. border-right:0px;
  9416. border-radius:0px;
  9417. border-bottom-right-radius:0px;
  9418. border-bottom-left-radius:0px;
  9419. filter:drop-shadow(none);
  9420. transition:none;
  9421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9422. font-weight:400;
  9423. font-style:normal;
  9424. font-size:14px;
  9425. }
  9426. #u16031 {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:956px;
  9430. top:413px;
  9431. width:64px;
  9432. height:40px;
  9433. display:flex;
  9434. transition:none;
  9435. transform-origin:50% 50%;
  9436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9437. font-weight:400;
  9438. font-style:normal;
  9439. font-size:14px;
  9440. }
  9441. #u16031 .text {
  9442. position:absolute;
  9443. align-self:center;
  9444. padding:0px 0px 0px 0px;
  9445. box-sizing:border-box;
  9446. width:100%;
  9447. }
  9448. #u16031_text {
  9449. border-width:0px;
  9450. white-space:nowrap;
  9451. text-transform:none;
  9452. }
  9453. #u16032 {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:0px;
  9459. height:0px;
  9460. }
  9461. #u16033_div {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:0px;
  9465. top:0px;
  9466. width:200px;
  9467. height:40px;
  9468. background:inherit;
  9469. background-color:rgba(255, 255, 255, 1);
  9470. box-sizing:border-box;
  9471. border-width:1px;
  9472. border-style:solid;
  9473. border-color:rgba(201, 201, 201, 1);
  9474. border-radius:4px;
  9475. filter:drop-shadow(none);
  9476. transition:none;
  9477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9478. font-weight:400;
  9479. font-style:normal;
  9480. font-size:14px;
  9481. text-align:right;
  9482. }
  9483. #u16033 {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:1186px;
  9487. top:452px;
  9488. width:200px;
  9489. height:40px;
  9490. display:flex;
  9491. transition:none;
  9492. transform-origin:50% 50%;
  9493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9494. font-weight:400;
  9495. font-style:normal;
  9496. font-size:14px;
  9497. text-align:right;
  9498. }
  9499. #u16033 .text {
  9500. position:absolute;
  9501. align-self:center;
  9502. padding:2px 8px 2px 8px;
  9503. box-sizing:border-box;
  9504. width:100%;
  9505. }
  9506. #u16033_text {
  9507. border-width:0px;
  9508. word-wrap:break-word;
  9509. text-transform:none;
  9510. visibility:hidden;
  9511. }
  9512. #u16034_input {
  9513. position:absolute;
  9514. left:0px;
  9515. top:0px;
  9516. width:161px;
  9517. height:33px;
  9518. padding:2px 2px 2px 2px;
  9519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9520. font-weight:400;
  9521. font-style:normal;
  9522. font-size:14px;
  9523. letter-spacing:normal;
  9524. color:#D7D7D7;
  9525. vertical-align:none;
  9526. text-align:left;
  9527. text-transform:none;
  9528. background-color:transparent;
  9529. border-color:transparent;
  9530. }
  9531. #u16034_input.hint {
  9532. position:absolute;
  9533. left:0px;
  9534. top:0px;
  9535. width:161px;
  9536. height:33px;
  9537. padding:2px 2px 2px 2px;
  9538. font-family:"Microsoft YaHei", sans-serif;
  9539. font-weight:400;
  9540. font-style:normal;
  9541. font-size:14px;
  9542. letter-spacing:normal;
  9543. color:#AAAAAA;
  9544. vertical-align:none;
  9545. text-align:left;
  9546. text-transform:none;
  9547. background-color:transparent;
  9548. border-color:transparent;
  9549. }
  9550. #u16034_input.disabled {
  9551. position:absolute;
  9552. left:0px;
  9553. top:0px;
  9554. width:161px;
  9555. height:33px;
  9556. padding:2px 2px 2px 2px;
  9557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9558. font-weight:400;
  9559. font-style:normal;
  9560. font-size:14px;
  9561. letter-spacing:normal;
  9562. color:#D7D7D7;
  9563. vertical-align:none;
  9564. text-align:left;
  9565. text-transform:none;
  9566. background-color:transparent;
  9567. border-color:transparent;
  9568. }
  9569. #u16034_input.hint.disabled {
  9570. position:absolute;
  9571. left:0px;
  9572. top:0px;
  9573. width:161px;
  9574. height:33px;
  9575. padding:2px 2px 2px 2px;
  9576. font-family:"Microsoft YaHei", sans-serif;
  9577. font-weight:400;
  9578. font-style:normal;
  9579. font-size:14px;
  9580. letter-spacing:normal;
  9581. color:#AAAAAA;
  9582. vertical-align:none;
  9583. text-align:left;
  9584. text-transform:none;
  9585. background-color:transparent;
  9586. border-color:transparent;
  9587. }
  9588. #u16034_div {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:0px;
  9592. top:0px;
  9593. width:161px;
  9594. height:33px;
  9595. background:inherit;
  9596. background-color:rgba(255, 255, 255, 0);
  9597. border-radius:0px;
  9598. filter:drop-shadow(none);
  9599. transition:none;
  9600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9601. font-weight:400;
  9602. font-style:normal;
  9603. font-size:14px;
  9604. color:#D7D7D7;
  9605. }
  9606. #u16034 {
  9607. border-width:0px;
  9608. position:absolute;
  9609. left:1194px;
  9610. top:455px;
  9611. width:161px;
  9612. height:33px;
  9613. display:flex;
  9614. transition:none;
  9615. transform-origin:50% 50%;
  9616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9617. font-weight:400;
  9618. font-style:normal;
  9619. font-size:14px;
  9620. color:#D7D7D7;
  9621. }
  9622. #u16034 .text {
  9623. position:absolute;
  9624. align-self:center;
  9625. padding:2px 2px 2px 2px;
  9626. box-sizing:border-box;
  9627. width:100%;
  9628. }
  9629. #u16034_div.hint {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:0px;
  9633. top:0px;
  9634. width:161px;
  9635. height:33px;
  9636. background:inherit;
  9637. background-color:rgba(255, 255, 255, 0);
  9638. border-radius:0px;
  9639. filter:drop-shadow(none);
  9640. transition:none;
  9641. font-family:"Microsoft YaHei", sans-serif;
  9642. font-weight:400;
  9643. font-style:normal;
  9644. font-size:14px;
  9645. color:#D7D7D7;
  9646. }
  9647. #u16034.hint {
  9648. }
  9649. #u16034_div.disabled {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:0px;
  9653. top:0px;
  9654. width:161px;
  9655. height:33px;
  9656. background:inherit;
  9657. background-color:rgba(240, 240, 240, 1);
  9658. border-radius:0px;
  9659. filter:drop-shadow(none);
  9660. transition:none;
  9661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9662. font-weight:400;
  9663. font-style:normal;
  9664. font-size:14px;
  9665. color:#D7D7D7;
  9666. }
  9667. #u16034.disabled {
  9668. }
  9669. #u16034_div.hint.disabled {
  9670. border-width:0px;
  9671. position:absolute;
  9672. left:0px;
  9673. top:0px;
  9674. width:161px;
  9675. height:33px;
  9676. background:inherit;
  9677. background-color:rgba(240, 240, 240, 1);
  9678. border-radius:0px;
  9679. filter:drop-shadow(none);
  9680. transition:none;
  9681. font-family:"Microsoft YaHei", sans-serif;
  9682. font-weight:400;
  9683. font-style:normal;
  9684. font-size:14px;
  9685. color:#D7D7D7;
  9686. }
  9687. #u16034.hint.disabled {
  9688. }
  9689. #u16035_div {
  9690. border-width:0px;
  9691. position:absolute;
  9692. left:0px;
  9693. top:0px;
  9694. width:78px;
  9695. height:40px;
  9696. background:inherit;
  9697. background-color:rgba(255, 255, 255, 0);
  9698. border-left:0px;
  9699. border-top:0px;
  9700. border-right:0px;
  9701. border-radius:0px;
  9702. border-bottom-right-radius:0px;
  9703. border-bottom-left-radius:0px;
  9704. filter:drop-shadow(none);
  9705. transition:none;
  9706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9707. font-weight:400;
  9708. font-style:normal;
  9709. font-size:14px;
  9710. }
  9711. #u16035 {
  9712. border-width:0px;
  9713. position:absolute;
  9714. left:1186px;
  9715. top:413px;
  9716. width:78px;
  9717. height:40px;
  9718. display:flex;
  9719. transition:none;
  9720. transform-origin:50% 50%;
  9721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9722. font-weight:400;
  9723. font-style:normal;
  9724. font-size:14px;
  9725. }
  9726. #u16035 .text {
  9727. position:absolute;
  9728. align-self:center;
  9729. padding:0px 0px 0px 0px;
  9730. box-sizing:border-box;
  9731. width:100%;
  9732. }
  9733. #u16035_text {
  9734. border-width:0px;
  9735. white-space:nowrap;
  9736. text-transform:none;
  9737. }
  9738. #u16036 {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:0px;
  9742. top:0px;
  9743. width:0px;
  9744. height:0px;
  9745. }
  9746. #u16037_div {
  9747. border-width:0px;
  9748. position:absolute;
  9749. left:0px;
  9750. top:0px;
  9751. width:200px;
  9752. height:40px;
  9753. background:inherit;
  9754. background-color:rgba(255, 255, 255, 1);
  9755. box-sizing:border-box;
  9756. border-width:1px;
  9757. border-style:solid;
  9758. border-color:rgba(201, 201, 201, 1);
  9759. border-radius:4px;
  9760. filter:drop-shadow(none);
  9761. transition:none;
  9762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9763. font-weight:400;
  9764. font-style:normal;
  9765. font-size:14px;
  9766. text-align:right;
  9767. }
  9768. #u16037 {
  9769. border-width:0px;
  9770. position:absolute;
  9771. left:956px;
  9772. top:631px;
  9773. width:200px;
  9774. height:40px;
  9775. display:flex;
  9776. transition:none;
  9777. transform-origin:50% 50%;
  9778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9779. font-weight:400;
  9780. font-style:normal;
  9781. font-size:14px;
  9782. text-align:right;
  9783. }
  9784. #u16037 .text {
  9785. position:absolute;
  9786. align-self:center;
  9787. padding:2px 8px 2px 8px;
  9788. box-sizing:border-box;
  9789. width:100%;
  9790. }
  9791. #u16037_text {
  9792. border-width:0px;
  9793. word-wrap:break-word;
  9794. text-transform:none;
  9795. visibility:hidden;
  9796. }
  9797. #u16038_input {
  9798. position:absolute;
  9799. left:0px;
  9800. top:0px;
  9801. width:161px;
  9802. height:33px;
  9803. padding:2px 2px 2px 2px;
  9804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9805. font-weight:400;
  9806. font-style:normal;
  9807. font-size:14px;
  9808. letter-spacing:normal;
  9809. color:#D7D7D7;
  9810. vertical-align:none;
  9811. text-align:left;
  9812. text-transform:none;
  9813. background-color:transparent;
  9814. border-color:transparent;
  9815. }
  9816. #u16038_input.hint {
  9817. position:absolute;
  9818. left:0px;
  9819. top:0px;
  9820. width:161px;
  9821. height:33px;
  9822. padding:2px 2px 2px 2px;
  9823. font-family:"Microsoft YaHei", sans-serif;
  9824. font-weight:400;
  9825. font-style:normal;
  9826. font-size:14px;
  9827. letter-spacing:normal;
  9828. color:#AAAAAA;
  9829. vertical-align:none;
  9830. text-align:left;
  9831. text-transform:none;
  9832. background-color:transparent;
  9833. border-color:transparent;
  9834. }
  9835. #u16038_input.disabled {
  9836. position:absolute;
  9837. left:0px;
  9838. top:0px;
  9839. width:161px;
  9840. height:33px;
  9841. padding:2px 2px 2px 2px;
  9842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9843. font-weight:400;
  9844. font-style:normal;
  9845. font-size:14px;
  9846. letter-spacing:normal;
  9847. color:#D7D7D7;
  9848. vertical-align:none;
  9849. text-align:left;
  9850. text-transform:none;
  9851. background-color:transparent;
  9852. border-color:transparent;
  9853. }
  9854. #u16038_input.hint.disabled {
  9855. position:absolute;
  9856. left:0px;
  9857. top:0px;
  9858. width:161px;
  9859. height:33px;
  9860. padding:2px 2px 2px 2px;
  9861. font-family:"Microsoft YaHei", sans-serif;
  9862. font-weight:400;
  9863. font-style:normal;
  9864. font-size:14px;
  9865. letter-spacing:normal;
  9866. color:#AAAAAA;
  9867. vertical-align:none;
  9868. text-align:left;
  9869. text-transform:none;
  9870. background-color:transparent;
  9871. border-color:transparent;
  9872. }
  9873. #u16038_div {
  9874. border-width:0px;
  9875. position:absolute;
  9876. left:0px;
  9877. top:0px;
  9878. width:161px;
  9879. height:33px;
  9880. background:inherit;
  9881. background-color:rgba(255, 255, 255, 0);
  9882. border-radius:0px;
  9883. filter:drop-shadow(none);
  9884. transition:none;
  9885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9886. font-weight:400;
  9887. font-style:normal;
  9888. font-size:14px;
  9889. color:#D7D7D7;
  9890. }
  9891. #u16038 {
  9892. border-width:0px;
  9893. position:absolute;
  9894. left:964px;
  9895. top:634px;
  9896. width:161px;
  9897. height:33px;
  9898. display:flex;
  9899. transition:none;
  9900. transform-origin:50% 50%;
  9901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9902. font-weight:400;
  9903. font-style:normal;
  9904. font-size:14px;
  9905. color:#D7D7D7;
  9906. }
  9907. #u16038 .text {
  9908. position:absolute;
  9909. align-self:center;
  9910. padding:2px 2px 2px 2px;
  9911. box-sizing:border-box;
  9912. width:100%;
  9913. }
  9914. #u16038_div.hint {
  9915. border-width:0px;
  9916. position:absolute;
  9917. left:0px;
  9918. top:0px;
  9919. width:161px;
  9920. height:33px;
  9921. background:inherit;
  9922. background-color:rgba(255, 255, 255, 0);
  9923. border-radius:0px;
  9924. filter:drop-shadow(none);
  9925. transition:none;
  9926. font-family:"Microsoft YaHei", sans-serif;
  9927. font-weight:400;
  9928. font-style:normal;
  9929. font-size:14px;
  9930. color:#D7D7D7;
  9931. }
  9932. #u16038.hint {
  9933. }
  9934. #u16038_div.disabled {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:0px;
  9938. top:0px;
  9939. width:161px;
  9940. height:33px;
  9941. background:inherit;
  9942. background-color:rgba(240, 240, 240, 1);
  9943. border-radius:0px;
  9944. filter:drop-shadow(none);
  9945. transition:none;
  9946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9947. font-weight:400;
  9948. font-style:normal;
  9949. font-size:14px;
  9950. color:#D7D7D7;
  9951. }
  9952. #u16038.disabled {
  9953. }
  9954. #u16038_div.hint.disabled {
  9955. border-width:0px;
  9956. position:absolute;
  9957. left:0px;
  9958. top:0px;
  9959. width:161px;
  9960. height:33px;
  9961. background:inherit;
  9962. background-color:rgba(240, 240, 240, 1);
  9963. border-radius:0px;
  9964. filter:drop-shadow(none);
  9965. transition:none;
  9966. font-family:"Microsoft YaHei", sans-serif;
  9967. font-weight:400;
  9968. font-style:normal;
  9969. font-size:14px;
  9970. color:#D7D7D7;
  9971. }
  9972. #u16038.hint.disabled {
  9973. }
  9974. #u16039_div {
  9975. border-width:0px;
  9976. position:absolute;
  9977. left:0px;
  9978. top:0px;
  9979. width:50px;
  9980. height:40px;
  9981. background:inherit;
  9982. background-color:rgba(255, 255, 255, 0);
  9983. border-left:0px;
  9984. border-top:0px;
  9985. border-right:0px;
  9986. border-radius:0px;
  9987. border-bottom-right-radius:0px;
  9988. border-bottom-left-radius:0px;
  9989. filter:drop-shadow(none);
  9990. transition:none;
  9991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9992. font-weight:400;
  9993. font-style:normal;
  9994. font-size:14px;
  9995. }
  9996. #u16039 {
  9997. border-width:0px;
  9998. position:absolute;
  9999. left:956px;
  10000. top:592px;
  10001. width:50px;
  10002. height:40px;
  10003. display:flex;
  10004. transition:none;
  10005. transform-origin:50% 50%;
  10006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10007. font-weight:400;
  10008. font-style:normal;
  10009. font-size:14px;
  10010. }
  10011. #u16039 .text {
  10012. position:absolute;
  10013. align-self:center;
  10014. padding:0px 0px 0px 0px;
  10015. box-sizing:border-box;
  10016. width:100%;
  10017. }
  10018. #u16039_text {
  10019. border-width:0px;
  10020. white-space:nowrap;
  10021. text-transform:none;
  10022. }
  10023. #u16040_div {
  10024. border-width:0px;
  10025. position:absolute;
  10026. left:0px;
  10027. top:0px;
  10028. width:64px;
  10029. height:40px;
  10030. background:inherit;
  10031. background-color:rgba(255, 255, 255, 0);
  10032. border-left:0px;
  10033. border-top:0px;
  10034. border-right:0px;
  10035. border-radius:0px;
  10036. border-bottom-right-radius:0px;
  10037. border-bottom-left-radius:0px;
  10038. filter:drop-shadow(none);
  10039. transition:none;
  10040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10041. font-weight:400;
  10042. font-style:normal;
  10043. font-size:14px;
  10044. }
  10045. #u16040 {
  10046. border-width:0px;
  10047. position:absolute;
  10048. left:956px;
  10049. top:502px;
  10050. width:64px;
  10051. height:40px;
  10052. display:flex;
  10053. transition:none;
  10054. transform-origin:50% 50%;
  10055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10056. font-weight:400;
  10057. font-style:normal;
  10058. font-size:14px;
  10059. }
  10060. #u16040 .text {
  10061. position:absolute;
  10062. align-self:center;
  10063. padding:0px 0px 0px 0px;
  10064. box-sizing:border-box;
  10065. width:100%;
  10066. }
  10067. #u16040_text {
  10068. border-width:0px;
  10069. white-space:nowrap;
  10070. text-transform:none;
  10071. }
  10072. #u16041 {
  10073. border-width:0px;
  10074. position:absolute;
  10075. left:0px;
  10076. top:0px;
  10077. width:0px;
  10078. height:0px;
  10079. }
  10080. #u16042_div {
  10081. border-width:0px;
  10082. position:absolute;
  10083. left:0px;
  10084. top:0px;
  10085. width:200px;
  10086. height:40px;
  10087. background:inherit;
  10088. background-color:rgba(255, 255, 255, 1);
  10089. box-sizing:border-box;
  10090. border-width:1px;
  10091. border-style:solid;
  10092. border-color:rgba(215, 215, 215, 1);
  10093. border-radius:4px;
  10094. filter:drop-shadow(none);
  10095. transition:none;
  10096. font-size:14px;
  10097. }
  10098. #u16042 {
  10099. border-width:0px;
  10100. position:absolute;
  10101. left:956px;
  10102. top:542px;
  10103. width:200px;
  10104. height:40px;
  10105. display:flex;
  10106. transition:none;
  10107. transform-origin:50% 50%;
  10108. font-size:14px;
  10109. }
  10110. #u16042 .text {
  10111. position:absolute;
  10112. align-self:center;
  10113. padding:2px 2px 2px 2px;
  10114. box-sizing:border-box;
  10115. width:100%;
  10116. }
  10117. #u16042_text {
  10118. border-width:0px;
  10119. word-wrap:break-word;
  10120. text-transform:none;
  10121. visibility:hidden;
  10122. }
  10123. #u16043_input {
  10124. position:absolute;
  10125. left:0px;
  10126. top:0px;
  10127. width:191px;
  10128. height:31px;
  10129. padding:2px 2px 2px 2px;
  10130. font-family:'ArialMT', 'Arial', sans-serif;
  10131. font-weight:400;
  10132. font-style:normal;
  10133. font-size:14px;
  10134. letter-spacing:normal;
  10135. color:#AAAAAA;
  10136. vertical-align:none;
  10137. text-align:left;
  10138. text-transform:none;
  10139. background-color:transparent;
  10140. border-color:transparent;
  10141. }
  10142. #u16043_input.disabled {
  10143. position:absolute;
  10144. left:0px;
  10145. top:0px;
  10146. width:191px;
  10147. height:31px;
  10148. padding:2px 2px 2px 2px;
  10149. font-family:'ArialMT', 'Arial', sans-serif;
  10150. font-weight:400;
  10151. font-style:normal;
  10152. font-size:14px;
  10153. letter-spacing:normal;
  10154. color:#AAAAAA;
  10155. vertical-align:none;
  10156. text-align:left;
  10157. text-transform:none;
  10158. background-color:transparent;
  10159. border-color:transparent;
  10160. }
  10161. #u16043_div {
  10162. border-width:0px;
  10163. position:absolute;
  10164. left:0px;
  10165. top:0px;
  10166. width:191px;
  10167. height:31px;
  10168. background:inherit;
  10169. background-color:rgba(255, 255, 255, 1);
  10170. border-radius:0px;
  10171. filter:drop-shadow(none);
  10172. transition:none;
  10173. font-size:14px;
  10174. color:#AAAAAA;
  10175. }
  10176. #u16043 {
  10177. border-width:0px;
  10178. position:absolute;
  10179. left:962px;
  10180. top:545px;
  10181. width:191px;
  10182. height:31px;
  10183. display:flex;
  10184. transition:none;
  10185. transform-origin:50% 50%;
  10186. font-size:14px;
  10187. color:#AAAAAA;
  10188. }
  10189. #u16043 .text {
  10190. position:absolute;
  10191. align-self:flex-start;
  10192. padding:2px 2px 2px 2px;
  10193. box-sizing:border-box;
  10194. width:100%;
  10195. }
  10196. #u16043_div.disabled {
  10197. border-width:0px;
  10198. position:absolute;
  10199. left:0px;
  10200. top:0px;
  10201. width:191px;
  10202. height:31px;
  10203. background:inherit;
  10204. background-color:rgba(240, 240, 240, 1);
  10205. border-radius:0px;
  10206. filter:drop-shadow(none);
  10207. transition:none;
  10208. font-size:14px;
  10209. color:#AAAAAA;
  10210. }
  10211. #u16043.disabled {
  10212. }
  10213. .u16043_input_option {
  10214. font-size:14px;
  10215. }
  10216. #u16044_div {
  10217. border-width:0px;
  10218. position:absolute;
  10219. left:0px;
  10220. top:0px;
  10221. width:64px;
  10222. height:40px;
  10223. background:inherit;
  10224. background-color:rgba(255, 255, 255, 0);
  10225. border-left:0px;
  10226. border-top:0px;
  10227. border-right:0px;
  10228. border-radius:0px;
  10229. border-bottom-right-radius:0px;
  10230. border-bottom-left-radius:0px;
  10231. filter:drop-shadow(none);
  10232. transition:none;
  10233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10234. font-weight:400;
  10235. font-style:normal;
  10236. font-size:14px;
  10237. }
  10238. #u16044 {
  10239. border-width:0px;
  10240. position:absolute;
  10241. left:956px;
  10242. top:328px;
  10243. width:64px;
  10244. height:40px;
  10245. display:flex;
  10246. transition:none;
  10247. transform-origin:50% 50%;
  10248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10249. font-weight:400;
  10250. font-style:normal;
  10251. font-size:14px;
  10252. }
  10253. #u16044 .text {
  10254. position:absolute;
  10255. align-self:center;
  10256. padding:0px 0px 0px 0px;
  10257. box-sizing:border-box;
  10258. width:100%;
  10259. }
  10260. #u16044_text {
  10261. border-width:0px;
  10262. white-space:nowrap;
  10263. text-transform:none;
  10264. }
  10265. #u16045 {
  10266. border-width:0px;
  10267. position:absolute;
  10268. left:0px;
  10269. top:0px;
  10270. width:0px;
  10271. height:0px;
  10272. }
  10273. #u16046_div {
  10274. border-width:0px;
  10275. position:absolute;
  10276. left:0px;
  10277. top:0px;
  10278. width:200px;
  10279. height:40px;
  10280. background:inherit;
  10281. background-color:rgba(255, 255, 255, 1);
  10282. box-sizing:border-box;
  10283. border-width:1px;
  10284. border-style:solid;
  10285. border-color:rgba(201, 201, 201, 1);
  10286. border-radius:4px;
  10287. filter:drop-shadow(none);
  10288. transition:none;
  10289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10290. font-weight:400;
  10291. font-style:normal;
  10292. font-size:14px;
  10293. text-align:right;
  10294. }
  10295. #u16046 {
  10296. border-width:0px;
  10297. position:absolute;
  10298. left:956px;
  10299. top:452px;
  10300. width:200px;
  10301. height:40px;
  10302. display:flex;
  10303. transition:none;
  10304. transform-origin:50% 50%;
  10305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10306. font-weight:400;
  10307. font-style:normal;
  10308. font-size:14px;
  10309. text-align:right;
  10310. }
  10311. #u16046 .text {
  10312. position:absolute;
  10313. align-self:center;
  10314. padding:2px 8px 2px 8px;
  10315. box-sizing:border-box;
  10316. width:100%;
  10317. }
  10318. #u16046_text {
  10319. border-width:0px;
  10320. word-wrap:break-word;
  10321. text-transform:none;
  10322. visibility:hidden;
  10323. }
  10324. #u16047_input {
  10325. position:absolute;
  10326. left:0px;
  10327. top:0px;
  10328. width:161px;
  10329. height:33px;
  10330. padding:2px 2px 2px 2px;
  10331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10332. font-weight:400;
  10333. font-style:normal;
  10334. font-size:14px;
  10335. letter-spacing:normal;
  10336. color:#D7D7D7;
  10337. vertical-align:none;
  10338. text-align:left;
  10339. text-transform:none;
  10340. background-color:transparent;
  10341. border-color:transparent;
  10342. }
  10343. #u16047_input.hint {
  10344. position:absolute;
  10345. left:0px;
  10346. top:0px;
  10347. width:161px;
  10348. height:33px;
  10349. padding:2px 2px 2px 2px;
  10350. font-family:"Microsoft YaHei", sans-serif;
  10351. font-weight:400;
  10352. font-style:normal;
  10353. font-size:14px;
  10354. letter-spacing:normal;
  10355. color:#AAAAAA;
  10356. vertical-align:none;
  10357. text-align:left;
  10358. text-transform:none;
  10359. background-color:transparent;
  10360. border-color:transparent;
  10361. }
  10362. #u16047_input.disabled {
  10363. position:absolute;
  10364. left:0px;
  10365. top:0px;
  10366. width:161px;
  10367. height:33px;
  10368. padding:2px 2px 2px 2px;
  10369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10370. font-weight:400;
  10371. font-style:normal;
  10372. font-size:14px;
  10373. letter-spacing:normal;
  10374. color:#D7D7D7;
  10375. vertical-align:none;
  10376. text-align:left;
  10377. text-transform:none;
  10378. background-color:transparent;
  10379. border-color:transparent;
  10380. }
  10381. #u16047_input.hint.disabled {
  10382. position:absolute;
  10383. left:0px;
  10384. top:0px;
  10385. width:161px;
  10386. height:33px;
  10387. padding:2px 2px 2px 2px;
  10388. font-family:"Microsoft YaHei", sans-serif;
  10389. font-weight:400;
  10390. font-style:normal;
  10391. font-size:14px;
  10392. letter-spacing:normal;
  10393. color:#AAAAAA;
  10394. vertical-align:none;
  10395. text-align:left;
  10396. text-transform:none;
  10397. background-color:transparent;
  10398. border-color:transparent;
  10399. }
  10400. #u16047_div {
  10401. border-width:0px;
  10402. position:absolute;
  10403. left:0px;
  10404. top:0px;
  10405. width:161px;
  10406. height:33px;
  10407. background:inherit;
  10408. background-color:rgba(255, 255, 255, 0);
  10409. border-radius:0px;
  10410. filter:drop-shadow(none);
  10411. transition:none;
  10412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10413. font-weight:400;
  10414. font-style:normal;
  10415. font-size:14px;
  10416. color:#D7D7D7;
  10417. }
  10418. #u16047 {
  10419. border-width:0px;
  10420. position:absolute;
  10421. left:964px;
  10422. top:455px;
  10423. width:161px;
  10424. height:33px;
  10425. display:flex;
  10426. transition:none;
  10427. transform-origin:50% 50%;
  10428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10429. font-weight:400;
  10430. font-style:normal;
  10431. font-size:14px;
  10432. color:#D7D7D7;
  10433. }
  10434. #u16047 .text {
  10435. position:absolute;
  10436. align-self:center;
  10437. padding:2px 2px 2px 2px;
  10438. box-sizing:border-box;
  10439. width:100%;
  10440. }
  10441. #u16047_div.hint {
  10442. border-width:0px;
  10443. position:absolute;
  10444. left:0px;
  10445. top:0px;
  10446. width:161px;
  10447. height:33px;
  10448. background:inherit;
  10449. background-color:rgba(255, 255, 255, 0);
  10450. border-radius:0px;
  10451. filter:drop-shadow(none);
  10452. transition:none;
  10453. font-family:"Microsoft YaHei", sans-serif;
  10454. font-weight:400;
  10455. font-style:normal;
  10456. font-size:14px;
  10457. color:#D7D7D7;
  10458. }
  10459. #u16047.hint {
  10460. }
  10461. #u16047_div.disabled {
  10462. border-width:0px;
  10463. position:absolute;
  10464. left:0px;
  10465. top:0px;
  10466. width:161px;
  10467. height:33px;
  10468. background:inherit;
  10469. background-color:rgba(240, 240, 240, 1);
  10470. border-radius:0px;
  10471. filter:drop-shadow(none);
  10472. transition:none;
  10473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10474. font-weight:400;
  10475. font-style:normal;
  10476. font-size:14px;
  10477. color:#D7D7D7;
  10478. }
  10479. #u16047.disabled {
  10480. }
  10481. #u16047_div.hint.disabled {
  10482. border-width:0px;
  10483. position:absolute;
  10484. left:0px;
  10485. top:0px;
  10486. width:161px;
  10487. height:33px;
  10488. background:inherit;
  10489. background-color:rgba(240, 240, 240, 1);
  10490. border-radius:0px;
  10491. filter:drop-shadow(none);
  10492. transition:none;
  10493. font-family:"Microsoft YaHei", sans-serif;
  10494. font-weight:400;
  10495. font-style:normal;
  10496. font-size:14px;
  10497. color:#D7D7D7;
  10498. }
  10499. #u16047.hint.disabled {
  10500. }
  10501. #u16048 {
  10502. border-width:0px;
  10503. position:absolute;
  10504. left:1134px;
  10505. top:465px;
  10506. width:13px;
  10507. height:13px;
  10508. display:flex;
  10509. transition:none;
  10510. }
  10511. #u16048 .text {
  10512. position:absolute;
  10513. align-self:center;
  10514. padding:2px 2px 2px 2px;
  10515. box-sizing:border-box;
  10516. width:100%;
  10517. }
  10518. #u16048_img {
  10519. border-width:0px;
  10520. position:absolute;
  10521. left:0px;
  10522. top:0px;
  10523. width:13px;
  10524. height:13px;
  10525. }
  10526. #u16048_text {
  10527. border-width:0px;
  10528. word-wrap:break-word;
  10529. text-transform:none;
  10530. visibility:hidden;
  10531. }
  10532. #u16049_div {
  10533. border-width:0px;
  10534. position:absolute;
  10535. left:0px;
  10536. top:0px;
  10537. width:57px;
  10538. height:40px;
  10539. background:inherit;
  10540. background-color:rgba(255, 255, 255, 0);
  10541. border-left:0px;
  10542. border-top:0px;
  10543. border-right:0px;
  10544. border-radius:0px;
  10545. border-bottom-right-radius:0px;
  10546. border-bottom-left-radius:0px;
  10547. filter:drop-shadow(none);
  10548. transition:none;
  10549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10550. font-weight:400;
  10551. font-style:normal;
  10552. font-size:14px;
  10553. }
  10554. #u16049 {
  10555. border-width:0px;
  10556. position:absolute;
  10557. left:1186px;
  10558. top:502px;
  10559. width:57px;
  10560. height:40px;
  10561. display:flex;
  10562. transition:none;
  10563. transform-origin:50% 50%;
  10564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10565. font-weight:400;
  10566. font-style:normal;
  10567. font-size:14px;
  10568. }
  10569. #u16049 .text {
  10570. position:absolute;
  10571. align-self:center;
  10572. padding:0px 0px 0px 0px;
  10573. box-sizing:border-box;
  10574. width:100%;
  10575. }
  10576. #u16049_text {
  10577. border-width:0px;
  10578. white-space:nowrap;
  10579. text-transform:none;
  10580. }
  10581. #u16050 label {
  10582. left:0px;
  10583. width:100%;
  10584. height:100%;
  10585. }
  10586. #u16050_img {
  10587. border-width:0px;
  10588. position:absolute;
  10589. left:0px;
  10590. top:4px;
  10591. width:12px;
  10592. height:12px;
  10593. }
  10594. #u16050 {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:964px;
  10598. top:378px;
  10599. width:100px;
  10600. height:20px;
  10601. display:flex;
  10602. transition:none;
  10603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10604. font-weight:400;
  10605. font-style:normal;
  10606. font-size:14px;
  10607. }
  10608. #u16050 .text {
  10609. position:absolute;
  10610. align-self:center;
  10611. padding:0px 2px 0px 2px;
  10612. box-sizing:border-box;
  10613. }
  10614. #u16050_img.selected {
  10615. }
  10616. #u16050.selected {
  10617. }
  10618. #u16050_img.disabled {
  10619. }
  10620. #u16050.disabled {
  10621. }
  10622. #u16050_img.selected.error {
  10623. }
  10624. #u16050.selected.error {
  10625. }
  10626. #u16050_img.selected.hint {
  10627. }
  10628. #u16050.selected.hint {
  10629. }
  10630. #u16050_img.selected.error.hint {
  10631. }
  10632. #u16050.selected.error.hint {
  10633. }
  10634. #u16050_img.mouseOver.selected {
  10635. }
  10636. #u16050.mouseOver.selected {
  10637. }
  10638. #u16050_img.mouseOver.selected.error {
  10639. }
  10640. #u16050.mouseOver.selected.error {
  10641. }
  10642. #u16050_img.mouseOver.selected.hint {
  10643. }
  10644. #u16050.mouseOver.selected.hint {
  10645. }
  10646. #u16050_img.mouseOver.selected.error.hint {
  10647. }
  10648. #u16050.mouseOver.selected.error.hint {
  10649. }
  10650. #u16050_img.mouseDown.selected {
  10651. }
  10652. #u16050.mouseDown.selected {
  10653. }
  10654. #u16050_img.mouseDown.selected.error {
  10655. }
  10656. #u16050.mouseDown.selected.error {
  10657. }
  10658. #u16050_img.mouseDown.selected.hint {
  10659. }
  10660. #u16050.mouseDown.selected.hint {
  10661. }
  10662. #u16050_img.mouseDown.selected.error.hint {
  10663. }
  10664. #u16050.mouseDown.selected.error.hint {
  10665. }
  10666. #u16050_img.mouseOver.mouseDown.selected {
  10667. }
  10668. #u16050.mouseOver.mouseDown.selected {
  10669. }
  10670. #u16050_img.mouseOver.mouseDown.selected.error {
  10671. }
  10672. #u16050.mouseOver.mouseDown.selected.error {
  10673. }
  10674. #u16050_img.mouseOver.mouseDown.selected.hint {
  10675. }
  10676. #u16050.mouseOver.mouseDown.selected.hint {
  10677. }
  10678. #u16050_img.mouseOver.mouseDown.selected.error.hint {
  10679. }
  10680. #u16050.mouseOver.mouseDown.selected.error.hint {
  10681. }
  10682. #u16050_img.focused.selected {
  10683. }
  10684. #u16050.focused.selected {
  10685. }
  10686. #u16050_img.focused.selected.error {
  10687. }
  10688. #u16050.focused.selected.error {
  10689. }
  10690. #u16050_img.focused.selected.hint {
  10691. }
  10692. #u16050.focused.selected.hint {
  10693. }
  10694. #u16050_img.focused.selected.error.hint {
  10695. }
  10696. #u16050.focused.selected.error.hint {
  10697. }
  10698. #u16050_img.selected.disabled {
  10699. }
  10700. #u16050.selected.disabled {
  10701. }
  10702. #u16050_img.selected.hint.disabled {
  10703. }
  10704. #u16050.selected.hint.disabled {
  10705. }
  10706. #u16050_img.selected.error.disabled {
  10707. }
  10708. #u16050.selected.error.disabled {
  10709. }
  10710. #u16050_img.selected.error.hint.disabled {
  10711. }
  10712. #u16050.selected.error.hint.disabled {
  10713. }
  10714. #u16050_text {
  10715. border-width:0px;
  10716. position:absolute;
  10717. left:12px;
  10718. top:0px;
  10719. width:88px;
  10720. word-wrap:break-word;
  10721. text-transform:none;
  10722. }
  10723. #u16050_input {
  10724. border-width:0px;
  10725. position:absolute;
  10726. left:0px;
  10727. top:0px;
  10728. width:0px;
  10729. height:0px;
  10730. opacity:0;
  10731. }
  10732. #u16051 label {
  10733. left:0px;
  10734. width:100%;
  10735. height:100%;
  10736. }
  10737. #u16051_img {
  10738. border-width:0px;
  10739. position:absolute;
  10740. left:0px;
  10741. top:4px;
  10742. width:12px;
  10743. height:12px;
  10744. }
  10745. #u16051 {
  10746. border-width:0px;
  10747. position:absolute;
  10748. left:1186px;
  10749. top:378px;
  10750. width:100px;
  10751. height:20px;
  10752. display:flex;
  10753. transition:none;
  10754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10755. font-weight:400;
  10756. font-style:normal;
  10757. font-size:14px;
  10758. }
  10759. #u16051 .text {
  10760. position:absolute;
  10761. align-self:center;
  10762. padding:0px 2px 0px 2px;
  10763. box-sizing:border-box;
  10764. }
  10765. #u16051_img.selected {
  10766. }
  10767. #u16051.selected {
  10768. }
  10769. #u16051_img.disabled {
  10770. }
  10771. #u16051.disabled {
  10772. }
  10773. #u16051_img.selected.error {
  10774. }
  10775. #u16051.selected.error {
  10776. }
  10777. #u16051_img.selected.hint {
  10778. }
  10779. #u16051.selected.hint {
  10780. }
  10781. #u16051_img.selected.error.hint {
  10782. }
  10783. #u16051.selected.error.hint {
  10784. }
  10785. #u16051_img.mouseOver.selected {
  10786. }
  10787. #u16051.mouseOver.selected {
  10788. }
  10789. #u16051_img.mouseOver.selected.error {
  10790. }
  10791. #u16051.mouseOver.selected.error {
  10792. }
  10793. #u16051_img.mouseOver.selected.hint {
  10794. }
  10795. #u16051.mouseOver.selected.hint {
  10796. }
  10797. #u16051_img.mouseOver.selected.error.hint {
  10798. }
  10799. #u16051.mouseOver.selected.error.hint {
  10800. }
  10801. #u16051_img.mouseDown.selected {
  10802. }
  10803. #u16051.mouseDown.selected {
  10804. }
  10805. #u16051_img.mouseDown.selected.error {
  10806. }
  10807. #u16051.mouseDown.selected.error {
  10808. }
  10809. #u16051_img.mouseDown.selected.hint {
  10810. }
  10811. #u16051.mouseDown.selected.hint {
  10812. }
  10813. #u16051_img.mouseDown.selected.error.hint {
  10814. }
  10815. #u16051.mouseDown.selected.error.hint {
  10816. }
  10817. #u16051_img.mouseOver.mouseDown.selected {
  10818. }
  10819. #u16051.mouseOver.mouseDown.selected {
  10820. }
  10821. #u16051_img.mouseOver.mouseDown.selected.error {
  10822. }
  10823. #u16051.mouseOver.mouseDown.selected.error {
  10824. }
  10825. #u16051_img.mouseOver.mouseDown.selected.hint {
  10826. }
  10827. #u16051.mouseOver.mouseDown.selected.hint {
  10828. }
  10829. #u16051_img.mouseOver.mouseDown.selected.error.hint {
  10830. }
  10831. #u16051.mouseOver.mouseDown.selected.error.hint {
  10832. }
  10833. #u16051_img.focused.selected {
  10834. }
  10835. #u16051.focused.selected {
  10836. }
  10837. #u16051_img.focused.selected.error {
  10838. }
  10839. #u16051.focused.selected.error {
  10840. }
  10841. #u16051_img.focused.selected.hint {
  10842. }
  10843. #u16051.focused.selected.hint {
  10844. }
  10845. #u16051_img.focused.selected.error.hint {
  10846. }
  10847. #u16051.focused.selected.error.hint {
  10848. }
  10849. #u16051_img.selected.disabled {
  10850. }
  10851. #u16051.selected.disabled {
  10852. }
  10853. #u16051_img.selected.hint.disabled {
  10854. }
  10855. #u16051.selected.hint.disabled {
  10856. }
  10857. #u16051_img.selected.error.disabled {
  10858. }
  10859. #u16051.selected.error.disabled {
  10860. }
  10861. #u16051_img.selected.error.hint.disabled {
  10862. }
  10863. #u16051.selected.error.hint.disabled {
  10864. }
  10865. #u16051_text {
  10866. border-width:0px;
  10867. position:absolute;
  10868. left:12px;
  10869. top:0px;
  10870. width:88px;
  10871. word-wrap:break-word;
  10872. text-transform:none;
  10873. }
  10874. #u16051_input {
  10875. border-width:0px;
  10876. position:absolute;
  10877. left:0px;
  10878. top:0px;
  10879. width:0px;
  10880. height:0px;
  10881. opacity:0;
  10882. }
  10883. #u16052 {
  10884. border-width:0px;
  10885. position:absolute;
  10886. left:0px;
  10887. top:0px;
  10888. width:0px;
  10889. height:0px;
  10890. }
  10891. #u16053_div {
  10892. border-width:0px;
  10893. position:absolute;
  10894. left:0px;
  10895. top:0px;
  10896. width:200px;
  10897. height:40px;
  10898. background:inherit;
  10899. background-color:rgba(255, 255, 255, 1);
  10900. box-sizing:border-box;
  10901. border-width:1px;
  10902. border-style:solid;
  10903. border-color:rgba(215, 215, 215, 1);
  10904. border-radius:4px;
  10905. filter:drop-shadow(none);
  10906. transition:none;
  10907. font-size:14px;
  10908. }
  10909. #u16053 {
  10910. border-width:0px;
  10911. position:absolute;
  10912. left:1186px;
  10913. top:542px;
  10914. width:200px;
  10915. height:40px;
  10916. display:flex;
  10917. transition:none;
  10918. transform-origin:50% 50%;
  10919. font-size:14px;
  10920. }
  10921. #u16053 .text {
  10922. position:absolute;
  10923. align-self:center;
  10924. padding:2px 2px 2px 2px;
  10925. box-sizing:border-box;
  10926. width:100%;
  10927. }
  10928. #u16053_text {
  10929. border-width:0px;
  10930. word-wrap:break-word;
  10931. text-transform:none;
  10932. visibility:hidden;
  10933. }
  10934. #u16054_input {
  10935. position:absolute;
  10936. left:0px;
  10937. top:0px;
  10938. width:191px;
  10939. height:31px;
  10940. padding:2px 2px 2px 2px;
  10941. font-family:'ArialMT', 'Arial', sans-serif;
  10942. font-weight:400;
  10943. font-style:normal;
  10944. font-size:14px;
  10945. letter-spacing:normal;
  10946. color:#AAAAAA;
  10947. vertical-align:none;
  10948. text-align:left;
  10949. text-transform:none;
  10950. background-color:transparent;
  10951. border-color:transparent;
  10952. }
  10953. #u16054_input.disabled {
  10954. position:absolute;
  10955. left:0px;
  10956. top:0px;
  10957. width:191px;
  10958. height:31px;
  10959. padding:2px 2px 2px 2px;
  10960. font-family:'ArialMT', 'Arial', sans-serif;
  10961. font-weight:400;
  10962. font-style:normal;
  10963. font-size:14px;
  10964. letter-spacing:normal;
  10965. color:#AAAAAA;
  10966. vertical-align:none;
  10967. text-align:left;
  10968. text-transform:none;
  10969. background-color:transparent;
  10970. border-color:transparent;
  10971. }
  10972. #u16054_div {
  10973. border-width:0px;
  10974. position:absolute;
  10975. left:0px;
  10976. top:0px;
  10977. width:191px;
  10978. height:31px;
  10979. background:inherit;
  10980. background-color:rgba(255, 255, 255, 1);
  10981. border-radius:0px;
  10982. filter:drop-shadow(none);
  10983. transition:none;
  10984. font-size:14px;
  10985. color:#AAAAAA;
  10986. }
  10987. #u16054 {
  10988. border-width:0px;
  10989. position:absolute;
  10990. left:1192px;
  10991. top:545px;
  10992. width:191px;
  10993. height:31px;
  10994. display:flex;
  10995. transition:none;
  10996. transform-origin:50% 50%;
  10997. font-size:14px;
  10998. color:#AAAAAA;
  10999. }
  11000. #u16054 .text {
  11001. position:absolute;
  11002. align-self:flex-start;
  11003. padding:2px 2px 2px 2px;
  11004. box-sizing:border-box;
  11005. width:100%;
  11006. }
  11007. #u16054_div.disabled {
  11008. border-width:0px;
  11009. position:absolute;
  11010. left:0px;
  11011. top:0px;
  11012. width:191px;
  11013. height:31px;
  11014. background:inherit;
  11015. background-color:rgba(240, 240, 240, 1);
  11016. border-radius:0px;
  11017. filter:drop-shadow(none);
  11018. transition:none;
  11019. font-size:14px;
  11020. color:#AAAAAA;
  11021. }
  11022. #u16054.disabled {
  11023. }
  11024. .u16054_input_option {
  11025. font-size:14px;
  11026. }
  11027. #u16055 {
  11028. border-width:0px;
  11029. position:absolute;
  11030. left:0px;
  11031. top:0px;
  11032. width:0px;
  11033. height:0px;
  11034. }
  11035. #u16056_div {
  11036. border-width:0px;
  11037. position:absolute;
  11038. left:0px;
  11039. top:0px;
  11040. width:200px;
  11041. height:40px;
  11042. background:inherit;
  11043. background-color:rgba(255, 255, 255, 1);
  11044. box-sizing:border-box;
  11045. border-width:1px;
  11046. border-style:solid;
  11047. border-color:rgba(201, 201, 201, 1);
  11048. border-radius:4px;
  11049. filter:drop-shadow(none);
  11050. transition:none;
  11051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11052. font-weight:400;
  11053. font-style:normal;
  11054. font-size:14px;
  11055. text-align:right;
  11056. }
  11057. #u16056 {
  11058. border-width:0px;
  11059. position:absolute;
  11060. left:1186px;
  11061. top:631px;
  11062. width:200px;
  11063. height:40px;
  11064. display:flex;
  11065. transition:none;
  11066. transform-origin:50% 50%;
  11067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11068. font-weight:400;
  11069. font-style:normal;
  11070. font-size:14px;
  11071. text-align:right;
  11072. }
  11073. #u16056 .text {
  11074. position:absolute;
  11075. align-self:center;
  11076. padding:2px 8px 2px 8px;
  11077. box-sizing:border-box;
  11078. width:100%;
  11079. }
  11080. #u16056_text {
  11081. border-width:0px;
  11082. word-wrap:break-word;
  11083. text-transform:none;
  11084. visibility:hidden;
  11085. }
  11086. #u16057_input {
  11087. position:absolute;
  11088. left:0px;
  11089. top:0px;
  11090. width:161px;
  11091. height:33px;
  11092. padding:2px 2px 2px 2px;
  11093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11094. font-weight:400;
  11095. font-style:normal;
  11096. font-size:14px;
  11097. letter-spacing:normal;
  11098. color:#D7D7D7;
  11099. vertical-align:none;
  11100. text-align:left;
  11101. text-transform:none;
  11102. background-color:transparent;
  11103. border-color:transparent;
  11104. }
  11105. #u16057_input.hint {
  11106. position:absolute;
  11107. left:0px;
  11108. top:0px;
  11109. width:161px;
  11110. height:33px;
  11111. padding:2px 2px 2px 2px;
  11112. font-family:"Microsoft YaHei", sans-serif;
  11113. font-weight:400;
  11114. font-style:normal;
  11115. font-size:14px;
  11116. letter-spacing:normal;
  11117. color:#AAAAAA;
  11118. vertical-align:none;
  11119. text-align:left;
  11120. text-transform:none;
  11121. background-color:transparent;
  11122. border-color:transparent;
  11123. }
  11124. #u16057_input.disabled {
  11125. position:absolute;
  11126. left:0px;
  11127. top:0px;
  11128. width:161px;
  11129. height:33px;
  11130. padding:2px 2px 2px 2px;
  11131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11132. font-weight:400;
  11133. font-style:normal;
  11134. font-size:14px;
  11135. letter-spacing:normal;
  11136. color:#D7D7D7;
  11137. vertical-align:none;
  11138. text-align:left;
  11139. text-transform:none;
  11140. background-color:transparent;
  11141. border-color:transparent;
  11142. }
  11143. #u16057_input.hint.disabled {
  11144. position:absolute;
  11145. left:0px;
  11146. top:0px;
  11147. width:161px;
  11148. height:33px;
  11149. padding:2px 2px 2px 2px;
  11150. font-family:"Microsoft YaHei", sans-serif;
  11151. font-weight:400;
  11152. font-style:normal;
  11153. font-size:14px;
  11154. letter-spacing:normal;
  11155. color:#AAAAAA;
  11156. vertical-align:none;
  11157. text-align:left;
  11158. text-transform:none;
  11159. background-color:transparent;
  11160. border-color:transparent;
  11161. }
  11162. #u16057_div {
  11163. border-width:0px;
  11164. position:absolute;
  11165. left:0px;
  11166. top:0px;
  11167. width:161px;
  11168. height:33px;
  11169. background:inherit;
  11170. background-color:rgba(255, 255, 255, 0);
  11171. border-radius:0px;
  11172. filter:drop-shadow(none);
  11173. transition:none;
  11174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11175. font-weight:400;
  11176. font-style:normal;
  11177. font-size:14px;
  11178. color:#D7D7D7;
  11179. }
  11180. #u16057 {
  11181. border-width:0px;
  11182. position:absolute;
  11183. left:1194px;
  11184. top:634px;
  11185. width:161px;
  11186. height:33px;
  11187. display:flex;
  11188. transition:none;
  11189. transform-origin:50% 50%;
  11190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11191. font-weight:400;
  11192. font-style:normal;
  11193. font-size:14px;
  11194. color:#D7D7D7;
  11195. }
  11196. #u16057 .text {
  11197. position:absolute;
  11198. align-self:center;
  11199. padding:2px 2px 2px 2px;
  11200. box-sizing:border-box;
  11201. width:100%;
  11202. }
  11203. #u16057_div.hint {
  11204. border-width:0px;
  11205. position:absolute;
  11206. left:0px;
  11207. top:0px;
  11208. width:161px;
  11209. height:33px;
  11210. background:inherit;
  11211. background-color:rgba(255, 255, 255, 0);
  11212. border-radius:0px;
  11213. filter:drop-shadow(none);
  11214. transition:none;
  11215. font-family:"Microsoft YaHei", sans-serif;
  11216. font-weight:400;
  11217. font-style:normal;
  11218. font-size:14px;
  11219. color:#D7D7D7;
  11220. }
  11221. #u16057.hint {
  11222. }
  11223. #u16057_div.disabled {
  11224. border-width:0px;
  11225. position:absolute;
  11226. left:0px;
  11227. top:0px;
  11228. width:161px;
  11229. height:33px;
  11230. background:inherit;
  11231. background-color:rgba(240, 240, 240, 1);
  11232. border-radius:0px;
  11233. filter:drop-shadow(none);
  11234. transition:none;
  11235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11236. font-weight:400;
  11237. font-style:normal;
  11238. font-size:14px;
  11239. color:#D7D7D7;
  11240. }
  11241. #u16057.disabled {
  11242. }
  11243. #u16057_div.hint.disabled {
  11244. border-width:0px;
  11245. position:absolute;
  11246. left:0px;
  11247. top:0px;
  11248. width:161px;
  11249. height:33px;
  11250. background:inherit;
  11251. background-color:rgba(240, 240, 240, 1);
  11252. border-radius:0px;
  11253. filter:drop-shadow(none);
  11254. transition:none;
  11255. font-family:"Microsoft YaHei", sans-serif;
  11256. font-weight:400;
  11257. font-style:normal;
  11258. font-size:14px;
  11259. color:#D7D7D7;
  11260. }
  11261. #u16057.hint.disabled {
  11262. }
  11263. #u16058_div {
  11264. border-width:0px;
  11265. position:absolute;
  11266. left:0px;
  11267. top:0px;
  11268. width:78px;
  11269. height:40px;
  11270. background:inherit;
  11271. background-color:rgba(255, 255, 255, 0);
  11272. border-left:0px;
  11273. border-top:0px;
  11274. border-right:0px;
  11275. border-radius:0px;
  11276. border-bottom-right-radius:0px;
  11277. border-bottom-left-radius:0px;
  11278. filter:drop-shadow(none);
  11279. transition:none;
  11280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11281. font-weight:400;
  11282. font-style:normal;
  11283. font-size:14px;
  11284. }
  11285. #u16058 {
  11286. border-width:0px;
  11287. position:absolute;
  11288. left:1186px;
  11289. top:592px;
  11290. width:78px;
  11291. height:40px;
  11292. display:flex;
  11293. transition:none;
  11294. transform-origin:50% 50%;
  11295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11296. font-weight:400;
  11297. font-style:normal;
  11298. font-size:14px;
  11299. }
  11300. #u16058 .text {
  11301. position:absolute;
  11302. align-self:center;
  11303. padding:0px 0px 0px 0px;
  11304. box-sizing:border-box;
  11305. width:100%;
  11306. }
  11307. #u16058_text {
  11308. border-width:0px;
  11309. white-space:nowrap;
  11310. text-transform:none;
  11311. }
  11312. #u16059_div {
  11313. border-width:0px;
  11314. position:absolute;
  11315. left:0px;
  11316. top:0px;
  11317. width:64px;
  11318. height:40px;
  11319. background:inherit;
  11320. background-color:rgba(255, 255, 255, 0);
  11321. border-left:0px;
  11322. border-top:0px;
  11323. border-right:0px;
  11324. border-radius:0px;
  11325. border-bottom-right-radius:0px;
  11326. border-bottom-left-radius:0px;
  11327. filter:drop-shadow(none);
  11328. transition:none;
  11329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11330. font-weight:400;
  11331. font-style:normal;
  11332. font-size:14px;
  11333. }
  11334. #u16059 {
  11335. border-width:0px;
  11336. position:absolute;
  11337. left:956px;
  11338. top:681px;
  11339. width:64px;
  11340. height:40px;
  11341. display:flex;
  11342. transition:none;
  11343. transform-origin:50% 50%;
  11344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11345. font-weight:400;
  11346. font-style:normal;
  11347. font-size:14px;
  11348. }
  11349. #u16059 .text {
  11350. position:absolute;
  11351. align-self:center;
  11352. padding:0px 0px 0px 0px;
  11353. box-sizing:border-box;
  11354. width:100%;
  11355. }
  11356. #u16059_text {
  11357. border-width:0px;
  11358. white-space:nowrap;
  11359. text-transform:none;
  11360. }
  11361. #u16060 {
  11362. border-width:0px;
  11363. position:absolute;
  11364. left:0px;
  11365. top:0px;
  11366. width:0px;
  11367. height:0px;
  11368. }
  11369. #u16061_div {
  11370. border-width:0px;
  11371. position:absolute;
  11372. left:0px;
  11373. top:0px;
  11374. width:200px;
  11375. height:40px;
  11376. background:inherit;
  11377. background-color:rgba(255, 255, 255, 1);
  11378. box-sizing:border-box;
  11379. border-width:1px;
  11380. border-style:solid;
  11381. border-color:rgba(215, 215, 215, 1);
  11382. border-radius:4px;
  11383. filter:drop-shadow(none);
  11384. transition:none;
  11385. font-size:14px;
  11386. }
  11387. #u16061 {
  11388. border-width:0px;
  11389. position:absolute;
  11390. left:956px;
  11391. top:721px;
  11392. width:200px;
  11393. height:40px;
  11394. display:flex;
  11395. transition:none;
  11396. transform-origin:50% 50%;
  11397. font-size:14px;
  11398. }
  11399. #u16061 .text {
  11400. position:absolute;
  11401. align-self:center;
  11402. padding:2px 2px 2px 2px;
  11403. box-sizing:border-box;
  11404. width:100%;
  11405. }
  11406. #u16061_text {
  11407. border-width:0px;
  11408. word-wrap:break-word;
  11409. text-transform:none;
  11410. visibility:hidden;
  11411. }
  11412. #u16062_input {
  11413. position:absolute;
  11414. left:0px;
  11415. top:0px;
  11416. width:191px;
  11417. height:31px;
  11418. padding:2px 2px 2px 2px;
  11419. font-family:'ArialMT', 'Arial', sans-serif;
  11420. font-weight:400;
  11421. font-style:normal;
  11422. font-size:14px;
  11423. letter-spacing:normal;
  11424. color:#AAAAAA;
  11425. vertical-align:none;
  11426. text-align:left;
  11427. text-transform:none;
  11428. background-color:transparent;
  11429. border-color:transparent;
  11430. }
  11431. #u16062_input.disabled {
  11432. position:absolute;
  11433. left:0px;
  11434. top:0px;
  11435. width:191px;
  11436. height:31px;
  11437. padding:2px 2px 2px 2px;
  11438. font-family:'ArialMT', 'Arial', sans-serif;
  11439. font-weight:400;
  11440. font-style:normal;
  11441. font-size:14px;
  11442. letter-spacing:normal;
  11443. color:#AAAAAA;
  11444. vertical-align:none;
  11445. text-align:left;
  11446. text-transform:none;
  11447. background-color:transparent;
  11448. border-color:transparent;
  11449. }
  11450. #u16062_div {
  11451. border-width:0px;
  11452. position:absolute;
  11453. left:0px;
  11454. top:0px;
  11455. width:191px;
  11456. height:31px;
  11457. background:inherit;
  11458. background-color:rgba(255, 255, 255, 1);
  11459. border-radius:0px;
  11460. filter:drop-shadow(none);
  11461. transition:none;
  11462. font-size:14px;
  11463. color:#AAAAAA;
  11464. }
  11465. #u16062 {
  11466. border-width:0px;
  11467. position:absolute;
  11468. left:962px;
  11469. top:724px;
  11470. width:191px;
  11471. height:31px;
  11472. display:flex;
  11473. transition:none;
  11474. transform-origin:50% 50%;
  11475. font-size:14px;
  11476. color:#AAAAAA;
  11477. }
  11478. #u16062 .text {
  11479. position:absolute;
  11480. align-self:flex-start;
  11481. padding:2px 2px 2px 2px;
  11482. box-sizing:border-box;
  11483. width:100%;
  11484. }
  11485. #u16062_div.disabled {
  11486. border-width:0px;
  11487. position:absolute;
  11488. left:0px;
  11489. top:0px;
  11490. width:191px;
  11491. height:31px;
  11492. background:inherit;
  11493. background-color:rgba(240, 240, 240, 1);
  11494. border-radius:0px;
  11495. filter:drop-shadow(none);
  11496. transition:none;
  11497. font-size:14px;
  11498. color:#AAAAAA;
  11499. }
  11500. #u16062.disabled {
  11501. }
  11502. .u16062_input_option {
  11503. font-size:14px;
  11504. }
  11505. #u16063 {
  11506. border-width:0px;
  11507. position:absolute;
  11508. left:0px;
  11509. top:0px;
  11510. width:0px;
  11511. height:0px;
  11512. }
  11513. #u16064_div {
  11514. border-width:0px;
  11515. position:absolute;
  11516. left:0px;
  11517. top:0px;
  11518. width:200px;
  11519. height:40px;
  11520. background:inherit;
  11521. background-color:rgba(255, 255, 255, 1);
  11522. box-sizing:border-box;
  11523. border-width:1px;
  11524. border-style:solid;
  11525. border-color:rgba(201, 201, 201, 1);
  11526. border-radius:4px;
  11527. filter:drop-shadow(none);
  11528. transition:none;
  11529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11530. font-weight:400;
  11531. font-style:normal;
  11532. font-size:14px;
  11533. text-align:right;
  11534. }
  11535. #u16064 {
  11536. border-width:0px;
  11537. position:absolute;
  11538. left:1186px;
  11539. top:721px;
  11540. width:200px;
  11541. height:40px;
  11542. display:flex;
  11543. transition:none;
  11544. transform-origin:50% 50%;
  11545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11546. font-weight:400;
  11547. font-style:normal;
  11548. font-size:14px;
  11549. text-align:right;
  11550. }
  11551. #u16064 .text {
  11552. position:absolute;
  11553. align-self:center;
  11554. padding:2px 8px 2px 8px;
  11555. box-sizing:border-box;
  11556. width:100%;
  11557. }
  11558. #u16064_text {
  11559. border-width:0px;
  11560. word-wrap:break-word;
  11561. text-transform:none;
  11562. visibility:hidden;
  11563. }
  11564. #u16065_input {
  11565. position:absolute;
  11566. left:0px;
  11567. top:0px;
  11568. width:161px;
  11569. height:33px;
  11570. padding:2px 2px 2px 2px;
  11571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11572. font-weight:400;
  11573. font-style:normal;
  11574. font-size:14px;
  11575. letter-spacing:normal;
  11576. color:#D7D7D7;
  11577. vertical-align:none;
  11578. text-align:left;
  11579. text-transform:none;
  11580. background-color:transparent;
  11581. border-color:transparent;
  11582. }
  11583. #u16065_input.hint {
  11584. position:absolute;
  11585. left:0px;
  11586. top:0px;
  11587. width:161px;
  11588. height:33px;
  11589. padding:2px 2px 2px 2px;
  11590. font-family:"Microsoft YaHei", sans-serif;
  11591. font-weight:400;
  11592. font-style:normal;
  11593. font-size:14px;
  11594. letter-spacing:normal;
  11595. color:#AAAAAA;
  11596. vertical-align:none;
  11597. text-align:left;
  11598. text-transform:none;
  11599. background-color:transparent;
  11600. border-color:transparent;
  11601. }
  11602. #u16065_input.disabled {
  11603. position:absolute;
  11604. left:0px;
  11605. top:0px;
  11606. width:161px;
  11607. height:33px;
  11608. padding:2px 2px 2px 2px;
  11609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11610. font-weight:400;
  11611. font-style:normal;
  11612. font-size:14px;
  11613. letter-spacing:normal;
  11614. color:#D7D7D7;
  11615. vertical-align:none;
  11616. text-align:left;
  11617. text-transform:none;
  11618. background-color:transparent;
  11619. border-color:transparent;
  11620. }
  11621. #u16065_input.hint.disabled {
  11622. position:absolute;
  11623. left:0px;
  11624. top:0px;
  11625. width:161px;
  11626. height:33px;
  11627. padding:2px 2px 2px 2px;
  11628. font-family:"Microsoft YaHei", sans-serif;
  11629. font-weight:400;
  11630. font-style:normal;
  11631. font-size:14px;
  11632. letter-spacing:normal;
  11633. color:#AAAAAA;
  11634. vertical-align:none;
  11635. text-align:left;
  11636. text-transform:none;
  11637. background-color:transparent;
  11638. border-color:transparent;
  11639. }
  11640. #u16065_div {
  11641. border-width:0px;
  11642. position:absolute;
  11643. left:0px;
  11644. top:0px;
  11645. width:161px;
  11646. height:33px;
  11647. background:inherit;
  11648. background-color:rgba(255, 255, 255, 0);
  11649. border-radius:0px;
  11650. filter:drop-shadow(none);
  11651. transition:none;
  11652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11653. font-weight:400;
  11654. font-style:normal;
  11655. font-size:14px;
  11656. color:#D7D7D7;
  11657. }
  11658. #u16065 {
  11659. border-width:0px;
  11660. position:absolute;
  11661. left:1194px;
  11662. top:724px;
  11663. width:161px;
  11664. height:33px;
  11665. display:flex;
  11666. transition:none;
  11667. transform-origin:50% 50%;
  11668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11669. font-weight:400;
  11670. font-style:normal;
  11671. font-size:14px;
  11672. color:#D7D7D7;
  11673. }
  11674. #u16065 .text {
  11675. position:absolute;
  11676. align-self:center;
  11677. padding:2px 2px 2px 2px;
  11678. box-sizing:border-box;
  11679. width:100%;
  11680. }
  11681. #u16065_div.hint {
  11682. border-width:0px;
  11683. position:absolute;
  11684. left:0px;
  11685. top:0px;
  11686. width:161px;
  11687. height:33px;
  11688. background:inherit;
  11689. background-color:rgba(255, 255, 255, 0);
  11690. border-radius:0px;
  11691. filter:drop-shadow(none);
  11692. transition:none;
  11693. font-family:"Microsoft YaHei", sans-serif;
  11694. font-weight:400;
  11695. font-style:normal;
  11696. font-size:14px;
  11697. color:#D7D7D7;
  11698. }
  11699. #u16065.hint {
  11700. }
  11701. #u16065_div.disabled {
  11702. border-width:0px;
  11703. position:absolute;
  11704. left:0px;
  11705. top:0px;
  11706. width:161px;
  11707. height:33px;
  11708. background:inherit;
  11709. background-color:rgba(240, 240, 240, 1);
  11710. border-radius:0px;
  11711. filter:drop-shadow(none);
  11712. transition:none;
  11713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11714. font-weight:400;
  11715. font-style:normal;
  11716. font-size:14px;
  11717. color:#D7D7D7;
  11718. }
  11719. #u16065.disabled {
  11720. }
  11721. #u16065_div.hint.disabled {
  11722. border-width:0px;
  11723. position:absolute;
  11724. left:0px;
  11725. top:0px;
  11726. width:161px;
  11727. height:33px;
  11728. background:inherit;
  11729. background-color:rgba(240, 240, 240, 1);
  11730. border-radius:0px;
  11731. filter:drop-shadow(none);
  11732. transition:none;
  11733. font-family:"Microsoft YaHei", sans-serif;
  11734. font-weight:400;
  11735. font-style:normal;
  11736. font-size:14px;
  11737. color:#D7D7D7;
  11738. }
  11739. #u16065.hint.disabled {
  11740. }
  11741. #u16066_div {
  11742. border-width:0px;
  11743. position:absolute;
  11744. left:0px;
  11745. top:0px;
  11746. width:64px;
  11747. height:40px;
  11748. background:inherit;
  11749. background-color:rgba(255, 255, 255, 0);
  11750. border-left:0px;
  11751. border-top:0px;
  11752. border-right:0px;
  11753. border-radius:0px;
  11754. border-bottom-right-radius:0px;
  11755. border-bottom-left-radius:0px;
  11756. filter:drop-shadow(none);
  11757. transition:none;
  11758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11759. font-weight:400;
  11760. font-style:normal;
  11761. font-size:14px;
  11762. }
  11763. #u16066 {
  11764. border-width:0px;
  11765. position:absolute;
  11766. left:1186px;
  11767. top:682px;
  11768. width:64px;
  11769. height:40px;
  11770. display:flex;
  11771. transition:none;
  11772. transform-origin:50% 50%;
  11773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11774. font-weight:400;
  11775. font-style:normal;
  11776. font-size:14px;
  11777. }
  11778. #u16066 .text {
  11779. position:absolute;
  11780. align-self:center;
  11781. padding:0px 0px 0px 0px;
  11782. box-sizing:border-box;
  11783. width:100%;
  11784. }
  11785. #u16066_text {
  11786. border-width:0px;
  11787. white-space:nowrap;
  11788. text-transform:none;
  11789. }
  11790. #u16067_div {
  11791. border-width:0px;
  11792. position:absolute;
  11793. left:0px;
  11794. top:0px;
  11795. width:502px;
  11796. height:100px;
  11797. background:inherit;
  11798. background-color:rgba(255, 255, 255, 0);
  11799. border-left:0px;
  11800. border-top:0px;
  11801. border-right:0px;
  11802. border-radius:0px;
  11803. border-bottom-right-radius:0px;
  11804. border-bottom-left-radius:0px;
  11805. filter:drop-shadow(none);
  11806. transition:none;
  11807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11808. font-weight:400;
  11809. font-style:normal;
  11810. font-size:14px;
  11811. color:#D9001B;
  11812. }
  11813. #u16067 {
  11814. border-width:0px;
  11815. position:absolute;
  11816. left:1421px;
  11817. top:665px;
  11818. width:502px;
  11819. height:100px;
  11820. display:flex;
  11821. transition:none;
  11822. transform-origin:50% 50%;
  11823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11824. font-weight:400;
  11825. font-style:normal;
  11826. font-size:14px;
  11827. color:#D9001B;
  11828. }
  11829. #u16067 .text {
  11830. position:absolute;
  11831. align-self:center;
  11832. padding:0px 0px 0px 0px;
  11833. box-sizing:border-box;
  11834. width:100%;
  11835. }
  11836. #u16067_text {
  11837. border-width:0px;
  11838. word-wrap:break-word;
  11839. text-transform:none;
  11840. }
  11841. #u16068_div {
  11842. border-width:0px;
  11843. position:absolute;
  11844. left:0px;
  11845. top:0px;
  11846. width:109px;
  11847. height:17px;
  11848. background:inherit;
  11849. background-color:rgba(255, 255, 255, 0);
  11850. border-left:0px;
  11851. border-top:0px;
  11852. border-right:0px;
  11853. border-radius:0px;
  11854. border-bottom-right-radius:0px;
  11855. border-bottom-left-radius:0px;
  11856. filter:drop-shadow(none);
  11857. transition:none;
  11858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11859. font-weight:400;
  11860. font-style:normal;
  11861. font-size:12px;
  11862. color:#D9001B;
  11863. }
  11864. #u16068 {
  11865. border-width:0px;
  11866. position:absolute;
  11867. left:1041px;
  11868. top:425px;
  11869. width:109px;
  11870. height:17px;
  11871. display:flex;
  11872. transition:none;
  11873. transform-origin:50% 50%;
  11874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11875. font-weight:400;
  11876. font-style:normal;
  11877. font-size:12px;
  11878. color:#D9001B;
  11879. }
  11880. #u16068 .text {
  11881. position:absolute;
  11882. align-self:center;
  11883. padding:0px 0px 0px 0px;
  11884. box-sizing:border-box;
  11885. width:100%;
  11886. }
  11887. #u16068_text {
  11888. border-width:0px;
  11889. white-space:nowrap;
  11890. text-transform:none;
  11891. }
  11892. #u16069_div {
  11893. border-width:0px;
  11894. position:absolute;
  11895. left:0px;
  11896. top:0px;
  11897. width:109px;
  11898. height:17px;
  11899. background:inherit;
  11900. background-color:rgba(255, 255, 255, 0);
  11901. border-left:0px;
  11902. border-top:0px;
  11903. border-right:0px;
  11904. border-radius:0px;
  11905. border-bottom-right-radius:0px;
  11906. border-bottom-left-radius:0px;
  11907. filter:drop-shadow(none);
  11908. transition:none;
  11909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11910. font-weight:400;
  11911. font-style:normal;
  11912. font-size:12px;
  11913. color:#D9001B;
  11914. }
  11915. #u16069 {
  11916. border-width:0px;
  11917. position:absolute;
  11918. left:1277px;
  11919. top:694px;
  11920. width:109px;
  11921. height:17px;
  11922. display:flex;
  11923. transition:none;
  11924. transform-origin:50% 50%;
  11925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11926. font-weight:400;
  11927. font-style:normal;
  11928. font-size:12px;
  11929. color:#D9001B;
  11930. }
  11931. #u16069 .text {
  11932. position:absolute;
  11933. align-self:center;
  11934. padding:0px 0px 0px 0px;
  11935. box-sizing:border-box;
  11936. width:100%;
  11937. }
  11938. #u16069_text {
  11939. border-width:0px;
  11940. white-space:nowrap;
  11941. text-transform:none;
  11942. }
  11943. #u16070_div {
  11944. border-width:0px;
  11945. position:absolute;
  11946. left:0px;
  11947. top:0px;
  11948. width:271px;
  11949. height:40px;
  11950. background:inherit;
  11951. background-color:rgba(255, 255, 255, 0);
  11952. border-left:0px;
  11953. border-top:0px;
  11954. border-right:0px;
  11955. border-radius:0px;
  11956. border-bottom-right-radius:0px;
  11957. border-bottom-left-radius:0px;
  11958. filter:drop-shadow(none);
  11959. transition:none;
  11960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11961. font-weight:400;
  11962. font-style:normal;
  11963. }
  11964. #u16070 {
  11965. border-width:0px;
  11966. position:absolute;
  11967. left:1186px;
  11968. top:771px;
  11969. width:271px;
  11970. height:40px;
  11971. display:flex;
  11972. transition:none;
  11973. transform-origin:50% 50%;
  11974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11975. font-weight:400;
  11976. font-style:normal;
  11977. }
  11978. #u16070 .text {
  11979. position:absolute;
  11980. align-self:center;
  11981. padding:0px 0px 0px 0px;
  11982. box-sizing:border-box;
  11983. width:100%;
  11984. }
  11985. #u16070_text {
  11986. border-width:0px;
  11987. white-space:nowrap;
  11988. text-transform:none;
  11989. }
  11990. #u16071_div {
  11991. border-width:0px;
  11992. position:absolute;
  11993. left:0px;
  11994. top:0px;
  11995. width:120px;
  11996. height:40px;
  11997. background:inherit;
  11998. background-color:rgba(24, 144, 255, 1);
  11999. border-radius:4px;
  12000. filter:drop-shadow(none);
  12001. transition:none;
  12002. font-size:14px;
  12003. color:#FFFFFF;
  12004. }
  12005. #u16071 {
  12006. border-width:0px;
  12007. position:absolute;
  12008. left:1186px;
  12009. top:811px;
  12010. width:120px;
  12011. height:40px;
  12012. display:flex;
  12013. transition:none;
  12014. transform-origin:50% 50%;
  12015. font-size:14px;
  12016. color:#FFFFFF;
  12017. }
  12018. #u16071 .text {
  12019. position:absolute;
  12020. align-self:center;
  12021. padding:2px 8px 2px 8px;
  12022. box-sizing:border-box;
  12023. width:100%;
  12024. }
  12025. #u16071_text {
  12026. border-width:0px;
  12027. word-wrap:break-word;
  12028. text-transform:none;
  12029. }
  12030. #u16072 {
  12031. border-width:0px;
  12032. position:absolute;
  12033. left:0px;
  12034. top:0px;
  12035. width:0px;
  12036. height:0px;
  12037. }
  12038. #u16073 {
  12039. border-width:0px;
  12040. position:absolute;
  12041. left:0px;
  12042. top:0px;
  12043. width:0px;
  12044. height:0px;
  12045. }
  12046. #u16074_div {
  12047. border-width:0px;
  12048. position:absolute;
  12049. left:0px;
  12050. top:0px;
  12051. width:380px;
  12052. height:160px;
  12053. background:inherit;
  12054. background-color:rgba(255, 255, 255, 1);
  12055. box-sizing:border-box;
  12056. border-width:1px;
  12057. border-style:solid;
  12058. border-color:rgba(242, 242, 242, 1);
  12059. border-radius:4px;
  12060. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  12061. transition:none;
  12062. font-family:"Microsoft YaHei", sans-serif;
  12063. font-weight:400;
  12064. font-style:normal;
  12065. }
  12066. #u16074 {
  12067. border-width:0px;
  12068. position:absolute;
  12069. left:497px;
  12070. top:1295px;
  12071. width:380px;
  12072. height:160px;
  12073. display:flex;
  12074. transition:none;
  12075. transform-origin:50% 50%;
  12076. font-family:"Microsoft YaHei", sans-serif;
  12077. font-weight:400;
  12078. font-style:normal;
  12079. }
  12080. #u16074 .text {
  12081. position:absolute;
  12082. align-self:center;
  12083. padding:2px 2px 2px 2px;
  12084. box-sizing:border-box;
  12085. width:100%;
  12086. }
  12087. #u16074_text {
  12088. border-width:0px;
  12089. word-wrap:break-word;
  12090. text-transform:none;
  12091. visibility:hidden;
  12092. }
  12093. #u16075_div {
  12094. border-width:0px;
  12095. position:absolute;
  12096. left:0px;
  12097. top:0px;
  12098. width:163px;
  12099. height:21px;
  12100. background:inherit;
  12101. background-color:rgba(255, 255, 255, 0);
  12102. border-radius:0px;
  12103. filter:drop-shadow(none);
  12104. transition:none;
  12105. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12106. font-weight:650;
  12107. font-style:normal;
  12108. font-size:18px;
  12109. color:#000000;
  12110. line-height:22px;
  12111. }
  12112. #u16075 {
  12113. border-width:0px;
  12114. position:absolute;
  12115. left:557px;
  12116. top:1320px;
  12117. width:163px;
  12118. height:21px;
  12119. display:flex;
  12120. transition:none;
  12121. transform-origin:50% 50%;
  12122. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12123. font-weight:650;
  12124. font-style:normal;
  12125. font-size:18px;
  12126. color:#000000;
  12127. line-height:22px;
  12128. }
  12129. #u16075 .text {
  12130. position:absolute;
  12131. align-self:flex-start;
  12132. padding:0px 0px 0px 0px;
  12133. box-sizing:border-box;
  12134. width:100%;
  12135. }
  12136. #u16075_text {
  12137. border-width:0px;
  12138. white-space:nowrap;
  12139. text-transform:none;
  12140. }
  12141. #u16076_div {
  12142. border-width:0px;
  12143. position:absolute;
  12144. left:0px;
  12145. top:0px;
  12146. width:61px;
  12147. height:32px;
  12148. background:inherit;
  12149. background-color:rgba(24, 144, 255, 1);
  12150. border-radius:4px;
  12151. filter:drop-shadow(none);
  12152. transition:none;
  12153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12154. font-weight:400;
  12155. font-style:normal;
  12156. font-size:14px;
  12157. color:#FFFFFF;
  12158. }
  12159. #u16076 {
  12160. border-width:0px;
  12161. position:absolute;
  12162. left:796px;
  12163. top:1407px;
  12164. width:61px;
  12165. height:32px;
  12166. display:flex;
  12167. transition:none;
  12168. transform-origin:50% 50%;
  12169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12170. font-weight:400;
  12171. font-style:normal;
  12172. font-size:14px;
  12173. color:#FFFFFF;
  12174. }
  12175. #u16076 .text {
  12176. position:absolute;
  12177. align-self:center;
  12178. padding:2px 16px 2px 16px;
  12179. box-sizing:border-box;
  12180. width:100%;
  12181. }
  12182. #u16076_text {
  12183. border-width:0px;
  12184. white-space:nowrap;
  12185. text-transform:none;
  12186. }
  12187. #u16077 {
  12188. border-width:0px;
  12189. position:absolute;
  12190. left:526px;
  12191. top:1324px;
  12192. width:20px;
  12193. height:20px;
  12194. display:flex;
  12195. transition:none;
  12196. }
  12197. #u16077 .text {
  12198. position:absolute;
  12199. align-self:center;
  12200. padding:2px 2px 2px 2px;
  12201. box-sizing:border-box;
  12202. width:100%;
  12203. }
  12204. #u16077_img {
  12205. border-width:0px;
  12206. position:absolute;
  12207. left:0px;
  12208. top:0px;
  12209. width:20px;
  12210. height:20px;
  12211. }
  12212. #u16077_text {
  12213. border-width:0px;
  12214. word-wrap:break-word;
  12215. text-transform:none;
  12216. visibility:hidden;
  12217. }
  12218. #u16078_div {
  12219. border-width:0px;
  12220. position:absolute;
  12221. left:0px;
  12222. top:0px;
  12223. width:300px;
  12224. height:44px;
  12225. background:inherit;
  12226. background-color:rgba(255, 255, 255, 0);
  12227. border-radius:0px;
  12228. filter:drop-shadow(none);
  12229. transition:none;
  12230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12231. font-weight:400;
  12232. font-style:normal;
  12233. font-size:14px;
  12234. color:#7F7F7F;
  12235. line-height:22px;
  12236. }
  12237. #u16078 {
  12238. border-width:0px;
  12239. position:absolute;
  12240. left:557px;
  12241. top:1354px;
  12242. width:300px;
  12243. height:44px;
  12244. display:flex;
  12245. transition:none;
  12246. transform-origin:50% 50%;
  12247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12248. font-weight:400;
  12249. font-style:normal;
  12250. font-size:14px;
  12251. color:#7F7F7F;
  12252. line-height:22px;
  12253. }
  12254. #u16078 .text {
  12255. position:absolute;
  12256. align-self:flex-start;
  12257. padding:0px 0px 0px 0px;
  12258. box-sizing:border-box;
  12259. width:100%;
  12260. }
  12261. #u16078_text {
  12262. border-width:0px;
  12263. word-wrap:break-word;
  12264. text-transform:none;
  12265. }
  12266. #u16079_div {
  12267. border-width:0px;
  12268. position:absolute;
  12269. left:0px;
  12270. top:0px;
  12271. width:66px;
  12272. height:32px;
  12273. background:inherit;
  12274. background-color:rgba(255, 255, 255, 1);
  12275. box-sizing:border-box;
  12276. border-width:1px;
  12277. border-style:solid;
  12278. border-color:rgba(217, 217, 217, 1);
  12279. border-radius:4px;
  12280. filter:drop-shadow(none);
  12281. transition:none;
  12282. font-family:"Microsoft YaHei", sans-serif;
  12283. font-weight:400;
  12284. font-style:normal;
  12285. font-size:14px;
  12286. color:rgba(0, 0, 0, 0.6470588235294118);
  12287. line-height:21px;
  12288. }
  12289. #u16079 {
  12290. border-width:0px;
  12291. position:absolute;
  12292. left:713px;
  12293. top:1407px;
  12294. width:66px;
  12295. height:32px;
  12296. display:flex;
  12297. transition:none;
  12298. transform-origin:50% 50%;
  12299. font-family:"Microsoft YaHei", sans-serif;
  12300. font-weight:400;
  12301. font-style:normal;
  12302. font-size:14px;
  12303. color:rgba(0, 0, 0, 0.6470588235294118);
  12304. line-height:21px;
  12305. }
  12306. #u16079 .text {
  12307. position:absolute;
  12308. align-self:center;
  12309. padding:2px 16px 2px 16px;
  12310. box-sizing:border-box;
  12311. width:100%;
  12312. }
  12313. #u16079_text {
  12314. border-width:0px;
  12315. white-space:nowrap;
  12316. text-transform:none;
  12317. }
  12318. #u16080 {
  12319. border-width:0px;
  12320. position:absolute;
  12321. left:0px;
  12322. top:0px;
  12323. width:0px;
  12324. height:0px;
  12325. }
  12326. #u16081 {
  12327. border-width:0px;
  12328. position:absolute;
  12329. left:0px;
  12330. top:0px;
  12331. width:0px;
  12332. height:0px;
  12333. }
  12334. #u16082_div {
  12335. border-width:0px;
  12336. position:absolute;
  12337. left:0px;
  12338. top:0px;
  12339. width:380px;
  12340. height:160px;
  12341. background:inherit;
  12342. background-color:rgba(255, 255, 255, 1);
  12343. box-sizing:border-box;
  12344. border-width:1px;
  12345. border-style:solid;
  12346. border-color:rgba(242, 242, 242, 1);
  12347. border-radius:4px;
  12348. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  12349. transition:none;
  12350. font-family:"Microsoft YaHei", sans-serif;
  12351. font-weight:400;
  12352. font-style:normal;
  12353. }
  12354. #u16082 {
  12355. border-width:0px;
  12356. position:absolute;
  12357. left:1297px;
  12358. top:981px;
  12359. width:380px;
  12360. height:160px;
  12361. display:flex;
  12362. transition:none;
  12363. transform-origin:50% 50%;
  12364. font-family:"Microsoft YaHei", sans-serif;
  12365. font-weight:400;
  12366. font-style:normal;
  12367. }
  12368. #u16082 .text {
  12369. position:absolute;
  12370. align-self:center;
  12371. padding:2px 2px 2px 2px;
  12372. box-sizing:border-box;
  12373. width:100%;
  12374. }
  12375. #u16082_text {
  12376. border-width:0px;
  12377. word-wrap:break-word;
  12378. text-transform:none;
  12379. visibility:hidden;
  12380. }
  12381. #u16083_div {
  12382. border-width:0px;
  12383. position:absolute;
  12384. left:0px;
  12385. top:0px;
  12386. width:163px;
  12387. height:21px;
  12388. background:inherit;
  12389. background-color:rgba(255, 255, 255, 0);
  12390. border-radius:0px;
  12391. filter:drop-shadow(none);
  12392. transition:none;
  12393. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12394. font-weight:650;
  12395. font-style:normal;
  12396. font-size:18px;
  12397. color:#000000;
  12398. line-height:22px;
  12399. }
  12400. #u16083 {
  12401. border-width:0px;
  12402. position:absolute;
  12403. left:1357px;
  12404. top:1006px;
  12405. width:163px;
  12406. height:21px;
  12407. display:flex;
  12408. transition:none;
  12409. transform-origin:50% 50%;
  12410. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12411. font-weight:650;
  12412. font-style:normal;
  12413. font-size:18px;
  12414. color:#000000;
  12415. line-height:22px;
  12416. }
  12417. #u16083 .text {
  12418. position:absolute;
  12419. align-self:flex-start;
  12420. padding:0px 0px 0px 0px;
  12421. box-sizing:border-box;
  12422. width:100%;
  12423. }
  12424. #u16083_text {
  12425. border-width:0px;
  12426. white-space:nowrap;
  12427. text-transform:none;
  12428. }
  12429. #u16084_div {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:0px;
  12433. top:0px;
  12434. width:61px;
  12435. height:32px;
  12436. background:inherit;
  12437. background-color:rgba(24, 144, 255, 1);
  12438. border-radius:4px;
  12439. filter:drop-shadow(none);
  12440. transition:none;
  12441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12442. font-weight:400;
  12443. font-style:normal;
  12444. font-size:14px;
  12445. color:#FFFFFF;
  12446. }
  12447. #u16084 {
  12448. border-width:0px;
  12449. position:absolute;
  12450. left:1596px;
  12451. top:1093px;
  12452. width:61px;
  12453. height:32px;
  12454. display:flex;
  12455. transition:none;
  12456. transform-origin:50% 50%;
  12457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12458. font-weight:400;
  12459. font-style:normal;
  12460. font-size:14px;
  12461. color:#FFFFFF;
  12462. }
  12463. #u16084 .text {
  12464. position:absolute;
  12465. align-self:center;
  12466. padding:2px 16px 2px 16px;
  12467. box-sizing:border-box;
  12468. width:100%;
  12469. }
  12470. #u16084_text {
  12471. border-width:0px;
  12472. white-space:nowrap;
  12473. text-transform:none;
  12474. }
  12475. #u16085 {
  12476. border-width:0px;
  12477. position:absolute;
  12478. left:1326px;
  12479. top:1010px;
  12480. width:20px;
  12481. height:20px;
  12482. display:flex;
  12483. transition:none;
  12484. }
  12485. #u16085 .text {
  12486. position:absolute;
  12487. align-self:center;
  12488. padding:2px 2px 2px 2px;
  12489. box-sizing:border-box;
  12490. width:100%;
  12491. }
  12492. #u16085_img {
  12493. border-width:0px;
  12494. position:absolute;
  12495. left:0px;
  12496. top:0px;
  12497. width:20px;
  12498. height:20px;
  12499. }
  12500. #u16085_text {
  12501. border-width:0px;
  12502. word-wrap:break-word;
  12503. text-transform:none;
  12504. visibility:hidden;
  12505. }
  12506. #u16086_div {
  12507. border-width:0px;
  12508. position:absolute;
  12509. left:0px;
  12510. top:0px;
  12511. width:300px;
  12512. height:44px;
  12513. background:inherit;
  12514. background-color:rgba(255, 255, 255, 0);
  12515. border-radius:0px;
  12516. filter:drop-shadow(none);
  12517. transition:none;
  12518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12519. font-weight:400;
  12520. font-style:normal;
  12521. font-size:14px;
  12522. color:#7F7F7F;
  12523. line-height:22px;
  12524. }
  12525. #u16086 {
  12526. border-width:0px;
  12527. position:absolute;
  12528. left:1357px;
  12529. top:1040px;
  12530. width:300px;
  12531. height:44px;
  12532. display:flex;
  12533. transition:none;
  12534. transform-origin:50% 50%;
  12535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12536. font-weight:400;
  12537. font-style:normal;
  12538. font-size:14px;
  12539. color:#7F7F7F;
  12540. line-height:22px;
  12541. }
  12542. #u16086 .text {
  12543. position:absolute;
  12544. align-self:flex-start;
  12545. padding:0px 0px 0px 0px;
  12546. box-sizing:border-box;
  12547. width:100%;
  12548. }
  12549. #u16086_text {
  12550. border-width:0px;
  12551. word-wrap:break-word;
  12552. text-transform:none;
  12553. }
  12554. #u16087_div {
  12555. border-width:0px;
  12556. position:absolute;
  12557. left:0px;
  12558. top:0px;
  12559. width:66px;
  12560. height:32px;
  12561. background:inherit;
  12562. background-color:rgba(255, 255, 255, 1);
  12563. box-sizing:border-box;
  12564. border-width:1px;
  12565. border-style:solid;
  12566. border-color:rgba(217, 217, 217, 1);
  12567. border-radius:4px;
  12568. filter:drop-shadow(none);
  12569. transition:none;
  12570. font-family:"Microsoft YaHei", sans-serif;
  12571. font-weight:400;
  12572. font-style:normal;
  12573. font-size:14px;
  12574. color:rgba(0, 0, 0, 0.6470588235294118);
  12575. line-height:21px;
  12576. }
  12577. #u16087 {
  12578. border-width:0px;
  12579. position:absolute;
  12580. left:1513px;
  12581. top:1093px;
  12582. width:66px;
  12583. height:32px;
  12584. display:flex;
  12585. transition:none;
  12586. transform-origin:50% 50%;
  12587. font-family:"Microsoft YaHei", sans-serif;
  12588. font-weight:400;
  12589. font-style:normal;
  12590. font-size:14px;
  12591. color:rgba(0, 0, 0, 0.6470588235294118);
  12592. line-height:21px;
  12593. }
  12594. #u16087 .text {
  12595. position:absolute;
  12596. align-self:center;
  12597. padding:2px 16px 2px 16px;
  12598. box-sizing:border-box;
  12599. width:100%;
  12600. }
  12601. #u16087_text {
  12602. border-width:0px;
  12603. white-space:nowrap;
  12604. text-transform:none;
  12605. }
  12606. #u16088 {
  12607. border-width:0px;
  12608. position:absolute;
  12609. left:0px;
  12610. top:0px;
  12611. width:0px;
  12612. height:0px;
  12613. }
  12614. #u16089_div {
  12615. border-width:0px;
  12616. position:absolute;
  12617. left:0px;
  12618. top:0px;
  12619. width:120px;
  12620. height:40px;
  12621. background:inherit;
  12622. background-color:rgba(255, 255, 255, 1);
  12623. box-sizing:border-box;
  12624. border-width:1px;
  12625. border-style:solid;
  12626. border-color:rgba(215, 215, 215, 1);
  12627. border-radius:4px;
  12628. filter:drop-shadow(none);
  12629. transition:none;
  12630. font-size:14px;
  12631. }
  12632. #u16089 {
  12633. border-width:0px;
  12634. position:absolute;
  12635. left:1106px;
  12636. top:208px;
  12637. width:120px;
  12638. height:40px;
  12639. display:flex;
  12640. transition:none;
  12641. transform-origin:50% 50%;
  12642. font-size:14px;
  12643. }
  12644. #u16089 .text {
  12645. position:absolute;
  12646. align-self:center;
  12647. padding:2px 2px 2px 2px;
  12648. box-sizing:border-box;
  12649. width:100%;
  12650. }
  12651. #u16089_text {
  12652. border-width:0px;
  12653. word-wrap:break-word;
  12654. text-transform:none;
  12655. visibility:hidden;
  12656. }
  12657. #u16090_input {
  12658. position:absolute;
  12659. left:0px;
  12660. top:0px;
  12661. width:115px;
  12662. height:31px;
  12663. padding:2px 2px 2px 2px;
  12664. font-family:'ArialMT', 'Arial', sans-serif;
  12665. font-weight:400;
  12666. font-style:normal;
  12667. font-size:14px;
  12668. letter-spacing:normal;
  12669. color:#AAAAAA;
  12670. vertical-align:none;
  12671. text-align:left;
  12672. text-transform:none;
  12673. background-color:transparent;
  12674. border-color:transparent;
  12675. }
  12676. #u16090_input.disabled {
  12677. position:absolute;
  12678. left:0px;
  12679. top:0px;
  12680. width:115px;
  12681. height:31px;
  12682. padding:2px 2px 2px 2px;
  12683. font-family:'ArialMT', 'Arial', sans-serif;
  12684. font-weight:400;
  12685. font-style:normal;
  12686. font-size:14px;
  12687. letter-spacing:normal;
  12688. color:#AAAAAA;
  12689. vertical-align:none;
  12690. text-align:left;
  12691. text-transform:none;
  12692. background-color:transparent;
  12693. border-color:transparent;
  12694. }
  12695. #u16090_div {
  12696. border-width:0px;
  12697. position:absolute;
  12698. left:0px;
  12699. top:0px;
  12700. width:115px;
  12701. height:31px;
  12702. background:inherit;
  12703. background-color:rgba(255, 255, 255, 1);
  12704. border-radius:0px;
  12705. filter:drop-shadow(none);
  12706. transition:none;
  12707. font-size:14px;
  12708. color:#AAAAAA;
  12709. }
  12710. #u16090 {
  12711. border-width:0px;
  12712. position:absolute;
  12713. left:1110px;
  12714. top:211px;
  12715. width:115px;
  12716. height:31px;
  12717. display:flex;
  12718. transition:none;
  12719. transform-origin:50% 50%;
  12720. font-size:14px;
  12721. color:#AAAAAA;
  12722. }
  12723. #u16090 .text {
  12724. position:absolute;
  12725. align-self:flex-start;
  12726. padding:2px 2px 2px 2px;
  12727. box-sizing:border-box;
  12728. width:100%;
  12729. }
  12730. #u16090_div.disabled {
  12731. border-width:0px;
  12732. position:absolute;
  12733. left:0px;
  12734. top:0px;
  12735. width:115px;
  12736. height:31px;
  12737. background:inherit;
  12738. background-color:rgba(240, 240, 240, 1);
  12739. border-radius:0px;
  12740. filter:drop-shadow(none);
  12741. transition:none;
  12742. font-size:14px;
  12743. color:#AAAAAA;
  12744. }
  12745. #u16090.disabled {
  12746. }
  12747. .u16090_input_option {
  12748. font-size:14px;
  12749. }
  12750. #u16091 {
  12751. border-width:0px;
  12752. position:absolute;
  12753. left:0px;
  12754. top:0px;
  12755. width:0px;
  12756. height:0px;
  12757. }
  12758. #u16092_div {
  12759. border-width:0px;
  12760. position:absolute;
  12761. left:0px;
  12762. top:0px;
  12763. width:120px;
  12764. height:40px;
  12765. background:inherit;
  12766. background-color:rgba(255, 255, 255, 1);
  12767. box-sizing:border-box;
  12768. border-width:1px;
  12769. border-style:solid;
  12770. border-color:rgba(215, 215, 215, 1);
  12771. border-radius:4px;
  12772. filter:drop-shadow(none);
  12773. transition:none;
  12774. font-size:14px;
  12775. }
  12776. #u16092 {
  12777. border-width:0px;
  12778. position:absolute;
  12779. left:1236px;
  12780. top:208px;
  12781. width:120px;
  12782. height:40px;
  12783. display:flex;
  12784. transition:none;
  12785. transform-origin:50% 50%;
  12786. font-size:14px;
  12787. }
  12788. #u16092 .text {
  12789. position:absolute;
  12790. align-self:center;
  12791. padding:2px 2px 2px 2px;
  12792. box-sizing:border-box;
  12793. width:100%;
  12794. }
  12795. #u16092_text {
  12796. border-width:0px;
  12797. word-wrap:break-word;
  12798. text-transform:none;
  12799. visibility:hidden;
  12800. }
  12801. #u16093_input {
  12802. position:absolute;
  12803. left:0px;
  12804. top:0px;
  12805. width:115px;
  12806. height:31px;
  12807. padding:2px 2px 2px 2px;
  12808. font-family:'ArialMT', 'Arial', sans-serif;
  12809. font-weight:400;
  12810. font-style:normal;
  12811. font-size:14px;
  12812. letter-spacing:normal;
  12813. color:#AAAAAA;
  12814. vertical-align:none;
  12815. text-align:left;
  12816. text-transform:none;
  12817. background-color:transparent;
  12818. border-color:transparent;
  12819. }
  12820. #u16093_input.disabled {
  12821. position:absolute;
  12822. left:0px;
  12823. top:0px;
  12824. width:115px;
  12825. height:31px;
  12826. padding:2px 2px 2px 2px;
  12827. font-family:'ArialMT', 'Arial', sans-serif;
  12828. font-weight:400;
  12829. font-style:normal;
  12830. font-size:14px;
  12831. letter-spacing:normal;
  12832. color:#AAAAAA;
  12833. vertical-align:none;
  12834. text-align:left;
  12835. text-transform:none;
  12836. background-color:transparent;
  12837. border-color:transparent;
  12838. }
  12839. #u16093_div {
  12840. border-width:0px;
  12841. position:absolute;
  12842. left:0px;
  12843. top:0px;
  12844. width:115px;
  12845. height:31px;
  12846. background:inherit;
  12847. background-color:rgba(255, 255, 255, 1);
  12848. border-radius:0px;
  12849. filter:drop-shadow(none);
  12850. transition:none;
  12851. font-size:14px;
  12852. color:#AAAAAA;
  12853. }
  12854. #u16093 {
  12855. border-width:0px;
  12856. position:absolute;
  12857. left:1240px;
  12858. top:211px;
  12859. width:115px;
  12860. height:31px;
  12861. display:flex;
  12862. transition:none;
  12863. transform-origin:50% 50%;
  12864. font-size:14px;
  12865. color:#AAAAAA;
  12866. }
  12867. #u16093 .text {
  12868. position:absolute;
  12869. align-self:flex-start;
  12870. padding:2px 2px 2px 2px;
  12871. box-sizing:border-box;
  12872. width:100%;
  12873. }
  12874. #u16093_div.disabled {
  12875. border-width:0px;
  12876. position:absolute;
  12877. left:0px;
  12878. top:0px;
  12879. width:115px;
  12880. height:31px;
  12881. background:inherit;
  12882. background-color:rgba(240, 240, 240, 1);
  12883. border-radius:0px;
  12884. filter:drop-shadow(none);
  12885. transition:none;
  12886. font-size:14px;
  12887. color:#AAAAAA;
  12888. }
  12889. #u16093.disabled {
  12890. }
  12891. .u16093_input_option {
  12892. font-size:14px;
  12893. }
  12894. #u16094_div {
  12895. border-width:0px;
  12896. position:absolute;
  12897. left:0px;
  12898. top:0px;
  12899. width:78px;
  12900. height:40px;
  12901. background:inherit;
  12902. background-color:rgba(255, 255, 255, 0);
  12903. border-left:0px;
  12904. border-top:0px;
  12905. border-right:0px;
  12906. border-radius:0px;
  12907. border-bottom-right-radius:0px;
  12908. border-bottom-left-radius:0px;
  12909. filter:drop-shadow(none);
  12910. transition:none;
  12911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12912. font-weight:400;
  12913. font-style:normal;
  12914. font-size:14px;
  12915. }
  12916. #u16094 {
  12917. border-width:0px;
  12918. position:absolute;
  12919. left:956px;
  12920. top:771px;
  12921. width:78px;
  12922. height:40px;
  12923. display:flex;
  12924. transition:none;
  12925. transform-origin:50% 50%;
  12926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12927. font-weight:400;
  12928. font-style:normal;
  12929. font-size:14px;
  12930. }
  12931. #u16094 .text {
  12932. position:absolute;
  12933. align-self:center;
  12934. padding:0px 0px 0px 0px;
  12935. box-sizing:border-box;
  12936. width:100%;
  12937. }
  12938. #u16094_text {
  12939. border-width:0px;
  12940. white-space:nowrap;
  12941. text-transform:none;
  12942. }
  12943. #u16095 {
  12944. border-width:0px;
  12945. position:absolute;
  12946. left:0px;
  12947. top:0px;
  12948. width:0px;
  12949. height:0px;
  12950. }
  12951. #u16096_div {
  12952. border-width:0px;
  12953. position:absolute;
  12954. left:0px;
  12955. top:0px;
  12956. width:200px;
  12957. height:40px;
  12958. background:inherit;
  12959. background-color:rgba(242, 242, 242, 1);
  12960. box-sizing:border-box;
  12961. border-width:1px;
  12962. border-style:solid;
  12963. border-color:rgba(215, 215, 215, 1);
  12964. border-radius:4px;
  12965. filter:drop-shadow(none);
  12966. transition:none;
  12967. font-size:14px;
  12968. }
  12969. #u16096 {
  12970. border-width:0px;
  12971. position:absolute;
  12972. left:956px;
  12973. top:811px;
  12974. width:200px;
  12975. height:40px;
  12976. display:flex;
  12977. transition:none;
  12978. transform-origin:50% 50%;
  12979. font-size:14px;
  12980. }
  12981. #u16096 .text {
  12982. position:absolute;
  12983. align-self:center;
  12984. padding:2px 2px 2px 2px;
  12985. box-sizing:border-box;
  12986. width:100%;
  12987. }
  12988. #u16096_text {
  12989. border-width:0px;
  12990. word-wrap:break-word;
  12991. text-transform:none;
  12992. visibility:hidden;
  12993. }
  12994. #u16097_input {
  12995. position:absolute;
  12996. left:0px;
  12997. top:0px;
  12998. width:191px;
  12999. height:31px;
  13000. padding:2px 2px 2px 2px;
  13001. font-family:'ArialMT', 'Arial', sans-serif;
  13002. font-weight:400;
  13003. font-style:normal;
  13004. font-size:14px;
  13005. letter-spacing:normal;
  13006. color:#AAAAAA;
  13007. vertical-align:none;
  13008. text-align:left;
  13009. text-transform:none;
  13010. background-color:transparent;
  13011. border-color:transparent;
  13012. }
  13013. #u16097_input.disabled {
  13014. position:absolute;
  13015. left:0px;
  13016. top:0px;
  13017. width:191px;
  13018. height:31px;
  13019. padding:2px 2px 2px 2px;
  13020. font-family:'ArialMT', 'Arial', sans-serif;
  13021. font-weight:400;
  13022. font-style:normal;
  13023. font-size:14px;
  13024. letter-spacing:normal;
  13025. color:#AAAAAA;
  13026. vertical-align:none;
  13027. text-align:left;
  13028. text-transform:none;
  13029. background-color:transparent;
  13030. border-color:transparent;
  13031. }
  13032. #u16097_div {
  13033. border-width:0px;
  13034. position:absolute;
  13035. left:0px;
  13036. top:0px;
  13037. width:191px;
  13038. height:31px;
  13039. background:inherit;
  13040. background-color:rgba(242, 242, 242, 1);
  13041. border-radius:0px;
  13042. filter:drop-shadow(none);
  13043. transition:none;
  13044. font-size:14px;
  13045. color:#AAAAAA;
  13046. }
  13047. #u16097 {
  13048. border-width:0px;
  13049. position:absolute;
  13050. left:962px;
  13051. top:814px;
  13052. width:191px;
  13053. height:31px;
  13054. display:flex;
  13055. transition:none;
  13056. transform-origin:50% 50%;
  13057. font-size:14px;
  13058. color:#AAAAAA;
  13059. }
  13060. #u16097 .text {
  13061. position:absolute;
  13062. align-self:flex-start;
  13063. padding:2px 2px 2px 2px;
  13064. box-sizing:border-box;
  13065. width:100%;
  13066. }
  13067. #u16097_div.disabled {
  13068. border-width:0px;
  13069. position:absolute;
  13070. left:0px;
  13071. top:0px;
  13072. width:191px;
  13073. height:31px;
  13074. background:inherit;
  13075. background-color:rgba(240, 240, 240, 1);
  13076. border-radius:0px;
  13077. filter:drop-shadow(none);
  13078. transition:none;
  13079. font-size:14px;
  13080. color:#AAAAAA;
  13081. }
  13082. #u16097.disabled {
  13083. }
  13084. .u16097_input_option {
  13085. font-size:14px;
  13086. }
  13087. #u16098 label {
  13088. left:0px;
  13089. width:100%;
  13090. height:100%;
  13091. }
  13092. #u16098_img {
  13093. border-width:0px;
  13094. position:absolute;
  13095. left:0px;
  13096. top:3px;
  13097. width:12px;
  13098. height:12px;
  13099. }
  13100. #u16098 {
  13101. border-width:0px;
  13102. position:absolute;
  13103. left:1115px;
  13104. top:782px;
  13105. width:55px;
  13106. height:18px;
  13107. display:flex;
  13108. transition:none;
  13109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13110. font-weight:400;
  13111. font-style:normal;
  13112. }
  13113. #u16098 .text {
  13114. position:absolute;
  13115. align-self:center;
  13116. padding:0px 2px 0px 2px;
  13117. box-sizing:border-box;
  13118. }
  13119. #u16098_img.selected {
  13120. }
  13121. #u16098.selected {
  13122. }
  13123. #u16098_img.disabled {
  13124. }
  13125. #u16098.disabled {
  13126. }
  13127. #u16098_img.selected.error {
  13128. }
  13129. #u16098.selected.error {
  13130. }
  13131. #u16098_img.selected.hint {
  13132. }
  13133. #u16098.selected.hint {
  13134. }
  13135. #u16098_img.selected.error.hint {
  13136. }
  13137. #u16098.selected.error.hint {
  13138. }
  13139. #u16098_img.mouseOver.selected {
  13140. }
  13141. #u16098.mouseOver.selected {
  13142. }
  13143. #u16098_img.mouseOver.selected.error {
  13144. }
  13145. #u16098.mouseOver.selected.error {
  13146. }
  13147. #u16098_img.mouseOver.selected.hint {
  13148. }
  13149. #u16098.mouseOver.selected.hint {
  13150. }
  13151. #u16098_img.mouseOver.selected.error.hint {
  13152. }
  13153. #u16098.mouseOver.selected.error.hint {
  13154. }
  13155. #u16098_img.mouseDown.selected {
  13156. }
  13157. #u16098.mouseDown.selected {
  13158. }
  13159. #u16098_img.mouseDown.selected.error {
  13160. }
  13161. #u16098.mouseDown.selected.error {
  13162. }
  13163. #u16098_img.mouseDown.selected.hint {
  13164. }
  13165. #u16098.mouseDown.selected.hint {
  13166. }
  13167. #u16098_img.mouseDown.selected.error.hint {
  13168. }
  13169. #u16098.mouseDown.selected.error.hint {
  13170. }
  13171. #u16098_img.mouseOver.mouseDown.selected {
  13172. }
  13173. #u16098.mouseOver.mouseDown.selected {
  13174. }
  13175. #u16098_img.mouseOver.mouseDown.selected.error {
  13176. }
  13177. #u16098.mouseOver.mouseDown.selected.error {
  13178. }
  13179. #u16098_img.mouseOver.mouseDown.selected.hint {
  13180. }
  13181. #u16098.mouseOver.mouseDown.selected.hint {
  13182. }
  13183. #u16098_img.mouseOver.mouseDown.selected.error.hint {
  13184. }
  13185. #u16098.mouseOver.mouseDown.selected.error.hint {
  13186. }
  13187. #u16098_img.focused.selected {
  13188. }
  13189. #u16098.focused.selected {
  13190. }
  13191. #u16098_img.focused.selected.error {
  13192. }
  13193. #u16098.focused.selected.error {
  13194. }
  13195. #u16098_img.focused.selected.hint {
  13196. }
  13197. #u16098.focused.selected.hint {
  13198. }
  13199. #u16098_img.focused.selected.error.hint {
  13200. }
  13201. #u16098.focused.selected.error.hint {
  13202. }
  13203. #u16098_img.selected.disabled {
  13204. }
  13205. #u16098.selected.disabled {
  13206. }
  13207. #u16098_img.selected.hint.disabled {
  13208. }
  13209. #u16098.selected.hint.disabled {
  13210. }
  13211. #u16098_img.selected.error.disabled {
  13212. }
  13213. #u16098.selected.error.disabled {
  13214. }
  13215. #u16098_img.selected.error.hint.disabled {
  13216. }
  13217. #u16098.selected.error.hint.disabled {
  13218. }
  13219. #u16098_text {
  13220. border-width:0px;
  13221. position:absolute;
  13222. left:12px;
  13223. top:0px;
  13224. width:43px;
  13225. word-wrap:break-word;
  13226. text-transform:none;
  13227. }
  13228. #u16098_input {
  13229. border-width:0px;
  13230. position:absolute;
  13231. left:0px;
  13232. top:0px;
  13233. width:0px;
  13234. height:0px;
  13235. opacity:0;
  13236. }
  13237. #u16099 label {
  13238. left:0px;
  13239. width:100%;
  13240. height:100%;
  13241. }
  13242. #u16099_img {
  13243. border-width:0px;
  13244. position:absolute;
  13245. left:0px;
  13246. top:3px;
  13247. width:12px;
  13248. height:12px;
  13249. }
  13250. #u16099 {
  13251. border-width:0px;
  13252. position:absolute;
  13253. left:295px;
  13254. top:614px;
  13255. width:55px;
  13256. height:18px;
  13257. display:flex;
  13258. transition:none;
  13259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13260. font-weight:400;
  13261. font-style:normal;
  13262. }
  13263. #u16099 .text {
  13264. position:absolute;
  13265. align-self:center;
  13266. padding:0px 2px 0px 2px;
  13267. box-sizing:border-box;
  13268. }
  13269. #u16099_img.selected {
  13270. }
  13271. #u16099.selected {
  13272. }
  13273. #u16099_img.disabled {
  13274. }
  13275. #u16099.disabled {
  13276. }
  13277. #u16099_img.selected.error {
  13278. }
  13279. #u16099.selected.error {
  13280. }
  13281. #u16099_img.selected.hint {
  13282. }
  13283. #u16099.selected.hint {
  13284. }
  13285. #u16099_img.selected.error.hint {
  13286. }
  13287. #u16099.selected.error.hint {
  13288. }
  13289. #u16099_img.mouseOver.selected {
  13290. }
  13291. #u16099.mouseOver.selected {
  13292. }
  13293. #u16099_img.mouseOver.selected.error {
  13294. }
  13295. #u16099.mouseOver.selected.error {
  13296. }
  13297. #u16099_img.mouseOver.selected.hint {
  13298. }
  13299. #u16099.mouseOver.selected.hint {
  13300. }
  13301. #u16099_img.mouseOver.selected.error.hint {
  13302. }
  13303. #u16099.mouseOver.selected.error.hint {
  13304. }
  13305. #u16099_img.mouseDown.selected {
  13306. }
  13307. #u16099.mouseDown.selected {
  13308. }
  13309. #u16099_img.mouseDown.selected.error {
  13310. }
  13311. #u16099.mouseDown.selected.error {
  13312. }
  13313. #u16099_img.mouseDown.selected.hint {
  13314. }
  13315. #u16099.mouseDown.selected.hint {
  13316. }
  13317. #u16099_img.mouseDown.selected.error.hint {
  13318. }
  13319. #u16099.mouseDown.selected.error.hint {
  13320. }
  13321. #u16099_img.mouseOver.mouseDown.selected {
  13322. }
  13323. #u16099.mouseOver.mouseDown.selected {
  13324. }
  13325. #u16099_img.mouseOver.mouseDown.selected.error {
  13326. }
  13327. #u16099.mouseOver.mouseDown.selected.error {
  13328. }
  13329. #u16099_img.mouseOver.mouseDown.selected.hint {
  13330. }
  13331. #u16099.mouseOver.mouseDown.selected.hint {
  13332. }
  13333. #u16099_img.mouseOver.mouseDown.selected.error.hint {
  13334. }
  13335. #u16099.mouseOver.mouseDown.selected.error.hint {
  13336. }
  13337. #u16099_img.focused.selected {
  13338. }
  13339. #u16099.focused.selected {
  13340. }
  13341. #u16099_img.focused.selected.error {
  13342. }
  13343. #u16099.focused.selected.error {
  13344. }
  13345. #u16099_img.focused.selected.hint {
  13346. }
  13347. #u16099.focused.selected.hint {
  13348. }
  13349. #u16099_img.focused.selected.error.hint {
  13350. }
  13351. #u16099.focused.selected.error.hint {
  13352. }
  13353. #u16099_img.selected.disabled {
  13354. }
  13355. #u16099.selected.disabled {
  13356. }
  13357. #u16099_img.selected.hint.disabled {
  13358. }
  13359. #u16099.selected.hint.disabled {
  13360. }
  13361. #u16099_img.selected.error.disabled {
  13362. }
  13363. #u16099.selected.error.disabled {
  13364. }
  13365. #u16099_img.selected.error.hint.disabled {
  13366. }
  13367. #u16099.selected.error.hint.disabled {
  13368. }
  13369. #u16099_text {
  13370. border-width:0px;
  13371. position:absolute;
  13372. left:12px;
  13373. top:0px;
  13374. width:43px;
  13375. word-wrap:break-word;
  13376. text-transform:none;
  13377. }
  13378. #u16099_input {
  13379. border-width:0px;
  13380. position:absolute;
  13381. left:0px;
  13382. top:0px;
  13383. width:0px;
  13384. height:0px;
  13385. opacity:0;
  13386. }
  13387. #u16100 {
  13388. border-width:0px;
  13389. position:absolute;
  13390. left:0px;
  13391. top:0px;
  13392. width:0px;
  13393. height:0px;
  13394. }
  13395. #u16101_div {
  13396. border-width:0px;
  13397. position:absolute;
  13398. left:0px;
  13399. top:0px;
  13400. width:427px;
  13401. height:80px;
  13402. background:inherit;
  13403. background-color:rgba(255, 255, 255, 1);
  13404. box-sizing:border-box;
  13405. border-width:1px;
  13406. border-style:solid;
  13407. border-color:rgba(201, 201, 201, 1);
  13408. border-radius:4px;
  13409. filter:drop-shadow(none);
  13410. transition:none;
  13411. font-family:"Microsoft YaHei", sans-serif;
  13412. font-weight:400;
  13413. font-style:normal;
  13414. font-size:14px;
  13415. color:#CCCCCC;
  13416. text-align:left;
  13417. }
  13418. #u16101 {
  13419. border-width:0px;
  13420. position:absolute;
  13421. left:136px;
  13422. top:1083px;
  13423. width:427px;
  13424. height:80px;
  13425. display:flex;
  13426. transition:none;
  13427. transform-origin:50% 50%;
  13428. font-family:"Microsoft YaHei", sans-serif;
  13429. font-weight:400;
  13430. font-style:normal;
  13431. font-size:14px;
  13432. color:#CCCCCC;
  13433. text-align:left;
  13434. }
  13435. #u16101 .text {
  13436. position:absolute;
  13437. align-self:center;
  13438. padding:2px 8px 2px 8px;
  13439. box-sizing:border-box;
  13440. width:100%;
  13441. }
  13442. #u16101_text {
  13443. border-width:0px;
  13444. word-wrap:break-word;
  13445. text-transform:none;
  13446. visibility:hidden;
  13447. }
  13448. #u16102_input {
  13449. position:absolute;
  13450. left:0px;
  13451. top:0px;
  13452. width:389px;
  13453. height:33px;
  13454. padding:2px 2px 2px 2px;
  13455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13456. font-weight:400;
  13457. font-style:normal;
  13458. font-size:14px;
  13459. letter-spacing:normal;
  13460. color:#D7D7D7;
  13461. vertical-align:none;
  13462. text-align:left;
  13463. text-transform:none;
  13464. background-color:transparent;
  13465. border-color:transparent;
  13466. }
  13467. #u16102_input.hint {
  13468. position:absolute;
  13469. left:0px;
  13470. top:0px;
  13471. width:389px;
  13472. height:33px;
  13473. padding:2px 2px 2px 2px;
  13474. font-family:"Microsoft YaHei", sans-serif;
  13475. font-weight:400;
  13476. font-style:normal;
  13477. font-size:14px;
  13478. letter-spacing:normal;
  13479. color:#AAAAAA;
  13480. vertical-align:none;
  13481. text-align:left;
  13482. text-transform:none;
  13483. background-color:transparent;
  13484. border-color:transparent;
  13485. }
  13486. #u16102_input.disabled {
  13487. position:absolute;
  13488. left:0px;
  13489. top:0px;
  13490. width:389px;
  13491. height:33px;
  13492. padding:2px 2px 2px 2px;
  13493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13494. font-weight:400;
  13495. font-style:normal;
  13496. font-size:14px;
  13497. letter-spacing:normal;
  13498. color:#D7D7D7;
  13499. vertical-align:none;
  13500. text-align:left;
  13501. text-transform:none;
  13502. background-color:transparent;
  13503. border-color:transparent;
  13504. }
  13505. #u16102_input.hint.disabled {
  13506. position:absolute;
  13507. left:0px;
  13508. top:0px;
  13509. width:389px;
  13510. height:33px;
  13511. padding:2px 2px 2px 2px;
  13512. font-family:"Microsoft YaHei", sans-serif;
  13513. font-weight:400;
  13514. font-style:normal;
  13515. font-size:14px;
  13516. letter-spacing:normal;
  13517. color:#AAAAAA;
  13518. vertical-align:none;
  13519. text-align:left;
  13520. text-transform:none;
  13521. background-color:transparent;
  13522. border-color:transparent;
  13523. }
  13524. #u16102_div {
  13525. border-width:0px;
  13526. position:absolute;
  13527. left:0px;
  13528. top:0px;
  13529. width:389px;
  13530. height:33px;
  13531. background:inherit;
  13532. background-color:rgba(255, 255, 255, 0);
  13533. border-radius:0px;
  13534. filter:drop-shadow(none);
  13535. transition:none;
  13536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13537. font-weight:400;
  13538. font-style:normal;
  13539. font-size:14px;
  13540. color:#D7D7D7;
  13541. }
  13542. #u16102 {
  13543. border-width:0px;
  13544. position:absolute;
  13545. left:153px;
  13546. top:1086px;
  13547. width:389px;
  13548. height:33px;
  13549. display:flex;
  13550. transition:none;
  13551. transform-origin:50% 50%;
  13552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13553. font-weight:400;
  13554. font-style:normal;
  13555. font-size:14px;
  13556. color:#D7D7D7;
  13557. }
  13558. #u16102 .text {
  13559. position:absolute;
  13560. align-self:center;
  13561. padding:2px 2px 2px 2px;
  13562. box-sizing:border-box;
  13563. width:100%;
  13564. }
  13565. #u16102_div.hint {
  13566. border-width:0px;
  13567. position:absolute;
  13568. left:0px;
  13569. top:0px;
  13570. width:389px;
  13571. height:33px;
  13572. background:inherit;
  13573. background-color:rgba(255, 255, 255, 0);
  13574. border-radius:0px;
  13575. filter:drop-shadow(none);
  13576. transition:none;
  13577. font-family:"Microsoft YaHei", sans-serif;
  13578. font-weight:400;
  13579. font-style:normal;
  13580. font-size:14px;
  13581. color:#D7D7D7;
  13582. }
  13583. #u16102.hint {
  13584. }
  13585. #u16102_div.disabled {
  13586. border-width:0px;
  13587. position:absolute;
  13588. left:0px;
  13589. top:0px;
  13590. width:389px;
  13591. height:33px;
  13592. background:inherit;
  13593. background-color:rgba(240, 240, 240, 1);
  13594. border-radius:0px;
  13595. filter:drop-shadow(none);
  13596. transition:none;
  13597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13598. font-weight:400;
  13599. font-style:normal;
  13600. font-size:14px;
  13601. color:#D7D7D7;
  13602. }
  13603. #u16102.disabled {
  13604. }
  13605. #u16102_div.hint.disabled {
  13606. border-width:0px;
  13607. position:absolute;
  13608. left:0px;
  13609. top:0px;
  13610. width:389px;
  13611. height:33px;
  13612. background:inherit;
  13613. background-color:rgba(240, 240, 240, 1);
  13614. border-radius:0px;
  13615. filter:drop-shadow(none);
  13616. transition:none;
  13617. font-family:"Microsoft YaHei", sans-serif;
  13618. font-weight:400;
  13619. font-style:normal;
  13620. font-size:14px;
  13621. color:#D7D7D7;
  13622. }
  13623. #u16102.hint.disabled {
  13624. }
  13625. #u16103_div {
  13626. border-width:0px;
  13627. position:absolute;
  13628. left:0px;
  13629. top:0px;
  13630. width:71px;
  13631. height:40px;
  13632. background:inherit;
  13633. background-color:rgba(255, 255, 255, 0);
  13634. border-left:0px;
  13635. border-top:0px;
  13636. border-right:0px;
  13637. border-radius:0px;
  13638. border-bottom-right-radius:0px;
  13639. border-bottom-left-radius:0px;
  13640. filter:drop-shadow(none);
  13641. transition:none;
  13642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13643. font-weight:400;
  13644. font-style:normal;
  13645. font-size:14px;
  13646. }
  13647. #u16103 {
  13648. border-width:0px;
  13649. position:absolute;
  13650. left:136px;
  13651. top:1043px;
  13652. width:71px;
  13653. height:40px;
  13654. display:flex;
  13655. transition:none;
  13656. transform-origin:50% 50%;
  13657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13658. font-weight:400;
  13659. font-style:normal;
  13660. font-size:14px;
  13661. }
  13662. #u16103 .text {
  13663. position:absolute;
  13664. align-self:center;
  13665. padding:0px 0px 0px 0px;
  13666. box-sizing:border-box;
  13667. width:100%;
  13668. }
  13669. #u16103_text {
  13670. border-width:0px;
  13671. white-space:nowrap;
  13672. text-transform:none;
  13673. }
  13674. #u16104_div {
  13675. border-width:0px;
  13676. position:absolute;
  13677. left:0px;
  13678. top:0px;
  13679. width:271px;
  13680. height:40px;
  13681. background:inherit;
  13682. background-color:rgba(255, 255, 255, 0);
  13683. border-left:0px;
  13684. border-top:0px;
  13685. border-right:0px;
  13686. border-radius:0px;
  13687. border-bottom-right-radius:0px;
  13688. border-bottom-left-radius:0px;
  13689. filter:drop-shadow(none);
  13690. transition:none;
  13691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13692. font-weight:400;
  13693. font-style:normal;
  13694. }
  13695. #u16104 {
  13696. border-width:0px;
  13697. position:absolute;
  13698. left:136px;
  13699. top:953px;
  13700. width:271px;
  13701. height:40px;
  13702. display:flex;
  13703. transition:none;
  13704. transform-origin:50% 50%;
  13705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13706. font-weight:400;
  13707. font-style:normal;
  13708. }
  13709. #u16104 .text {
  13710. position:absolute;
  13711. align-self:center;
  13712. padding:0px 0px 0px 0px;
  13713. box-sizing:border-box;
  13714. width:100%;
  13715. }
  13716. #u16104_text {
  13717. border-width:0px;
  13718. white-space:nowrap;
  13719. text-transform:none;
  13720. }
  13721. #u16105_div {
  13722. border-width:0px;
  13723. position:absolute;
  13724. left:0px;
  13725. top:0px;
  13726. width:156px;
  13727. height:40px;
  13728. background:inherit;
  13729. background-color:rgba(255, 255, 255, 0);
  13730. border-left:0px;
  13731. border-top:0px;
  13732. border-right:0px;
  13733. border-radius:0px;
  13734. border-bottom-right-radius:0px;
  13735. border-bottom-left-radius:0px;
  13736. filter:drop-shadow(none);
  13737. transition:none;
  13738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13739. font-weight:400;
  13740. font-style:normal;
  13741. }
  13742. #u16105 {
  13743. border-width:0px;
  13744. position:absolute;
  13745. left:136px;
  13746. top:782px;
  13747. width:156px;
  13748. height:40px;
  13749. display:flex;
  13750. transition:none;
  13751. transform-origin:50% 50%;
  13752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13753. font-weight:400;
  13754. font-style:normal;
  13755. }
  13756. #u16105 .text {
  13757. position:absolute;
  13758. align-self:center;
  13759. padding:0px 0px 0px 0px;
  13760. box-sizing:border-box;
  13761. width:100%;
  13762. }
  13763. #u16105_text {
  13764. border-width:0px;
  13765. white-space:nowrap;
  13766. text-transform:none;
  13767. }
  13768. #u16106_div {
  13769. border-width:0px;
  13770. position:absolute;
  13771. left:0px;
  13772. top:0px;
  13773. width:120px;
  13774. height:40px;
  13775. background:inherit;
  13776. background-color:rgba(24, 144, 255, 1);
  13777. border-radius:4px;
  13778. filter:drop-shadow(none);
  13779. transition:none;
  13780. font-size:14px;
  13781. color:#FFFFFF;
  13782. }
  13783. #u16106 {
  13784. border-width:0px;
  13785. position:absolute;
  13786. left:136px;
  13787. top:993px;
  13788. width:120px;
  13789. height:40px;
  13790. display:flex;
  13791. transition:none;
  13792. transform-origin:50% 50%;
  13793. font-size:14px;
  13794. color:#FFFFFF;
  13795. }
  13796. #u16106 .text {
  13797. position:absolute;
  13798. align-self:center;
  13799. padding:2px 8px 2px 8px;
  13800. box-sizing:border-box;
  13801. width:100%;
  13802. }
  13803. #u16106_text {
  13804. border-width:0px;
  13805. word-wrap:break-word;
  13806. text-transform:none;
  13807. }
  13808. #u16107 {
  13809. border-width:0px;
  13810. position:absolute;
  13811. left:136px;
  13812. top:822px;
  13813. width:361px;
  13814. height:121px;
  13815. display:flex;
  13816. transition:none;
  13817. }
  13818. #u16107 .text {
  13819. position:absolute;
  13820. align-self:center;
  13821. padding:2px 2px 2px 2px;
  13822. box-sizing:border-box;
  13823. width:100%;
  13824. }
  13825. #u16107_img {
  13826. border-width:0px;
  13827. position:absolute;
  13828. left:0px;
  13829. top:0px;
  13830. width:361px;
  13831. height:121px;
  13832. }
  13833. #u16107_text {
  13834. border-width:0px;
  13835. word-wrap:break-word;
  13836. text-transform:none;
  13837. visibility:hidden;
  13838. }
  13839. #u16108_div {
  13840. border-width:0px;
  13841. position:absolute;
  13842. left:0px;
  13843. top:0px;
  13844. width:675px;
  13845. height:80px;
  13846. background:inherit;
  13847. background-color:rgba(255, 255, 255, 0);
  13848. border-left:0px;
  13849. border-top:0px;
  13850. border-right:0px;
  13851. border-radius:0px;
  13852. border-bottom-right-radius:0px;
  13853. border-bottom-left-radius:0px;
  13854. filter:drop-shadow(none);
  13855. transition:none;
  13856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13857. font-weight:400;
  13858. font-style:normal;
  13859. font-size:14px;
  13860. color:#D9001B;
  13861. }
  13862. #u16108 {
  13863. border-width:0px;
  13864. position:absolute;
  13865. left:276px;
  13866. top:993px;
  13867. width:675px;
  13868. height:80px;
  13869. display:flex;
  13870. transition:none;
  13871. transform-origin:50% 50%;
  13872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13873. font-weight:400;
  13874. font-style:normal;
  13875. font-size:14px;
  13876. color:#D9001B;
  13877. }
  13878. #u16108 .text {
  13879. position:absolute;
  13880. align-self:center;
  13881. padding:0px 0px 0px 0px;
  13882. box-sizing:border-box;
  13883. width:100%;
  13884. }
  13885. #u16108_text {
  13886. border-width:0px;
  13887. word-wrap:break-word;
  13888. text-transform:none;
  13889. }