styles.css 217 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-48px;
  6. width:3067px;
  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. #u6590 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u6591_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1196px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u6591 {
  52. border-width:0px;
  53. position:absolute;
  54. left:2115px;
  55. top:43px;
  56. width:1000px;
  57. height:1196px;
  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. #u6591 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u6591_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u6592_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:83px;
  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. #u6592 {
  105. border-width:0px;
  106. position:absolute;
  107. left:2135px;
  108. top:61px;
  109. width:83px;
  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. #u6592 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:5px 10px 5px 0px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u6592_text {
  127. border-width:0px;
  128. white-space:nowrap;
  129. text-transform:none;
  130. }
  131. #u6593 {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:0px;
  137. height:0px;
  138. }
  139. #u6594_div {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:40px;
  145. height:40px;
  146. background:inherit;
  147. background-color:rgba(255, 255, 255, 0);
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. filter:drop-shadow(none);
  155. transition:none;
  156. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  157. font-weight:500;
  158. font-style:normal;
  159. font-size:18px;
  160. text-align:center;
  161. }
  162. #u6594 {
  163. border-width:0px;
  164. position:absolute;
  165. left:3075px;
  166. top:43px;
  167. width:40px;
  168. height:40px;
  169. display:flex;
  170. transition:none;
  171. transform-origin:50% 50%;
  172. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  173. font-weight:500;
  174. font-style:normal;
  175. font-size:18px;
  176. text-align:center;
  177. }
  178. #u6594 .text {
  179. position:absolute;
  180. align-self:center;
  181. padding:5px 10px 5px 0px;
  182. box-sizing:border-box;
  183. width:100%;
  184. }
  185. #u6594_text {
  186. border-width:0px;
  187. word-wrap:break-word;
  188. text-transform:none;
  189. }
  190. #u6595 {
  191. border-width:0px;
  192. position:absolute;
  193. left:3063px;
  194. top:59px;
  195. width:13px;
  196. height:13px;
  197. display:flex;
  198. transition:none;
  199. }
  200. #u6595 .text {
  201. position:absolute;
  202. align-self:center;
  203. padding:2px 2px 2px 2px;
  204. box-sizing:border-box;
  205. width:100%;
  206. }
  207. #u6595_img {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:13px;
  213. height:13px;
  214. }
  215. #u6595_text {
  216. border-width:0px;
  217. word-wrap:break-word;
  218. text-transform:none;
  219. visibility:hidden;
  220. }
  221. #u6596_div {
  222. border-width:0px;
  223. position:absolute;
  224. left:0px;
  225. top:0px;
  226. width:67px;
  227. height:30px;
  228. background:inherit;
  229. background-color:rgba(255, 255, 255, 0);
  230. border-top:0px;
  231. border-right:0px;
  232. border-bottom:0px;
  233. border-radius:0px;
  234. border-top-left-radius:0px;
  235. border-bottom-left-radius:0px;
  236. filter:drop-shadow(none);
  237. transition:none;
  238. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  239. font-weight:400;
  240. font-style:normal;
  241. font-size:14px;
  242. }
  243. #u6596 {
  244. border-width:0px;
  245. position:absolute;
  246. left:2768px;
  247. top:158px;
  248. width:67px;
  249. height:30px;
  250. display:flex;
  251. transition:none;
  252. transform-origin:50% 50%;
  253. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  254. font-weight:400;
  255. font-style:normal;
  256. font-size:14px;
  257. }
  258. #u6596 .text {
  259. position:absolute;
  260. align-self:center;
  261. padding:5px 10px 5px 0px;
  262. box-sizing:border-box;
  263. width:100%;
  264. }
  265. #u6596_text {
  266. border-width:0px;
  267. white-space:nowrap;
  268. text-transform:none;
  269. }
  270. #u6597_div {
  271. border-width:0px;
  272. position:absolute;
  273. left:0px;
  274. top:0px;
  275. width:75px;
  276. height:32px;
  277. background:inherit;
  278. background-color:rgba(255, 255, 255, 0);
  279. border-top:0px;
  280. border-right:0px;
  281. border-bottom:0px;
  282. border-radius:0px;
  283. border-top-left-radius:0px;
  284. border-bottom-left-radius:0px;
  285. filter:drop-shadow(none);
  286. transition:none;
  287. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  288. font-weight:500;
  289. font-style:normal;
  290. font-size:16px;
  291. }
  292. #u6597 {
  293. border-width:0px;
  294. position:absolute;
  295. left:2162px;
  296. top:114px;
  297. width:75px;
  298. height:32px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  303. font-weight:500;
  304. font-style:normal;
  305. font-size:16px;
  306. }
  307. #u6597 .text {
  308. position:absolute;
  309. align-self:center;
  310. padding:5px 10px 5px 0px;
  311. box-sizing:border-box;
  312. width:100%;
  313. }
  314. #u6597_text {
  315. border-width:0px;
  316. white-space:nowrap;
  317. text-transform:none;
  318. }
  319. #u6598_div {
  320. border-width:0px;
  321. position:absolute;
  322. left:0px;
  323. top:0px;
  324. width:75px;
  325. height:32px;
  326. background:inherit;
  327. background-color:rgba(255, 255, 255, 0);
  328. border-top:0px;
  329. border-right:0px;
  330. border-bottom:0px;
  331. border-radius:0px;
  332. border-top-left-radius:0px;
  333. border-bottom-left-radius:0px;
  334. filter:drop-shadow(none);
  335. transition:none;
  336. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  337. font-weight:500;
  338. font-style:normal;
  339. font-size:16px;
  340. }
  341. #u6598 {
  342. border-width:0px;
  343. position:absolute;
  344. left:2257px;
  345. top:114px;
  346. width:75px;
  347. height:32px;
  348. display:flex;
  349. transition:none;
  350. transform-origin:50% 50%;
  351. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  352. font-weight:500;
  353. font-style:normal;
  354. font-size:16px;
  355. }
  356. #u6598 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:5px 10px 5px 0px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u6598_text {
  364. border-width:0px;
  365. white-space:nowrap;
  366. text-transform:none;
  367. }
  368. #u6599_div {
  369. border-width:0px;
  370. position:absolute;
  371. left:0px;
  372. top:0px;
  373. width:75px;
  374. height:32px;
  375. background:inherit;
  376. background-color:rgba(255, 255, 255, 0);
  377. border-top:0px;
  378. border-right:0px;
  379. border-bottom:0px;
  380. border-radius:0px;
  381. border-top-left-radius:0px;
  382. border-bottom-left-radius:0px;
  383. filter:drop-shadow(none);
  384. transition:none;
  385. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  386. font-weight:500;
  387. font-style:normal;
  388. font-size:16px;
  389. color:#1890FF;
  390. }
  391. #u6599 {
  392. border-width:0px;
  393. position:absolute;
  394. left:2352px;
  395. top:114px;
  396. width:75px;
  397. height:32px;
  398. display:flex;
  399. transition:none;
  400. transform-origin:50% 50%;
  401. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  402. font-weight:500;
  403. font-style:normal;
  404. font-size:16px;
  405. color:#1890FF;
  406. }
  407. #u6599 .text {
  408. position:absolute;
  409. align-self:center;
  410. padding:5px 10px 5px 0px;
  411. box-sizing:border-box;
  412. width:100%;
  413. }
  414. #u6599_text {
  415. border-width:0px;
  416. white-space:nowrap;
  417. text-transform:none;
  418. }
  419. #u6600_div {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:137px;
  425. height:30px;
  426. background:inherit;
  427. background-color:rgba(255, 255, 255, 0);
  428. border-top:0px;
  429. border-right:0px;
  430. border-bottom:0px;
  431. border-radius:0px;
  432. border-top-left-radius:0px;
  433. border-bottom-left-radius:0px;
  434. filter:drop-shadow(none);
  435. transition:none;
  436. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  437. font-weight:400;
  438. font-style:normal;
  439. font-size:14px;
  440. }
  441. #u6600 {
  442. border-width:0px;
  443. position:absolute;
  444. left:2166px;
  445. top:158px;
  446. width:137px;
  447. height:30px;
  448. display:flex;
  449. transition:none;
  450. transform-origin:50% 50%;
  451. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  452. font-weight:400;
  453. font-style:normal;
  454. font-size:14px;
  455. }
  456. #u6600 .text {
  457. position:absolute;
  458. align-self:center;
  459. padding:5px 10px 5px 0px;
  460. box-sizing:border-box;
  461. width:100%;
  462. }
  463. #u6600_text {
  464. border-width:0px;
  465. word-wrap:break-word;
  466. text-transform:none;
  467. }
  468. #u6601_div {
  469. border-width:0px;
  470. position:absolute;
  471. left:0px;
  472. top:0px;
  473. width:137px;
  474. height:30px;
  475. background:inherit;
  476. background-color:rgba(255, 255, 255, 0);
  477. border-top:0px;
  478. border-right:0px;
  479. border-bottom:0px;
  480. border-radius:0px;
  481. border-top-left-radius:0px;
  482. border-bottom-left-radius:0px;
  483. filter:drop-shadow(none);
  484. transition:none;
  485. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  486. font-weight:400;
  487. font-style:normal;
  488. font-size:14px;
  489. }
  490. #u6601 {
  491. border-width:0px;
  492. position:absolute;
  493. left:2468px;
  494. top:158px;
  495. width:137px;
  496. height:30px;
  497. display:flex;
  498. transition:none;
  499. transform-origin:50% 50%;
  500. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  501. font-weight:400;
  502. font-style:normal;
  503. font-size:14px;
  504. }
  505. #u6601 .text {
  506. position:absolute;
  507. align-self:center;
  508. padding:5px 10px 5px 0px;
  509. box-sizing:border-box;
  510. width:100%;
  511. }
  512. #u6601_text {
  513. border-width:0px;
  514. word-wrap:break-word;
  515. text-transform:none;
  516. }
  517. #u6602_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:137px;
  523. height:30px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border-top:0px;
  527. border-right:0px;
  528. border-bottom:0px;
  529. border-radius:0px;
  530. border-top-left-radius:0px;
  531. border-bottom-left-radius:0px;
  532. filter:drop-shadow(none);
  533. transition:none;
  534. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  535. font-weight:400;
  536. font-style:normal;
  537. font-size:14px;
  538. }
  539. #u6602 {
  540. border-width:0px;
  541. position:absolute;
  542. left:2168px;
  543. top:318px;
  544. width:137px;
  545. height:30px;
  546. display:flex;
  547. transition:none;
  548. transform-origin:50% 50%;
  549. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  550. font-weight:400;
  551. font-style:normal;
  552. font-size:14px;
  553. }
  554. #u6602 .text {
  555. position:absolute;
  556. align-self:center;
  557. padding:5px 10px 5px 0px;
  558. box-sizing:border-box;
  559. width:100%;
  560. }
  561. #u6602_text {
  562. border-width:0px;
  563. word-wrap:break-word;
  564. text-transform:none;
  565. }
  566. #u6603_div {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:122px;
  572. height:122px;
  573. background:inherit;
  574. background-color:rgba(255, 255, 255, 1);
  575. box-sizing:border-box;
  576. border-width:1px;
  577. border-style:solid;
  578. border-color:rgba(170, 170, 170, 1);
  579. border-radius:4px;
  580. filter:drop-shadow(none);
  581. transition:none;
  582. font-size:38px;
  583. }
  584. #u6603 {
  585. border-width:0px;
  586. position:absolute;
  587. left:2168px;
  588. top:348px;
  589. width:122px;
  590. height:122px;
  591. display:flex;
  592. transition:none;
  593. transform-origin:50% 50%;
  594. font-size:38px;
  595. }
  596. #u6603 .text {
  597. position:absolute;
  598. align-self:center;
  599. padding:2px 2px 2px 0px;
  600. box-sizing:border-box;
  601. width:100%;
  602. }
  603. #u6603_text {
  604. border-width:0px;
  605. word-wrap:break-word;
  606. text-transform:none;
  607. }
  608. #u6604 {
  609. border-width:0px;
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:0px;
  614. height:0px;
  615. }
  616. #u6605_div {
  617. border-width:0px;
  618. position:absolute;
  619. left:0px;
  620. top:0px;
  621. width:1000px;
  622. height:50px;
  623. background:inherit;
  624. background-color:rgba(255, 255, 255, 1);
  625. box-sizing:border-box;
  626. border-width:1px;
  627. border-style:solid;
  628. border-color:rgba(215, 215, 215, 1);
  629. border-radius:0px;
  630. filter:drop-shadow(none);
  631. transition:none;
  632. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  633. font-weight:400;
  634. font-style:normal;
  635. font-size:14px;
  636. color:#AAAAAA;
  637. text-align:center;
  638. line-height:30px;
  639. }
  640. #u6605 {
  641. border-width:0px;
  642. position:absolute;
  643. left:2115px;
  644. top:1189px;
  645. width:1000px;
  646. height:50px;
  647. display:flex;
  648. transition:none;
  649. transform-origin:50% 50%;
  650. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  651. font-weight:400;
  652. font-style:normal;
  653. font-size:14px;
  654. color:#AAAAAA;
  655. text-align:center;
  656. line-height:30px;
  657. }
  658. #u6605 .text {
  659. position:absolute;
  660. align-self:center;
  661. padding:5px 10px 5px 10px;
  662. box-sizing:border-box;
  663. width:100%;
  664. }
  665. #u6605_text {
  666. border-width:0px;
  667. word-wrap:break-word;
  668. text-transform:none;
  669. visibility:hidden;
  670. }
  671. #u6606_div {
  672. border-width:0px;
  673. position:absolute;
  674. left:0px;
  675. top:0px;
  676. width:80px;
  677. height:30px;
  678. background:inherit;
  679. background-color:rgba(24, 144, 255, 1);
  680. border-radius:4px;
  681. filter:drop-shadow(none);
  682. transition:none;
  683. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  684. font-weight:400;
  685. font-style:normal;
  686. font-size:14px;
  687. color:#FFFFFF;
  688. }
  689. #u6606 {
  690. border-width:0px;
  691. position:absolute;
  692. left:3013px;
  693. top:1199px;
  694. width:80px;
  695. height:30px;
  696. display:flex;
  697. transition:none;
  698. transform-origin:50% 50%;
  699. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:14px;
  703. color:#FFFFFF;
  704. }
  705. #u6606 .text {
  706. position:absolute;
  707. align-self:center;
  708. padding:2px 2px 2px 2px;
  709. box-sizing:border-box;
  710. width:100%;
  711. }
  712. #u6606_text {
  713. border-width:0px;
  714. word-wrap:break-word;
  715. text-transform:none;
  716. }
  717. #u6607_div {
  718. border-width:0px;
  719. position:absolute;
  720. left:0px;
  721. top:0px;
  722. width:80px;
  723. height:30px;
  724. background:inherit;
  725. background-color:rgba(255, 255, 255, 1);
  726. box-sizing:border-box;
  727. border-width:1px;
  728. border-style:solid;
  729. border-color:rgba(121, 121, 121, 1);
  730. border-radius:4px;
  731. filter:drop-shadow(none);
  732. transition:none;
  733. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  734. font-weight:400;
  735. font-style:normal;
  736. font-size:14px;
  737. }
  738. #u6607 {
  739. border-width:0px;
  740. position:absolute;
  741. left:2923px;
  742. top:1199px;
  743. width:80px;
  744. height:30px;
  745. display:flex;
  746. transition:none;
  747. transform-origin:50% 50%;
  748. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  749. font-weight:400;
  750. font-style:normal;
  751. font-size:14px;
  752. }
  753. #u6607 .text {
  754. position:absolute;
  755. align-self:center;
  756. padding:2px 2px 2px 2px;
  757. box-sizing:border-box;
  758. width:100%;
  759. }
  760. #u6607_text {
  761. border-width:0px;
  762. word-wrap:break-word;
  763. text-transform:none;
  764. }
  765. #u6608 {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:0px;
  771. height:0px;
  772. }
  773. #u6609_div {
  774. border-width:0px;
  775. position:absolute;
  776. left:0px;
  777. top:0px;
  778. width:280px;
  779. height:40px;
  780. background:inherit;
  781. background-color:rgba(255, 255, 255, 1);
  782. box-sizing:border-box;
  783. border-width:1px;
  784. border-style:solid;
  785. border-color:rgba(170, 170, 170, 1);
  786. border-radius:4px;
  787. filter:drop-shadow(none);
  788. transition:none;
  789. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  790. font-weight:400;
  791. font-style:normal;
  792. text-align:right;
  793. }
  794. #u6609 {
  795. border-width:0px;
  796. position:absolute;
  797. left:2166px;
  798. top:188px;
  799. width:280px;
  800. height:40px;
  801. display:flex;
  802. transition:none;
  803. transform-origin:50% 50%;
  804. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  805. font-weight:400;
  806. font-style:normal;
  807. text-align:right;
  808. }
  809. #u6609 .text {
  810. position:absolute;
  811. align-self:center;
  812. padding:2px 10px 2px 10px;
  813. box-sizing:border-box;
  814. width:100%;
  815. }
  816. #u6609_text {
  817. border-width:0px;
  818. word-wrap:break-word;
  819. text-transform:none;
  820. visibility:hidden;
  821. }
  822. #u6610_input {
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:223px;
  827. height:31px;
  828. padding:2px 10px 2px 2px;
  829. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  830. font-weight:400;
  831. font-style:normal;
  832. font-size:13px;
  833. letter-spacing:normal;
  834. color:#333333;
  835. vertical-align:none;
  836. text-align:left;
  837. text-transform:none;
  838. background-color:transparent;
  839. border-color:transparent;
  840. }
  841. #u6610_input.hint {
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:223px;
  846. height:31px;
  847. padding:2px 10px 2px 2px;
  848. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  849. font-weight:400;
  850. font-style:normal;
  851. font-size:13px;
  852. letter-spacing:normal;
  853. color:#999999;
  854. vertical-align:none;
  855. text-align:left;
  856. text-transform:none;
  857. background-color:transparent;
  858. border-color:transparent;
  859. }
  860. #u6610_input.disabled {
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:223px;
  865. height:31px;
  866. padding:2px 10px 2px 2px;
  867. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:13px;
  871. letter-spacing:normal;
  872. color:#333333;
  873. vertical-align:none;
  874. text-align:left;
  875. text-transform:none;
  876. background-color:transparent;
  877. border-color:transparent;
  878. }
  879. #u6610_input.hint.disabled {
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:223px;
  884. height:31px;
  885. padding:2px 10px 2px 2px;
  886. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  887. font-weight:400;
  888. font-style:normal;
  889. font-size:13px;
  890. letter-spacing:normal;
  891. color:#999999;
  892. vertical-align:none;
  893. text-align:left;
  894. text-transform:none;
  895. background-color:transparent;
  896. border-color:transparent;
  897. }
  898. #u6610_div {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:223px;
  904. height:31px;
  905. background:inherit;
  906. background-color:rgba(255, 255, 255, 0);
  907. border-radius:0px;
  908. filter:drop-shadow(none);
  909. transition:none;
  910. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  911. font-weight:400;
  912. font-style:normal;
  913. color:#333333;
  914. }
  915. #u6610 {
  916. border-width:0px;
  917. position:absolute;
  918. left:2170px;
  919. top:193px;
  920. width:223px;
  921. height:31px;
  922. display:flex;
  923. transition:none;
  924. transform-origin:50% 50%;
  925. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  926. font-weight:400;
  927. font-style:normal;
  928. color:#333333;
  929. }
  930. #u6610 .text {
  931. position:absolute;
  932. align-self:center;
  933. padding:2px 10px 2px 2px;
  934. box-sizing:border-box;
  935. width:100%;
  936. }
  937. #u6610_div.hint {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:223px;
  943. height:31px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border-radius:0px;
  947. filter:drop-shadow(none);
  948. transition:none;
  949. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  950. font-weight:400;
  951. font-style:normal;
  952. color:#333333;
  953. }
  954. #u6610.hint {
  955. }
  956. #u6610_div.disabled {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:223px;
  962. height:31px;
  963. background:inherit;
  964. background-color:rgba(240, 240, 240, 1);
  965. border-radius:0px;
  966. filter:drop-shadow(none);
  967. transition:none;
  968. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  969. font-weight:400;
  970. font-style:normal;
  971. color:#333333;
  972. }
  973. #u6610.disabled {
  974. }
  975. #u6610_div.hint.disabled {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:223px;
  981. height:31px;
  982. background:inherit;
  983. background-color:rgba(240, 240, 240, 1);
  984. border-radius:0px;
  985. filter:drop-shadow(none);
  986. transition:none;
  987. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  988. font-weight:400;
  989. font-style:normal;
  990. color:#333333;
  991. }
  992. #u6610.hint.disabled {
  993. }
  994. #u6611 {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:0px;
  1000. height:0px;
  1001. }
  1002. #u6612_div {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:0px;
  1006. top:0px;
  1007. width:280px;
  1008. height:40px;
  1009. background:inherit;
  1010. background-color:rgba(255, 255, 255, 1);
  1011. box-sizing:border-box;
  1012. border-width:1px;
  1013. border-style:solid;
  1014. border-color:rgba(170, 170, 170, 1);
  1015. border-radius:4px;
  1016. filter:drop-shadow(none);
  1017. transition:none;
  1018. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1019. font-weight:400;
  1020. font-style:normal;
  1021. text-align:right;
  1022. }
  1023. #u6612 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:2468px;
  1027. top:188px;
  1028. width:280px;
  1029. height:40px;
  1030. display:flex;
  1031. transition:none;
  1032. transform-origin:50% 50%;
  1033. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. text-align:right;
  1037. }
  1038. #u6612 .text {
  1039. position:absolute;
  1040. align-self:center;
  1041. padding:2px 10px 2px 10px;
  1042. box-sizing:border-box;
  1043. width:100%;
  1044. }
  1045. #u6612_text {
  1046. border-width:0px;
  1047. word-wrap:break-word;
  1048. text-transform:none;
  1049. visibility:hidden;
  1050. }
  1051. #u6613_input {
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:223px;
  1056. height:31px;
  1057. padding:2px 10px 2px 2px;
  1058. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1059. font-weight:400;
  1060. font-style:normal;
  1061. font-size:13px;
  1062. letter-spacing:normal;
  1063. color:#333333;
  1064. vertical-align:none;
  1065. text-align:left;
  1066. text-transform:none;
  1067. background-color:transparent;
  1068. border-color:transparent;
  1069. }
  1070. #u6613_input.hint {
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:223px;
  1075. height:31px;
  1076. padding:2px 10px 2px 2px;
  1077. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1078. font-weight:400;
  1079. font-style:normal;
  1080. font-size:13px;
  1081. letter-spacing:normal;
  1082. color:#999999;
  1083. vertical-align:none;
  1084. text-align:left;
  1085. text-transform:none;
  1086. background-color:transparent;
  1087. border-color:transparent;
  1088. }
  1089. #u6613_input.disabled {
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:223px;
  1094. height:31px;
  1095. padding:2px 10px 2px 2px;
  1096. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1097. font-weight:400;
  1098. font-style:normal;
  1099. font-size:13px;
  1100. letter-spacing:normal;
  1101. color:#333333;
  1102. vertical-align:none;
  1103. text-align:left;
  1104. text-transform:none;
  1105. background-color:transparent;
  1106. border-color:transparent;
  1107. }
  1108. #u6613_input.hint.disabled {
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:223px;
  1113. height:31px;
  1114. padding:2px 10px 2px 2px;
  1115. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:13px;
  1119. letter-spacing:normal;
  1120. color:#999999;
  1121. vertical-align:none;
  1122. text-align:left;
  1123. text-transform:none;
  1124. background-color:transparent;
  1125. border-color:transparent;
  1126. }
  1127. #u6613_div {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:0px;
  1131. top:0px;
  1132. width:223px;
  1133. height:31px;
  1134. background:inherit;
  1135. background-color:rgba(255, 255, 255, 0);
  1136. border-radius:0px;
  1137. filter:drop-shadow(none);
  1138. transition:none;
  1139. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. color:#333333;
  1143. }
  1144. #u6613 {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:2472px;
  1148. top:193px;
  1149. width:223px;
  1150. height:31px;
  1151. display:flex;
  1152. transition:none;
  1153. transform-origin:50% 50%;
  1154. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1155. font-weight:400;
  1156. font-style:normal;
  1157. color:#333333;
  1158. }
  1159. #u6613 .text {
  1160. position:absolute;
  1161. align-self:center;
  1162. padding:2px 10px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u6613_div.hint {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:223px;
  1172. height:31px;
  1173. background:inherit;
  1174. background-color:rgba(255, 255, 255, 0);
  1175. border-radius:0px;
  1176. filter:drop-shadow(none);
  1177. transition:none;
  1178. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1179. font-weight:400;
  1180. font-style:normal;
  1181. color:#333333;
  1182. }
  1183. #u6613.hint {
  1184. }
  1185. #u6613_div.disabled {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:223px;
  1191. height:31px;
  1192. background:inherit;
  1193. background-color:rgba(240, 240, 240, 1);
  1194. border-radius:0px;
  1195. filter:drop-shadow(none);
  1196. transition:none;
  1197. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. color:#333333;
  1201. }
  1202. #u6613.disabled {
  1203. }
  1204. #u6613_div.hint.disabled {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:223px;
  1210. height:31px;
  1211. background:inherit;
  1212. background-color:rgba(240, 240, 240, 1);
  1213. border-radius:0px;
  1214. filter:drop-shadow(none);
  1215. transition:none;
  1216. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1217. font-weight:400;
  1218. font-style:normal;
  1219. color:#333333;
  1220. }
  1221. #u6613.hint.disabled {
  1222. }
  1223. #u6614 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:0px;
  1229. height:0px;
  1230. }
  1231. #u6615_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:280px;
  1237. height:40px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 1);
  1240. box-sizing:border-box;
  1241. border-width:1px;
  1242. border-style:solid;
  1243. border-color:rgba(170, 170, 170, 1);
  1244. border-radius:4px;
  1245. filter:drop-shadow(none);
  1246. transition:none;
  1247. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1248. font-weight:400;
  1249. font-style:normal;
  1250. text-align:right;
  1251. }
  1252. #u6615 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:2768px;
  1256. top:188px;
  1257. width:280px;
  1258. height:40px;
  1259. display:flex;
  1260. transition:none;
  1261. transform-origin:50% 50%;
  1262. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1263. font-weight:400;
  1264. font-style:normal;
  1265. text-align:right;
  1266. }
  1267. #u6615 .text {
  1268. position:absolute;
  1269. align-self:center;
  1270. padding:2px 10px 2px 10px;
  1271. box-sizing:border-box;
  1272. width:100%;
  1273. }
  1274. #u6615_text {
  1275. border-width:0px;
  1276. word-wrap:break-word;
  1277. text-transform:none;
  1278. visibility:hidden;
  1279. }
  1280. #u6616_input {
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:223px;
  1285. height:31px;
  1286. padding:2px 10px 2px 2px;
  1287. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1288. font-weight:400;
  1289. font-style:normal;
  1290. font-size:13px;
  1291. letter-spacing:normal;
  1292. color:#333333;
  1293. vertical-align:none;
  1294. text-align:left;
  1295. text-transform:none;
  1296. background-color:transparent;
  1297. border-color:transparent;
  1298. }
  1299. #u6616_input.hint {
  1300. position:absolute;
  1301. left:0px;
  1302. top:0px;
  1303. width:223px;
  1304. height:31px;
  1305. padding:2px 10px 2px 2px;
  1306. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1307. font-weight:400;
  1308. font-style:normal;
  1309. font-size:13px;
  1310. letter-spacing:normal;
  1311. color:#999999;
  1312. vertical-align:none;
  1313. text-align:left;
  1314. text-transform:none;
  1315. background-color:transparent;
  1316. border-color:transparent;
  1317. }
  1318. #u6616_input.disabled {
  1319. position:absolute;
  1320. left:0px;
  1321. top:0px;
  1322. width:223px;
  1323. height:31px;
  1324. padding:2px 10px 2px 2px;
  1325. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1326. font-weight:400;
  1327. font-style:normal;
  1328. font-size:13px;
  1329. letter-spacing:normal;
  1330. color:#333333;
  1331. vertical-align:none;
  1332. text-align:left;
  1333. text-transform:none;
  1334. background-color:transparent;
  1335. border-color:transparent;
  1336. }
  1337. #u6616_input.hint.disabled {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:223px;
  1342. height:31px;
  1343. padding:2px 10px 2px 2px;
  1344. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:13px;
  1348. letter-spacing:normal;
  1349. color:#999999;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u6616_div {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:223px;
  1362. height:31px;
  1363. background:inherit;
  1364. background-color:rgba(255, 255, 255, 0);
  1365. border-radius:0px;
  1366. filter:drop-shadow(none);
  1367. transition:none;
  1368. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1369. font-weight:400;
  1370. font-style:normal;
  1371. color:#333333;
  1372. }
  1373. #u6616 {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:2772px;
  1377. top:193px;
  1378. width:223px;
  1379. height:31px;
  1380. display:flex;
  1381. transition:none;
  1382. transform-origin:50% 50%;
  1383. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1384. font-weight:400;
  1385. font-style:normal;
  1386. color:#333333;
  1387. }
  1388. #u6616 .text {
  1389. position:absolute;
  1390. align-self:center;
  1391. padding:2px 10px 2px 2px;
  1392. box-sizing:border-box;
  1393. width:100%;
  1394. }
  1395. #u6616_div.hint {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:0px;
  1399. top:0px;
  1400. width:223px;
  1401. height:31px;
  1402. background:inherit;
  1403. background-color:rgba(255, 255, 255, 0);
  1404. border-radius:0px;
  1405. filter:drop-shadow(none);
  1406. transition:none;
  1407. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. color:#333333;
  1411. }
  1412. #u6616.hint {
  1413. }
  1414. #u6616_div.disabled {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:223px;
  1420. height:31px;
  1421. background:inherit;
  1422. background-color:rgba(240, 240, 240, 1);
  1423. border-radius:0px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#333333;
  1430. }
  1431. #u6616.disabled {
  1432. }
  1433. #u6616_div.hint.disabled {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:0px;
  1437. top:0px;
  1438. width:223px;
  1439. height:31px;
  1440. background:inherit;
  1441. background-color:rgba(240, 240, 240, 1);
  1442. border-radius:0px;
  1443. filter:drop-shadow(none);
  1444. transition:none;
  1445. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. color:#333333;
  1449. }
  1450. #u6616.hint.disabled {
  1451. }
  1452. #u6617_div {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:57px;
  1458. height:30px;
  1459. background:inherit;
  1460. background-color:rgba(255, 255, 255, 0);
  1461. border-top:0px;
  1462. border-right:0px;
  1463. border-bottom:0px;
  1464. border-radius:0px;
  1465. border-top-left-radius:0px;
  1466. border-bottom-left-radius:0px;
  1467. filter:drop-shadow(none);
  1468. transition:none;
  1469. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1470. font-weight:400;
  1471. font-style:normal;
  1472. font-size:14px;
  1473. }
  1474. #u6617 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:2168px;
  1478. top:238px;
  1479. width:57px;
  1480. height:30px;
  1481. display:flex;
  1482. transition:none;
  1483. transform-origin:50% 50%;
  1484. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:14px;
  1488. }
  1489. #u6617 .text {
  1490. position:absolute;
  1491. align-self:center;
  1492. padding:5px 10px 5px 0px;
  1493. box-sizing:border-box;
  1494. width:100%;
  1495. }
  1496. #u6617_text {
  1497. border-width:0px;
  1498. white-space:nowrap;
  1499. text-transform:none;
  1500. }
  1501. #u6618 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:0px;
  1505. top:0px;
  1506. width:0px;
  1507. height:0px;
  1508. }
  1509. #u6619_div {
  1510. border-width:0px;
  1511. position:absolute;
  1512. left:0px;
  1513. top:0px;
  1514. width:278px;
  1515. height:40px;
  1516. background:inherit;
  1517. background-color:rgba(255, 255, 255, 1);
  1518. box-sizing:border-box;
  1519. border-width:1px;
  1520. border-style:solid;
  1521. border-color:rgba(170, 170, 170, 1);
  1522. border-radius:4px;
  1523. filter:drop-shadow(none);
  1524. transition:none;
  1525. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1526. font-weight:400;
  1527. font-style:normal;
  1528. text-align:right;
  1529. }
  1530. #u6619 {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:2168px;
  1534. top:268px;
  1535. width:278px;
  1536. height:40px;
  1537. display:flex;
  1538. transition:none;
  1539. transform-origin:50% 50%;
  1540. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1541. font-weight:400;
  1542. font-style:normal;
  1543. text-align:right;
  1544. }
  1545. #u6619 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 10px 2px 10px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u6619_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u6620_input {
  1559. position:absolute;
  1560. left:0px;
  1561. top:0px;
  1562. width:222px;
  1563. height:31px;
  1564. padding:2px 10px 2px 2px;
  1565. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1566. font-weight:400;
  1567. font-style:normal;
  1568. font-size:13px;
  1569. letter-spacing:normal;
  1570. color:#333333;
  1571. vertical-align:none;
  1572. text-align:left;
  1573. text-transform:none;
  1574. background-color:transparent;
  1575. border-color:transparent;
  1576. }
  1577. #u6620_input.hint {
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:222px;
  1582. height:31px;
  1583. padding:2px 10px 2px 2px;
  1584. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1585. font-weight:400;
  1586. font-style:normal;
  1587. font-size:13px;
  1588. letter-spacing:normal;
  1589. color:#999999;
  1590. vertical-align:none;
  1591. text-align:left;
  1592. text-transform:none;
  1593. background-color:transparent;
  1594. border-color:transparent;
  1595. }
  1596. #u6620_input.disabled {
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:222px;
  1601. height:31px;
  1602. padding:2px 10px 2px 2px;
  1603. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1604. font-weight:400;
  1605. font-style:normal;
  1606. font-size:13px;
  1607. letter-spacing:normal;
  1608. color:#333333;
  1609. vertical-align:none;
  1610. text-align:left;
  1611. text-transform:none;
  1612. background-color:transparent;
  1613. border-color:transparent;
  1614. }
  1615. #u6620_input.hint.disabled {
  1616. position:absolute;
  1617. left:0px;
  1618. top:0px;
  1619. width:222px;
  1620. height:31px;
  1621. padding:2px 10px 2px 2px;
  1622. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1623. font-weight:400;
  1624. font-style:normal;
  1625. font-size:13px;
  1626. letter-spacing:normal;
  1627. color:#999999;
  1628. vertical-align:none;
  1629. text-align:left;
  1630. text-transform:none;
  1631. background-color:transparent;
  1632. border-color:transparent;
  1633. }
  1634. #u6620_div {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:0px;
  1638. top:0px;
  1639. width:222px;
  1640. height:31px;
  1641. background:inherit;
  1642. background-color:rgba(255, 255, 255, 0);
  1643. border-radius:0px;
  1644. filter:drop-shadow(none);
  1645. transition:none;
  1646. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1647. font-weight:400;
  1648. font-style:normal;
  1649. color:#333333;
  1650. }
  1651. #u6620 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:2172px;
  1655. top:273px;
  1656. width:222px;
  1657. height:31px;
  1658. display:flex;
  1659. transition:none;
  1660. transform-origin:50% 50%;
  1661. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1662. font-weight:400;
  1663. font-style:normal;
  1664. color:#333333;
  1665. }
  1666. #u6620 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 10px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u6620_div.hint {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:222px;
  1679. height:31px;
  1680. background:inherit;
  1681. background-color:rgba(255, 255, 255, 0);
  1682. border-radius:0px;
  1683. filter:drop-shadow(none);
  1684. transition:none;
  1685. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1686. font-weight:400;
  1687. font-style:normal;
  1688. color:#333333;
  1689. }
  1690. #u6620.hint {
  1691. }
  1692. #u6620_div.disabled {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:222px;
  1698. height:31px;
  1699. background:inherit;
  1700. background-color:rgba(240, 240, 240, 1);
  1701. border-radius:0px;
  1702. filter:drop-shadow(none);
  1703. transition:none;
  1704. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. color:#333333;
  1708. }
  1709. #u6620.disabled {
  1710. }
  1711. #u6620_div.hint.disabled {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:222px;
  1717. height:31px;
  1718. background:inherit;
  1719. background-color:rgba(240, 240, 240, 1);
  1720. border-radius:0px;
  1721. filter:drop-shadow(none);
  1722. transition:none;
  1723. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1724. font-weight:400;
  1725. font-style:normal;
  1726. color:#333333;
  1727. }
  1728. #u6620.hint.disabled {
  1729. }
  1730. #u6621_div {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:81px;
  1736. height:30px;
  1737. background:inherit;
  1738. background-color:rgba(255, 255, 255, 0);
  1739. border-top:0px;
  1740. border-right:0px;
  1741. border-bottom:0px;
  1742. border-radius:0px;
  1743. border-top-left-radius:0px;
  1744. border-bottom-left-radius:0px;
  1745. filter:drop-shadow(none);
  1746. transition:none;
  1747. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:14px;
  1751. }
  1752. #u6621 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:2468px;
  1756. top:238px;
  1757. width:81px;
  1758. height:30px;
  1759. display:flex;
  1760. transition:none;
  1761. transform-origin:50% 50%;
  1762. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:14px;
  1766. }
  1767. #u6621 .text {
  1768. position:absolute;
  1769. align-self:center;
  1770. padding:5px 10px 5px 0px;
  1771. box-sizing:border-box;
  1772. width:100%;
  1773. }
  1774. #u6621_text {
  1775. border-width:0px;
  1776. white-space:nowrap;
  1777. text-transform:none;
  1778. }
  1779. #u6622 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:0px;
  1785. height:0px;
  1786. }
  1787. #u6623_div {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:278px;
  1793. height:40px;
  1794. background:inherit;
  1795. background-color:rgba(255, 255, 255, 1);
  1796. box-sizing:border-box;
  1797. border-width:1px;
  1798. border-style:solid;
  1799. border-color:rgba(170, 170, 170, 1);
  1800. border-radius:4px;
  1801. filter:drop-shadow(none);
  1802. transition:none;
  1803. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. text-align:right;
  1807. }
  1808. #u6623 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:2468px;
  1812. top:268px;
  1813. width:278px;
  1814. height:40px;
  1815. display:flex;
  1816. transition:none;
  1817. transform-origin:50% 50%;
  1818. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. text-align:right;
  1822. }
  1823. #u6623 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:2px 10px 2px 10px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u6623_text {
  1831. border-width:0px;
  1832. word-wrap:break-word;
  1833. text-transform:none;
  1834. visibility:hidden;
  1835. }
  1836. #u6624_input {
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:222px;
  1841. height:31px;
  1842. padding:2px 10px 2px 2px;
  1843. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1844. font-weight:400;
  1845. font-style:normal;
  1846. font-size:13px;
  1847. letter-spacing:normal;
  1848. color:#333333;
  1849. vertical-align:none;
  1850. text-align:left;
  1851. text-transform:none;
  1852. background-color:transparent;
  1853. border-color:transparent;
  1854. }
  1855. #u6624_input.hint {
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:222px;
  1860. height:31px;
  1861. padding:2px 10px 2px 2px;
  1862. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1863. font-weight:400;
  1864. font-style:normal;
  1865. font-size:13px;
  1866. letter-spacing:normal;
  1867. color:#999999;
  1868. vertical-align:none;
  1869. text-align:left;
  1870. text-transform:none;
  1871. background-color:transparent;
  1872. border-color:transparent;
  1873. }
  1874. #u6624_input.disabled {
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:222px;
  1879. height:31px;
  1880. padding:2px 10px 2px 2px;
  1881. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:13px;
  1885. letter-spacing:normal;
  1886. color:#333333;
  1887. vertical-align:none;
  1888. text-align:left;
  1889. text-transform:none;
  1890. background-color:transparent;
  1891. border-color:transparent;
  1892. }
  1893. #u6624_input.hint.disabled {
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:222px;
  1898. height:31px;
  1899. padding:2px 10px 2px 2px;
  1900. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:13px;
  1904. letter-spacing:normal;
  1905. color:#999999;
  1906. vertical-align:none;
  1907. text-align:left;
  1908. text-transform:none;
  1909. background-color:transparent;
  1910. border-color:transparent;
  1911. }
  1912. #u6624_div {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:222px;
  1918. height:31px;
  1919. background:inherit;
  1920. background-color:rgba(255, 255, 255, 0);
  1921. border-radius:0px;
  1922. filter:drop-shadow(none);
  1923. transition:none;
  1924. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. color:#333333;
  1928. }
  1929. #u6624 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:2472px;
  1933. top:273px;
  1934. width:222px;
  1935. height:31px;
  1936. display:flex;
  1937. transition:none;
  1938. transform-origin:50% 50%;
  1939. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1940. font-weight:400;
  1941. font-style:normal;
  1942. color:#333333;
  1943. }
  1944. #u6624 .text {
  1945. position:absolute;
  1946. align-self:center;
  1947. padding:2px 10px 2px 2px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u6624_div.hint {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:222px;
  1957. height:31px;
  1958. background:inherit;
  1959. background-color:rgba(255, 255, 255, 0);
  1960. border-radius:0px;
  1961. filter:drop-shadow(none);
  1962. transition:none;
  1963. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. color:#333333;
  1967. }
  1968. #u6624.hint {
  1969. }
  1970. #u6624_div.disabled {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:222px;
  1976. height:31px;
  1977. background:inherit;
  1978. background-color:rgba(240, 240, 240, 1);
  1979. border-radius:0px;
  1980. filter:drop-shadow(none);
  1981. transition:none;
  1982. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. color:#333333;
  1986. }
  1987. #u6624.disabled {
  1988. }
  1989. #u6624_div.hint.disabled {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:222px;
  1995. height:31px;
  1996. background:inherit;
  1997. background-color:rgba(240, 240, 240, 1);
  1998. border-radius:0px;
  1999. filter:drop-shadow(none);
  2000. transition:none;
  2001. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. color:#333333;
  2005. }
  2006. #u6624.hint.disabled {
  2007. }
  2008. #u6625_div {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:137px;
  2014. height:30px;
  2015. background:inherit;
  2016. background-color:rgba(255, 255, 255, 0);
  2017. border-top:0px;
  2018. border-right:0px;
  2019. border-bottom:0px;
  2020. border-radius:0px;
  2021. border-top-left-radius:0px;
  2022. border-bottom-left-radius:0px;
  2023. filter:drop-shadow(none);
  2024. transition:none;
  2025. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:14px;
  2029. }
  2030. #u6625 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:2468px;
  2034. top:318px;
  2035. width:137px;
  2036. height:30px;
  2037. display:flex;
  2038. transition:none;
  2039. transform-origin:50% 50%;
  2040. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:14px;
  2044. }
  2045. #u6625 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:5px 10px 5px 0px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u6625_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. }
  2057. #u6626_div {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:122px;
  2063. height:35px;
  2064. background:inherit;
  2065. background-color:rgba(255, 255, 255, 1);
  2066. box-sizing:border-box;
  2067. border-width:1px;
  2068. border-style:solid;
  2069. border-color:rgba(170, 170, 170, 1);
  2070. border-radius:4px;
  2071. filter:drop-shadow(none);
  2072. transition:none;
  2073. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:14px;
  2077. }
  2078. #u6626 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:2468px;
  2082. top:348px;
  2083. width:122px;
  2084. height:35px;
  2085. display:flex;
  2086. transition:none;
  2087. transform-origin:50% 50%;
  2088. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:14px;
  2092. }
  2093. #u6626 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u6626_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u6627_div {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:202px;
  2111. height:27px;
  2112. background:inherit;
  2113. background-color:rgba(255, 255, 255, 0);
  2114. border-top:0px;
  2115. border-right:0px;
  2116. border-bottom:0px;
  2117. border-radius:0px;
  2118. border-top-left-radius:0px;
  2119. border-bottom-left-radius:0px;
  2120. filter:drop-shadow(none);
  2121. transition:none;
  2122. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:12px;
  2126. color:#AAAAAA;
  2127. }
  2128. #u6627 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:2468px;
  2132. top:396px;
  2133. width:202px;
  2134. height:27px;
  2135. display:flex;
  2136. transition:none;
  2137. transform-origin:50% 50%;
  2138. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:12px;
  2142. color:#AAAAAA;
  2143. }
  2144. #u6627 .text {
  2145. position:absolute;
  2146. align-self:center;
  2147. padding:5px 10px 5px 0px;
  2148. box-sizing:border-box;
  2149. width:100%;
  2150. }
  2151. #u6627_text {
  2152. border-width:0px;
  2153. white-space:nowrap;
  2154. text-transform:none;
  2155. }
  2156. #u6628 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:0px;
  2162. height:0px;
  2163. }
  2164. #u6629_div {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:1000px;
  2170. height:1196px;
  2171. background:inherit;
  2172. background-color:rgba(255, 255, 255, 1);
  2173. box-sizing:border-box;
  2174. border-width:1px;
  2175. border-style:solid;
  2176. border-color:rgba(215, 215, 215, 1);
  2177. border-radius:0px;
  2178. filter:drop-shadow(none);
  2179. transition:none;
  2180. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:14px;
  2184. color:#AAAAAA;
  2185. text-align:center;
  2186. line-height:30px;
  2187. }
  2188. #u6629 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:48px;
  2192. top:43px;
  2193. width:1000px;
  2194. height:1196px;
  2195. display:flex;
  2196. transition:none;
  2197. transform-origin:50% 50%;
  2198. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2199. font-weight:400;
  2200. font-style:normal;
  2201. font-size:14px;
  2202. color:#AAAAAA;
  2203. text-align:center;
  2204. line-height:30px;
  2205. }
  2206. #u6629 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:5px 10px 5px 10px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u6629_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. visibility:hidden;
  2218. }
  2219. #u6630_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:83px;
  2225. height:35px;
  2226. background:inherit;
  2227. background-color:rgba(255, 255, 255, 0);
  2228. border-top:0px;
  2229. border-right:0px;
  2230. border-bottom:0px;
  2231. border-radius:0px;
  2232. border-top-left-radius:0px;
  2233. border-bottom-left-radius:0px;
  2234. filter:drop-shadow(none);
  2235. transition:none;
  2236. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2237. font-weight:500;
  2238. font-style:normal;
  2239. font-size:18px;
  2240. }
  2241. #u6630 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:68px;
  2245. top:61px;
  2246. width:83px;
  2247. height:35px;
  2248. display:flex;
  2249. transition:none;
  2250. transform-origin:50% 50%;
  2251. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2252. font-weight:500;
  2253. font-style:normal;
  2254. font-size:18px;
  2255. }
  2256. #u6630 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:5px 10px 5px 0px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u6630_text {
  2264. border-width:0px;
  2265. white-space:nowrap;
  2266. text-transform:none;
  2267. }
  2268. #u6631 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:0px;
  2274. height:0px;
  2275. }
  2276. #u6632_div {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:40px;
  2282. height:40px;
  2283. background:inherit;
  2284. background-color:rgba(255, 255, 255, 0);
  2285. border-top:0px;
  2286. border-right:0px;
  2287. border-bottom:0px;
  2288. border-radius:0px;
  2289. border-top-left-radius:0px;
  2290. border-bottom-left-radius:0px;
  2291. filter:drop-shadow(none);
  2292. transition:none;
  2293. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2294. font-weight:500;
  2295. font-style:normal;
  2296. font-size:18px;
  2297. text-align:center;
  2298. }
  2299. #u6632 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:1008px;
  2303. top:43px;
  2304. width:40px;
  2305. height:40px;
  2306. display:flex;
  2307. transition:none;
  2308. transform-origin:50% 50%;
  2309. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2310. font-weight:500;
  2311. font-style:normal;
  2312. font-size:18px;
  2313. text-align:center;
  2314. }
  2315. #u6632 .text {
  2316. position:absolute;
  2317. align-self:center;
  2318. padding:5px 10px 5px 0px;
  2319. box-sizing:border-box;
  2320. width:100%;
  2321. }
  2322. #u6632_text {
  2323. border-width:0px;
  2324. word-wrap:break-word;
  2325. text-transform:none;
  2326. }
  2327. #u6633 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:996px;
  2331. top:59px;
  2332. width:13px;
  2333. height:13px;
  2334. display:flex;
  2335. transition:none;
  2336. }
  2337. #u6633 .text {
  2338. position:absolute;
  2339. align-self:center;
  2340. padding:2px 2px 2px 2px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u6633_img {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:13px;
  2350. height:13px;
  2351. }
  2352. #u6633_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. visibility:hidden;
  2357. }
  2358. #u6634 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:0px;
  2364. height:0px;
  2365. }
  2366. #u6635_div {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:1000px;
  2372. height:50px;
  2373. background:inherit;
  2374. background-color:rgba(255, 255, 255, 1);
  2375. box-sizing:border-box;
  2376. border-width:1px;
  2377. border-style:solid;
  2378. border-color:rgba(215, 215, 215, 1);
  2379. border-radius:0px;
  2380. filter:drop-shadow(none);
  2381. transition:none;
  2382. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:14px;
  2386. color:#AAAAAA;
  2387. text-align:center;
  2388. line-height:30px;
  2389. }
  2390. #u6635 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:48px;
  2394. top:1189px;
  2395. width:1000px;
  2396. height:50px;
  2397. display:flex;
  2398. transition:none;
  2399. transform-origin:50% 50%;
  2400. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:14px;
  2404. color:#AAAAAA;
  2405. text-align:center;
  2406. line-height:30px;
  2407. }
  2408. #u6635 .text {
  2409. position:absolute;
  2410. align-self:center;
  2411. padding:5px 10px 5px 10px;
  2412. box-sizing:border-box;
  2413. width:100%;
  2414. }
  2415. #u6635_text {
  2416. border-width:0px;
  2417. word-wrap:break-word;
  2418. text-transform:none;
  2419. visibility:hidden;
  2420. }
  2421. #u6636_div {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:80px;
  2427. height:30px;
  2428. background:inherit;
  2429. background-color:rgba(24, 144, 255, 1);
  2430. border-radius:4px;
  2431. filter:drop-shadow(none);
  2432. transition:none;
  2433. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:14px;
  2437. color:#FFFFFF;
  2438. }
  2439. #u6636 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:946px;
  2443. top:1199px;
  2444. width:80px;
  2445. height:30px;
  2446. display:flex;
  2447. transition:none;
  2448. transform-origin:50% 50%;
  2449. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:14px;
  2453. color:#FFFFFF;
  2454. }
  2455. #u6636 .text {
  2456. position:absolute;
  2457. align-self:center;
  2458. padding:2px 2px 2px 2px;
  2459. box-sizing:border-box;
  2460. width:100%;
  2461. }
  2462. #u6636_text {
  2463. border-width:0px;
  2464. word-wrap:break-word;
  2465. text-transform:none;
  2466. }
  2467. #u6637_div {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:80px;
  2473. height:30px;
  2474. background:inherit;
  2475. background-color:rgba(255, 255, 255, 1);
  2476. box-sizing:border-box;
  2477. border-width:1px;
  2478. border-style:solid;
  2479. border-color:rgba(121, 121, 121, 1);
  2480. border-radius:4px;
  2481. filter:drop-shadow(none);
  2482. transition:none;
  2483. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:14px;
  2487. }
  2488. #u6637 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:856px;
  2492. top:1199px;
  2493. width:80px;
  2494. height:30px;
  2495. display:flex;
  2496. transition:none;
  2497. transform-origin:50% 50%;
  2498. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:14px;
  2502. }
  2503. #u6637 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 2px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u6637_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. }
  2515. #u6638_div {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:137px;
  2521. height:30px;
  2522. background:inherit;
  2523. background-color:rgba(255, 255, 255, 0);
  2524. border-top:0px;
  2525. border-right:0px;
  2526. border-bottom:0px;
  2527. border-radius:0px;
  2528. border-top-left-radius:0px;
  2529. border-bottom-left-radius:0px;
  2530. filter:drop-shadow(none);
  2531. transition:none;
  2532. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. font-size:14px;
  2536. }
  2537. #u6638 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:99px;
  2541. top:158px;
  2542. width:137px;
  2543. height:30px;
  2544. display:flex;
  2545. transition:none;
  2546. transform-origin:50% 50%;
  2547. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:14px;
  2551. }
  2552. #u6638 .text {
  2553. position:absolute;
  2554. align-self:center;
  2555. padding:5px 10px 5px 0px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u6638_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. }
  2564. #u6639 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:0px;
  2570. height:0px;
  2571. }
  2572. #u6640_div {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:280px;
  2578. height:40px;
  2579. background:inherit;
  2580. background-color:rgba(242, 242, 242, 1);
  2581. box-sizing:border-box;
  2582. border-width:1px;
  2583. border-style:solid;
  2584. border-color:rgba(170, 170, 170, 1);
  2585. border-radius:4px;
  2586. filter:drop-shadow(none);
  2587. transition:none;
  2588. }
  2589. #u6640 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:99px;
  2593. top:188px;
  2594. width:280px;
  2595. height:40px;
  2596. display:flex;
  2597. transition:none;
  2598. transform-origin:50% 50%;
  2599. }
  2600. #u6640 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:2px 2px 2px 0px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u6640_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. visibility:hidden;
  2612. }
  2613. #u6641_input {
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:273px;
  2618. height:30px;
  2619. padding:2px 2px 2px 0px;
  2620. font-family:"ArialMT", "Arial", sans-serif;
  2621. font-weight:400;
  2622. font-style:normal;
  2623. font-size:13px;
  2624. letter-spacing:normal;
  2625. color:#AAAAAA;
  2626. vertical-align:none;
  2627. text-align:left;
  2628. text-transform:none;
  2629. background-color:transparent;
  2630. border-color:transparent;
  2631. }
  2632. #u6641_input.disabled {
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:273px;
  2637. height:30px;
  2638. padding:2px 2px 2px 0px;
  2639. font-family:"ArialMT", "Arial", sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:13px;
  2643. letter-spacing:normal;
  2644. color:#AAAAAA;
  2645. vertical-align:none;
  2646. text-align:left;
  2647. text-transform:none;
  2648. background-color:transparent;
  2649. border-color:transparent;
  2650. }
  2651. #u6641_div {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:273px;
  2657. height:30px;
  2658. background:inherit;
  2659. background-color:rgba(242, 242, 242, 1);
  2660. border-radius:0px;
  2661. filter:drop-shadow(none);
  2662. transition:none;
  2663. color:#AAAAAA;
  2664. }
  2665. #u6641 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:104px;
  2669. top:193px;
  2670. width:273px;
  2671. height:30px;
  2672. display:flex;
  2673. transition:none;
  2674. transform-origin:50% 50%;
  2675. color:#AAAAAA;
  2676. }
  2677. #u6641 .text {
  2678. position:absolute;
  2679. align-self:flex-start;
  2680. padding:2px 2px 2px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u6641_div.disabled {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:273px;
  2690. height:30px;
  2691. background:inherit;
  2692. background-color:rgba(240, 240, 240, 1);
  2693. border-radius:0px;
  2694. filter:drop-shadow(none);
  2695. transition:none;
  2696. color:#AAAAAA;
  2697. }
  2698. #u6641.disabled {
  2699. }
  2700. .u6641_input_option {
  2701. }
  2702. #u6642_div {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:137px;
  2708. height:30px;
  2709. background:inherit;
  2710. background-color:rgba(255, 255, 255, 0);
  2711. border-top:0px;
  2712. border-right:0px;
  2713. border-bottom:0px;
  2714. border-radius:0px;
  2715. border-top-left-radius:0px;
  2716. border-bottom-left-radius:0px;
  2717. filter:drop-shadow(none);
  2718. transition:none;
  2719. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:14px;
  2723. }
  2724. #u6642 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:399px;
  2728. top:158px;
  2729. width:137px;
  2730. height:30px;
  2731. display:flex;
  2732. transition:none;
  2733. transform-origin:50% 50%;
  2734. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2735. font-weight:400;
  2736. font-style:normal;
  2737. font-size:14px;
  2738. }
  2739. #u6642 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:5px 10px 5px 0px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u6642_text {
  2747. border-width:0px;
  2748. word-wrap:break-word;
  2749. text-transform:none;
  2750. }
  2751. #u6643 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:0px;
  2757. height:0px;
  2758. }
  2759. #u6644_div {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:280px;
  2765. height:40px;
  2766. background:inherit;
  2767. background-color:rgba(242, 242, 242, 1);
  2768. box-sizing:border-box;
  2769. border-width:1px;
  2770. border-style:solid;
  2771. border-color:rgba(170, 170, 170, 1);
  2772. border-radius:4px;
  2773. filter:drop-shadow(none);
  2774. transition:none;
  2775. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. text-align:right;
  2779. }
  2780. #u6644 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:399px;
  2784. top:268px;
  2785. width:280px;
  2786. height:40px;
  2787. display:flex;
  2788. transition:none;
  2789. transform-origin:50% 50%;
  2790. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. text-align:right;
  2794. }
  2795. #u6644 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 10px 2px 10px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u6644_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. visibility:hidden;
  2807. }
  2808. #u6645_input {
  2809. position:absolute;
  2810. left:0px;
  2811. top:0px;
  2812. width:247px;
  2813. height:31px;
  2814. padding:2px 10px 2px 2px;
  2815. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:13px;
  2819. letter-spacing:normal;
  2820. color:#333333;
  2821. vertical-align:none;
  2822. text-align:left;
  2823. text-transform:none;
  2824. background-color:transparent;
  2825. border-color:transparent;
  2826. }
  2827. #u6645_input.hint {
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:247px;
  2832. height:31px;
  2833. padding:2px 10px 2px 2px;
  2834. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:13px;
  2838. letter-spacing:normal;
  2839. color:#999999;
  2840. vertical-align:none;
  2841. text-align:left;
  2842. text-transform:none;
  2843. background-color:transparent;
  2844. border-color:transparent;
  2845. }
  2846. #u6645_input.disabled {
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:247px;
  2851. height:31px;
  2852. padding:2px 10px 2px 2px;
  2853. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2854. font-weight:400;
  2855. font-style:normal;
  2856. font-size:13px;
  2857. letter-spacing:normal;
  2858. color:#333333;
  2859. vertical-align:none;
  2860. text-align:left;
  2861. text-transform:none;
  2862. background-color:transparent;
  2863. border-color:transparent;
  2864. }
  2865. #u6645_input.hint.disabled {
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:247px;
  2870. height:31px;
  2871. padding:2px 10px 2px 2px;
  2872. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:13px;
  2876. letter-spacing:normal;
  2877. color:#999999;
  2878. vertical-align:none;
  2879. text-align:left;
  2880. text-transform:none;
  2881. background-color:transparent;
  2882. border-color:transparent;
  2883. }
  2884. #u6645_div {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:247px;
  2890. height:31px;
  2891. background:inherit;
  2892. background-color:rgba(242, 242, 242, 1);
  2893. border-radius:0px;
  2894. filter:drop-shadow(none);
  2895. transition:none;
  2896. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. color:#333333;
  2900. }
  2901. #u6645 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:403px;
  2905. top:273px;
  2906. width:247px;
  2907. height:31px;
  2908. display:flex;
  2909. transition:none;
  2910. transform-origin:50% 50%;
  2911. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2912. font-weight:400;
  2913. font-style:normal;
  2914. color:#333333;
  2915. }
  2916. #u6645 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 10px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u6645_div.hint {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:247px;
  2929. height:31px;
  2930. background:inherit;
  2931. background-color:rgba(242, 242, 242, 1);
  2932. border-radius:0px;
  2933. filter:drop-shadow(none);
  2934. transition:none;
  2935. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. color:#333333;
  2939. }
  2940. #u6645.hint {
  2941. }
  2942. #u6645_div.disabled {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:0px;
  2947. width:247px;
  2948. height:31px;
  2949. background:inherit;
  2950. background-color:rgba(240, 240, 240, 1);
  2951. border-radius:0px;
  2952. filter:drop-shadow(none);
  2953. transition:none;
  2954. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. color:#333333;
  2958. }
  2959. #u6645.disabled {
  2960. }
  2961. #u6645_div.hint.disabled {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:247px;
  2967. height:31px;
  2968. background:inherit;
  2969. background-color:rgba(240, 240, 240, 1);
  2970. border-radius:0px;
  2971. filter:drop-shadow(none);
  2972. transition:none;
  2973. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2974. font-weight:400;
  2975. font-style:normal;
  2976. color:#333333;
  2977. }
  2978. #u6645.hint.disabled {
  2979. }
  2980. #u6646 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:0px;
  2986. height:0px;
  2987. }
  2988. #u6647_div {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:280px;
  2994. height:40px;
  2995. background:inherit;
  2996. background-color:rgba(242, 242, 242, 1);
  2997. box-sizing:border-box;
  2998. border-width:1px;
  2999. border-style:solid;
  3000. border-color:rgba(170, 170, 170, 1);
  3001. border-radius:4px;
  3002. filter:drop-shadow(none);
  3003. transition:none;
  3004. }
  3005. #u6647 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:399px;
  3009. top:188px;
  3010. width:280px;
  3011. height:40px;
  3012. display:flex;
  3013. transition:none;
  3014. transform-origin:50% 50%;
  3015. }
  3016. #u6647 .text {
  3017. position:absolute;
  3018. align-self:center;
  3019. padding:2px 2px 2px 0px;
  3020. box-sizing:border-box;
  3021. width:100%;
  3022. }
  3023. #u6647_text {
  3024. border-width:0px;
  3025. word-wrap:break-word;
  3026. text-transform:none;
  3027. visibility:hidden;
  3028. }
  3029. #u6648_input {
  3030. position:absolute;
  3031. left:0px;
  3032. top:0px;
  3033. width:273px;
  3034. height:30px;
  3035. padding:2px 2px 2px 0px;
  3036. font-family:"ArialMT", "Arial", sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:13px;
  3040. letter-spacing:normal;
  3041. color:#AAAAAA;
  3042. vertical-align:none;
  3043. text-align:left;
  3044. text-transform:none;
  3045. background-color:transparent;
  3046. border-color:transparent;
  3047. }
  3048. #u6648_input.disabled {
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:273px;
  3053. height:30px;
  3054. padding:2px 2px 2px 0px;
  3055. font-family:"ArialMT", "Arial", sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:13px;
  3059. letter-spacing:normal;
  3060. color:#AAAAAA;
  3061. vertical-align:none;
  3062. text-align:left;
  3063. text-transform:none;
  3064. background-color:transparent;
  3065. border-color:transparent;
  3066. }
  3067. #u6648_div {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:273px;
  3073. height:30px;
  3074. background:inherit;
  3075. background-color:rgba(242, 242, 242, 1);
  3076. border-radius:0px;
  3077. filter:drop-shadow(none);
  3078. transition:none;
  3079. color:#AAAAAA;
  3080. }
  3081. #u6648 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:404px;
  3085. top:193px;
  3086. width:273px;
  3087. height:30px;
  3088. display:flex;
  3089. transition:none;
  3090. transform-origin:50% 50%;
  3091. color:#AAAAAA;
  3092. }
  3093. #u6648 .text {
  3094. position:absolute;
  3095. align-self:flex-start;
  3096. padding:2px 2px 2px 0px;
  3097. box-sizing:border-box;
  3098. width:100%;
  3099. }
  3100. #u6648_div.disabled {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:273px;
  3106. height:30px;
  3107. background:inherit;
  3108. background-color:rgba(240, 240, 240, 1);
  3109. border-radius:0px;
  3110. filter:drop-shadow(none);
  3111. transition:none;
  3112. color:#AAAAAA;
  3113. }
  3114. #u6648.disabled {
  3115. }
  3116. .u6648_input_option {
  3117. }
  3118. #u6649_div {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:108px;
  3124. height:30px;
  3125. background:inherit;
  3126. background-color:rgba(255, 255, 255, 0);
  3127. border-top:0px;
  3128. border-right:0px;
  3129. border-bottom:0px;
  3130. border-radius:0px;
  3131. border-top-left-radius:0px;
  3132. border-bottom-left-radius:0px;
  3133. filter:drop-shadow(none);
  3134. transition:none;
  3135. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. }
  3139. #u6649 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:399px;
  3143. top:238px;
  3144. width:108px;
  3145. height:30px;
  3146. display:flex;
  3147. transition:none;
  3148. transform-origin:50% 50%;
  3149. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. }
  3153. #u6649 .text {
  3154. position:absolute;
  3155. align-self:center;
  3156. padding:5px 10px 5px 0px;
  3157. box-sizing:border-box;
  3158. width:100%;
  3159. }
  3160. #u6649_text {
  3161. border-width:0px;
  3162. white-space:nowrap;
  3163. text-transform:none;
  3164. }
  3165. #u6650_div {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:75px;
  3171. height:32px;
  3172. background:inherit;
  3173. background-color:rgba(255, 255, 255, 0);
  3174. border-top:0px;
  3175. border-right:0px;
  3176. border-bottom:0px;
  3177. border-radius:0px;
  3178. border-top-left-radius:0px;
  3179. border-bottom-left-radius:0px;
  3180. filter:drop-shadow(none);
  3181. transition:none;
  3182. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3183. font-weight:500;
  3184. font-style:normal;
  3185. font-size:16px;
  3186. color:#1890FF;
  3187. }
  3188. #u6650 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:95px;
  3192. top:114px;
  3193. width:75px;
  3194. height:32px;
  3195. display:flex;
  3196. transition:none;
  3197. transform-origin:50% 50%;
  3198. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3199. font-weight:500;
  3200. font-style:normal;
  3201. font-size:16px;
  3202. color:#1890FF;
  3203. }
  3204. #u6650 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:5px 10px 5px 0px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u6650_text {
  3212. border-width:0px;
  3213. white-space:nowrap;
  3214. text-transform:none;
  3215. }
  3216. #u6651_div {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:75px;
  3222. height:32px;
  3223. background:inherit;
  3224. background-color:rgba(255, 255, 255, 0);
  3225. border-top:0px;
  3226. border-right:0px;
  3227. border-bottom:0px;
  3228. border-radius:0px;
  3229. border-top-left-radius:0px;
  3230. border-bottom-left-radius:0px;
  3231. filter:drop-shadow(none);
  3232. transition:none;
  3233. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3234. font-weight:500;
  3235. font-style:normal;
  3236. font-size:16px;
  3237. }
  3238. #u6651 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:190px;
  3242. top:114px;
  3243. width:75px;
  3244. height:32px;
  3245. display:flex;
  3246. transition:none;
  3247. transform-origin:50% 50%;
  3248. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3249. font-weight:500;
  3250. font-style:normal;
  3251. font-size:16px;
  3252. }
  3253. #u6651 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:5px 10px 5px 0px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u6651_text {
  3261. border-width:0px;
  3262. white-space:nowrap;
  3263. text-transform:none;
  3264. }
  3265. #u6652_div {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:75px;
  3271. height:32px;
  3272. background:inherit;
  3273. background-color:rgba(255, 255, 255, 0);
  3274. border-top:0px;
  3275. border-right:0px;
  3276. border-bottom:0px;
  3277. border-radius:0px;
  3278. border-top-left-radius:0px;
  3279. border-bottom-left-radius:0px;
  3280. filter:drop-shadow(none);
  3281. transition:none;
  3282. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3283. font-weight:500;
  3284. font-style:normal;
  3285. font-size:16px;
  3286. }
  3287. #u6652 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:285px;
  3291. top:114px;
  3292. width:75px;
  3293. height:32px;
  3294. display:flex;
  3295. transition:none;
  3296. transform-origin:50% 50%;
  3297. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3298. font-weight:500;
  3299. font-style:normal;
  3300. font-size:16px;
  3301. }
  3302. #u6652 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:5px 10px 5px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u6652_text {
  3310. border-width:0px;
  3311. white-space:nowrap;
  3312. text-transform:none;
  3313. }
  3314. #u6653 {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:0px;
  3320. height:0px;
  3321. }
  3322. #u6654_div {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:280px;
  3328. height:40px;
  3329. background:inherit;
  3330. background-color:rgba(255, 255, 255, 1);
  3331. box-sizing:border-box;
  3332. border-width:1px;
  3333. border-style:solid;
  3334. border-color:rgba(170, 170, 170, 1);
  3335. border-radius:4px;
  3336. filter:drop-shadow(none);
  3337. transition:none;
  3338. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. text-align:right;
  3342. }
  3343. #u6654 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:99px;
  3347. top:428px;
  3348. width:280px;
  3349. height:40px;
  3350. display:flex;
  3351. transition:none;
  3352. transform-origin:50% 50%;
  3353. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. text-align:right;
  3357. }
  3358. #u6654 .text {
  3359. position:absolute;
  3360. align-self:center;
  3361. padding:2px 10px 2px 10px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u6654_text {
  3366. border-width:0px;
  3367. word-wrap:break-word;
  3368. text-transform:none;
  3369. visibility:hidden;
  3370. }
  3371. #u6655_input {
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:223px;
  3376. height:31px;
  3377. padding:2px 10px 2px 2px;
  3378. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3379. font-weight:400;
  3380. font-style:normal;
  3381. font-size:13px;
  3382. letter-spacing:normal;
  3383. color:#333333;
  3384. vertical-align:none;
  3385. text-align:left;
  3386. text-transform:none;
  3387. background-color:transparent;
  3388. border-color:transparent;
  3389. }
  3390. #u6655_input.hint {
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:223px;
  3395. height:31px;
  3396. padding:2px 10px 2px 2px;
  3397. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:13px;
  3401. letter-spacing:normal;
  3402. color:#999999;
  3403. vertical-align:none;
  3404. text-align:left;
  3405. text-transform:none;
  3406. background-color:transparent;
  3407. border-color:transparent;
  3408. }
  3409. #u6655_input.disabled {
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:223px;
  3414. height:31px;
  3415. padding:2px 10px 2px 2px;
  3416. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:13px;
  3420. letter-spacing:normal;
  3421. color:#333333;
  3422. vertical-align:none;
  3423. text-align:left;
  3424. text-transform:none;
  3425. background-color:transparent;
  3426. border-color:transparent;
  3427. }
  3428. #u6655_input.hint.disabled {
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:223px;
  3433. height:31px;
  3434. padding:2px 10px 2px 2px;
  3435. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:13px;
  3439. letter-spacing:normal;
  3440. color:#999999;
  3441. vertical-align:none;
  3442. text-align:left;
  3443. text-transform:none;
  3444. background-color:transparent;
  3445. border-color:transparent;
  3446. }
  3447. #u6655_div {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:223px;
  3453. height:31px;
  3454. background:inherit;
  3455. background-color:rgba(255, 255, 255, 0);
  3456. border-radius:0px;
  3457. filter:drop-shadow(none);
  3458. transition:none;
  3459. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. color:#333333;
  3463. }
  3464. #u6655 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:103px;
  3468. top:433px;
  3469. width:223px;
  3470. height:31px;
  3471. display:flex;
  3472. transition:none;
  3473. transform-origin:50% 50%;
  3474. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. color:#333333;
  3478. }
  3479. #u6655 .text {
  3480. position:absolute;
  3481. align-self:center;
  3482. padding:2px 10px 2px 2px;
  3483. box-sizing:border-box;
  3484. width:100%;
  3485. }
  3486. #u6655_div.hint {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:223px;
  3492. height:31px;
  3493. background:inherit;
  3494. background-color:rgba(255, 255, 255, 0);
  3495. border-radius:0px;
  3496. filter:drop-shadow(none);
  3497. transition:none;
  3498. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3499. font-weight:400;
  3500. font-style:normal;
  3501. color:#333333;
  3502. }
  3503. #u6655.hint {
  3504. }
  3505. #u6655_div.disabled {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:223px;
  3511. height:31px;
  3512. background:inherit;
  3513. background-color:rgba(240, 240, 240, 1);
  3514. border-radius:0px;
  3515. filter:drop-shadow(none);
  3516. transition:none;
  3517. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. color:#333333;
  3521. }
  3522. #u6655.disabled {
  3523. }
  3524. #u6655_div.hint.disabled {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:223px;
  3530. height:31px;
  3531. background:inherit;
  3532. background-color:rgba(240, 240, 240, 1);
  3533. border-radius:0px;
  3534. filter:drop-shadow(none);
  3535. transition:none;
  3536. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. color:#333333;
  3540. }
  3541. #u6655.hint.disabled {
  3542. }
  3543. #u6656_div {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:137px;
  3549. height:30px;
  3550. background:inherit;
  3551. background-color:rgba(255, 255, 255, 0);
  3552. border-top:0px;
  3553. border-right:0px;
  3554. border-bottom:0px;
  3555. border-radius:0px;
  3556. border-top-left-radius:0px;
  3557. border-bottom-left-radius:0px;
  3558. filter:drop-shadow(none);
  3559. transition:none;
  3560. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3561. font-weight:400;
  3562. font-style:normal;
  3563. font-size:14px;
  3564. }
  3565. #u6656 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:99px;
  3569. top:398px;
  3570. width:137px;
  3571. height:30px;
  3572. display:flex;
  3573. transition:none;
  3574. transform-origin:50% 50%;
  3575. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:14px;
  3579. }
  3580. #u6656 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:5px 10px 5px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u6656_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. }
  3592. #u6657 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:167px;
  3596. top:405px;
  3597. width:17px;
  3598. height:17px;
  3599. display:flex;
  3600. transition:none;
  3601. }
  3602. #u6657 .text {
  3603. position:absolute;
  3604. align-self:center;
  3605. padding:2px 2px 2px 2px;
  3606. box-sizing:border-box;
  3607. width:100%;
  3608. }
  3609. #u6657_img {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:17px;
  3615. height:17px;
  3616. }
  3617. #u6657_text {
  3618. border-width:0px;
  3619. word-wrap:break-word;
  3620. text-transform:none;
  3621. visibility:hidden;
  3622. }
  3623. #u6658 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:0px;
  3629. height:0px;
  3630. }
  3631. #u6659_div {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:280px;
  3637. height:40px;
  3638. background:inherit;
  3639. background-color:rgba(255, 255, 255, 1);
  3640. box-sizing:border-box;
  3641. border-width:1px;
  3642. border-style:solid;
  3643. border-color:rgba(170, 170, 170, 1);
  3644. border-radius:4px;
  3645. filter:drop-shadow(none);
  3646. transition:none;
  3647. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3648. font-weight:400;
  3649. font-style:normal;
  3650. text-align:right;
  3651. }
  3652. #u6659 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:399px;
  3656. top:428px;
  3657. width:280px;
  3658. height:40px;
  3659. display:flex;
  3660. transition:none;
  3661. transform-origin:50% 50%;
  3662. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3663. font-weight:400;
  3664. font-style:normal;
  3665. text-align:right;
  3666. }
  3667. #u6659 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 10px 2px 10px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u6659_text {
  3675. border-width:0px;
  3676. word-wrap:break-word;
  3677. text-transform:none;
  3678. visibility:hidden;
  3679. }
  3680. #u6660_input {
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:223px;
  3685. height:31px;
  3686. padding:2px 10px 2px 2px;
  3687. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3688. font-weight:400;
  3689. font-style:normal;
  3690. font-size:13px;
  3691. letter-spacing:normal;
  3692. color:#333333;
  3693. vertical-align:none;
  3694. text-align:left;
  3695. text-transform:none;
  3696. background-color:transparent;
  3697. border-color:transparent;
  3698. }
  3699. #u6660_input.hint {
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:223px;
  3704. height:31px;
  3705. padding:2px 10px 2px 2px;
  3706. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3707. font-weight:400;
  3708. font-style:normal;
  3709. font-size:13px;
  3710. letter-spacing:normal;
  3711. color:#999999;
  3712. vertical-align:none;
  3713. text-align:left;
  3714. text-transform:none;
  3715. background-color:transparent;
  3716. border-color:transparent;
  3717. }
  3718. #u6660_input.disabled {
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:223px;
  3723. height:31px;
  3724. padding:2px 10px 2px 2px;
  3725. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. font-size:13px;
  3729. letter-spacing:normal;
  3730. color:#333333;
  3731. vertical-align:none;
  3732. text-align:left;
  3733. text-transform:none;
  3734. background-color:transparent;
  3735. border-color:transparent;
  3736. }
  3737. #u6660_input.hint.disabled {
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:223px;
  3742. height:31px;
  3743. padding:2px 10px 2px 2px;
  3744. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3745. font-weight:400;
  3746. font-style:normal;
  3747. font-size:13px;
  3748. letter-spacing:normal;
  3749. color:#999999;
  3750. vertical-align:none;
  3751. text-align:left;
  3752. text-transform:none;
  3753. background-color:transparent;
  3754. border-color:transparent;
  3755. }
  3756. #u6660_div {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:223px;
  3762. height:31px;
  3763. background:inherit;
  3764. background-color:rgba(255, 255, 255, 0);
  3765. border-radius:0px;
  3766. filter:drop-shadow(none);
  3767. transition:none;
  3768. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3769. font-weight:400;
  3770. font-style:normal;
  3771. color:#333333;
  3772. }
  3773. #u6660 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:403px;
  3777. top:433px;
  3778. width:223px;
  3779. height:31px;
  3780. display:flex;
  3781. transition:none;
  3782. transform-origin:50% 50%;
  3783. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. color:#333333;
  3787. }
  3788. #u6660 .text {
  3789. position:absolute;
  3790. align-self:center;
  3791. padding:2px 10px 2px 2px;
  3792. box-sizing:border-box;
  3793. width:100%;
  3794. }
  3795. #u6660_div.hint {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:223px;
  3801. height:31px;
  3802. background:inherit;
  3803. background-color:rgba(255, 255, 255, 0);
  3804. border-radius:0px;
  3805. filter:drop-shadow(none);
  3806. transition:none;
  3807. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. color:#333333;
  3811. }
  3812. #u6660.hint {
  3813. }
  3814. #u6660_div.disabled {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:223px;
  3820. height:31px;
  3821. background:inherit;
  3822. background-color:rgba(240, 240, 240, 1);
  3823. border-radius:0px;
  3824. filter:drop-shadow(none);
  3825. transition:none;
  3826. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3827. font-weight:400;
  3828. font-style:normal;
  3829. color:#333333;
  3830. }
  3831. #u6660.disabled {
  3832. }
  3833. #u6660_div.hint.disabled {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:223px;
  3839. height:31px;
  3840. background:inherit;
  3841. background-color:rgba(240, 240, 240, 1);
  3842. border-radius:0px;
  3843. filter:drop-shadow(none);
  3844. transition:none;
  3845. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. color:#333333;
  3849. }
  3850. #u6660.hint.disabled {
  3851. }
  3852. #u6661_div {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:137px;
  3858. height:30px;
  3859. background:inherit;
  3860. background-color:rgba(255, 255, 255, 0);
  3861. border-top:0px;
  3862. border-right:0px;
  3863. border-bottom:0px;
  3864. border-radius:0px;
  3865. border-top-left-radius:0px;
  3866. border-bottom-left-radius:0px;
  3867. filter:drop-shadow(none);
  3868. transition:none;
  3869. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:14px;
  3873. }
  3874. #u6661 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:399px;
  3878. top:398px;
  3879. width:137px;
  3880. height:30px;
  3881. display:flex;
  3882. transition:none;
  3883. transform-origin:50% 50%;
  3884. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3885. font-weight:400;
  3886. font-style:normal;
  3887. font-size:14px;
  3888. }
  3889. #u6661 .text {
  3890. position:absolute;
  3891. align-self:center;
  3892. padding:5px 10px 5px 0px;
  3893. box-sizing:border-box;
  3894. width:100%;
  3895. }
  3896. #u6661_text {
  3897. border-width:0px;
  3898. word-wrap:break-word;
  3899. text-transform:none;
  3900. }
  3901. #u6662 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:467px;
  3905. top:405px;
  3906. width:17px;
  3907. height:17px;
  3908. display:flex;
  3909. transition:none;
  3910. }
  3911. #u6662 .text {
  3912. position:absolute;
  3913. align-self:center;
  3914. padding:2px 2px 2px 2px;
  3915. box-sizing:border-box;
  3916. width:100%;
  3917. }
  3918. #u6662_img {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:0px;
  3922. top:0px;
  3923. width:17px;
  3924. height:17px;
  3925. }
  3926. #u6662_text {
  3927. border-width:0px;
  3928. word-wrap:break-word;
  3929. text-transform:none;
  3930. visibility:hidden;
  3931. }
  3932. #u6663 {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:0px;
  3936. top:0px;
  3937. width:0px;
  3938. height:0px;
  3939. }
  3940. #u6664_div {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:280px;
  3946. height:40px;
  3947. background:inherit;
  3948. background-color:rgba(255, 255, 255, 1);
  3949. box-sizing:border-box;
  3950. border-width:1px;
  3951. border-style:solid;
  3952. border-color:rgba(170, 170, 170, 1);
  3953. border-radius:4px;
  3954. filter:drop-shadow(none);
  3955. transition:none;
  3956. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. text-align:right;
  3960. }
  3961. #u6664 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:399px;
  3965. top:348px;
  3966. width:280px;
  3967. height:40px;
  3968. display:flex;
  3969. transition:none;
  3970. transform-origin:50% 50%;
  3971. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. text-align:right;
  3975. }
  3976. #u6664 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:2px 10px 2px 10px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u6664_text {
  3984. border-width:0px;
  3985. word-wrap:break-word;
  3986. text-transform:none;
  3987. visibility:hidden;
  3988. }
  3989. #u6665_input {
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:223px;
  3994. height:31px;
  3995. padding:2px 10px 2px 2px;
  3996. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. font-size:13px;
  4000. letter-spacing:normal;
  4001. color:#333333;
  4002. vertical-align:none;
  4003. text-align:left;
  4004. text-transform:none;
  4005. background-color:transparent;
  4006. border-color:transparent;
  4007. }
  4008. #u6665_input.hint {
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:223px;
  4013. height:31px;
  4014. padding:2px 10px 2px 2px;
  4015. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4016. font-weight:400;
  4017. font-style:normal;
  4018. font-size:13px;
  4019. letter-spacing:normal;
  4020. color:#999999;
  4021. vertical-align:none;
  4022. text-align:left;
  4023. text-transform:none;
  4024. background-color:transparent;
  4025. border-color:transparent;
  4026. }
  4027. #u6665_input.disabled {
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:223px;
  4032. height:31px;
  4033. padding:2px 10px 2px 2px;
  4034. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4035. font-weight:400;
  4036. font-style:normal;
  4037. font-size:13px;
  4038. letter-spacing:normal;
  4039. color:#333333;
  4040. vertical-align:none;
  4041. text-align:left;
  4042. text-transform:none;
  4043. background-color:transparent;
  4044. border-color:transparent;
  4045. }
  4046. #u6665_input.hint.disabled {
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:223px;
  4051. height:31px;
  4052. padding:2px 10px 2px 2px;
  4053. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:13px;
  4057. letter-spacing:normal;
  4058. color:#999999;
  4059. vertical-align:none;
  4060. text-align:left;
  4061. text-transform:none;
  4062. background-color:transparent;
  4063. border-color:transparent;
  4064. }
  4065. #u6665_div {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:223px;
  4071. height:31px;
  4072. background:inherit;
  4073. background-color:rgba(255, 255, 255, 0);
  4074. border-radius:0px;
  4075. filter:drop-shadow(none);
  4076. transition:none;
  4077. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. color:#333333;
  4081. }
  4082. #u6665 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:403px;
  4086. top:353px;
  4087. width:223px;
  4088. height:31px;
  4089. display:flex;
  4090. transition:none;
  4091. transform-origin:50% 50%;
  4092. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. color:#333333;
  4096. }
  4097. #u6665 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 10px 2px 2px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u6665_div.hint {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:0px;
  4108. top:0px;
  4109. width:223px;
  4110. height:31px;
  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. color:#333333;
  4120. }
  4121. #u6665.hint {
  4122. }
  4123. #u6665_div.disabled {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:223px;
  4129. height:31px;
  4130. background:inherit;
  4131. background-color:rgba(240, 240, 240, 1);
  4132. border-radius:0px;
  4133. filter:drop-shadow(none);
  4134. transition:none;
  4135. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. color:#333333;
  4139. }
  4140. #u6665.disabled {
  4141. }
  4142. #u6665_div.hint.disabled {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:223px;
  4148. height:31px;
  4149. background:inherit;
  4150. background-color:rgba(240, 240, 240, 1);
  4151. border-radius:0px;
  4152. filter:drop-shadow(none);
  4153. transition:none;
  4154. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4155. font-weight:400;
  4156. font-style:normal;
  4157. color:#333333;
  4158. }
  4159. #u6665.hint.disabled {
  4160. }
  4161. #u6666_div {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:137px;
  4167. height:30px;
  4168. background:inherit;
  4169. background-color:rgba(255, 255, 255, 0);
  4170. border-top:0px;
  4171. border-right:0px;
  4172. border-bottom:0px;
  4173. border-radius:0px;
  4174. border-top-left-radius:0px;
  4175. border-bottom-left-radius:0px;
  4176. filter:drop-shadow(none);
  4177. transition:none;
  4178. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:14px;
  4182. }
  4183. #u6666 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:399px;
  4187. top:318px;
  4188. width:137px;
  4189. height:30px;
  4190. display:flex;
  4191. transition:none;
  4192. transform-origin:50% 50%;
  4193. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:14px;
  4197. }
  4198. #u6666 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:5px 10px 5px 0px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u6666_text {
  4206. border-width:0px;
  4207. word-wrap:break-word;
  4208. text-transform:none;
  4209. }
  4210. #u6667 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:0px;
  4216. height:0px;
  4217. }
  4218. #u6668_div {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:280px;
  4224. height:40px;
  4225. background:inherit;
  4226. background-color:rgba(255, 255, 255, 1);
  4227. box-sizing:border-box;
  4228. border-width:1px;
  4229. border-style:solid;
  4230. border-color:rgba(170, 170, 170, 1);
  4231. border-radius:4px;
  4232. filter:drop-shadow(none);
  4233. transition:none;
  4234. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. text-align:right;
  4238. }
  4239. #u6668 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:699px;
  4243. top:348px;
  4244. width:280px;
  4245. height:40px;
  4246. display:flex;
  4247. transition:none;
  4248. transform-origin:50% 50%;
  4249. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4250. font-weight:400;
  4251. font-style:normal;
  4252. text-align:right;
  4253. }
  4254. #u6668 .text {
  4255. position:absolute;
  4256. align-self:center;
  4257. padding:2px 10px 2px 10px;
  4258. box-sizing:border-box;
  4259. width:100%;
  4260. }
  4261. #u6668_text {
  4262. border-width:0px;
  4263. word-wrap:break-word;
  4264. text-transform:none;
  4265. visibility:hidden;
  4266. }
  4267. #u6669_input {
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:223px;
  4272. height:31px;
  4273. padding:2px 10px 2px 2px;
  4274. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:13px;
  4278. letter-spacing:normal;
  4279. color:#333333;
  4280. vertical-align:none;
  4281. text-align:left;
  4282. text-transform:none;
  4283. background-color:transparent;
  4284. border-color:transparent;
  4285. }
  4286. #u6669_input.hint {
  4287. position:absolute;
  4288. left:0px;
  4289. top:0px;
  4290. width:223px;
  4291. height:31px;
  4292. padding:2px 10px 2px 2px;
  4293. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4294. font-weight:400;
  4295. font-style:normal;
  4296. font-size:13px;
  4297. letter-spacing:normal;
  4298. color:#999999;
  4299. vertical-align:none;
  4300. text-align:left;
  4301. text-transform:none;
  4302. background-color:transparent;
  4303. border-color:transparent;
  4304. }
  4305. #u6669_input.disabled {
  4306. position:absolute;
  4307. left:0px;
  4308. top:0px;
  4309. width:223px;
  4310. height:31px;
  4311. padding:2px 10px 2px 2px;
  4312. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4313. font-weight:400;
  4314. font-style:normal;
  4315. font-size:13px;
  4316. letter-spacing:normal;
  4317. color:#333333;
  4318. vertical-align:none;
  4319. text-align:left;
  4320. text-transform:none;
  4321. background-color:transparent;
  4322. border-color:transparent;
  4323. }
  4324. #u6669_input.hint.disabled {
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:223px;
  4329. height:31px;
  4330. padding:2px 10px 2px 2px;
  4331. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:13px;
  4335. letter-spacing:normal;
  4336. color:#999999;
  4337. vertical-align:none;
  4338. text-align:left;
  4339. text-transform:none;
  4340. background-color:transparent;
  4341. border-color:transparent;
  4342. }
  4343. #u6669_div {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:223px;
  4349. height:31px;
  4350. background:inherit;
  4351. background-color:rgba(255, 255, 255, 0);
  4352. border-radius:0px;
  4353. filter:drop-shadow(none);
  4354. transition:none;
  4355. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. color:#333333;
  4359. }
  4360. #u6669 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:703px;
  4364. top:353px;
  4365. width:223px;
  4366. height:31px;
  4367. display:flex;
  4368. transition:none;
  4369. transform-origin:50% 50%;
  4370. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. color:#333333;
  4374. }
  4375. #u6669 .text {
  4376. position:absolute;
  4377. align-self:center;
  4378. padding:2px 10px 2px 2px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u6669_div.hint {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:223px;
  4388. height:31px;
  4389. background:inherit;
  4390. background-color:rgba(255, 255, 255, 0);
  4391. border-radius:0px;
  4392. filter:drop-shadow(none);
  4393. transition:none;
  4394. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. color:#333333;
  4398. }
  4399. #u6669.hint {
  4400. }
  4401. #u6669_div.disabled {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:223px;
  4407. height:31px;
  4408. background:inherit;
  4409. background-color:rgba(240, 240, 240, 1);
  4410. border-radius:0px;
  4411. filter:drop-shadow(none);
  4412. transition:none;
  4413. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4414. font-weight:400;
  4415. font-style:normal;
  4416. color:#333333;
  4417. }
  4418. #u6669.disabled {
  4419. }
  4420. #u6669_div.hint.disabled {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:223px;
  4426. height:31px;
  4427. background:inherit;
  4428. background-color:rgba(240, 240, 240, 1);
  4429. border-radius:0px;
  4430. filter:drop-shadow(none);
  4431. transition:none;
  4432. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. color:#333333;
  4436. }
  4437. #u6669.hint.disabled {
  4438. }
  4439. #u6670_div {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:137px;
  4445. height:30px;
  4446. background:inherit;
  4447. background-color:rgba(255, 255, 255, 0);
  4448. border-top:0px;
  4449. border-right:0px;
  4450. border-bottom:0px;
  4451. border-radius:0px;
  4452. border-top-left-radius:0px;
  4453. border-bottom-left-radius:0px;
  4454. filter:drop-shadow(none);
  4455. transition:none;
  4456. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4457. font-weight:400;
  4458. font-style:normal;
  4459. font-size:14px;
  4460. }
  4461. #u6670 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:699px;
  4465. top:318px;
  4466. width:137px;
  4467. height:30px;
  4468. display:flex;
  4469. transition:none;
  4470. transform-origin:50% 50%;
  4471. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:14px;
  4475. }
  4476. #u6670 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:5px 10px 5px 0px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u6670_text {
  4484. border-width:0px;
  4485. word-wrap:break-word;
  4486. text-transform:none;
  4487. }
  4488. #u6671 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:0px;
  4494. height:0px;
  4495. }
  4496. #u6672_div {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:280px;
  4502. height:40px;
  4503. background:inherit;
  4504. background-color:rgba(255, 255, 255, 1);
  4505. box-sizing:border-box;
  4506. border-width:1px;
  4507. border-style:solid;
  4508. border-color:rgba(170, 170, 170, 1);
  4509. border-radius:4px;
  4510. filter:drop-shadow(none);
  4511. transition:none;
  4512. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4513. font-weight:400;
  4514. font-style:normal;
  4515. color:#7F7F7F;
  4516. text-align:right;
  4517. }
  4518. #u6672 {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:699px;
  4522. top:271px;
  4523. width:280px;
  4524. height:40px;
  4525. display:flex;
  4526. transition:none;
  4527. transform-origin:50% 50%;
  4528. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4529. font-weight:400;
  4530. font-style:normal;
  4531. color:#7F7F7F;
  4532. text-align:right;
  4533. }
  4534. #u6672 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 10px 2px 10px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u6672_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. }
  4546. #u6673_input {
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:223px;
  4551. height:31px;
  4552. padding:2px 10px 2px 2px;
  4553. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:13px;
  4557. letter-spacing:normal;
  4558. color:#333333;
  4559. vertical-align:none;
  4560. text-align:left;
  4561. text-transform:none;
  4562. background-color:transparent;
  4563. border-color:transparent;
  4564. }
  4565. #u6673_input.hint {
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:223px;
  4570. height:31px;
  4571. padding:2px 10px 2px 2px;
  4572. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:13px;
  4576. letter-spacing:normal;
  4577. color:#999999;
  4578. vertical-align:none;
  4579. text-align:left;
  4580. text-transform:none;
  4581. background-color:transparent;
  4582. border-color:transparent;
  4583. }
  4584. #u6673_input.disabled {
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:223px;
  4589. height:31px;
  4590. padding:2px 10px 2px 2px;
  4591. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4592. font-weight:400;
  4593. font-style:normal;
  4594. font-size:13px;
  4595. letter-spacing:normal;
  4596. color:#333333;
  4597. vertical-align:none;
  4598. text-align:left;
  4599. text-transform:none;
  4600. background-color:transparent;
  4601. border-color:transparent;
  4602. }
  4603. #u6673_input.hint.disabled {
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:223px;
  4608. height:31px;
  4609. padding:2px 10px 2px 2px;
  4610. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4611. font-weight:400;
  4612. font-style:normal;
  4613. font-size:13px;
  4614. letter-spacing:normal;
  4615. color:#999999;
  4616. vertical-align:none;
  4617. text-align:left;
  4618. text-transform:none;
  4619. background-color:transparent;
  4620. border-color:transparent;
  4621. }
  4622. #u6673_div {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:223px;
  4628. height:31px;
  4629. background:inherit;
  4630. background-color:rgba(255, 255, 255, 0);
  4631. border-radius:0px;
  4632. filter:drop-shadow(none);
  4633. transition:none;
  4634. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4635. font-weight:400;
  4636. font-style:normal;
  4637. color:#333333;
  4638. }
  4639. #u6673 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:703px;
  4643. top:276px;
  4644. width:223px;
  4645. height:31px;
  4646. display:flex;
  4647. transition:none;
  4648. transform-origin:50% 50%;
  4649. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. color:#333333;
  4653. }
  4654. #u6673 .text {
  4655. position:absolute;
  4656. align-self:center;
  4657. padding:2px 10px 2px 2px;
  4658. box-sizing:border-box;
  4659. width:100%;
  4660. }
  4661. #u6673_div.hint {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:223px;
  4667. height:31px;
  4668. background:inherit;
  4669. background-color:rgba(255, 255, 255, 0);
  4670. border-radius:0px;
  4671. filter:drop-shadow(none);
  4672. transition:none;
  4673. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4674. font-weight:400;
  4675. font-style:normal;
  4676. color:#333333;
  4677. }
  4678. #u6673.hint {
  4679. }
  4680. #u6673_div.disabled {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:223px;
  4686. height:31px;
  4687. background:inherit;
  4688. background-color:rgba(240, 240, 240, 1);
  4689. border-radius:0px;
  4690. filter:drop-shadow(none);
  4691. transition:none;
  4692. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4693. font-weight:400;
  4694. font-style:normal;
  4695. color:#333333;
  4696. }
  4697. #u6673.disabled {
  4698. }
  4699. #u6673_div.hint.disabled {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:223px;
  4705. height:31px;
  4706. background:inherit;
  4707. background-color:rgba(240, 240, 240, 1);
  4708. border-radius:0px;
  4709. filter:drop-shadow(none);
  4710. transition:none;
  4711. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4712. font-weight:400;
  4713. font-style:normal;
  4714. color:#333333;
  4715. }
  4716. #u6673.hint.disabled {
  4717. }
  4718. #u6674_div {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:118px;
  4724. height:30px;
  4725. background:inherit;
  4726. background-color:rgba(255, 255, 255, 0);
  4727. border-top:0px;
  4728. border-right:0px;
  4729. border-bottom:0px;
  4730. border-radius:0px;
  4731. border-top-left-radius:0px;
  4732. border-bottom-left-radius:0px;
  4733. filter:drop-shadow(none);
  4734. transition:none;
  4735. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. }
  4739. #u6674 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:699px;
  4743. top:241px;
  4744. width:118px;
  4745. height:30px;
  4746. display:flex;
  4747. transition:none;
  4748. transform-origin:50% 50%;
  4749. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. }
  4753. #u6674 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:5px 10px 5px 0px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u6674_text {
  4761. border-width:0px;
  4762. white-space:nowrap;
  4763. text-transform:none;
  4764. }
  4765. #u6675_div {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:137px;
  4771. height:30px;
  4772. background:inherit;
  4773. background-color:rgba(255, 255, 255, 0);
  4774. border-top:0px;
  4775. border-right:0px;
  4776. border-bottom:0px;
  4777. border-radius:0px;
  4778. border-top-left-radius:0px;
  4779. border-bottom-left-radius:0px;
  4780. filter:drop-shadow(none);
  4781. transition:none;
  4782. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4783. font-weight:400;
  4784. font-style:normal;
  4785. font-size:14px;
  4786. }
  4787. #u6675 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:99px;
  4791. top:558px;
  4792. width:137px;
  4793. height:30px;
  4794. display:flex;
  4795. transition:none;
  4796. transform-origin:50% 50%;
  4797. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4798. font-weight:400;
  4799. font-style:normal;
  4800. font-size:14px;
  4801. }
  4802. #u6675 .text {
  4803. position:absolute;
  4804. align-self:center;
  4805. padding:5px 10px 5px 0px;
  4806. box-sizing:border-box;
  4807. width:100%;
  4808. }
  4809. #u6675_text {
  4810. border-width:0px;
  4811. word-wrap:break-word;
  4812. text-transform:none;
  4813. }
  4814. #u6676 {
  4815. border-width:0px;
  4816. position:absolute;
  4817. left:0px;
  4818. top:0px;
  4819. width:0px;
  4820. height:0px;
  4821. }
  4822. #u6677_div {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:280px;
  4828. height:38px;
  4829. background:inherit;
  4830. background-color:rgba(255, 255, 255, 1);
  4831. box-sizing:border-box;
  4832. border-width:1px;
  4833. border-style:solid;
  4834. border-color:rgba(188, 188, 188, 1);
  4835. border-radius:5px;
  4836. filter:drop-shadow(none);
  4837. transition:none;
  4838. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:12px;
  4842. color:#FFFFFF;
  4843. }
  4844. #u6677 {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:99px;
  4848. top:589px;
  4849. width:280px;
  4850. height:38px;
  4851. display:flex;
  4852. transition:none;
  4853. transform-origin:50% 50%;
  4854. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4855. font-weight:400;
  4856. font-style:normal;
  4857. font-size:12px;
  4858. color:#FFFFFF;
  4859. }
  4860. #u6677 .text {
  4861. position:absolute;
  4862. align-self:center;
  4863. padding:8px 15px 8px 15px;
  4864. box-sizing:border-box;
  4865. width:100%;
  4866. }
  4867. #u6677_text {
  4868. border-width:0px;
  4869. word-wrap:break-word;
  4870. text-transform:none;
  4871. visibility:hidden;
  4872. }
  4873. #u6678_div {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:57px;
  4879. height:20px;
  4880. background:inherit;
  4881. background-color:rgba(255, 255, 255, 0);
  4882. border-radius:0px;
  4883. filter:drop-shadow(none);
  4884. transition:none;
  4885. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. color:#BCBCBC;
  4889. }
  4890. #u6678 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:110px;
  4894. top:598px;
  4895. width:57px;
  4896. height:20px;
  4897. display:flex;
  4898. transition:none;
  4899. transform-origin:50% 50%;
  4900. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. color:#BCBCBC;
  4904. }
  4905. #u6678 .text {
  4906. position:absolute;
  4907. align-self:flex-start;
  4908. padding:0px 0px 0px 0px;
  4909. box-sizing:border-box;
  4910. width:100%;
  4911. }
  4912. #u6678_text {
  4913. border-width:0px;
  4914. white-space:nowrap;
  4915. text-transform:none;
  4916. }
  4917. #u6679 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:347px;
  4921. top:599px;
  4922. width:18px;
  4923. height:18px;
  4924. display:flex;
  4925. opacity:0.5;
  4926. transition:none;
  4927. }
  4928. #u6679 .text {
  4929. position:absolute;
  4930. align-self:center;
  4931. padding:2px 2px 2px 2px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u6679_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:18px;
  4941. height:18px;
  4942. }
  4943. #u6679_text {
  4944. border-width:0px;
  4945. word-wrap:break-word;
  4946. text-transform:none;
  4947. visibility:hidden;
  4948. }
  4949. #u6680_div {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:137px;
  4955. height:30px;
  4956. background:inherit;
  4957. background-color:rgba(255, 255, 255, 0);
  4958. border-top:0px;
  4959. border-right:0px;
  4960. border-bottom:0px;
  4961. border-radius:0px;
  4962. border-top-left-radius:0px;
  4963. border-bottom-left-radius:0px;
  4964. filter:drop-shadow(none);
  4965. transition:none;
  4966. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4967. font-weight:400;
  4968. font-style:normal;
  4969. font-size:14px;
  4970. }
  4971. #u6680 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:697px;
  4975. top:480px;
  4976. width:137px;
  4977. height:30px;
  4978. display:flex;
  4979. transition:none;
  4980. transform-origin:50% 50%;
  4981. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. font-size:14px;
  4985. }
  4986. #u6680 .text {
  4987. position:absolute;
  4988. align-self:center;
  4989. padding:5px 10px 5px 0px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u6680_text {
  4994. border-width:0px;
  4995. word-wrap:break-word;
  4996. text-transform:none;
  4997. }
  4998. #u6681_div {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:137px;
  5004. height:30px;
  5005. background:inherit;
  5006. background-color:rgba(255, 255, 255, 0);
  5007. border-top:0px;
  5008. border-right:0px;
  5009. border-bottom:0px;
  5010. border-radius:0px;
  5011. border-top-left-radius:0px;
  5012. border-bottom-left-radius:0px;
  5013. filter:drop-shadow(none);
  5014. transition:none;
  5015. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:14px;
  5019. }
  5020. #u6681 {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:399px;
  5024. top:637px;
  5025. width:137px;
  5026. height:30px;
  5027. display:flex;
  5028. transition:none;
  5029. transform-origin:50% 50%;
  5030. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:14px;
  5034. }
  5035. #u6681 .text {
  5036. position:absolute;
  5037. align-self:center;
  5038. padding:5px 10px 5px 0px;
  5039. box-sizing:border-box;
  5040. width:100%;
  5041. }
  5042. #u6681_text {
  5043. border-width:0px;
  5044. word-wrap:break-word;
  5045. text-transform:none;
  5046. }
  5047. #u6682_div {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:137px;
  5053. height:30px;
  5054. background:inherit;
  5055. background-color:rgba(255, 255, 255, 0);
  5056. border-top:0px;
  5057. border-right:0px;
  5058. border-bottom:0px;
  5059. border-radius:0px;
  5060. border-top-left-radius:0px;
  5061. border-bottom-left-radius:0px;
  5062. filter:drop-shadow(none);
  5063. transition:none;
  5064. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:14px;
  5068. }
  5069. #u6682 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:399px;
  5073. top:558px;
  5074. width:137px;
  5075. height:30px;
  5076. display:flex;
  5077. transition:none;
  5078. transform-origin:50% 50%;
  5079. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5080. font-weight:400;
  5081. font-style:normal;
  5082. font-size:14px;
  5083. }
  5084. #u6682 .text {
  5085. position:absolute;
  5086. align-self:center;
  5087. padding:5px 10px 5px 0px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u6682_text {
  5092. border-width:0px;
  5093. word-wrap:break-word;
  5094. text-transform:none;
  5095. }
  5096. #u6683_div {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:137px;
  5102. height:30px;
  5103. background:inherit;
  5104. background-color:rgba(255, 255, 255, 0);
  5105. border-top:0px;
  5106. border-right:0px;
  5107. border-bottom:0px;
  5108. border-radius:0px;
  5109. border-top-left-radius:0px;
  5110. border-bottom-left-radius:0px;
  5111. filter:drop-shadow(none);
  5112. transition:none;
  5113. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5114. font-weight:400;
  5115. font-style:normal;
  5116. font-size:14px;
  5117. }
  5118. #u6683 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:693px;
  5122. top:558px;
  5123. width:137px;
  5124. height:30px;
  5125. display:flex;
  5126. transition:none;
  5127. transform-origin:50% 50%;
  5128. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5129. font-weight:400;
  5130. font-style:normal;
  5131. font-size:14px;
  5132. }
  5133. #u6683 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:5px 10px 5px 0px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u6683_text {
  5141. border-width:0px;
  5142. word-wrap:break-word;
  5143. text-transform:none;
  5144. }
  5145. #u6684 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:0px;
  5151. height:0px;
  5152. }
  5153. #u6685_div {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:574px;
  5159. height:80px;
  5160. background:inherit;
  5161. background-color:rgba(255, 255, 255, 1);
  5162. box-sizing:border-box;
  5163. border-width:1px;
  5164. border-style:solid;
  5165. border-color:rgba(170, 170, 170, 1);
  5166. border-radius:4px;
  5167. filter:drop-shadow(none);
  5168. transition:none;
  5169. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. text-align:right;
  5173. }
  5174. #u6685 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:99px;
  5178. top:747px;
  5179. width:574px;
  5180. height:80px;
  5181. display:flex;
  5182. transition:none;
  5183. transform-origin:50% 50%;
  5184. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5185. font-weight:400;
  5186. font-style:normal;
  5187. text-align:right;
  5188. }
  5189. #u6685 .text {
  5190. position:absolute;
  5191. align-self:center;
  5192. padding:2px 10px 2px 10px;
  5193. box-sizing:border-box;
  5194. width:100%;
  5195. }
  5196. #u6685_text {
  5197. border-width:0px;
  5198. word-wrap:break-word;
  5199. text-transform:none;
  5200. visibility:hidden;
  5201. }
  5202. #u6686_input {
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:457px;
  5207. height:31px;
  5208. padding:2px 10px 2px 2px;
  5209. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:13px;
  5213. letter-spacing:normal;
  5214. color:#333333;
  5215. vertical-align:none;
  5216. text-align:left;
  5217. text-transform:none;
  5218. background-color:transparent;
  5219. border-color:transparent;
  5220. }
  5221. #u6686_input.hint {
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:457px;
  5226. height:31px;
  5227. padding:2px 10px 2px 2px;
  5228. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:13px;
  5232. letter-spacing:normal;
  5233. color:#999999;
  5234. vertical-align:none;
  5235. text-align:left;
  5236. text-transform:none;
  5237. background-color:transparent;
  5238. border-color:transparent;
  5239. }
  5240. #u6686_input.disabled {
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:457px;
  5245. height:31px;
  5246. padding:2px 10px 2px 2px;
  5247. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5248. font-weight:400;
  5249. font-style:normal;
  5250. font-size:13px;
  5251. letter-spacing:normal;
  5252. color:#333333;
  5253. vertical-align:none;
  5254. text-align:left;
  5255. text-transform:none;
  5256. background-color:transparent;
  5257. border-color:transparent;
  5258. }
  5259. #u6686_input.hint.disabled {
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:457px;
  5264. height:31px;
  5265. padding:2px 10px 2px 2px;
  5266. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. font-size:13px;
  5270. letter-spacing:normal;
  5271. color:#999999;
  5272. vertical-align:none;
  5273. text-align:left;
  5274. text-transform:none;
  5275. background-color:transparent;
  5276. border-color:transparent;
  5277. }
  5278. #u6686_div {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:457px;
  5284. height:31px;
  5285. background:inherit;
  5286. background-color:rgba(255, 255, 255, 0);
  5287. border-radius:0px;
  5288. filter:drop-shadow(none);
  5289. transition:none;
  5290. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. color:#333333;
  5294. }
  5295. #u6686 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:107px;
  5299. top:752px;
  5300. width:457px;
  5301. height:31px;
  5302. display:flex;
  5303. transition:none;
  5304. transform-origin:50% 50%;
  5305. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. color:#333333;
  5309. }
  5310. #u6686 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:2px 10px 2px 2px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u6686_div.hint {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:457px;
  5323. height:31px;
  5324. background:inherit;
  5325. background-color:rgba(255, 255, 255, 0);
  5326. border-radius:0px;
  5327. filter:drop-shadow(none);
  5328. transition:none;
  5329. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. color:#333333;
  5333. }
  5334. #u6686.hint {
  5335. }
  5336. #u6686_div.disabled {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:457px;
  5342. height:31px;
  5343. background:inherit;
  5344. background-color:rgba(240, 240, 240, 1);
  5345. border-radius:0px;
  5346. filter:drop-shadow(none);
  5347. transition:none;
  5348. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5349. font-weight:400;
  5350. font-style:normal;
  5351. color:#333333;
  5352. }
  5353. #u6686.disabled {
  5354. }
  5355. #u6686_div.hint.disabled {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:457px;
  5361. height:31px;
  5362. background:inherit;
  5363. background-color:rgba(240, 240, 240, 1);
  5364. border-radius:0px;
  5365. filter:drop-shadow(none);
  5366. transition:none;
  5367. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. color:#333333;
  5371. }
  5372. #u6686.hint.disabled {
  5373. }
  5374. #u6687_div {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:137px;
  5380. height:30px;
  5381. background:inherit;
  5382. background-color:rgba(255, 255, 255, 0);
  5383. border-top:0px;
  5384. border-right:0px;
  5385. border-bottom:0px;
  5386. border-radius:0px;
  5387. border-top-left-radius:0px;
  5388. border-bottom-left-radius:0px;
  5389. filter:drop-shadow(none);
  5390. transition:none;
  5391. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. font-size:14px;
  5395. }
  5396. #u6687 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:99px;
  5400. top:717px;
  5401. width:137px;
  5402. height:30px;
  5403. display:flex;
  5404. transition:none;
  5405. transform-origin:50% 50%;
  5406. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:14px;
  5410. }
  5411. #u6687 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:5px 10px 5px 0px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u6687_text {
  5419. border-width:0px;
  5420. word-wrap:break-word;
  5421. text-transform:none;
  5422. }
  5423. #u6688 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:0px;
  5429. height:0px;
  5430. }
  5431. #u6689_div {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:280px;
  5437. height:40px;
  5438. background:inherit;
  5439. background-color:rgba(255, 255, 255, 1);
  5440. box-sizing:border-box;
  5441. border-width:1px;
  5442. border-style:solid;
  5443. border-color:rgba(215, 215, 215, 1);
  5444. border-radius:4px;
  5445. filter:drop-shadow(none);
  5446. transition:none;
  5447. font-size:14px;
  5448. }
  5449. #u6689 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:697px;
  5453. top:510px;
  5454. width:280px;
  5455. height:40px;
  5456. display:flex;
  5457. transition:none;
  5458. transform-origin:50% 50%;
  5459. font-size:14px;
  5460. }
  5461. #u6689 .text {
  5462. position:absolute;
  5463. align-self:center;
  5464. padding:2px 2px 2px 2px;
  5465. box-sizing:border-box;
  5466. width:100%;
  5467. }
  5468. #u6689_text {
  5469. border-width:0px;
  5470. word-wrap:break-word;
  5471. text-transform:none;
  5472. visibility:hidden;
  5473. }
  5474. #u6690_input {
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:267px;
  5479. height:31px;
  5480. padding:2px 2px 2px 2px;
  5481. font-family:"ArialMT", "Arial", sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:14px;
  5485. letter-spacing:normal;
  5486. color:#AAAAAA;
  5487. vertical-align:none;
  5488. text-align:left;
  5489. text-transform:none;
  5490. background-color:transparent;
  5491. border-color:transparent;
  5492. }
  5493. #u6690_input.disabled {
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:267px;
  5498. height:31px;
  5499. padding:2px 2px 2px 2px;
  5500. font-family:"ArialMT", "Arial", sans-serif;
  5501. font-weight:400;
  5502. font-style:normal;
  5503. font-size:14px;
  5504. letter-spacing:normal;
  5505. color:#AAAAAA;
  5506. vertical-align:none;
  5507. text-align:left;
  5508. text-transform:none;
  5509. background-color:transparent;
  5510. border-color:transparent;
  5511. }
  5512. #u6690_div {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:267px;
  5518. height:31px;
  5519. background:inherit;
  5520. background-color:rgba(255, 255, 255, 1);
  5521. border-radius:0px;
  5522. filter:drop-shadow(none);
  5523. transition:none;
  5524. font-size:14px;
  5525. color:#AAAAAA;
  5526. }
  5527. #u6690 {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:705px;
  5531. top:513px;
  5532. width:267px;
  5533. height:31px;
  5534. display:flex;
  5535. transition:none;
  5536. transform-origin:50% 50%;
  5537. font-size:14px;
  5538. color:#AAAAAA;
  5539. }
  5540. #u6690 .text {
  5541. position:absolute;
  5542. align-self:flex-start;
  5543. padding:2px 2px 2px 2px;
  5544. box-sizing:border-box;
  5545. width:100%;
  5546. }
  5547. #u6690_div.disabled {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:267px;
  5553. height:31px;
  5554. background:inherit;
  5555. background-color:rgba(240, 240, 240, 1);
  5556. border-radius:0px;
  5557. filter:drop-shadow(none);
  5558. transition:none;
  5559. font-size:14px;
  5560. color:#AAAAAA;
  5561. }
  5562. #u6690.disabled {
  5563. }
  5564. .u6690_input_option {
  5565. font-size:14px;
  5566. }
  5567. #u6691_div {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:108px;
  5573. height:30px;
  5574. background:inherit;
  5575. background-color:rgba(255, 255, 255, 0);
  5576. border-top:0px;
  5577. border-right:0px;
  5578. border-bottom:0px;
  5579. border-radius:0px;
  5580. border-top-left-radius:0px;
  5581. border-bottom-left-radius:0px;
  5582. filter:drop-shadow(none);
  5583. transition:none;
  5584. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:14px;
  5588. }
  5589. #u6691 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:399px;
  5593. top:478px;
  5594. width:108px;
  5595. height:30px;
  5596. display:flex;
  5597. transition:none;
  5598. transform-origin:50% 50%;
  5599. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:14px;
  5603. }
  5604. #u6691 .text {
  5605. position:absolute;
  5606. align-self:center;
  5607. padding:5px 10px 5px 0px;
  5608. box-sizing:border-box;
  5609. width:100%;
  5610. }
  5611. #u6691_text {
  5612. border-width:0px;
  5613. word-wrap:break-word;
  5614. text-transform:none;
  5615. }
  5616. #u6692 {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:0px;
  5622. height:0px;
  5623. }
  5624. #u6693_div {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:280px;
  5630. height:40px;
  5631. background:inherit;
  5632. background-color:rgba(255, 255, 255, 1);
  5633. box-sizing:border-box;
  5634. border-width:1px;
  5635. border-style:solid;
  5636. border-color:rgba(170, 170, 170, 1);
  5637. border-radius:4px;
  5638. filter:drop-shadow(none);
  5639. transition:none;
  5640. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. text-align:right;
  5644. }
  5645. #u6693 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:399px;
  5649. top:667px;
  5650. width:280px;
  5651. height:40px;
  5652. display:flex;
  5653. transition:none;
  5654. transform-origin:50% 50%;
  5655. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5656. font-weight:400;
  5657. font-style:normal;
  5658. text-align:right;
  5659. }
  5660. #u6693 .text {
  5661. position:absolute;
  5662. align-self:center;
  5663. padding:2px 10px 2px 10px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u6693_text {
  5668. border-width:0px;
  5669. word-wrap:break-word;
  5670. text-transform:none;
  5671. visibility:hidden;
  5672. }
  5673. #u6694_input {
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:223px;
  5678. height:31px;
  5679. padding:2px 10px 2px 2px;
  5680. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5681. font-weight:400;
  5682. font-style:normal;
  5683. font-size:13px;
  5684. letter-spacing:normal;
  5685. color:#333333;
  5686. vertical-align:none;
  5687. text-align:left;
  5688. text-transform:none;
  5689. background-color:transparent;
  5690. border-color:transparent;
  5691. }
  5692. #u6694_input.hint {
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:223px;
  5697. height:31px;
  5698. padding:2px 10px 2px 2px;
  5699. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:13px;
  5703. letter-spacing:normal;
  5704. color:#999999;
  5705. vertical-align:none;
  5706. text-align:left;
  5707. text-transform:none;
  5708. background-color:transparent;
  5709. border-color:transparent;
  5710. }
  5711. #u6694_input.disabled {
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:223px;
  5716. height:31px;
  5717. padding:2px 10px 2px 2px;
  5718. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5719. font-weight:400;
  5720. font-style:normal;
  5721. font-size:13px;
  5722. letter-spacing:normal;
  5723. color:#333333;
  5724. vertical-align:none;
  5725. text-align:left;
  5726. text-transform:none;
  5727. background-color:transparent;
  5728. border-color:transparent;
  5729. }
  5730. #u6694_input.hint.disabled {
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:223px;
  5735. height:31px;
  5736. padding:2px 10px 2px 2px;
  5737. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:13px;
  5741. letter-spacing:normal;
  5742. color:#999999;
  5743. vertical-align:none;
  5744. text-align:left;
  5745. text-transform:none;
  5746. background-color:transparent;
  5747. border-color:transparent;
  5748. }
  5749. #u6694_div {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:223px;
  5755. height:31px;
  5756. background:inherit;
  5757. background-color:rgba(255, 255, 255, 0);
  5758. border-radius:0px;
  5759. filter:drop-shadow(none);
  5760. transition:none;
  5761. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. color:#333333;
  5765. }
  5766. #u6694 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:403px;
  5770. top:672px;
  5771. width:223px;
  5772. height:31px;
  5773. display:flex;
  5774. transition:none;
  5775. transform-origin:50% 50%;
  5776. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. color:#333333;
  5780. }
  5781. #u6694 .text {
  5782. position:absolute;
  5783. align-self:center;
  5784. padding:2px 10px 2px 2px;
  5785. box-sizing:border-box;
  5786. width:100%;
  5787. }
  5788. #u6694_div.hint {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:223px;
  5794. height:31px;
  5795. background:inherit;
  5796. background-color:rgba(255, 255, 255, 0);
  5797. border-radius:0px;
  5798. filter:drop-shadow(none);
  5799. transition:none;
  5800. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5801. font-weight:400;
  5802. font-style:normal;
  5803. color:#333333;
  5804. }
  5805. #u6694.hint {
  5806. }
  5807. #u6694_div.disabled {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:223px;
  5813. height:31px;
  5814. background:inherit;
  5815. background-color:rgba(240, 240, 240, 1);
  5816. border-radius:0px;
  5817. filter:drop-shadow(none);
  5818. transition:none;
  5819. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. color:#333333;
  5823. }
  5824. #u6694.disabled {
  5825. }
  5826. #u6694_div.hint.disabled {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:223px;
  5832. height:31px;
  5833. background:inherit;
  5834. background-color:rgba(240, 240, 240, 1);
  5835. border-radius:0px;
  5836. filter:drop-shadow(none);
  5837. transition:none;
  5838. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. color:#333333;
  5842. }
  5843. #u6694.hint.disabled {
  5844. }
  5845. #u6695 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:0px;
  5851. height:0px;
  5852. }
  5853. #u6696_div {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:137px;
  5859. height:30px;
  5860. background:inherit;
  5861. background-color:rgba(255, 255, 255, 0);
  5862. border-top:0px;
  5863. border-right:0px;
  5864. border-bottom:0px;
  5865. border-radius:0px;
  5866. border-top-left-radius:0px;
  5867. border-bottom-left-radius:0px;
  5868. filter:drop-shadow(none);
  5869. transition:none;
  5870. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:14px;
  5874. }
  5875. #u6696 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:699px;
  5879. top:398px;
  5880. width:137px;
  5881. height:30px;
  5882. display:flex;
  5883. transition:none;
  5884. transform-origin:50% 50%;
  5885. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5886. font-weight:400;
  5887. font-style:normal;
  5888. font-size:14px;
  5889. }
  5890. #u6696 .text {
  5891. position:absolute;
  5892. align-self:center;
  5893. padding:5px 10px 5px 0px;
  5894. box-sizing:border-box;
  5895. width:100%;
  5896. }
  5897. #u6696_text {
  5898. border-width:0px;
  5899. word-wrap:break-word;
  5900. text-transform:none;
  5901. }
  5902. #u6697 {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:767px;
  5906. top:405px;
  5907. width:17px;
  5908. height:17px;
  5909. display:flex;
  5910. transition:none;
  5911. }
  5912. #u6697 .text {
  5913. position:absolute;
  5914. align-self:center;
  5915. padding:2px 2px 2px 2px;
  5916. box-sizing:border-box;
  5917. width:100%;
  5918. }
  5919. #u6697_img {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:0px;
  5923. top:0px;
  5924. width:17px;
  5925. height:17px;
  5926. }
  5927. #u6697_text {
  5928. border-width:0px;
  5929. word-wrap:break-word;
  5930. text-transform:none;
  5931. visibility:hidden;
  5932. }
  5933. #u6698 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:0px;
  5939. height:0px;
  5940. }
  5941. #u6699_div {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:280px;
  5947. height:40px;
  5948. background:inherit;
  5949. background-color:rgba(255, 255, 255, 1);
  5950. box-sizing:border-box;
  5951. border-width:1px;
  5952. border-style:solid;
  5953. border-color:rgba(170, 170, 170, 1);
  5954. border-radius:4px;
  5955. filter:drop-shadow(none);
  5956. transition:none;
  5957. }
  5958. #u6699 {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:699px;
  5962. top:428px;
  5963. width:280px;
  5964. height:40px;
  5965. display:flex;
  5966. transition:none;
  5967. transform-origin:50% 50%;
  5968. }
  5969. #u6699 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:2px 2px 2px 0px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u6699_text {
  5977. border-width:0px;
  5978. word-wrap:break-word;
  5979. text-transform:none;
  5980. visibility:hidden;
  5981. }
  5982. #u6700_input {
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:273px;
  5987. height:30px;
  5988. padding:2px 2px 2px 0px;
  5989. font-family:"ArialMT", "Arial", sans-serif;
  5990. font-weight:400;
  5991. font-style:normal;
  5992. font-size:13px;
  5993. letter-spacing:normal;
  5994. color:#AAAAAA;
  5995. vertical-align:none;
  5996. text-align:left;
  5997. text-transform:none;
  5998. background-color:transparent;
  5999. border-color:transparent;
  6000. }
  6001. #u6700_input.disabled {
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:273px;
  6006. height:30px;
  6007. padding:2px 2px 2px 0px;
  6008. font-family:"ArialMT", "Arial", sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:13px;
  6012. letter-spacing:normal;
  6013. color:#AAAAAA;
  6014. vertical-align:none;
  6015. text-align:left;
  6016. text-transform:none;
  6017. background-color:transparent;
  6018. border-color:transparent;
  6019. }
  6020. #u6700_div {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:273px;
  6026. height:30px;
  6027. background:inherit;
  6028. background-color:rgba(255, 255, 255, 1);
  6029. border-radius:0px;
  6030. filter:drop-shadow(none);
  6031. transition:none;
  6032. color:#AAAAAA;
  6033. }
  6034. #u6700 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:704px;
  6038. top:433px;
  6039. width:273px;
  6040. height:30px;
  6041. display:flex;
  6042. transition:none;
  6043. transform-origin:50% 50%;
  6044. color:#AAAAAA;
  6045. }
  6046. #u6700 .text {
  6047. position:absolute;
  6048. align-self:flex-start;
  6049. padding:2px 2px 2px 0px;
  6050. box-sizing:border-box;
  6051. width:100%;
  6052. }
  6053. #u6700_div.disabled {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:273px;
  6059. height:30px;
  6060. background:inherit;
  6061. background-color:rgba(240, 240, 240, 1);
  6062. border-radius:0px;
  6063. filter:drop-shadow(none);
  6064. transition:none;
  6065. color:#AAAAAA;
  6066. }
  6067. #u6700.disabled {
  6068. }
  6069. .u6700_input_option {
  6070. }
  6071. #u6701 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:0px;
  6077. height:0px;
  6078. }
  6079. #u6702_div {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:0px;
  6083. top:0px;
  6084. width:280px;
  6085. height:38px;
  6086. background:inherit;
  6087. background-color:rgba(255, 255, 255, 1);
  6088. box-sizing:border-box;
  6089. border-width:1px;
  6090. border-style:solid;
  6091. border-color:rgba(188, 188, 188, 1);
  6092. border-radius:5px;
  6093. filter:drop-shadow(none);
  6094. transition:none;
  6095. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:12px;
  6099. color:#FFFFFF;
  6100. }
  6101. #u6702 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:399px;
  6105. top:589px;
  6106. width:280px;
  6107. height:38px;
  6108. display:flex;
  6109. transition:none;
  6110. transform-origin:50% 50%;
  6111. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6112. font-weight:400;
  6113. font-style:normal;
  6114. font-size:12px;
  6115. color:#FFFFFF;
  6116. }
  6117. #u6702 .text {
  6118. position:absolute;
  6119. align-self:center;
  6120. padding:8px 15px 8px 15px;
  6121. box-sizing:border-box;
  6122. width:100%;
  6123. }
  6124. #u6702_text {
  6125. border-width:0px;
  6126. word-wrap:break-word;
  6127. text-transform:none;
  6128. visibility:hidden;
  6129. }
  6130. #u6703_div {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:57px;
  6136. height:20px;
  6137. background:inherit;
  6138. background-color:rgba(255, 255, 255, 0);
  6139. border-radius:0px;
  6140. filter:drop-shadow(none);
  6141. transition:none;
  6142. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. color:#BCBCBC;
  6146. }
  6147. #u6703 {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:410px;
  6151. top:598px;
  6152. width:57px;
  6153. height:20px;
  6154. display:flex;
  6155. transition:none;
  6156. transform-origin:50% 50%;
  6157. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. color:#BCBCBC;
  6161. }
  6162. #u6703 .text {
  6163. position:absolute;
  6164. align-self:flex-start;
  6165. padding:0px 0px 0px 0px;
  6166. box-sizing:border-box;
  6167. width:100%;
  6168. }
  6169. #u6703_text {
  6170. border-width:0px;
  6171. white-space:nowrap;
  6172. text-transform:none;
  6173. }
  6174. #u6704 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:647px;
  6178. top:599px;
  6179. width:18px;
  6180. height:18px;
  6181. display:flex;
  6182. opacity:0.5;
  6183. transition:none;
  6184. }
  6185. #u6704 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:2px 2px 2px 2px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u6704_img {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:18px;
  6198. height:18px;
  6199. }
  6200. #u6704_text {
  6201. border-width:0px;
  6202. word-wrap:break-word;
  6203. text-transform:none;
  6204. visibility:hidden;
  6205. }
  6206. #u6705 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:0px;
  6212. height:0px;
  6213. }
  6214. #u6706_div {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:280px;
  6220. height:38px;
  6221. background:inherit;
  6222. background-color:rgba(255, 255, 255, 1);
  6223. box-sizing:border-box;
  6224. border-width:1px;
  6225. border-style:solid;
  6226. border-color:rgba(188, 188, 188, 1);
  6227. border-radius:5px;
  6228. filter:drop-shadow(none);
  6229. transition:none;
  6230. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:12px;
  6234. color:#FFFFFF;
  6235. }
  6236. #u6706 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:693px;
  6240. top:589px;
  6241. width:280px;
  6242. height:38px;
  6243. display:flex;
  6244. transition:none;
  6245. transform-origin:50% 50%;
  6246. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6247. font-weight:400;
  6248. font-style:normal;
  6249. font-size:12px;
  6250. color:#FFFFFF;
  6251. }
  6252. #u6706 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:8px 15px 8px 15px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u6706_text {
  6260. border-width:0px;
  6261. word-wrap:break-word;
  6262. text-transform:none;
  6263. visibility:hidden;
  6264. }
  6265. #u6707_div {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:57px;
  6271. height:20px;
  6272. background:inherit;
  6273. background-color:rgba(255, 255, 255, 0);
  6274. border-radius:0px;
  6275. filter:drop-shadow(none);
  6276. transition:none;
  6277. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. color:#BCBCBC;
  6281. }
  6282. #u6707 {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:704px;
  6286. top:598px;
  6287. width:57px;
  6288. height:20px;
  6289. display:flex;
  6290. transition:none;
  6291. transform-origin:50% 50%;
  6292. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. color:#BCBCBC;
  6296. }
  6297. #u6707 .text {
  6298. position:absolute;
  6299. align-self:flex-start;
  6300. padding:0px 0px 0px 0px;
  6301. box-sizing:border-box;
  6302. width:100%;
  6303. }
  6304. #u6707_text {
  6305. border-width:0px;
  6306. white-space:nowrap;
  6307. text-transform:none;
  6308. }
  6309. #u6708 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:941px;
  6313. top:599px;
  6314. width:18px;
  6315. height:18px;
  6316. display:flex;
  6317. opacity:0.5;
  6318. transition:none;
  6319. }
  6320. #u6708 .text {
  6321. position:absolute;
  6322. align-self:center;
  6323. padding:2px 2px 2px 2px;
  6324. box-sizing:border-box;
  6325. width:100%;
  6326. }
  6327. #u6708_img {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:18px;
  6333. height:18px;
  6334. }
  6335. #u6708_text {
  6336. border-width:0px;
  6337. word-wrap:break-word;
  6338. text-transform:none;
  6339. visibility:hidden;
  6340. }
  6341. #u6709_div {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:137px;
  6347. height:30px;
  6348. background:inherit;
  6349. background-color:rgba(255, 255, 255, 0);
  6350. border-top:0px;
  6351. border-right:0px;
  6352. border-bottom:0px;
  6353. border-radius:0px;
  6354. border-top-left-radius:0px;
  6355. border-bottom-left-radius:0px;
  6356. filter:drop-shadow(none);
  6357. transition:none;
  6358. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. font-size:14px;
  6362. }
  6363. #u6709 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:99px;
  6367. top:478px;
  6368. width:137px;
  6369. height:30px;
  6370. display:flex;
  6371. transition:none;
  6372. transform-origin:50% 50%;
  6373. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:14px;
  6377. }
  6378. #u6709 .text {
  6379. position:absolute;
  6380. align-self:center;
  6381. padding:5px 10px 5px 0px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u6709_text {
  6386. border-width:0px;
  6387. word-wrap:break-word;
  6388. text-transform:none;
  6389. }
  6390. #u6710_div {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:137px;
  6396. height:30px;
  6397. background:inherit;
  6398. background-color:rgba(255, 255, 255, 0);
  6399. border-top:0px;
  6400. border-right:0px;
  6401. border-bottom:0px;
  6402. border-radius:0px;
  6403. border-top-left-radius:0px;
  6404. border-bottom-left-radius:0px;
  6405. filter:drop-shadow(none);
  6406. transition:none;
  6407. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:14px;
  6411. }
  6412. #u6710 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:99px;
  6416. top:637px;
  6417. width:137px;
  6418. height:30px;
  6419. display:flex;
  6420. transition:none;
  6421. transform-origin:50% 50%;
  6422. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:14px;
  6426. }
  6427. #u6710 .text {
  6428. position:absolute;
  6429. align-self:center;
  6430. padding:5px 10px 5px 0px;
  6431. box-sizing:border-box;
  6432. width:100%;
  6433. }
  6434. #u6710_text {
  6435. border-width:0px;
  6436. word-wrap:break-word;
  6437. text-transform:none;
  6438. }
  6439. #u6711 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:0px;
  6445. height:0px;
  6446. }
  6447. #u6712_div {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:280px;
  6453. height:40px;
  6454. background:inherit;
  6455. background-color:rgba(255, 255, 255, 1);
  6456. box-sizing:border-box;
  6457. border-width:1px;
  6458. border-style:solid;
  6459. border-color:rgba(170, 170, 170, 1);
  6460. border-radius:4px;
  6461. filter:drop-shadow(none);
  6462. transition:none;
  6463. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. text-align:right;
  6467. }
  6468. #u6712 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:99px;
  6472. top:667px;
  6473. width:280px;
  6474. height:40px;
  6475. display:flex;
  6476. transition:none;
  6477. transform-origin:50% 50%;
  6478. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6479. font-weight:400;
  6480. font-style:normal;
  6481. text-align:right;
  6482. }
  6483. #u6712 .text {
  6484. position:absolute;
  6485. align-self:center;
  6486. padding:2px 10px 2px 10px;
  6487. box-sizing:border-box;
  6488. width:100%;
  6489. }
  6490. #u6712_text {
  6491. border-width:0px;
  6492. word-wrap:break-word;
  6493. text-transform:none;
  6494. visibility:hidden;
  6495. }
  6496. #u6713_input {
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:223px;
  6501. height:31px;
  6502. padding:2px 10px 2px 2px;
  6503. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:13px;
  6507. letter-spacing:normal;
  6508. color:#333333;
  6509. vertical-align:none;
  6510. text-align:left;
  6511. text-transform:none;
  6512. background-color:transparent;
  6513. border-color:transparent;
  6514. }
  6515. #u6713_input.hint {
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:223px;
  6520. height:31px;
  6521. padding:2px 10px 2px 2px;
  6522. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:13px;
  6526. letter-spacing:normal;
  6527. color:#999999;
  6528. vertical-align:none;
  6529. text-align:left;
  6530. text-transform:none;
  6531. background-color:transparent;
  6532. border-color:transparent;
  6533. }
  6534. #u6713_input.disabled {
  6535. position:absolute;
  6536. left:0px;
  6537. top:0px;
  6538. width:223px;
  6539. height:31px;
  6540. padding:2px 10px 2px 2px;
  6541. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:13px;
  6545. letter-spacing:normal;
  6546. color:#333333;
  6547. vertical-align:none;
  6548. text-align:left;
  6549. text-transform:none;
  6550. background-color:transparent;
  6551. border-color:transparent;
  6552. }
  6553. #u6713_input.hint.disabled {
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:223px;
  6558. height:31px;
  6559. padding:2px 10px 2px 2px;
  6560. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:13px;
  6564. letter-spacing:normal;
  6565. color:#999999;
  6566. vertical-align:none;
  6567. text-align:left;
  6568. text-transform:none;
  6569. background-color:transparent;
  6570. border-color:transparent;
  6571. }
  6572. #u6713_div {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:223px;
  6578. height:31px;
  6579. background:inherit;
  6580. background-color:rgba(255, 255, 255, 0);
  6581. border-radius:0px;
  6582. filter:drop-shadow(none);
  6583. transition:none;
  6584. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6585. font-weight:400;
  6586. font-style:normal;
  6587. color:#333333;
  6588. }
  6589. #u6713 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:103px;
  6593. top:672px;
  6594. width:223px;
  6595. height:31px;
  6596. display:flex;
  6597. transition:none;
  6598. transform-origin:50% 50%;
  6599. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. color:#333333;
  6603. }
  6604. #u6713 .text {
  6605. position:absolute;
  6606. align-self:center;
  6607. padding:2px 10px 2px 2px;
  6608. box-sizing:border-box;
  6609. width:100%;
  6610. }
  6611. #u6713_div.hint {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:0px;
  6615. top:0px;
  6616. width:223px;
  6617. height:31px;
  6618. background:inherit;
  6619. background-color:rgba(255, 255, 255, 0);
  6620. border-radius:0px;
  6621. filter:drop-shadow(none);
  6622. transition:none;
  6623. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6624. font-weight:400;
  6625. font-style:normal;
  6626. color:#333333;
  6627. }
  6628. #u6713.hint {
  6629. }
  6630. #u6713_div.disabled {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:223px;
  6636. height:31px;
  6637. background:inherit;
  6638. background-color:rgba(240, 240, 240, 1);
  6639. border-radius:0px;
  6640. filter:drop-shadow(none);
  6641. transition:none;
  6642. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. color:#333333;
  6646. }
  6647. #u6713.disabled {
  6648. }
  6649. #u6713_div.hint.disabled {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:0px;
  6653. top:0px;
  6654. width:223px;
  6655. height:31px;
  6656. background:inherit;
  6657. background-color:rgba(240, 240, 240, 1);
  6658. border-radius:0px;
  6659. filter:drop-shadow(none);
  6660. transition:none;
  6661. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. color:#333333;
  6665. }
  6666. #u6713.hint.disabled {
  6667. }
  6668. #u6714 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:0px;
  6674. height:0px;
  6675. }
  6676. #u6715_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:280px;
  6682. height:40px;
  6683. background:inherit;
  6684. background-color:rgba(255, 255, 255, 1);
  6685. box-sizing:border-box;
  6686. border-width:1px;
  6687. border-style:solid;
  6688. border-color:rgba(170, 170, 170, 1);
  6689. border-radius:4px;
  6690. filter:drop-shadow(none);
  6691. transition:none;
  6692. }
  6693. #u6715 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:99px;
  6697. top:508px;
  6698. width:280px;
  6699. height:40px;
  6700. display:flex;
  6701. transition:none;
  6702. transform-origin:50% 50%;
  6703. }
  6704. #u6715 .text {
  6705. position:absolute;
  6706. align-self:center;
  6707. padding:2px 2px 2px 0px;
  6708. box-sizing:border-box;
  6709. width:100%;
  6710. }
  6711. #u6715_text {
  6712. border-width:0px;
  6713. word-wrap:break-word;
  6714. text-transform:none;
  6715. visibility:hidden;
  6716. }
  6717. #u6716_input {
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:273px;
  6722. height:30px;
  6723. padding:2px 2px 2px 0px;
  6724. font-family:"ArialMT", "Arial", sans-serif;
  6725. font-weight:400;
  6726. font-style:normal;
  6727. font-size:13px;
  6728. letter-spacing:normal;
  6729. color:#AAAAAA;
  6730. vertical-align:none;
  6731. text-align:left;
  6732. text-transform:none;
  6733. background-color:transparent;
  6734. border-color:transparent;
  6735. }
  6736. #u6716_input.disabled {
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:273px;
  6741. height:30px;
  6742. padding:2px 2px 2px 0px;
  6743. font-family:"ArialMT", "Arial", sans-serif;
  6744. font-weight:400;
  6745. font-style:normal;
  6746. font-size:13px;
  6747. letter-spacing:normal;
  6748. color:#AAAAAA;
  6749. vertical-align:none;
  6750. text-align:left;
  6751. text-transform:none;
  6752. background-color:transparent;
  6753. border-color:transparent;
  6754. }
  6755. #u6716_div {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:273px;
  6761. height:30px;
  6762. background:inherit;
  6763. background-color:rgba(255, 255, 255, 1);
  6764. border-radius:0px;
  6765. filter:drop-shadow(none);
  6766. transition:none;
  6767. color:#AAAAAA;
  6768. }
  6769. #u6716 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:104px;
  6773. top:513px;
  6774. width:273px;
  6775. height:30px;
  6776. display:flex;
  6777. transition:none;
  6778. transform-origin:50% 50%;
  6779. color:#AAAAAA;
  6780. }
  6781. #u6716 .text {
  6782. position:absolute;
  6783. align-self:flex-start;
  6784. padding:2px 2px 2px 0px;
  6785. box-sizing:border-box;
  6786. width:100%;
  6787. }
  6788. #u6716_div.disabled {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:273px;
  6794. height:30px;
  6795. background:inherit;
  6796. background-color:rgba(240, 240, 240, 1);
  6797. border-radius:0px;
  6798. filter:drop-shadow(none);
  6799. transition:none;
  6800. color:#AAAAAA;
  6801. }
  6802. #u6716.disabled {
  6803. }
  6804. .u6716_input_option {
  6805. }
  6806. #u6717 {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:0px;
  6812. height:0px;
  6813. }
  6814. #u6718_div {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:280px;
  6820. height:40px;
  6821. background:inherit;
  6822. background-color:rgba(255, 255, 255, 1);
  6823. box-sizing:border-box;
  6824. border-width:1px;
  6825. border-style:solid;
  6826. border-color:rgba(215, 215, 215, 1);
  6827. border-radius:4px;
  6828. filter:drop-shadow(none);
  6829. transition:none;
  6830. font-size:14px;
  6831. }
  6832. #u6718 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:399px;
  6836. top:508px;
  6837. width:280px;
  6838. height:40px;
  6839. display:flex;
  6840. transition:none;
  6841. transform-origin:50% 50%;
  6842. font-size:14px;
  6843. }
  6844. #u6718 .text {
  6845. position:absolute;
  6846. align-self:center;
  6847. padding:2px 2px 2px 2px;
  6848. box-sizing:border-box;
  6849. width:100%;
  6850. }
  6851. #u6718_text {
  6852. border-width:0px;
  6853. word-wrap:break-word;
  6854. text-transform:none;
  6855. visibility:hidden;
  6856. }
  6857. #u6719_input {
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:267px;
  6862. height:31px;
  6863. padding:2px 2px 2px 2px;
  6864. font-family:"ArialMT", "Arial", sans-serif;
  6865. font-weight:400;
  6866. font-style:normal;
  6867. font-size:14px;
  6868. letter-spacing:normal;
  6869. color:#AAAAAA;
  6870. vertical-align:none;
  6871. text-align:left;
  6872. text-transform:none;
  6873. background-color:transparent;
  6874. border-color:transparent;
  6875. }
  6876. #u6719_input.disabled {
  6877. position:absolute;
  6878. left:0px;
  6879. top:0px;
  6880. width:267px;
  6881. height:31px;
  6882. padding:2px 2px 2px 2px;
  6883. font-family:"ArialMT", "Arial", sans-serif;
  6884. font-weight:400;
  6885. font-style:normal;
  6886. font-size:14px;
  6887. letter-spacing:normal;
  6888. color:#AAAAAA;
  6889. vertical-align:none;
  6890. text-align:left;
  6891. text-transform:none;
  6892. background-color:transparent;
  6893. border-color:transparent;
  6894. }
  6895. #u6719_div {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:267px;
  6901. height:31px;
  6902. background:inherit;
  6903. background-color:rgba(255, 255, 255, 1);
  6904. border-radius:0px;
  6905. filter:drop-shadow(none);
  6906. transition:none;
  6907. font-size:14px;
  6908. color:#AAAAAA;
  6909. }
  6910. #u6719 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:407px;
  6914. top:511px;
  6915. width:267px;
  6916. height:31px;
  6917. display:flex;
  6918. transition:none;
  6919. transform-origin:50% 50%;
  6920. font-size:14px;
  6921. color:#AAAAAA;
  6922. }
  6923. #u6719 .text {
  6924. position:absolute;
  6925. align-self:flex-start;
  6926. padding:2px 2px 2px 2px;
  6927. box-sizing:border-box;
  6928. width:100%;
  6929. }
  6930. #u6719_div.disabled {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:267px;
  6936. height:31px;
  6937. background:inherit;
  6938. background-color:rgba(240, 240, 240, 1);
  6939. border-radius:0px;
  6940. filter:drop-shadow(none);
  6941. transition:none;
  6942. font-size:14px;
  6943. color:#AAAAAA;
  6944. }
  6945. #u6719.disabled {
  6946. }
  6947. .u6719_input_option {
  6948. font-size:14px;
  6949. }
  6950. #u6720_div {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:0px;
  6954. top:0px;
  6955. width:137px;
  6956. height:30px;
  6957. background:inherit;
  6958. background-color:rgba(255, 255, 255, 0);
  6959. border-top:0px;
  6960. border-right:0px;
  6961. border-bottom:0px;
  6962. border-radius:0px;
  6963. border-top-left-radius:0px;
  6964. border-bottom-left-radius:0px;
  6965. filter:drop-shadow(none);
  6966. transition:none;
  6967. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:14px;
  6971. }
  6972. #u6720 {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:99px;
  6976. top:238px;
  6977. width:137px;
  6978. height:30px;
  6979. display:flex;
  6980. transition:none;
  6981. transform-origin:50% 50%;
  6982. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:14px;
  6986. }
  6987. #u6720 .text {
  6988. position:absolute;
  6989. align-self:center;
  6990. padding:5px 10px 5px 0px;
  6991. box-sizing:border-box;
  6992. width:100%;
  6993. }
  6994. #u6720_text {
  6995. border-width:0px;
  6996. word-wrap:break-word;
  6997. text-transform:none;
  6998. }
  6999. #u6721 {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:0px;
  7005. height:0px;
  7006. }
  7007. #u6722_div {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:280px;
  7013. height:40px;
  7014. background:inherit;
  7015. background-color:rgba(242, 242, 242, 1);
  7016. box-sizing:border-box;
  7017. border-width:1px;
  7018. border-style:solid;
  7019. border-color:rgba(170, 170, 170, 1);
  7020. border-radius:4px;
  7021. filter:drop-shadow(none);
  7022. transition:none;
  7023. }
  7024. #u6722 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:99px;
  7028. top:268px;
  7029. width:280px;
  7030. height:40px;
  7031. display:flex;
  7032. transition:none;
  7033. transform-origin:50% 50%;
  7034. }
  7035. #u6722 .text {
  7036. position:absolute;
  7037. align-self:center;
  7038. padding:2px 2px 2px 0px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u6722_text {
  7043. border-width:0px;
  7044. word-wrap:break-word;
  7045. text-transform:none;
  7046. visibility:hidden;
  7047. }
  7048. #u6723_input {
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:273px;
  7053. height:30px;
  7054. padding:2px 2px 2px 0px;
  7055. font-family:"ArialMT", "Arial", sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. font-size:13px;
  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. #u6723_input.disabled {
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:273px;
  7072. height:30px;
  7073. padding:2px 2px 2px 0px;
  7074. font-family:"ArialMT", "Arial", sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:13px;
  7078. letter-spacing:normal;
  7079. color:#AAAAAA;
  7080. vertical-align:none;
  7081. text-align:left;
  7082. text-transform:none;
  7083. background-color:transparent;
  7084. border-color:transparent;
  7085. }
  7086. #u6723_div {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:273px;
  7092. height:30px;
  7093. background:inherit;
  7094. background-color:rgba(242, 242, 242, 1);
  7095. border-radius:0px;
  7096. filter:drop-shadow(none);
  7097. transition:none;
  7098. color:#AAAAAA;
  7099. }
  7100. #u6723 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:104px;
  7104. top:273px;
  7105. width:273px;
  7106. height:30px;
  7107. display:flex;
  7108. transition:none;
  7109. transform-origin:50% 50%;
  7110. color:#AAAAAA;
  7111. }
  7112. #u6723 .text {
  7113. position:absolute;
  7114. align-self:flex-start;
  7115. padding:2px 2px 2px 0px;
  7116. box-sizing:border-box;
  7117. width:100%;
  7118. }
  7119. #u6723_div.disabled {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:273px;
  7125. height:30px;
  7126. background:inherit;
  7127. background-color:rgba(240, 240, 240, 1);
  7128. border-radius:0px;
  7129. filter:drop-shadow(none);
  7130. transition:none;
  7131. color:#AAAAAA;
  7132. }
  7133. #u6723.disabled {
  7134. }
  7135. .u6723_input_option {
  7136. }
  7137. #u6724 {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:0px;
  7143. height:0px;
  7144. }
  7145. #u6725_div {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:0px;
  7149. top:0px;
  7150. width:280px;
  7151. height:40px;
  7152. background:inherit;
  7153. background-color:rgba(242, 242, 242, 1);
  7154. box-sizing:border-box;
  7155. border-width:1px;
  7156. border-style:solid;
  7157. border-color:rgba(170, 170, 170, 1);
  7158. border-radius:4px;
  7159. filter:drop-shadow(none);
  7160. transition:none;
  7161. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. text-align:right;
  7165. }
  7166. #u6725 {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:99px;
  7170. top:348px;
  7171. width:280px;
  7172. height:40px;
  7173. display:flex;
  7174. transition:none;
  7175. transform-origin:50% 50%;
  7176. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7177. font-weight:400;
  7178. font-style:normal;
  7179. text-align:right;
  7180. }
  7181. #u6725 .text {
  7182. position:absolute;
  7183. align-self:center;
  7184. padding:2px 10px 2px 10px;
  7185. box-sizing:border-box;
  7186. width:100%;
  7187. }
  7188. #u6725_text {
  7189. border-width:0px;
  7190. word-wrap:break-word;
  7191. text-transform:none;
  7192. visibility:hidden;
  7193. }
  7194. #u6726_input {
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:262px;
  7199. height:31px;
  7200. padding:2px 10px 2px 2px;
  7201. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:13px;
  7205. letter-spacing:normal;
  7206. color:#333333;
  7207. vertical-align:none;
  7208. text-align:left;
  7209. text-transform:none;
  7210. background-color:transparent;
  7211. border-color:transparent;
  7212. }
  7213. #u6726_input.hint {
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:262px;
  7218. height:31px;
  7219. padding:2px 10px 2px 2px;
  7220. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7221. font-weight:400;
  7222. font-style:normal;
  7223. font-size:10px;
  7224. letter-spacing:normal;
  7225. color:#999999;
  7226. vertical-align:none;
  7227. text-align:left;
  7228. text-transform:none;
  7229. background-color:transparent;
  7230. border-color:transparent;
  7231. }
  7232. #u6726_input.disabled {
  7233. position:absolute;
  7234. left:0px;
  7235. top:0px;
  7236. width:262px;
  7237. height:31px;
  7238. padding:2px 10px 2px 2px;
  7239. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7240. font-weight:400;
  7241. font-style:normal;
  7242. font-size:13px;
  7243. letter-spacing:normal;
  7244. color:#333333;
  7245. vertical-align:none;
  7246. text-align:left;
  7247. text-transform:none;
  7248. background-color:transparent;
  7249. border-color:transparent;
  7250. }
  7251. #u6726_input.hint.disabled {
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:262px;
  7256. height:31px;
  7257. padding:2px 10px 2px 2px;
  7258. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7259. font-weight:400;
  7260. font-style:normal;
  7261. font-size:10px;
  7262. letter-spacing:normal;
  7263. color:#999999;
  7264. vertical-align:none;
  7265. text-align:left;
  7266. text-transform:none;
  7267. background-color:transparent;
  7268. border-color:transparent;
  7269. }
  7270. #u6726_div {
  7271. border-width:0px;
  7272. position:absolute;
  7273. left:0px;
  7274. top:0px;
  7275. width:262px;
  7276. height:31px;
  7277. background:inherit;
  7278. background-color:rgba(242, 242, 242, 1);
  7279. border-radius:0px;
  7280. filter:drop-shadow(none);
  7281. transition:none;
  7282. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. color:#333333;
  7286. }
  7287. #u6726 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:103px;
  7291. top:353px;
  7292. width:262px;
  7293. height:31px;
  7294. display:flex;
  7295. transition:none;
  7296. transform-origin:50% 50%;
  7297. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7298. font-weight:400;
  7299. font-style:normal;
  7300. color:#333333;
  7301. }
  7302. #u6726 .text {
  7303. position:absolute;
  7304. align-self:center;
  7305. padding:2px 10px 2px 2px;
  7306. box-sizing:border-box;
  7307. width:100%;
  7308. }
  7309. #u6726_div.hint {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:0px;
  7313. top:0px;
  7314. width:262px;
  7315. height:31px;
  7316. background:inherit;
  7317. background-color:rgba(242, 242, 242, 1);
  7318. border-radius:0px;
  7319. filter:drop-shadow(none);
  7320. transition:none;
  7321. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7322. font-weight:400;
  7323. font-style:normal;
  7324. color:#333333;
  7325. }
  7326. #u6726.hint {
  7327. }
  7328. #u6726_div.disabled {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:0px;
  7332. top:0px;
  7333. width:262px;
  7334. height:31px;
  7335. background:inherit;
  7336. background-color:rgba(240, 240, 240, 1);
  7337. border-radius:0px;
  7338. filter:drop-shadow(none);
  7339. transition:none;
  7340. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. color:#333333;
  7344. }
  7345. #u6726.disabled {
  7346. }
  7347. #u6726_div.hint.disabled {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:0px;
  7351. top:0px;
  7352. width:262px;
  7353. height:31px;
  7354. background:inherit;
  7355. background-color:rgba(240, 240, 240, 1);
  7356. border-radius:0px;
  7357. filter:drop-shadow(none);
  7358. transition:none;
  7359. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7360. font-weight:400;
  7361. font-style:normal;
  7362. color:#333333;
  7363. }
  7364. #u6726.hint.disabled {
  7365. }
  7366. #u6727_div {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:74px;
  7372. height:30px;
  7373. background:inherit;
  7374. background-color:rgba(255, 255, 255, 0);
  7375. border-top:0px;
  7376. border-right:0px;
  7377. border-bottom:0px;
  7378. border-radius:0px;
  7379. border-top-left-radius:0px;
  7380. border-bottom-left-radius:0px;
  7381. filter:drop-shadow(none);
  7382. transition:none;
  7383. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:14px;
  7387. }
  7388. #u6727 {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:99px;
  7392. top:318px;
  7393. width:74px;
  7394. height:30px;
  7395. display:flex;
  7396. transition:none;
  7397. transform-origin:50% 50%;
  7398. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7399. font-weight:400;
  7400. font-style:normal;
  7401. font-size:14px;
  7402. }
  7403. #u6727 .text {
  7404. position:absolute;
  7405. align-self:center;
  7406. padding:5px 10px 5px 0px;
  7407. box-sizing:border-box;
  7408. width:100%;
  7409. }
  7410. #u6727_text {
  7411. border-width:0px;
  7412. white-space:nowrap;
  7413. text-transform:none;
  7414. }
  7415. #u6728_div {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:137px;
  7421. height:30px;
  7422. background:inherit;
  7423. background-color:rgba(255, 255, 255, 0);
  7424. border-top:0px;
  7425. border-right:0px;
  7426. border-bottom:0px;
  7427. border-radius:0px;
  7428. border-top-left-radius:0px;
  7429. border-bottom-left-radius:0px;
  7430. filter:drop-shadow(none);
  7431. transition:none;
  7432. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7433. font-weight:400;
  7434. font-style:normal;
  7435. font-size:14px;
  7436. }
  7437. #u6728 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:699px;
  7441. top:158px;
  7442. width:137px;
  7443. height:30px;
  7444. display:flex;
  7445. transition:none;
  7446. transform-origin:50% 50%;
  7447. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:14px;
  7451. }
  7452. #u6728 .text {
  7453. position:absolute;
  7454. align-self:center;
  7455. padding:5px 10px 5px 0px;
  7456. box-sizing:border-box;
  7457. width:100%;
  7458. }
  7459. #u6728_text {
  7460. border-width:0px;
  7461. word-wrap:break-word;
  7462. text-transform:none;
  7463. }
  7464. #u6729 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:0px;
  7469. width:0px;
  7470. height:0px;
  7471. }
  7472. #u6730_div {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:280px;
  7478. height:40px;
  7479. background:inherit;
  7480. background-color:rgba(242, 242, 242, 1);
  7481. box-sizing:border-box;
  7482. border-width:1px;
  7483. border-style:solid;
  7484. border-color:rgba(170, 170, 170, 1);
  7485. border-radius:4px;
  7486. filter:drop-shadow(none);
  7487. transition:none;
  7488. }
  7489. #u6730 {
  7490. border-width:0px;
  7491. position:absolute;
  7492. left:699px;
  7493. top:188px;
  7494. width:280px;
  7495. height:40px;
  7496. display:flex;
  7497. transition:none;
  7498. transform-origin:50% 50%;
  7499. }
  7500. #u6730 .text {
  7501. position:absolute;
  7502. align-self:center;
  7503. padding:2px 2px 2px 0px;
  7504. box-sizing:border-box;
  7505. width:100%;
  7506. }
  7507. #u6730_text {
  7508. border-width:0px;
  7509. word-wrap:break-word;
  7510. text-transform:none;
  7511. visibility:hidden;
  7512. }
  7513. #u6731_input {
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:273px;
  7518. height:30px;
  7519. padding:2px 2px 2px 0px;
  7520. font-family:"ArialMT", "Arial", sans-serif;
  7521. font-weight:400;
  7522. font-style:normal;
  7523. font-size:13px;
  7524. letter-spacing:normal;
  7525. color:#AAAAAA;
  7526. vertical-align:none;
  7527. text-align:left;
  7528. text-transform:none;
  7529. background-color:transparent;
  7530. border-color:transparent;
  7531. }
  7532. #u6731_input.disabled {
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:273px;
  7537. height:30px;
  7538. padding:2px 2px 2px 0px;
  7539. font-family:"ArialMT", "Arial", sans-serif;
  7540. font-weight:400;
  7541. font-style:normal;
  7542. font-size:13px;
  7543. letter-spacing:normal;
  7544. color:#AAAAAA;
  7545. vertical-align:none;
  7546. text-align:left;
  7547. text-transform:none;
  7548. background-color:transparent;
  7549. border-color:transparent;
  7550. }
  7551. #u6731_div {
  7552. border-width:0px;
  7553. position:absolute;
  7554. left:0px;
  7555. top:0px;
  7556. width:273px;
  7557. height:30px;
  7558. background:inherit;
  7559. background-color:rgba(242, 242, 242, 1);
  7560. border-radius:0px;
  7561. filter:drop-shadow(none);
  7562. transition:none;
  7563. color:#AAAAAA;
  7564. }
  7565. #u6731 {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:704px;
  7569. top:193px;
  7570. width:273px;
  7571. height:30px;
  7572. display:flex;
  7573. transition:none;
  7574. transform-origin:50% 50%;
  7575. color:#AAAAAA;
  7576. }
  7577. #u6731 .text {
  7578. position:absolute;
  7579. align-self:flex-start;
  7580. padding:2px 2px 2px 0px;
  7581. box-sizing:border-box;
  7582. width:100%;
  7583. }
  7584. #u6731_div.disabled {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:0px;
  7588. top:0px;
  7589. width:273px;
  7590. height:30px;
  7591. background:inherit;
  7592. background-color:rgba(240, 240, 240, 1);
  7593. border-radius:0px;
  7594. filter:drop-shadow(none);
  7595. transition:none;
  7596. color:#AAAAAA;
  7597. }
  7598. #u6731.disabled {
  7599. }
  7600. .u6731_input_option {
  7601. }
  7602. #u6732 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:0px;
  7606. top:0px;
  7607. width:0px;
  7608. height:0px;
  7609. }
  7610. #u6733_div {
  7611. border-width:0px;
  7612. position:absolute;
  7613. left:0px;
  7614. top:0px;
  7615. width:1000px;
  7616. height:1196px;
  7617. background:inherit;
  7618. background-color:rgba(255, 255, 255, 1);
  7619. box-sizing:border-box;
  7620. border-width:1px;
  7621. border-style:solid;
  7622. border-color:rgba(215, 215, 215, 1);
  7623. border-radius:0px;
  7624. filter:drop-shadow(none);
  7625. transition:none;
  7626. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7627. font-weight:400;
  7628. font-style:normal;
  7629. font-size:14px;
  7630. color:#AAAAAA;
  7631. text-align:center;
  7632. line-height:30px;
  7633. }
  7634. #u6733 {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:1082px;
  7638. top:43px;
  7639. width:1000px;
  7640. height:1196px;
  7641. display:flex;
  7642. transition:none;
  7643. transform-origin:50% 50%;
  7644. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7645. font-weight:400;
  7646. font-style:normal;
  7647. font-size:14px;
  7648. color:#AAAAAA;
  7649. text-align:center;
  7650. line-height:30px;
  7651. }
  7652. #u6733 .text {
  7653. position:absolute;
  7654. align-self:center;
  7655. padding:5px 10px 5px 10px;
  7656. box-sizing:border-box;
  7657. width:100%;
  7658. }
  7659. #u6733_text {
  7660. border-width:0px;
  7661. word-wrap:break-word;
  7662. text-transform:none;
  7663. visibility:hidden;
  7664. }
  7665. #u6734_div {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:83px;
  7671. height:35px;
  7672. background:inherit;
  7673. background-color:rgba(255, 255, 255, 0);
  7674. border-top:0px;
  7675. border-right:0px;
  7676. border-bottom:0px;
  7677. border-radius:0px;
  7678. border-top-left-radius:0px;
  7679. border-bottom-left-radius:0px;
  7680. filter:drop-shadow(none);
  7681. transition:none;
  7682. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  7683. font-weight:500;
  7684. font-style:normal;
  7685. font-size:18px;
  7686. }
  7687. #u6734 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:1102px;
  7691. top:61px;
  7692. width:83px;
  7693. height:35px;
  7694. display:flex;
  7695. transition:none;
  7696. transform-origin:50% 50%;
  7697. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  7698. font-weight:500;
  7699. font-style:normal;
  7700. font-size:18px;
  7701. }
  7702. #u6734 .text {
  7703. position:absolute;
  7704. align-self:center;
  7705. padding:5px 10px 5px 0px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u6734_text {
  7710. border-width:0px;
  7711. white-space:nowrap;
  7712. text-transform:none;
  7713. }
  7714. #u6735 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:0px;
  7718. top:0px;
  7719. width:0px;
  7720. height:0px;
  7721. }
  7722. #u6736_div {
  7723. border-width:0px;
  7724. position:absolute;
  7725. left:0px;
  7726. top:0px;
  7727. width:40px;
  7728. height:40px;
  7729. background:inherit;
  7730. background-color:rgba(255, 255, 255, 0);
  7731. border-top:0px;
  7732. border-right:0px;
  7733. border-bottom:0px;
  7734. border-radius:0px;
  7735. border-top-left-radius:0px;
  7736. border-bottom-left-radius:0px;
  7737. filter:drop-shadow(none);
  7738. transition:none;
  7739. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  7740. font-weight:500;
  7741. font-style:normal;
  7742. font-size:18px;
  7743. text-align:center;
  7744. }
  7745. #u6736 {
  7746. border-width:0px;
  7747. position:absolute;
  7748. left:2042px;
  7749. top:43px;
  7750. width:40px;
  7751. height:40px;
  7752. display:flex;
  7753. transition:none;
  7754. transform-origin:50% 50%;
  7755. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  7756. font-weight:500;
  7757. font-style:normal;
  7758. font-size:18px;
  7759. text-align:center;
  7760. }
  7761. #u6736 .text {
  7762. position:absolute;
  7763. align-self:center;
  7764. padding:5px 10px 5px 0px;
  7765. box-sizing:border-box;
  7766. width:100%;
  7767. }
  7768. #u6736_text {
  7769. border-width:0px;
  7770. word-wrap:break-word;
  7771. text-transform:none;
  7772. }
  7773. #u6737 {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:2030px;
  7777. top:59px;
  7778. width:13px;
  7779. height:13px;
  7780. display:flex;
  7781. transition:none;
  7782. }
  7783. #u6737 .text {
  7784. position:absolute;
  7785. align-self:center;
  7786. padding:2px 2px 2px 2px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u6737_img {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:0px;
  7794. top:0px;
  7795. width:13px;
  7796. height:13px;
  7797. }
  7798. #u6737_text {
  7799. border-width:0px;
  7800. word-wrap:break-word;
  7801. text-transform:none;
  7802. visibility:hidden;
  7803. }
  7804. #u6738_div {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:0px;
  7808. top:0px;
  7809. width:137px;
  7810. height:30px;
  7811. background:inherit;
  7812. background-color:rgba(255, 255, 255, 0);
  7813. border-top:0px;
  7814. border-right:0px;
  7815. border-bottom:0px;
  7816. border-radius:0px;
  7817. border-top-left-radius:0px;
  7818. border-bottom-left-radius:0px;
  7819. filter:drop-shadow(none);
  7820. transition:none;
  7821. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7822. font-weight:400;
  7823. font-style:normal;
  7824. font-size:14px;
  7825. }
  7826. #u6738 {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:1133px;
  7830. top:158px;
  7831. width:137px;
  7832. height:30px;
  7833. display:flex;
  7834. transition:none;
  7835. transform-origin:50% 50%;
  7836. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7837. font-weight:400;
  7838. font-style:normal;
  7839. font-size:14px;
  7840. }
  7841. #u6738 .text {
  7842. position:absolute;
  7843. align-self:center;
  7844. padding:5px 10px 5px 0px;
  7845. box-sizing:border-box;
  7846. width:100%;
  7847. }
  7848. #u6738_text {
  7849. border-width:0px;
  7850. word-wrap:break-word;
  7851. text-transform:none;
  7852. }
  7853. #u6739 {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:0px;
  7857. top:0px;
  7858. width:0px;
  7859. height:0px;
  7860. }
  7861. #u6740_div {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:0px;
  7865. top:0px;
  7866. width:280px;
  7867. height:40px;
  7868. background:inherit;
  7869. background-color:rgba(255, 255, 255, 1);
  7870. box-sizing:border-box;
  7871. border-width:1px;
  7872. border-style:solid;
  7873. border-color:rgba(170, 170, 170, 1);
  7874. border-radius:4px;
  7875. filter:drop-shadow(none);
  7876. transition:none;
  7877. }
  7878. #u6740 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:1133px;
  7882. top:188px;
  7883. width:280px;
  7884. height:40px;
  7885. display:flex;
  7886. transition:none;
  7887. transform-origin:50% 50%;
  7888. }
  7889. #u6740 .text {
  7890. position:absolute;
  7891. align-self:center;
  7892. padding:2px 2px 2px 0px;
  7893. box-sizing:border-box;
  7894. width:100%;
  7895. }
  7896. #u6740_text {
  7897. border-width:0px;
  7898. word-wrap:break-word;
  7899. text-transform:none;
  7900. visibility:hidden;
  7901. }
  7902. #u6741_input {
  7903. position:absolute;
  7904. left:0px;
  7905. top:0px;
  7906. width:273px;
  7907. height:30px;
  7908. padding:2px 2px 2px 0px;
  7909. font-family:"ArialMT", "Arial", sans-serif;
  7910. font-weight:400;
  7911. font-style:normal;
  7912. font-size:13px;
  7913. letter-spacing:normal;
  7914. color:#AAAAAA;
  7915. vertical-align:none;
  7916. text-align:left;
  7917. text-transform:none;
  7918. background-color:transparent;
  7919. border-color:transparent;
  7920. }
  7921. #u6741_input.disabled {
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:273px;
  7926. height:30px;
  7927. padding:2px 2px 2px 0px;
  7928. font-family:"ArialMT", "Arial", sans-serif;
  7929. font-weight:400;
  7930. font-style:normal;
  7931. font-size:13px;
  7932. letter-spacing:normal;
  7933. color:#AAAAAA;
  7934. vertical-align:none;
  7935. text-align:left;
  7936. text-transform:none;
  7937. background-color:transparent;
  7938. border-color:transparent;
  7939. }
  7940. #u6741_div {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:0px;
  7944. top:0px;
  7945. width:273px;
  7946. height:30px;
  7947. background:inherit;
  7948. background-color:rgba(255, 255, 255, 1);
  7949. border-radius:0px;
  7950. filter:drop-shadow(none);
  7951. transition:none;
  7952. color:#AAAAAA;
  7953. }
  7954. #u6741 {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:1138px;
  7958. top:193px;
  7959. width:273px;
  7960. height:30px;
  7961. display:flex;
  7962. transition:none;
  7963. transform-origin:50% 50%;
  7964. color:#AAAAAA;
  7965. }
  7966. #u6741 .text {
  7967. position:absolute;
  7968. align-self:flex-start;
  7969. padding:2px 2px 2px 0px;
  7970. box-sizing:border-box;
  7971. width:100%;
  7972. }
  7973. #u6741_div.disabled {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:273px;
  7979. height:30px;
  7980. background:inherit;
  7981. background-color:rgba(240, 240, 240, 1);
  7982. border-radius:0px;
  7983. filter:drop-shadow(none);
  7984. transition:none;
  7985. color:#AAAAAA;
  7986. }
  7987. #u6741.disabled {
  7988. }
  7989. .u6741_input_option {
  7990. }
  7991. #u6742_div {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:0px;
  7995. top:0px;
  7996. width:67px;
  7997. height:30px;
  7998. background:inherit;
  7999. background-color:rgba(255, 255, 255, 0);
  8000. border-top:0px;
  8001. border-right:0px;
  8002. border-bottom:0px;
  8003. border-radius:0px;
  8004. border-top-left-radius:0px;
  8005. border-bottom-left-radius:0px;
  8006. filter:drop-shadow(none);
  8007. transition:none;
  8008. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8009. font-weight:400;
  8010. font-style:normal;
  8011. font-size:14px;
  8012. }
  8013. #u6742 {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:1133px;
  8017. top:318px;
  8018. width:67px;
  8019. height:30px;
  8020. display:flex;
  8021. transition:none;
  8022. transform-origin:50% 50%;
  8023. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8024. font-weight:400;
  8025. font-style:normal;
  8026. font-size:14px;
  8027. }
  8028. #u6742 .text {
  8029. position:absolute;
  8030. align-self:center;
  8031. padding:5px 10px 5px 0px;
  8032. box-sizing:border-box;
  8033. width:100%;
  8034. }
  8035. #u6742_text {
  8036. border-width:0px;
  8037. white-space:nowrap;
  8038. text-transform:none;
  8039. }
  8040. #u6743_div {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:0px;
  8044. top:0px;
  8045. width:75px;
  8046. height:32px;
  8047. background:inherit;
  8048. background-color:rgba(255, 255, 255, 0);
  8049. border-top:0px;
  8050. border-right:0px;
  8051. border-bottom:0px;
  8052. border-radius:0px;
  8053. border-top-left-radius:0px;
  8054. border-bottom-left-radius:0px;
  8055. filter:drop-shadow(none);
  8056. transition:none;
  8057. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  8058. font-weight:500;
  8059. font-style:normal;
  8060. font-size:16px;
  8061. }
  8062. #u6743 {
  8063. border-width:0px;
  8064. position:absolute;
  8065. left:1129px;
  8066. top:114px;
  8067. width:75px;
  8068. height:32px;
  8069. display:flex;
  8070. transition:none;
  8071. transform-origin:50% 50%;
  8072. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  8073. font-weight:500;
  8074. font-style:normal;
  8075. font-size:16px;
  8076. }
  8077. #u6743 .text {
  8078. position:absolute;
  8079. align-self:center;
  8080. padding:5px 10px 5px 0px;
  8081. box-sizing:border-box;
  8082. width:100%;
  8083. }
  8084. #u6743_text {
  8085. border-width:0px;
  8086. white-space:nowrap;
  8087. text-transform:none;
  8088. }
  8089. #u6744_div {
  8090. border-width:0px;
  8091. position:absolute;
  8092. left:0px;
  8093. top:0px;
  8094. width:75px;
  8095. height:32px;
  8096. background:inherit;
  8097. background-color:rgba(255, 255, 255, 0);
  8098. border-top:0px;
  8099. border-right:0px;
  8100. border-bottom:0px;
  8101. border-radius:0px;
  8102. border-top-left-radius:0px;
  8103. border-bottom-left-radius:0px;
  8104. filter:drop-shadow(none);
  8105. transition:none;
  8106. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  8107. font-weight:500;
  8108. font-style:normal;
  8109. font-size:16px;
  8110. color:#1890FF;
  8111. }
  8112. #u6744 {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:1224px;
  8116. top:114px;
  8117. width:75px;
  8118. height:32px;
  8119. display:flex;
  8120. transition:none;
  8121. transform-origin:50% 50%;
  8122. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  8123. font-weight:500;
  8124. font-style:normal;
  8125. font-size:16px;
  8126. color:#1890FF;
  8127. }
  8128. #u6744 .text {
  8129. position:absolute;
  8130. align-self:center;
  8131. padding:5px 10px 5px 0px;
  8132. box-sizing:border-box;
  8133. width:100%;
  8134. }
  8135. #u6744_text {
  8136. border-width:0px;
  8137. white-space:nowrap;
  8138. text-transform:none;
  8139. }
  8140. #u6745_div {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:0px;
  8144. top:0px;
  8145. width:75px;
  8146. height:32px;
  8147. background:inherit;
  8148. background-color:rgba(255, 255, 255, 0);
  8149. border-top:0px;
  8150. border-right:0px;
  8151. border-bottom:0px;
  8152. border-radius:0px;
  8153. border-top-left-radius:0px;
  8154. border-bottom-left-radius:0px;
  8155. filter:drop-shadow(none);
  8156. transition:none;
  8157. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  8158. font-weight:500;
  8159. font-style:normal;
  8160. font-size:16px;
  8161. }
  8162. #u6745 {
  8163. border-width:0px;
  8164. position:absolute;
  8165. left:1319px;
  8166. top:114px;
  8167. width:75px;
  8168. height:32px;
  8169. display:flex;
  8170. transition:none;
  8171. transform-origin:50% 50%;
  8172. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  8173. font-weight:500;
  8174. font-style:normal;
  8175. font-size:16px;
  8176. }
  8177. #u6745 .text {
  8178. position:absolute;
  8179. align-self:center;
  8180. padding:5px 10px 5px 0px;
  8181. box-sizing:border-box;
  8182. width:100%;
  8183. }
  8184. #u6745_text {
  8185. border-width:0px;
  8186. white-space:nowrap;
  8187. text-transform:none;
  8188. }
  8189. #u6746_div {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:0px;
  8193. top:0px;
  8194. width:137px;
  8195. height:30px;
  8196. background:inherit;
  8197. background-color:rgba(255, 255, 255, 0);
  8198. border-top:0px;
  8199. border-right:0px;
  8200. border-bottom:0px;
  8201. border-radius:0px;
  8202. border-top-left-radius:0px;
  8203. border-bottom-left-radius:0px;
  8204. filter:drop-shadow(none);
  8205. transition:none;
  8206. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8207. font-weight:400;
  8208. font-style:normal;
  8209. font-size:14px;
  8210. }
  8211. #u6746 {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:1433px;
  8215. top:158px;
  8216. width:137px;
  8217. height:30px;
  8218. display:flex;
  8219. transition:none;
  8220. transform-origin:50% 50%;
  8221. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8222. font-weight:400;
  8223. font-style:normal;
  8224. font-size:14px;
  8225. }
  8226. #u6746 .text {
  8227. position:absolute;
  8228. align-self:center;
  8229. padding:5px 10px 5px 0px;
  8230. box-sizing:border-box;
  8231. width:100%;
  8232. }
  8233. #u6746_text {
  8234. border-width:0px;
  8235. word-wrap:break-word;
  8236. text-transform:none;
  8237. }
  8238. #u6747 {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:0px;
  8242. top:0px;
  8243. width:0px;
  8244. height:0px;
  8245. }
  8246. #u6748_div {
  8247. border-width:0px;
  8248. position:absolute;
  8249. left:0px;
  8250. top:0px;
  8251. width:280px;
  8252. height:40px;
  8253. background:inherit;
  8254. background-color:rgba(255, 255, 255, 1);
  8255. box-sizing:border-box;
  8256. border-width:1px;
  8257. border-style:solid;
  8258. border-color:rgba(170, 170, 170, 1);
  8259. border-radius:4px;
  8260. filter:drop-shadow(none);
  8261. transition:none;
  8262. }
  8263. #u6748 {
  8264. border-width:0px;
  8265. position:absolute;
  8266. left:1433px;
  8267. top:188px;
  8268. width:280px;
  8269. height:40px;
  8270. display:flex;
  8271. transition:none;
  8272. transform-origin:50% 50%;
  8273. }
  8274. #u6748 .text {
  8275. position:absolute;
  8276. align-self:center;
  8277. padding:2px 2px 2px 0px;
  8278. box-sizing:border-box;
  8279. width:100%;
  8280. }
  8281. #u6748_text {
  8282. border-width:0px;
  8283. word-wrap:break-word;
  8284. text-transform:none;
  8285. visibility:hidden;
  8286. }
  8287. #u6749_input {
  8288. position:absolute;
  8289. left:0px;
  8290. top:0px;
  8291. width:273px;
  8292. height:30px;
  8293. padding:2px 2px 2px 0px;
  8294. font-family:"ArialMT", "Arial", sans-serif;
  8295. font-weight:400;
  8296. font-style:normal;
  8297. font-size:13px;
  8298. letter-spacing:normal;
  8299. color:#AAAAAA;
  8300. vertical-align:none;
  8301. text-align:left;
  8302. text-transform:none;
  8303. background-color:transparent;
  8304. border-color:transparent;
  8305. }
  8306. #u6749_input.disabled {
  8307. position:absolute;
  8308. left:0px;
  8309. top:0px;
  8310. width:273px;
  8311. height:30px;
  8312. padding:2px 2px 2px 0px;
  8313. font-family:"ArialMT", "Arial", sans-serif;
  8314. font-weight:400;
  8315. font-style:normal;
  8316. font-size:13px;
  8317. letter-spacing:normal;
  8318. color:#AAAAAA;
  8319. vertical-align:none;
  8320. text-align:left;
  8321. text-transform:none;
  8322. background-color:transparent;
  8323. border-color:transparent;
  8324. }
  8325. #u6749_div {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:0px;
  8329. top:0px;
  8330. width:273px;
  8331. height:30px;
  8332. background:inherit;
  8333. background-color:rgba(255, 255, 255, 1);
  8334. border-radius:0px;
  8335. filter:drop-shadow(none);
  8336. transition:none;
  8337. color:#AAAAAA;
  8338. }
  8339. #u6749 {
  8340. border-width:0px;
  8341. position:absolute;
  8342. left:1438px;
  8343. top:193px;
  8344. width:273px;
  8345. height:30px;
  8346. display:flex;
  8347. transition:none;
  8348. transform-origin:50% 50%;
  8349. color:#AAAAAA;
  8350. }
  8351. #u6749 .text {
  8352. position:absolute;
  8353. align-self:flex-start;
  8354. padding:2px 2px 2px 0px;
  8355. box-sizing:border-box;
  8356. width:100%;
  8357. }
  8358. #u6749_div.disabled {
  8359. border-width:0px;
  8360. position:absolute;
  8361. left:0px;
  8362. top:0px;
  8363. width:273px;
  8364. height:30px;
  8365. background:inherit;
  8366. background-color:rgba(240, 240, 240, 1);
  8367. border-radius:0px;
  8368. filter:drop-shadow(none);
  8369. transition:none;
  8370. color:#AAAAAA;
  8371. }
  8372. #u6749.disabled {
  8373. }
  8374. .u6749_input_option {
  8375. }
  8376. #u6750_div {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:0px;
  8380. top:0px;
  8381. width:67px;
  8382. height:30px;
  8383. background:inherit;
  8384. background-color:rgba(255, 255, 255, 0);
  8385. border-top:0px;
  8386. border-right:0px;
  8387. border-bottom:0px;
  8388. border-radius:0px;
  8389. border-top-left-radius:0px;
  8390. border-bottom-left-radius:0px;
  8391. filter:drop-shadow(none);
  8392. transition:none;
  8393. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8394. font-weight:400;
  8395. font-style:normal;
  8396. font-size:14px;
  8397. }
  8398. #u6750 {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:1735px;
  8402. top:243px;
  8403. width:67px;
  8404. height:30px;
  8405. display:flex;
  8406. transition:none;
  8407. transform-origin:50% 50%;
  8408. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8409. font-weight:400;
  8410. font-style:normal;
  8411. font-size:14px;
  8412. }
  8413. #u6750 .text {
  8414. position:absolute;
  8415. align-self:center;
  8416. padding:5px 10px 5px 0px;
  8417. box-sizing:border-box;
  8418. width:100%;
  8419. }
  8420. #u6750_text {
  8421. border-width:0px;
  8422. white-space:nowrap;
  8423. text-transform:none;
  8424. }
  8425. #u6751 {
  8426. border-width:0px;
  8427. position:absolute;
  8428. left:0px;
  8429. top:0px;
  8430. width:0px;
  8431. height:0px;
  8432. }
  8433. #u6752_div {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:280px;
  8439. height:40px;
  8440. background:inherit;
  8441. background-color:rgba(255, 255, 255, 1);
  8442. box-sizing:border-box;
  8443. border-width:1px;
  8444. border-style:solid;
  8445. border-color:rgba(170, 170, 170, 1);
  8446. border-radius:4px;
  8447. filter:drop-shadow(none);
  8448. transition:none;
  8449. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8450. font-weight:400;
  8451. font-style:normal;
  8452. text-align:right;
  8453. }
  8454. #u6752 {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:1433px;
  8458. top:348px;
  8459. width:280px;
  8460. height:40px;
  8461. display:flex;
  8462. transition:none;
  8463. transform-origin:50% 50%;
  8464. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8465. font-weight:400;
  8466. font-style:normal;
  8467. text-align:right;
  8468. }
  8469. #u6752 .text {
  8470. position:absolute;
  8471. align-self:center;
  8472. padding:2px 10px 2px 10px;
  8473. box-sizing:border-box;
  8474. width:100%;
  8475. }
  8476. #u6752_text {
  8477. border-width:0px;
  8478. word-wrap:break-word;
  8479. text-transform:none;
  8480. visibility:hidden;
  8481. }
  8482. #u6753_input {
  8483. position:absolute;
  8484. left:0px;
  8485. top:0px;
  8486. width:223px;
  8487. height:31px;
  8488. padding:2px 10px 2px 2px;
  8489. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8490. font-weight:400;
  8491. font-style:normal;
  8492. font-size:13px;
  8493. letter-spacing:normal;
  8494. color:#333333;
  8495. vertical-align:none;
  8496. text-align:left;
  8497. text-transform:none;
  8498. background-color:transparent;
  8499. border-color:transparent;
  8500. }
  8501. #u6753_input.hint {
  8502. position:absolute;
  8503. left:0px;
  8504. top:0px;
  8505. width:223px;
  8506. height:31px;
  8507. padding:2px 10px 2px 2px;
  8508. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8509. font-weight:400;
  8510. font-style:normal;
  8511. font-size:13px;
  8512. letter-spacing:normal;
  8513. color:#999999;
  8514. vertical-align:none;
  8515. text-align:left;
  8516. text-transform:none;
  8517. background-color:transparent;
  8518. border-color:transparent;
  8519. }
  8520. #u6753_input.disabled {
  8521. position:absolute;
  8522. left:0px;
  8523. top:0px;
  8524. width:223px;
  8525. height:31px;
  8526. padding:2px 10px 2px 2px;
  8527. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8528. font-weight:400;
  8529. font-style:normal;
  8530. font-size:13px;
  8531. letter-spacing:normal;
  8532. color:#333333;
  8533. vertical-align:none;
  8534. text-align:left;
  8535. text-transform:none;
  8536. background-color:transparent;
  8537. border-color:transparent;
  8538. }
  8539. #u6753_input.hint.disabled {
  8540. position:absolute;
  8541. left:0px;
  8542. top:0px;
  8543. width:223px;
  8544. height:31px;
  8545. padding:2px 10px 2px 2px;
  8546. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8547. font-weight:400;
  8548. font-style:normal;
  8549. font-size:13px;
  8550. letter-spacing:normal;
  8551. color:#999999;
  8552. vertical-align:none;
  8553. text-align:left;
  8554. text-transform:none;
  8555. background-color:transparent;
  8556. border-color:transparent;
  8557. }
  8558. #u6753_div {
  8559. border-width:0px;
  8560. position:absolute;
  8561. left:0px;
  8562. top:0px;
  8563. width:223px;
  8564. height:31px;
  8565. background:inherit;
  8566. background-color:rgba(255, 255, 255, 0);
  8567. border-radius:0px;
  8568. filter:drop-shadow(none);
  8569. transition:none;
  8570. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8571. font-weight:400;
  8572. font-style:normal;
  8573. color:#333333;
  8574. }
  8575. #u6753 {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:1437px;
  8579. top:353px;
  8580. width:223px;
  8581. height:31px;
  8582. display:flex;
  8583. transition:none;
  8584. transform-origin:50% 50%;
  8585. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8586. font-weight:400;
  8587. font-style:normal;
  8588. color:#333333;
  8589. }
  8590. #u6753 .text {
  8591. position:absolute;
  8592. align-self:center;
  8593. padding:2px 10px 2px 2px;
  8594. box-sizing:border-box;
  8595. width:100%;
  8596. }
  8597. #u6753_div.hint {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:0px;
  8601. top:0px;
  8602. width:223px;
  8603. height:31px;
  8604. background:inherit;
  8605. background-color:rgba(255, 255, 255, 0);
  8606. border-radius:0px;
  8607. filter:drop-shadow(none);
  8608. transition:none;
  8609. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. color:#333333;
  8613. }
  8614. #u6753.hint {
  8615. }
  8616. #u6753_div.disabled {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:223px;
  8622. height:31px;
  8623. background:inherit;
  8624. background-color:rgba(240, 240, 240, 1);
  8625. border-radius:0px;
  8626. filter:drop-shadow(none);
  8627. transition:none;
  8628. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8629. font-weight:400;
  8630. font-style:normal;
  8631. color:#333333;
  8632. }
  8633. #u6753.disabled {
  8634. }
  8635. #u6753_div.hint.disabled {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:0px;
  8639. top:0px;
  8640. width:223px;
  8641. height:31px;
  8642. background:inherit;
  8643. background-color:rgba(240, 240, 240, 1);
  8644. border-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. color:#333333;
  8651. }
  8652. #u6753.hint.disabled {
  8653. }
  8654. #u6754_div {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:0px;
  8658. top:0px;
  8659. width:137px;
  8660. height:30px;
  8661. background:inherit;
  8662. background-color:rgba(255, 255, 255, 0);
  8663. border-top:0px;
  8664. border-right:0px;
  8665. border-bottom:0px;
  8666. border-radius:0px;
  8667. border-top-left-radius:0px;
  8668. border-bottom-left-radius:0px;
  8669. filter:drop-shadow(none);
  8670. transition:none;
  8671. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8672. font-weight:400;
  8673. font-style:normal;
  8674. font-size:14px;
  8675. }
  8676. #u6754 {
  8677. border-width:0px;
  8678. position:absolute;
  8679. left:1433px;
  8680. top:318px;
  8681. width:137px;
  8682. height:30px;
  8683. display:flex;
  8684. transition:none;
  8685. transform-origin:50% 50%;
  8686. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8687. font-weight:400;
  8688. font-style:normal;
  8689. font-size:14px;
  8690. }
  8691. #u6754 .text {
  8692. position:absolute;
  8693. align-self:center;
  8694. padding:5px 10px 5px 0px;
  8695. box-sizing:border-box;
  8696. width:100%;
  8697. }
  8698. #u6754_text {
  8699. border-width:0px;
  8700. word-wrap:break-word;
  8701. text-transform:none;
  8702. }
  8703. #u6755_div {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:0px;
  8707. top:0px;
  8708. width:137px;
  8709. height:30px;
  8710. background:inherit;
  8711. background-color:rgba(255, 255, 255, 0);
  8712. border-top:0px;
  8713. border-right:0px;
  8714. border-bottom:0px;
  8715. border-radius:0px;
  8716. border-top-left-radius:0px;
  8717. border-bottom-left-radius:0px;
  8718. filter:drop-shadow(none);
  8719. transition:none;
  8720. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8721. font-weight:400;
  8722. font-style:normal;
  8723. font-size:14px;
  8724. }
  8725. #u6755 {
  8726. border-width:0px;
  8727. position:absolute;
  8728. left:1737px;
  8729. top:318px;
  8730. width:137px;
  8731. height:30px;
  8732. display:flex;
  8733. transition:none;
  8734. transform-origin:50% 50%;
  8735. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8736. font-weight:400;
  8737. font-style:normal;
  8738. font-size:14px;
  8739. }
  8740. #u6755 .text {
  8741. position:absolute;
  8742. align-self:center;
  8743. padding:5px 10px 5px 0px;
  8744. box-sizing:border-box;
  8745. width:100%;
  8746. }
  8747. #u6755_text {
  8748. border-width:0px;
  8749. word-wrap:break-word;
  8750. text-transform:none;
  8751. }
  8752. #u6756_div {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:0px;
  8756. top:0px;
  8757. width:137px;
  8758. height:30px;
  8759. background:inherit;
  8760. background-color:rgba(255, 255, 255, 0);
  8761. border-top:0px;
  8762. border-right:0px;
  8763. border-bottom:0px;
  8764. border-radius:0px;
  8765. border-top-left-radius:0px;
  8766. border-bottom-left-radius:0px;
  8767. filter:drop-shadow(none);
  8768. transition:none;
  8769. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8770. font-weight:400;
  8771. font-style:normal;
  8772. font-size:14px;
  8773. }
  8774. #u6756 {
  8775. border-width:0px;
  8776. position:absolute;
  8777. left:1433px;
  8778. top:398px;
  8779. width:137px;
  8780. height:30px;
  8781. display:flex;
  8782. transition:none;
  8783. transform-origin:50% 50%;
  8784. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8785. font-weight:400;
  8786. font-style:normal;
  8787. font-size:14px;
  8788. }
  8789. #u6756 .text {
  8790. position:absolute;
  8791. align-self:center;
  8792. padding:5px 10px 5px 0px;
  8793. box-sizing:border-box;
  8794. width:100%;
  8795. }
  8796. #u6756_text {
  8797. border-width:0px;
  8798. word-wrap:break-word;
  8799. text-transform:none;
  8800. }
  8801. #u6757 {
  8802. border-width:0px;
  8803. position:absolute;
  8804. left:0px;
  8805. top:0px;
  8806. width:0px;
  8807. height:0px;
  8808. }
  8809. #u6758_div {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:280px;
  8815. height:40px;
  8816. background:inherit;
  8817. background-color:rgba(255, 255, 255, 1);
  8818. box-sizing:border-box;
  8819. border-width:1px;
  8820. border-style:solid;
  8821. border-color:rgba(170, 170, 170, 1);
  8822. border-radius:4px;
  8823. filter:drop-shadow(none);
  8824. transition:none;
  8825. }
  8826. #u6758 {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:1433px;
  8830. top:428px;
  8831. width:280px;
  8832. height:40px;
  8833. display:flex;
  8834. transition:none;
  8835. transform-origin:50% 50%;
  8836. }
  8837. #u6758 .text {
  8838. position:absolute;
  8839. align-self:center;
  8840. padding:2px 2px 2px 0px;
  8841. box-sizing:border-box;
  8842. width:100%;
  8843. }
  8844. #u6758_text {
  8845. border-width:0px;
  8846. word-wrap:break-word;
  8847. text-transform:none;
  8848. visibility:hidden;
  8849. }
  8850. #u6759_input {
  8851. position:absolute;
  8852. left:0px;
  8853. top:0px;
  8854. width:273px;
  8855. height:30px;
  8856. padding:2px 2px 2px 0px;
  8857. font-family:"ArialMT", "Arial", sans-serif;
  8858. font-weight:400;
  8859. font-style:normal;
  8860. font-size:13px;
  8861. letter-spacing:normal;
  8862. color:#AAAAAA;
  8863. vertical-align:none;
  8864. text-align:left;
  8865. text-transform:none;
  8866. background-color:transparent;
  8867. border-color:transparent;
  8868. }
  8869. #u6759_input.disabled {
  8870. position:absolute;
  8871. left:0px;
  8872. top:0px;
  8873. width:273px;
  8874. height:30px;
  8875. padding:2px 2px 2px 0px;
  8876. font-family:"ArialMT", "Arial", sans-serif;
  8877. font-weight:400;
  8878. font-style:normal;
  8879. font-size:13px;
  8880. letter-spacing:normal;
  8881. color:#AAAAAA;
  8882. vertical-align:none;
  8883. text-align:left;
  8884. text-transform:none;
  8885. background-color:transparent;
  8886. border-color:transparent;
  8887. }
  8888. #u6759_div {
  8889. border-width:0px;
  8890. position:absolute;
  8891. left:0px;
  8892. top:0px;
  8893. width:273px;
  8894. height:30px;
  8895. background:inherit;
  8896. background-color:rgba(255, 255, 255, 1);
  8897. border-radius:0px;
  8898. filter:drop-shadow(none);
  8899. transition:none;
  8900. color:#AAAAAA;
  8901. }
  8902. #u6759 {
  8903. border-width:0px;
  8904. position:absolute;
  8905. left:1438px;
  8906. top:433px;
  8907. width:273px;
  8908. height:30px;
  8909. display:flex;
  8910. transition:none;
  8911. transform-origin:50% 50%;
  8912. color:#AAAAAA;
  8913. }
  8914. #u6759 .text {
  8915. position:absolute;
  8916. align-self:flex-start;
  8917. padding:2px 2px 2px 0px;
  8918. box-sizing:border-box;
  8919. width:100%;
  8920. }
  8921. #u6759_div.disabled {
  8922. border-width:0px;
  8923. position:absolute;
  8924. left:0px;
  8925. top:0px;
  8926. width:273px;
  8927. height:30px;
  8928. background:inherit;
  8929. background-color:rgba(240, 240, 240, 1);
  8930. border-radius:0px;
  8931. filter:drop-shadow(none);
  8932. transition:none;
  8933. color:#AAAAAA;
  8934. }
  8935. #u6759.disabled {
  8936. }
  8937. .u6759_input_option {
  8938. }
  8939. #u6760_div {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:0px;
  8943. top:0px;
  8944. width:137px;
  8945. height:30px;
  8946. background:inherit;
  8947. background-color:rgba(255, 255, 255, 0);
  8948. border-top:0px;
  8949. border-right:0px;
  8950. border-bottom:0px;
  8951. border-radius:0px;
  8952. border-top-left-radius:0px;
  8953. border-bottom-left-radius:0px;
  8954. filter:drop-shadow(none);
  8955. transition:none;
  8956. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8957. font-weight:400;
  8958. font-style:normal;
  8959. font-size:14px;
  8960. }
  8961. #u6760 {
  8962. border-width:0px;
  8963. position:absolute;
  8964. left:1435px;
  8965. top:235px;
  8966. width:137px;
  8967. height:30px;
  8968. display:flex;
  8969. transition:none;
  8970. transform-origin:50% 50%;
  8971. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8972. font-weight:400;
  8973. font-style:normal;
  8974. font-size:14px;
  8975. }
  8976. #u6760 .text {
  8977. position:absolute;
  8978. align-self:center;
  8979. padding:5px 10px 5px 0px;
  8980. box-sizing:border-box;
  8981. width:100%;
  8982. }
  8983. #u6760_text {
  8984. border-width:0px;
  8985. word-wrap:break-word;
  8986. text-transform:none;
  8987. }
  8988. #u6761 {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:0px;
  8992. top:0px;
  8993. width:0px;
  8994. height:0px;
  8995. }
  8996. #u6762_div {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:0px;
  9000. top:0px;
  9001. width:872px;
  9002. height:80px;
  9003. background:inherit;
  9004. background-color:rgba(255, 255, 255, 1);
  9005. box-sizing:border-box;
  9006. border-width:1px;
  9007. border-style:solid;
  9008. border-color:rgba(170, 170, 170, 1);
  9009. border-radius:4px;
  9010. filter:drop-shadow(none);
  9011. transition:none;
  9012. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9013. font-weight:400;
  9014. font-style:normal;
  9015. text-align:right;
  9016. }
  9017. #u6762 {
  9018. border-width:0px;
  9019. position:absolute;
  9020. left:1135px;
  9021. top:673px;
  9022. width:872px;
  9023. height:80px;
  9024. display:flex;
  9025. transition:none;
  9026. transform-origin:50% 50%;
  9027. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9028. font-weight:400;
  9029. font-style:normal;
  9030. text-align:right;
  9031. }
  9032. #u6762 .text {
  9033. position:absolute;
  9034. align-self:center;
  9035. padding:2px 10px 2px 10px;
  9036. box-sizing:border-box;
  9037. width:100%;
  9038. }
  9039. #u6762_text {
  9040. border-width:0px;
  9041. word-wrap:break-word;
  9042. text-transform:none;
  9043. visibility:hidden;
  9044. }
  9045. #u6763_input {
  9046. position:absolute;
  9047. left:0px;
  9048. top:0px;
  9049. width:694px;
  9050. height:31px;
  9051. padding:2px 10px 2px 2px;
  9052. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9053. font-weight:400;
  9054. font-style:normal;
  9055. font-size:13px;
  9056. letter-spacing:normal;
  9057. color:#333333;
  9058. vertical-align:none;
  9059. text-align:left;
  9060. text-transform:none;
  9061. background-color:transparent;
  9062. border-color:transparent;
  9063. }
  9064. #u6763_input.hint {
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:694px;
  9069. height:31px;
  9070. padding:2px 10px 2px 2px;
  9071. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9072. font-weight:400;
  9073. font-style:normal;
  9074. font-size:13px;
  9075. letter-spacing:normal;
  9076. color:#999999;
  9077. vertical-align:none;
  9078. text-align:left;
  9079. text-transform:none;
  9080. background-color:transparent;
  9081. border-color:transparent;
  9082. }
  9083. #u6763_input.disabled {
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:694px;
  9088. height:31px;
  9089. padding:2px 10px 2px 2px;
  9090. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9091. font-weight:400;
  9092. font-style:normal;
  9093. font-size:13px;
  9094. letter-spacing:normal;
  9095. color:#333333;
  9096. vertical-align:none;
  9097. text-align:left;
  9098. text-transform:none;
  9099. background-color:transparent;
  9100. border-color:transparent;
  9101. }
  9102. #u6763_input.hint.disabled {
  9103. position:absolute;
  9104. left:0px;
  9105. top:0px;
  9106. width:694px;
  9107. height:31px;
  9108. padding:2px 10px 2px 2px;
  9109. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9110. font-weight:400;
  9111. font-style:normal;
  9112. font-size:13px;
  9113. letter-spacing:normal;
  9114. color:#999999;
  9115. vertical-align:none;
  9116. text-align:left;
  9117. text-transform:none;
  9118. background-color:transparent;
  9119. border-color:transparent;
  9120. }
  9121. #u6763_div {
  9122. border-width:0px;
  9123. position:absolute;
  9124. left:0px;
  9125. top:0px;
  9126. width:694px;
  9127. height:31px;
  9128. background:inherit;
  9129. background-color:rgba(255, 255, 255, 0);
  9130. border-radius:0px;
  9131. filter:drop-shadow(none);
  9132. transition:none;
  9133. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9134. font-weight:400;
  9135. font-style:normal;
  9136. color:#333333;
  9137. }
  9138. #u6763 {
  9139. border-width:0px;
  9140. position:absolute;
  9141. left:1147px;
  9142. top:678px;
  9143. width:694px;
  9144. height:31px;
  9145. display:flex;
  9146. transition:none;
  9147. transform-origin:50% 50%;
  9148. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9149. font-weight:400;
  9150. font-style:normal;
  9151. color:#333333;
  9152. }
  9153. #u6763 .text {
  9154. position:absolute;
  9155. align-self:center;
  9156. padding:2px 10px 2px 2px;
  9157. box-sizing:border-box;
  9158. width:100%;
  9159. }
  9160. #u6763_div.hint {
  9161. border-width:0px;
  9162. position:absolute;
  9163. left:0px;
  9164. top:0px;
  9165. width:694px;
  9166. height:31px;
  9167. background:inherit;
  9168. background-color:rgba(255, 255, 255, 0);
  9169. border-radius:0px;
  9170. filter:drop-shadow(none);
  9171. transition:none;
  9172. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9173. font-weight:400;
  9174. font-style:normal;
  9175. color:#333333;
  9176. }
  9177. #u6763.hint {
  9178. }
  9179. #u6763_div.disabled {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:0px;
  9183. top:0px;
  9184. width:694px;
  9185. height:31px;
  9186. background:inherit;
  9187. background-color:rgba(240, 240, 240, 1);
  9188. border-radius:0px;
  9189. filter:drop-shadow(none);
  9190. transition:none;
  9191. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9192. font-weight:400;
  9193. font-style:normal;
  9194. color:#333333;
  9195. }
  9196. #u6763.disabled {
  9197. }
  9198. #u6763_div.hint.disabled {
  9199. border-width:0px;
  9200. position:absolute;
  9201. left:0px;
  9202. top:0px;
  9203. width:694px;
  9204. height:31px;
  9205. background:inherit;
  9206. background-color:rgba(240, 240, 240, 1);
  9207. border-radius:0px;
  9208. filter:drop-shadow(none);
  9209. transition:none;
  9210. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9211. font-weight:400;
  9212. font-style:normal;
  9213. color:#333333;
  9214. }
  9215. #u6763.hint.disabled {
  9216. }
  9217. #u6764_div {
  9218. border-width:0px;
  9219. position:absolute;
  9220. left:0px;
  9221. top:0px;
  9222. width:137px;
  9223. height:30px;
  9224. background:inherit;
  9225. background-color:rgba(255, 255, 255, 0);
  9226. border-top:0px;
  9227. border-right:0px;
  9228. border-bottom:0px;
  9229. border-radius:0px;
  9230. border-top-left-radius:0px;
  9231. border-bottom-left-radius:0px;
  9232. filter:drop-shadow(none);
  9233. transition:none;
  9234. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9235. font-weight:400;
  9236. font-style:normal;
  9237. font-size:14px;
  9238. }
  9239. #u6764 {
  9240. border-width:0px;
  9241. position:absolute;
  9242. left:1135px;
  9243. top:643px;
  9244. width:137px;
  9245. height:30px;
  9246. display:flex;
  9247. transition:none;
  9248. transform-origin:50% 50%;
  9249. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9250. font-weight:400;
  9251. font-style:normal;
  9252. font-size:14px;
  9253. }
  9254. #u6764 .text {
  9255. position:absolute;
  9256. align-self:center;
  9257. padding:5px 10px 5px 0px;
  9258. box-sizing:border-box;
  9259. width:100%;
  9260. }
  9261. #u6764_text {
  9262. border-width:0px;
  9263. word-wrap:break-word;
  9264. text-transform:none;
  9265. }
  9266. #u6765_div {
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:0px;
  9270. top:0px;
  9271. width:137px;
  9272. height:30px;
  9273. background:inherit;
  9274. background-color:rgba(255, 255, 255, 0);
  9275. border-top:0px;
  9276. border-right:0px;
  9277. border-bottom:0px;
  9278. border-radius:0px;
  9279. border-top-left-radius:0px;
  9280. border-bottom-left-radius:0px;
  9281. filter:drop-shadow(none);
  9282. transition:none;
  9283. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9284. font-weight:400;
  9285. font-style:normal;
  9286. font-size:14px;
  9287. }
  9288. #u6765 {
  9289. border-width:0px;
  9290. position:absolute;
  9291. left:1131px;
  9292. top:398px;
  9293. width:137px;
  9294. height:30px;
  9295. display:flex;
  9296. transition:none;
  9297. transform-origin:50% 50%;
  9298. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9299. font-weight:400;
  9300. font-style:normal;
  9301. font-size:14px;
  9302. }
  9303. #u6765 .text {
  9304. position:absolute;
  9305. align-self:center;
  9306. padding:5px 10px 5px 0px;
  9307. box-sizing:border-box;
  9308. width:100%;
  9309. }
  9310. #u6765_text {
  9311. border-width:0px;
  9312. word-wrap:break-word;
  9313. text-transform:none;
  9314. }
  9315. #u6766_div {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:0px;
  9319. top:0px;
  9320. width:137px;
  9321. height:30px;
  9322. background:inherit;
  9323. background-color:rgba(255, 255, 255, 0);
  9324. border-top:0px;
  9325. border-right:0px;
  9326. border-bottom:0px;
  9327. border-radius:0px;
  9328. border-top-left-radius:0px;
  9329. border-bottom-left-radius:0px;
  9330. filter:drop-shadow(none);
  9331. transition:none;
  9332. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:14px;
  9336. }
  9337. #u6766 {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:1733px;
  9341. top:159px;
  9342. width:137px;
  9343. height:30px;
  9344. display:flex;
  9345. transition:none;
  9346. transform-origin:50% 50%;
  9347. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9348. font-weight:400;
  9349. font-style:normal;
  9350. font-size:14px;
  9351. }
  9352. #u6766 .text {
  9353. position:absolute;
  9354. align-self:center;
  9355. padding:5px 10px 5px 0px;
  9356. box-sizing:border-box;
  9357. width:100%;
  9358. }
  9359. #u6766_text {
  9360. border-width:0px;
  9361. word-wrap:break-word;
  9362. text-transform:none;
  9363. }
  9364. #u6767_div {
  9365. border-width:0px;
  9366. position:absolute;
  9367. left:0px;
  9368. top:0px;
  9369. width:137px;
  9370. height:30px;
  9371. background:inherit;
  9372. background-color:rgba(255, 255, 255, 0);
  9373. border-top:0px;
  9374. border-right:0px;
  9375. border-bottom:0px;
  9376. border-radius:0px;
  9377. border-top-left-radius:0px;
  9378. border-bottom-left-radius:0px;
  9379. filter:drop-shadow(none);
  9380. transition:none;
  9381. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9382. font-weight:400;
  9383. font-style:normal;
  9384. font-size:14px;
  9385. }
  9386. #u6767 {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:1133px;
  9390. top:241px;
  9391. width:137px;
  9392. height:30px;
  9393. display:flex;
  9394. transition:none;
  9395. transform-origin:50% 50%;
  9396. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9397. font-weight:400;
  9398. font-style:normal;
  9399. font-size:14px;
  9400. }
  9401. #u6767 .text {
  9402. position:absolute;
  9403. align-self:center;
  9404. padding:5px 10px 5px 0px;
  9405. box-sizing:border-box;
  9406. width:100%;
  9407. }
  9408. #u6767_text {
  9409. border-width:0px;
  9410. word-wrap:break-word;
  9411. text-transform:none;
  9412. }
  9413. #u6768 {
  9414. border-width:0px;
  9415. position:absolute;
  9416. left:0px;
  9417. top:0px;
  9418. width:0px;
  9419. height:0px;
  9420. }
  9421. #u6769_div {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:0px;
  9425. top:0px;
  9426. width:280px;
  9427. height:40px;
  9428. background:inherit;
  9429. background-color:rgba(255, 255, 255, 1);
  9430. box-sizing:border-box;
  9431. border-width:1px;
  9432. border-style:solid;
  9433. border-color:rgba(170, 170, 170, 1);
  9434. border-radius:4px;
  9435. filter:drop-shadow(none);
  9436. transition:none;
  9437. }
  9438. #u6769 {
  9439. border-width:0px;
  9440. position:absolute;
  9441. left:1133px;
  9442. top:348px;
  9443. width:280px;
  9444. height:40px;
  9445. display:flex;
  9446. transition:none;
  9447. transform-origin:50% 50%;
  9448. }
  9449. #u6769 .text {
  9450. position:absolute;
  9451. align-self:center;
  9452. padding:2px 2px 2px 0px;
  9453. box-sizing:border-box;
  9454. width:100%;
  9455. }
  9456. #u6769_text {
  9457. border-width:0px;
  9458. word-wrap:break-word;
  9459. text-transform:none;
  9460. visibility:hidden;
  9461. }
  9462. #u6770_input {
  9463. position:absolute;
  9464. left:0px;
  9465. top:0px;
  9466. width:273px;
  9467. height:30px;
  9468. padding:2px 2px 2px 0px;
  9469. font-family:"ArialMT", "Arial", sans-serif;
  9470. font-weight:400;
  9471. font-style:normal;
  9472. font-size:13px;
  9473. letter-spacing:normal;
  9474. color:#AAAAAA;
  9475. vertical-align:none;
  9476. text-align:left;
  9477. text-transform:none;
  9478. background-color:transparent;
  9479. border-color:transparent;
  9480. }
  9481. #u6770_input.disabled {
  9482. position:absolute;
  9483. left:0px;
  9484. top:0px;
  9485. width:273px;
  9486. height:30px;
  9487. padding:2px 2px 2px 0px;
  9488. font-family:"ArialMT", "Arial", sans-serif;
  9489. font-weight:400;
  9490. font-style:normal;
  9491. font-size:13px;
  9492. letter-spacing:normal;
  9493. color:#AAAAAA;
  9494. vertical-align:none;
  9495. text-align:left;
  9496. text-transform:none;
  9497. background-color:transparent;
  9498. border-color:transparent;
  9499. }
  9500. #u6770_div {
  9501. border-width:0px;
  9502. position:absolute;
  9503. left:0px;
  9504. top:0px;
  9505. width:273px;
  9506. height:30px;
  9507. background:inherit;
  9508. background-color:rgba(255, 255, 255, 1);
  9509. border-radius:0px;
  9510. filter:drop-shadow(none);
  9511. transition:none;
  9512. color:#AAAAAA;
  9513. }
  9514. #u6770 {
  9515. border-width:0px;
  9516. position:absolute;
  9517. left:1138px;
  9518. top:353px;
  9519. width:273px;
  9520. height:30px;
  9521. display:flex;
  9522. transition:none;
  9523. transform-origin:50% 50%;
  9524. color:#AAAAAA;
  9525. }
  9526. #u6770 .text {
  9527. position:absolute;
  9528. align-self:flex-start;
  9529. padding:2px 2px 2px 0px;
  9530. box-sizing:border-box;
  9531. width:100%;
  9532. }
  9533. #u6770_div.disabled {
  9534. border-width:0px;
  9535. position:absolute;
  9536. left:0px;
  9537. top:0px;
  9538. width:273px;
  9539. height:30px;
  9540. background:inherit;
  9541. background-color:rgba(240, 240, 240, 1);
  9542. border-radius:0px;
  9543. filter:drop-shadow(none);
  9544. transition:none;
  9545. color:#AAAAAA;
  9546. }
  9547. #u6770.disabled {
  9548. }
  9549. .u6770_input_option {
  9550. }
  9551. #u6771 {
  9552. border-width:0px;
  9553. position:absolute;
  9554. left:0px;
  9555. top:0px;
  9556. width:0px;
  9557. height:0px;
  9558. }
  9559. #u6772_div {
  9560. border-width:0px;
  9561. position:absolute;
  9562. left:0px;
  9563. top:0px;
  9564. width:280px;
  9565. height:38px;
  9566. background:inherit;
  9567. background-color:rgba(255, 255, 255, 1);
  9568. box-sizing:border-box;
  9569. border-width:1px;
  9570. border-style:solid;
  9571. border-color:rgba(188, 188, 188, 1);
  9572. border-radius:5px;
  9573. filter:drop-shadow(none);
  9574. transition:none;
  9575. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9576. font-weight:400;
  9577. font-style:normal;
  9578. font-size:12px;
  9579. color:#FFFFFF;
  9580. }
  9581. #u6772 {
  9582. border-width:0px;
  9583. position:absolute;
  9584. left:1735px;
  9585. top:190px;
  9586. width:280px;
  9587. height:38px;
  9588. display:flex;
  9589. transition:none;
  9590. transform-origin:50% 50%;
  9591. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9592. font-weight:400;
  9593. font-style:normal;
  9594. font-size:12px;
  9595. color:#FFFFFF;
  9596. }
  9597. #u6772 .text {
  9598. position:absolute;
  9599. align-self:center;
  9600. padding:8px 15px 8px 15px;
  9601. box-sizing:border-box;
  9602. width:100%;
  9603. }
  9604. #u6772_text {
  9605. border-width:0px;
  9606. word-wrap:break-word;
  9607. text-transform:none;
  9608. visibility:hidden;
  9609. }
  9610. #u6773_div {
  9611. border-width:0px;
  9612. position:absolute;
  9613. left:0px;
  9614. top:0px;
  9615. width:57px;
  9616. height:20px;
  9617. background:inherit;
  9618. background-color:rgba(255, 255, 255, 0);
  9619. border-radius:0px;
  9620. filter:drop-shadow(none);
  9621. transition:none;
  9622. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9623. font-weight:400;
  9624. font-style:normal;
  9625. color:#BCBCBC;
  9626. }
  9627. #u6773 {
  9628. border-width:0px;
  9629. position:absolute;
  9630. left:1746px;
  9631. top:199px;
  9632. width:57px;
  9633. height:20px;
  9634. display:flex;
  9635. transition:none;
  9636. transform-origin:50% 50%;
  9637. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9638. font-weight:400;
  9639. font-style:normal;
  9640. color:#BCBCBC;
  9641. }
  9642. #u6773 .text {
  9643. position:absolute;
  9644. align-self:flex-start;
  9645. padding:0px 0px 0px 0px;
  9646. box-sizing:border-box;
  9647. width:100%;
  9648. }
  9649. #u6773_text {
  9650. border-width:0px;
  9651. white-space:nowrap;
  9652. text-transform:none;
  9653. }
  9654. #u6774 {
  9655. border-width:0px;
  9656. position:absolute;
  9657. left:1983px;
  9658. top:200px;
  9659. width:18px;
  9660. height:18px;
  9661. display:flex;
  9662. opacity:0.5;
  9663. transition:none;
  9664. }
  9665. #u6774 .text {
  9666. position:absolute;
  9667. align-self:center;
  9668. padding:2px 2px 2px 2px;
  9669. box-sizing:border-box;
  9670. width:100%;
  9671. }
  9672. #u6774_img {
  9673. border-width:0px;
  9674. position:absolute;
  9675. left:0px;
  9676. top:0px;
  9677. width:18px;
  9678. height:18px;
  9679. }
  9680. #u6774_text {
  9681. border-width:0px;
  9682. word-wrap:break-word;
  9683. text-transform:none;
  9684. visibility:hidden;
  9685. }
  9686. #u6775 {
  9687. border-width:0px;
  9688. position:absolute;
  9689. left:0px;
  9690. top:0px;
  9691. width:0px;
  9692. height:0px;
  9693. }
  9694. #u6776_div {
  9695. border-width:0px;
  9696. position:absolute;
  9697. left:0px;
  9698. top:0px;
  9699. width:280px;
  9700. height:40px;
  9701. background:inherit;
  9702. background-color:rgba(255, 255, 255, 1);
  9703. box-sizing:border-box;
  9704. border-width:1px;
  9705. border-style:solid;
  9706. border-color:rgba(170, 170, 170, 1);
  9707. border-radius:4px;
  9708. filter:drop-shadow(none);
  9709. transition:none;
  9710. }
  9711. #u6776 {
  9712. border-width:0px;
  9713. position:absolute;
  9714. left:1735px;
  9715. top:271px;
  9716. width:280px;
  9717. height:40px;
  9718. display:flex;
  9719. transition:none;
  9720. transform-origin:50% 50%;
  9721. }
  9722. #u6776 .text {
  9723. position:absolute;
  9724. align-self:center;
  9725. padding:2px 2px 2px 0px;
  9726. box-sizing:border-box;
  9727. width:100%;
  9728. }
  9729. #u6776_text {
  9730. border-width:0px;
  9731. word-wrap:break-word;
  9732. text-transform:none;
  9733. visibility:hidden;
  9734. }
  9735. #u6777_input {
  9736. position:absolute;
  9737. left:0px;
  9738. top:0px;
  9739. width:273px;
  9740. height:30px;
  9741. padding:2px 2px 2px 0px;
  9742. font-family:"ArialMT", "Arial", sans-serif;
  9743. font-weight:400;
  9744. font-style:normal;
  9745. font-size:13px;
  9746. letter-spacing:normal;
  9747. color:#AAAAAA;
  9748. vertical-align:none;
  9749. text-align:left;
  9750. text-transform:none;
  9751. background-color:transparent;
  9752. border-color:transparent;
  9753. }
  9754. #u6777_input.disabled {
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:273px;
  9759. height:30px;
  9760. padding:2px 2px 2px 0px;
  9761. font-family:"ArialMT", "Arial", sans-serif;
  9762. font-weight:400;
  9763. font-style:normal;
  9764. font-size:13px;
  9765. letter-spacing:normal;
  9766. color:#AAAAAA;
  9767. vertical-align:none;
  9768. text-align:left;
  9769. text-transform:none;
  9770. background-color:transparent;
  9771. border-color:transparent;
  9772. }
  9773. #u6777_div {
  9774. border-width:0px;
  9775. position:absolute;
  9776. left:0px;
  9777. top:0px;
  9778. width:273px;
  9779. height:30px;
  9780. background:inherit;
  9781. background-color:rgba(255, 255, 255, 1);
  9782. border-radius:0px;
  9783. filter:drop-shadow(none);
  9784. transition:none;
  9785. color:#AAAAAA;
  9786. }
  9787. #u6777 {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:1740px;
  9791. top:276px;
  9792. width:273px;
  9793. height:30px;
  9794. display:flex;
  9795. transition:none;
  9796. transform-origin:50% 50%;
  9797. color:#AAAAAA;
  9798. }
  9799. #u6777 .text {
  9800. position:absolute;
  9801. align-self:flex-start;
  9802. padding:2px 2px 2px 0px;
  9803. box-sizing:border-box;
  9804. width:100%;
  9805. }
  9806. #u6777_div.disabled {
  9807. border-width:0px;
  9808. position:absolute;
  9809. left:0px;
  9810. top:0px;
  9811. width:273px;
  9812. height:30px;
  9813. background:inherit;
  9814. background-color:rgba(240, 240, 240, 1);
  9815. border-radius:0px;
  9816. filter:drop-shadow(none);
  9817. transition:none;
  9818. color:#AAAAAA;
  9819. }
  9820. #u6777.disabled {
  9821. }
  9822. .u6777_input_option {
  9823. }
  9824. #u6778 {
  9825. border-width:0px;
  9826. position:absolute;
  9827. left:0px;
  9828. top:0px;
  9829. width:0px;
  9830. height:0px;
  9831. }
  9832. #u6779_div {
  9833. border-width:0px;
  9834. position:absolute;
  9835. left:0px;
  9836. top:0px;
  9837. width:280px;
  9838. height:40px;
  9839. background:inherit;
  9840. background-color:rgba(255, 255, 255, 1);
  9841. box-sizing:border-box;
  9842. border-width:1px;
  9843. border-style:solid;
  9844. border-color:rgba(170, 170, 170, 1);
  9845. border-radius:4px;
  9846. filter:drop-shadow(none);
  9847. transition:none;
  9848. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9849. font-weight:400;
  9850. font-style:normal;
  9851. text-align:right;
  9852. }
  9853. #u6779 {
  9854. border-width:0px;
  9855. position:absolute;
  9856. left:1133px;
  9857. top:271px;
  9858. width:280px;
  9859. height:40px;
  9860. display:flex;
  9861. transition:none;
  9862. transform-origin:50% 50%;
  9863. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9864. font-weight:400;
  9865. font-style:normal;
  9866. text-align:right;
  9867. }
  9868. #u6779 .text {
  9869. position:absolute;
  9870. align-self:center;
  9871. padding:2px 10px 2px 10px;
  9872. box-sizing:border-box;
  9873. width:100%;
  9874. }
  9875. #u6779_text {
  9876. border-width:0px;
  9877. word-wrap:break-word;
  9878. text-transform:none;
  9879. visibility:hidden;
  9880. }
  9881. #u6780_input {
  9882. position:absolute;
  9883. left:0px;
  9884. top:0px;
  9885. width:223px;
  9886. height:31px;
  9887. padding:2px 10px 2px 2px;
  9888. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9889. font-weight:400;
  9890. font-style:normal;
  9891. font-size:13px;
  9892. letter-spacing:normal;
  9893. color:#333333;
  9894. vertical-align:none;
  9895. text-align:left;
  9896. text-transform:none;
  9897. background-color:transparent;
  9898. border-color:transparent;
  9899. }
  9900. #u6780_input.hint {
  9901. position:absolute;
  9902. left:0px;
  9903. top:0px;
  9904. width:223px;
  9905. height:31px;
  9906. padding:2px 10px 2px 2px;
  9907. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9908. font-weight:400;
  9909. font-style:normal;
  9910. font-size:13px;
  9911. letter-spacing:normal;
  9912. color:#999999;
  9913. vertical-align:none;
  9914. text-align:left;
  9915. text-transform:none;
  9916. background-color:transparent;
  9917. border-color:transparent;
  9918. }
  9919. #u6780_input.disabled {
  9920. position:absolute;
  9921. left:0px;
  9922. top:0px;
  9923. width:223px;
  9924. height:31px;
  9925. padding:2px 10px 2px 2px;
  9926. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9927. font-weight:400;
  9928. font-style:normal;
  9929. font-size:13px;
  9930. letter-spacing:normal;
  9931. color:#333333;
  9932. vertical-align:none;
  9933. text-align:left;
  9934. text-transform:none;
  9935. background-color:transparent;
  9936. border-color:transparent;
  9937. }
  9938. #u6780_input.hint.disabled {
  9939. position:absolute;
  9940. left:0px;
  9941. top:0px;
  9942. width:223px;
  9943. height:31px;
  9944. padding:2px 10px 2px 2px;
  9945. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9946. font-weight:400;
  9947. font-style:normal;
  9948. font-size:13px;
  9949. letter-spacing:normal;
  9950. color:#999999;
  9951. vertical-align:none;
  9952. text-align:left;
  9953. text-transform:none;
  9954. background-color:transparent;
  9955. border-color:transparent;
  9956. }
  9957. #u6780_div {
  9958. border-width:0px;
  9959. position:absolute;
  9960. left:0px;
  9961. top:0px;
  9962. width:223px;
  9963. height:31px;
  9964. background:inherit;
  9965. background-color:rgba(255, 255, 255, 0);
  9966. border-radius:0px;
  9967. filter:drop-shadow(none);
  9968. transition:none;
  9969. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9970. font-weight:400;
  9971. font-style:normal;
  9972. color:#333333;
  9973. }
  9974. #u6780 {
  9975. border-width:0px;
  9976. position:absolute;
  9977. left:1137px;
  9978. top:276px;
  9979. width:223px;
  9980. height:31px;
  9981. display:flex;
  9982. transition:none;
  9983. transform-origin:50% 50%;
  9984. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9985. font-weight:400;
  9986. font-style:normal;
  9987. color:#333333;
  9988. }
  9989. #u6780 .text {
  9990. position:absolute;
  9991. align-self:center;
  9992. padding:2px 10px 2px 2px;
  9993. box-sizing:border-box;
  9994. width:100%;
  9995. }
  9996. #u6780_div.hint {
  9997. border-width:0px;
  9998. position:absolute;
  9999. left:0px;
  10000. top:0px;
  10001. width:223px;
  10002. height:31px;
  10003. background:inherit;
  10004. background-color:rgba(255, 255, 255, 0);
  10005. border-radius:0px;
  10006. filter:drop-shadow(none);
  10007. transition:none;
  10008. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10009. font-weight:400;
  10010. font-style:normal;
  10011. color:#333333;
  10012. }
  10013. #u6780.hint {
  10014. }
  10015. #u6780_div.disabled {
  10016. border-width:0px;
  10017. position:absolute;
  10018. left:0px;
  10019. top:0px;
  10020. width:223px;
  10021. height:31px;
  10022. background:inherit;
  10023. background-color:rgba(240, 240, 240, 1);
  10024. border-radius:0px;
  10025. filter:drop-shadow(none);
  10026. transition:none;
  10027. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10028. font-weight:400;
  10029. font-style:normal;
  10030. color:#333333;
  10031. }
  10032. #u6780.disabled {
  10033. }
  10034. #u6780_div.hint.disabled {
  10035. border-width:0px;
  10036. position:absolute;
  10037. left:0px;
  10038. top:0px;
  10039. width:223px;
  10040. height:31px;
  10041. background:inherit;
  10042. background-color:rgba(240, 240, 240, 1);
  10043. border-radius:0px;
  10044. filter:drop-shadow(none);
  10045. transition:none;
  10046. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10047. font-weight:400;
  10048. font-style:normal;
  10049. color:#333333;
  10050. }
  10051. #u6780.hint.disabled {
  10052. }
  10053. #u6781 {
  10054. border-width:0px;
  10055. position:absolute;
  10056. left:0px;
  10057. top:0px;
  10058. width:0px;
  10059. height:0px;
  10060. }
  10061. #u6782_div {
  10062. border-width:0px;
  10063. position:absolute;
  10064. left:0px;
  10065. top:0px;
  10066. width:102px;
  10067. height:40px;
  10068. background:inherit;
  10069. background-color:rgba(242, 242, 242, 1);
  10070. box-sizing:border-box;
  10071. border-width:1px;
  10072. border-style:solid;
  10073. border-color:rgba(170, 170, 170, 1);
  10074. border-radius:0px;
  10075. filter:drop-shadow(none);
  10076. transition:none;
  10077. }
  10078. #u6782 {
  10079. border-width:0px;
  10080. position:absolute;
  10081. left:1611px;
  10082. top:348px;
  10083. width:102px;
  10084. height:40px;
  10085. display:flex;
  10086. transition:none;
  10087. transform-origin:50% 50%;
  10088. }
  10089. #u6782 .text {
  10090. position:absolute;
  10091. align-self:center;
  10092. padding:2px 2px 2px 0px;
  10093. box-sizing:border-box;
  10094. width:100%;
  10095. }
  10096. #u6782_text {
  10097. border-width:0px;
  10098. word-wrap:break-word;
  10099. text-transform:none;
  10100. visibility:hidden;
  10101. }
  10102. #u6783_input {
  10103. position:absolute;
  10104. left:0px;
  10105. top:0px;
  10106. width:95px;
  10107. height:30px;
  10108. padding:2px 2px 2px 0px;
  10109. font-family:"ArialMT", "Arial", sans-serif;
  10110. font-weight:400;
  10111. font-style:normal;
  10112. font-size:13px;
  10113. letter-spacing:normal;
  10114. color:#AAAAAA;
  10115. vertical-align:none;
  10116. text-align:left;
  10117. text-transform:none;
  10118. background-color:transparent;
  10119. border-color:transparent;
  10120. }
  10121. #u6783_input.disabled {
  10122. position:absolute;
  10123. left:0px;
  10124. top:0px;
  10125. width:95px;
  10126. height:30px;
  10127. padding:2px 2px 2px 0px;
  10128. font-family:"ArialMT", "Arial", sans-serif;
  10129. font-weight:400;
  10130. font-style:normal;
  10131. font-size:13px;
  10132. letter-spacing:normal;
  10133. color:#AAAAAA;
  10134. vertical-align:none;
  10135. text-align:left;
  10136. text-transform:none;
  10137. background-color:transparent;
  10138. border-color:transparent;
  10139. }
  10140. #u6783_div {
  10141. border-width:0px;
  10142. position:absolute;
  10143. left:0px;
  10144. top:0px;
  10145. width:95px;
  10146. height:30px;
  10147. background:inherit;
  10148. background-color:rgba(242, 242, 242, 1);
  10149. border-radius:0px;
  10150. filter:drop-shadow(none);
  10151. transition:none;
  10152. color:#AAAAAA;
  10153. }
  10154. #u6783 {
  10155. border-width:0px;
  10156. position:absolute;
  10157. left:1613px;
  10158. top:353px;
  10159. width:95px;
  10160. height:30px;
  10161. display:flex;
  10162. transition:none;
  10163. transform-origin:50% 50%;
  10164. color:#AAAAAA;
  10165. }
  10166. #u6783 .text {
  10167. position:absolute;
  10168. align-self:flex-start;
  10169. padding:2px 2px 2px 0px;
  10170. box-sizing:border-box;
  10171. width:100%;
  10172. }
  10173. #u6783_div.disabled {
  10174. border-width:0px;
  10175. position:absolute;
  10176. left:0px;
  10177. top:0px;
  10178. width:95px;
  10179. height:30px;
  10180. background:inherit;
  10181. background-color:rgba(240, 240, 240, 1);
  10182. border-radius:0px;
  10183. filter:drop-shadow(none);
  10184. transition:none;
  10185. color:#AAAAAA;
  10186. }
  10187. #u6783.disabled {
  10188. }
  10189. .u6783_input_option {
  10190. }
  10191. #u6784 {
  10192. border-width:0px;
  10193. position:absolute;
  10194. left:0px;
  10195. top:0px;
  10196. width:0px;
  10197. height:0px;
  10198. }
  10199. #u6785_div {
  10200. border-width:0px;
  10201. position:absolute;
  10202. left:0px;
  10203. top:0px;
  10204. width:280px;
  10205. height:40px;
  10206. background:inherit;
  10207. background-color:rgba(255, 255, 255, 1);
  10208. box-sizing:border-box;
  10209. border-width:1px;
  10210. border-style:solid;
  10211. border-color:rgba(170, 170, 170, 1);
  10212. border-radius:4px;
  10213. filter:drop-shadow(none);
  10214. transition:none;
  10215. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10216. font-weight:400;
  10217. font-style:normal;
  10218. text-align:right;
  10219. }
  10220. #u6785 {
  10221. border-width:0px;
  10222. position:absolute;
  10223. left:1737px;
  10224. top:348px;
  10225. width:280px;
  10226. height:40px;
  10227. display:flex;
  10228. transition:none;
  10229. transform-origin:50% 50%;
  10230. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10231. font-weight:400;
  10232. font-style:normal;
  10233. text-align:right;
  10234. }
  10235. #u6785 .text {
  10236. position:absolute;
  10237. align-self:center;
  10238. padding:2px 10px 2px 10px;
  10239. box-sizing:border-box;
  10240. width:100%;
  10241. }
  10242. #u6785_text {
  10243. border-width:0px;
  10244. word-wrap:break-word;
  10245. text-transform:none;
  10246. visibility:hidden;
  10247. }
  10248. #u6786_input {
  10249. position:absolute;
  10250. left:0px;
  10251. top:0px;
  10252. width:223px;
  10253. height:31px;
  10254. padding:2px 10px 2px 2px;
  10255. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10256. font-weight:400;
  10257. font-style:normal;
  10258. font-size:13px;
  10259. letter-spacing:normal;
  10260. color:#333333;
  10261. vertical-align:none;
  10262. text-align:left;
  10263. text-transform:none;
  10264. background-color:transparent;
  10265. border-color:transparent;
  10266. }
  10267. #u6786_input.hint {
  10268. position:absolute;
  10269. left:0px;
  10270. top:0px;
  10271. width:223px;
  10272. height:31px;
  10273. padding:2px 10px 2px 2px;
  10274. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10275. font-weight:400;
  10276. font-style:normal;
  10277. font-size:13px;
  10278. letter-spacing:normal;
  10279. color:#999999;
  10280. vertical-align:none;
  10281. text-align:left;
  10282. text-transform:none;
  10283. background-color:transparent;
  10284. border-color:transparent;
  10285. }
  10286. #u6786_input.disabled {
  10287. position:absolute;
  10288. left:0px;
  10289. top:0px;
  10290. width:223px;
  10291. height:31px;
  10292. padding:2px 10px 2px 2px;
  10293. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10294. font-weight:400;
  10295. font-style:normal;
  10296. font-size:13px;
  10297. letter-spacing:normal;
  10298. color:#333333;
  10299. vertical-align:none;
  10300. text-align:left;
  10301. text-transform:none;
  10302. background-color:transparent;
  10303. border-color:transparent;
  10304. }
  10305. #u6786_input.hint.disabled {
  10306. position:absolute;
  10307. left:0px;
  10308. top:0px;
  10309. width:223px;
  10310. height:31px;
  10311. padding:2px 10px 2px 2px;
  10312. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10313. font-weight:400;
  10314. font-style:normal;
  10315. font-size:13px;
  10316. letter-spacing:normal;
  10317. color:#999999;
  10318. vertical-align:none;
  10319. text-align:left;
  10320. text-transform:none;
  10321. background-color:transparent;
  10322. border-color:transparent;
  10323. }
  10324. #u6786_div {
  10325. border-width:0px;
  10326. position:absolute;
  10327. left:0px;
  10328. top:0px;
  10329. width:223px;
  10330. height:31px;
  10331. background:inherit;
  10332. background-color:rgba(255, 255, 255, 0);
  10333. border-radius:0px;
  10334. filter:drop-shadow(none);
  10335. transition:none;
  10336. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10337. font-weight:400;
  10338. font-style:normal;
  10339. color:#333333;
  10340. }
  10341. #u6786 {
  10342. border-width:0px;
  10343. position:absolute;
  10344. left:1741px;
  10345. top:353px;
  10346. width:223px;
  10347. height:31px;
  10348. display:flex;
  10349. transition:none;
  10350. transform-origin:50% 50%;
  10351. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10352. font-weight:400;
  10353. font-style:normal;
  10354. color:#333333;
  10355. }
  10356. #u6786 .text {
  10357. position:absolute;
  10358. align-self:center;
  10359. padding:2px 10px 2px 2px;
  10360. box-sizing:border-box;
  10361. width:100%;
  10362. }
  10363. #u6786_div.hint {
  10364. border-width:0px;
  10365. position:absolute;
  10366. left:0px;
  10367. top:0px;
  10368. width:223px;
  10369. height:31px;
  10370. background:inherit;
  10371. background-color:rgba(255, 255, 255, 0);
  10372. border-radius:0px;
  10373. filter:drop-shadow(none);
  10374. transition:none;
  10375. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10376. font-weight:400;
  10377. font-style:normal;
  10378. color:#333333;
  10379. }
  10380. #u6786.hint {
  10381. }
  10382. #u6786_div.disabled {
  10383. border-width:0px;
  10384. position:absolute;
  10385. left:0px;
  10386. top:0px;
  10387. width:223px;
  10388. height:31px;
  10389. background:inherit;
  10390. background-color:rgba(240, 240, 240, 1);
  10391. border-radius:0px;
  10392. filter:drop-shadow(none);
  10393. transition:none;
  10394. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10395. font-weight:400;
  10396. font-style:normal;
  10397. color:#333333;
  10398. }
  10399. #u6786.disabled {
  10400. }
  10401. #u6786_div.hint.disabled {
  10402. border-width:0px;
  10403. position:absolute;
  10404. left:0px;
  10405. top:0px;
  10406. width:223px;
  10407. height:31px;
  10408. background:inherit;
  10409. background-color:rgba(240, 240, 240, 1);
  10410. border-radius:0px;
  10411. filter:drop-shadow(none);
  10412. transition:none;
  10413. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10414. font-weight:400;
  10415. font-style:normal;
  10416. color:#333333;
  10417. }
  10418. #u6786.hint.disabled {
  10419. }
  10420. #u6787 {
  10421. border-width:0px;
  10422. position:absolute;
  10423. left:0px;
  10424. top:0px;
  10425. width:0px;
  10426. height:0px;
  10427. }
  10428. #u6788_div {
  10429. border-width:0px;
  10430. position:absolute;
  10431. left:0px;
  10432. top:0px;
  10433. width:102px;
  10434. height:40px;
  10435. background:inherit;
  10436. background-color:rgba(242, 242, 242, 1);
  10437. box-sizing:border-box;
  10438. border-width:1px;
  10439. border-style:solid;
  10440. border-color:rgba(170, 170, 170, 1);
  10441. border-radius:0px;
  10442. filter:drop-shadow(none);
  10443. transition:none;
  10444. }
  10445. #u6788 {
  10446. border-width:0px;
  10447. position:absolute;
  10448. left:1911px;
  10449. top:348px;
  10450. width:102px;
  10451. height:40px;
  10452. display:flex;
  10453. transition:none;
  10454. transform-origin:50% 50%;
  10455. }
  10456. #u6788 .text {
  10457. position:absolute;
  10458. align-self:center;
  10459. padding:2px 2px 2px 0px;
  10460. box-sizing:border-box;
  10461. width:100%;
  10462. }
  10463. #u6788_text {
  10464. border-width:0px;
  10465. word-wrap:break-word;
  10466. text-transform:none;
  10467. visibility:hidden;
  10468. }
  10469. #u6789_input {
  10470. position:absolute;
  10471. left:0px;
  10472. top:0px;
  10473. width:100px;
  10474. height:30px;
  10475. padding:2px 2px 2px 0px;
  10476. font-family:"ArialMT", "Arial", sans-serif;
  10477. font-weight:400;
  10478. font-style:normal;
  10479. font-size:13px;
  10480. letter-spacing:normal;
  10481. color:#AAAAAA;
  10482. vertical-align:none;
  10483. text-align:left;
  10484. text-transform:none;
  10485. background-color:transparent;
  10486. border-color:transparent;
  10487. }
  10488. #u6789_input.disabled {
  10489. position:absolute;
  10490. left:0px;
  10491. top:0px;
  10492. width:100px;
  10493. height:30px;
  10494. padding:2px 2px 2px 0px;
  10495. font-family:"ArialMT", "Arial", sans-serif;
  10496. font-weight:400;
  10497. font-style:normal;
  10498. font-size:13px;
  10499. letter-spacing:normal;
  10500. color:#AAAAAA;
  10501. vertical-align:none;
  10502. text-align:left;
  10503. text-transform:none;
  10504. background-color:transparent;
  10505. border-color:transparent;
  10506. }
  10507. #u6789_div {
  10508. border-width:0px;
  10509. position:absolute;
  10510. left:0px;
  10511. top:0px;
  10512. width:100px;
  10513. height:30px;
  10514. background:inherit;
  10515. background-color:rgba(242, 242, 242, 1);
  10516. border-radius:0px;
  10517. filter:drop-shadow(none);
  10518. transition:none;
  10519. color:#AAAAAA;
  10520. }
  10521. #u6789 {
  10522. border-width:0px;
  10523. position:absolute;
  10524. left:1913px;
  10525. top:353px;
  10526. width:100px;
  10527. height:30px;
  10528. display:flex;
  10529. transition:none;
  10530. transform-origin:50% 50%;
  10531. color:#AAAAAA;
  10532. }
  10533. #u6789 .text {
  10534. position:absolute;
  10535. align-self:flex-start;
  10536. padding:2px 2px 2px 0px;
  10537. box-sizing:border-box;
  10538. width:100%;
  10539. }
  10540. #u6789_div.disabled {
  10541. border-width:0px;
  10542. position:absolute;
  10543. left:0px;
  10544. top:0px;
  10545. width:100px;
  10546. height:30px;
  10547. background:inherit;
  10548. background-color:rgba(240, 240, 240, 1);
  10549. border-radius:0px;
  10550. filter:drop-shadow(none);
  10551. transition:none;
  10552. color:#AAAAAA;
  10553. }
  10554. #u6789.disabled {
  10555. }
  10556. .u6789_input_option {
  10557. }
  10558. #u6790 {
  10559. border-width:0px;
  10560. position:absolute;
  10561. left:0px;
  10562. top:0px;
  10563. width:0px;
  10564. height:0px;
  10565. }
  10566. #u6791_div {
  10567. border-width:0px;
  10568. position:absolute;
  10569. left:0px;
  10570. top:0px;
  10571. width:280px;
  10572. height:40px;
  10573. background:inherit;
  10574. background-color:rgba(255, 255, 255, 1);
  10575. box-sizing:border-box;
  10576. border-width:1px;
  10577. border-style:solid;
  10578. border-color:rgba(170, 170, 170, 1);
  10579. border-radius:4px;
  10580. filter:drop-shadow(none);
  10581. transition:none;
  10582. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10583. font-weight:400;
  10584. font-style:normal;
  10585. text-align:right;
  10586. }
  10587. #u6791 {
  10588. border-width:0px;
  10589. position:absolute;
  10590. left:1433px;
  10591. top:271px;
  10592. width:280px;
  10593. height:40px;
  10594. display:flex;
  10595. transition:none;
  10596. transform-origin:50% 50%;
  10597. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10598. font-weight:400;
  10599. font-style:normal;
  10600. text-align:right;
  10601. }
  10602. #u6791 .text {
  10603. position:absolute;
  10604. align-self:center;
  10605. padding:2px 10px 2px 10px;
  10606. box-sizing:border-box;
  10607. width:100%;
  10608. }
  10609. #u6791_text {
  10610. border-width:0px;
  10611. word-wrap:break-word;
  10612. text-transform:none;
  10613. visibility:hidden;
  10614. }
  10615. #u6792_input {
  10616. position:absolute;
  10617. left:0px;
  10618. top:0px;
  10619. width:223px;
  10620. height:31px;
  10621. padding:2px 10px 2px 2px;
  10622. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10623. font-weight:400;
  10624. font-style:normal;
  10625. font-size:13px;
  10626. letter-spacing:normal;
  10627. color:#333333;
  10628. vertical-align:none;
  10629. text-align:left;
  10630. text-transform:none;
  10631. background-color:transparent;
  10632. border-color:transparent;
  10633. }
  10634. #u6792_input.hint {
  10635. position:absolute;
  10636. left:0px;
  10637. top:0px;
  10638. width:223px;
  10639. height:31px;
  10640. padding:2px 10px 2px 2px;
  10641. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10642. font-weight:400;
  10643. font-style:normal;
  10644. font-size:13px;
  10645. letter-spacing:normal;
  10646. color:#999999;
  10647. vertical-align:none;
  10648. text-align:left;
  10649. text-transform:none;
  10650. background-color:transparent;
  10651. border-color:transparent;
  10652. }
  10653. #u6792_input.disabled {
  10654. position:absolute;
  10655. left:0px;
  10656. top:0px;
  10657. width:223px;
  10658. height:31px;
  10659. padding:2px 10px 2px 2px;
  10660. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10661. font-weight:400;
  10662. font-style:normal;
  10663. font-size:13px;
  10664. letter-spacing:normal;
  10665. color:#333333;
  10666. vertical-align:none;
  10667. text-align:left;
  10668. text-transform:none;
  10669. background-color:transparent;
  10670. border-color:transparent;
  10671. }
  10672. #u6792_input.hint.disabled {
  10673. position:absolute;
  10674. left:0px;
  10675. top:0px;
  10676. width:223px;
  10677. height:31px;
  10678. padding:2px 10px 2px 2px;
  10679. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10680. font-weight:400;
  10681. font-style:normal;
  10682. font-size:13px;
  10683. letter-spacing:normal;
  10684. color:#999999;
  10685. vertical-align:none;
  10686. text-align:left;
  10687. text-transform:none;
  10688. background-color:transparent;
  10689. border-color:transparent;
  10690. }
  10691. #u6792_div {
  10692. border-width:0px;
  10693. position:absolute;
  10694. left:0px;
  10695. top:0px;
  10696. width:223px;
  10697. height:31px;
  10698. background:inherit;
  10699. background-color:rgba(255, 255, 255, 0);
  10700. border-radius:0px;
  10701. filter:drop-shadow(none);
  10702. transition:none;
  10703. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10704. font-weight:400;
  10705. font-style:normal;
  10706. color:#333333;
  10707. }
  10708. #u6792 {
  10709. border-width:0px;
  10710. position:absolute;
  10711. left:1437px;
  10712. top:276px;
  10713. width:223px;
  10714. height:31px;
  10715. display:flex;
  10716. transition:none;
  10717. transform-origin:50% 50%;
  10718. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10719. font-weight:400;
  10720. font-style:normal;
  10721. color:#333333;
  10722. }
  10723. #u6792 .text {
  10724. position:absolute;
  10725. align-self:center;
  10726. padding:2px 10px 2px 2px;
  10727. box-sizing:border-box;
  10728. width:100%;
  10729. }
  10730. #u6792_div.hint {
  10731. border-width:0px;
  10732. position:absolute;
  10733. left:0px;
  10734. top:0px;
  10735. width:223px;
  10736. height:31px;
  10737. background:inherit;
  10738. background-color:rgba(255, 255, 255, 0);
  10739. border-radius:0px;
  10740. filter:drop-shadow(none);
  10741. transition:none;
  10742. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10743. font-weight:400;
  10744. font-style:normal;
  10745. color:#333333;
  10746. }
  10747. #u6792.hint {
  10748. }
  10749. #u6792_div.disabled {
  10750. border-width:0px;
  10751. position:absolute;
  10752. left:0px;
  10753. top:0px;
  10754. width:223px;
  10755. height:31px;
  10756. background:inherit;
  10757. background-color:rgba(240, 240, 240, 1);
  10758. border-radius:0px;
  10759. filter:drop-shadow(none);
  10760. transition:none;
  10761. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10762. font-weight:400;
  10763. font-style:normal;
  10764. color:#333333;
  10765. }
  10766. #u6792.disabled {
  10767. }
  10768. #u6792_div.hint.disabled {
  10769. border-width:0px;
  10770. position:absolute;
  10771. left:0px;
  10772. top:0px;
  10773. width:223px;
  10774. height:31px;
  10775. background:inherit;
  10776. background-color:rgba(240, 240, 240, 1);
  10777. border-radius:0px;
  10778. filter:drop-shadow(none);
  10779. transition:none;
  10780. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10781. font-weight:400;
  10782. font-style:normal;
  10783. color:#333333;
  10784. }
  10785. #u6792.hint.disabled {
  10786. }
  10787. #u6793_div {
  10788. border-width:0px;
  10789. position:absolute;
  10790. left:0px;
  10791. top:0px;
  10792. width:67px;
  10793. height:30px;
  10794. background:inherit;
  10795. background-color:rgba(255, 255, 255, 0);
  10796. border-top:0px;
  10797. border-right:0px;
  10798. border-bottom:0px;
  10799. border-radius:0px;
  10800. border-top-left-radius:0px;
  10801. border-bottom-left-radius:0px;
  10802. filter:drop-shadow(none);
  10803. transition:none;
  10804. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10805. font-weight:400;
  10806. font-style:normal;
  10807. font-size:14px;
  10808. }
  10809. #u6793 {
  10810. border-width:0px;
  10811. position:absolute;
  10812. left:1131px;
  10813. top:478px;
  10814. width:67px;
  10815. height:30px;
  10816. display:flex;
  10817. transition:none;
  10818. transform-origin:50% 50%;
  10819. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10820. font-weight:400;
  10821. font-style:normal;
  10822. font-size:14px;
  10823. }
  10824. #u6793 .text {
  10825. position:absolute;
  10826. align-self:center;
  10827. padding:5px 10px 5px 0px;
  10828. box-sizing:border-box;
  10829. width:100%;
  10830. }
  10831. #u6793_text {
  10832. border-width:0px;
  10833. white-space:nowrap;
  10834. text-transform:none;
  10835. }
  10836. #u6794_div {
  10837. border-width:0px;
  10838. position:absolute;
  10839. left:0px;
  10840. top:0px;
  10841. width:122px;
  10842. height:122px;
  10843. background:inherit;
  10844. background-color:rgba(255, 255, 255, 1);
  10845. box-sizing:border-box;
  10846. border-width:1px;
  10847. border-style:solid;
  10848. border-color:rgba(170, 170, 170, 1);
  10849. border-radius:4px;
  10850. filter:drop-shadow(none);
  10851. transition:none;
  10852. font-size:38px;
  10853. }
  10854. #u6794 {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:1131px;
  10858. top:508px;
  10859. width:122px;
  10860. height:122px;
  10861. display:flex;
  10862. transition:none;
  10863. transform-origin:50% 50%;
  10864. font-size:38px;
  10865. }
  10866. #u6794 .text {
  10867. position:absolute;
  10868. align-self:center;
  10869. padding:2px 2px 2px 0px;
  10870. box-sizing:border-box;
  10871. width:100%;
  10872. }
  10873. #u6794_text {
  10874. border-width:0px;
  10875. word-wrap:break-word;
  10876. text-transform:none;
  10877. }
  10878. #u6795_div {
  10879. border-width:0px;
  10880. position:absolute;
  10881. left:0px;
  10882. top:0px;
  10883. width:137px;
  10884. height:30px;
  10885. background:inherit;
  10886. background-color:rgba(255, 255, 255, 0);
  10887. border-top:0px;
  10888. border-right:0px;
  10889. border-bottom:0px;
  10890. border-radius:0px;
  10891. border-top-left-radius:0px;
  10892. border-bottom-left-radius:0px;
  10893. filter:drop-shadow(none);
  10894. transition:none;
  10895. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10896. font-weight:400;
  10897. font-style:normal;
  10898. font-size:14px;
  10899. }
  10900. #u6795 {
  10901. border-width:0px;
  10902. position:absolute;
  10903. left:1135px;
  10904. top:773px;
  10905. width:137px;
  10906. height:30px;
  10907. display:flex;
  10908. transition:none;
  10909. transform-origin:50% 50%;
  10910. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10911. font-weight:400;
  10912. font-style:normal;
  10913. font-size:14px;
  10914. }
  10915. #u6795 .text {
  10916. position:absolute;
  10917. align-self:center;
  10918. padding:5px 10px 5px 0px;
  10919. box-sizing:border-box;
  10920. width:100%;
  10921. }
  10922. #u6795_text {
  10923. border-width:0px;
  10924. word-wrap:break-word;
  10925. text-transform:none;
  10926. }
  10927. #u6796 {
  10928. border-width:0px;
  10929. position:absolute;
  10930. left:1135px;
  10931. top:803px;
  10932. width:872px;
  10933. height:249px;
  10934. display:flex;
  10935. transition:none;
  10936. }
  10937. #u6796 .text {
  10938. position:absolute;
  10939. align-self:center;
  10940. padding:2px 2px 2px 2px;
  10941. box-sizing:border-box;
  10942. width:100%;
  10943. }
  10944. #u6796_img {
  10945. border-width:0px;
  10946. position:absolute;
  10947. left:0px;
  10948. top:0px;
  10949. width:872px;
  10950. height:249px;
  10951. }
  10952. #u6796_text {
  10953. border-width:0px;
  10954. word-wrap:break-word;
  10955. text-transform:none;
  10956. visibility:hidden;
  10957. }
  10958. #u6797 {
  10959. border-width:0px;
  10960. position:absolute;
  10961. left:0px;
  10962. top:0px;
  10963. width:0px;
  10964. height:0px;
  10965. }
  10966. #u6798_div {
  10967. border-width:0px;
  10968. position:absolute;
  10969. left:0px;
  10970. top:0px;
  10971. width:1000px;
  10972. height:50px;
  10973. background:inherit;
  10974. background-color:rgba(255, 255, 255, 1);
  10975. box-sizing:border-box;
  10976. border-width:1px;
  10977. border-style:solid;
  10978. border-color:rgba(215, 215, 215, 1);
  10979. border-radius:0px;
  10980. filter:drop-shadow(none);
  10981. transition:none;
  10982. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10983. font-weight:400;
  10984. font-style:normal;
  10985. font-size:14px;
  10986. color:#AAAAAA;
  10987. text-align:center;
  10988. line-height:30px;
  10989. }
  10990. #u6798 {
  10991. border-width:0px;
  10992. position:absolute;
  10993. left:1082px;
  10994. top:1189px;
  10995. width:1000px;
  10996. height:50px;
  10997. display:flex;
  10998. transition:none;
  10999. transform-origin:50% 50%;
  11000. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11001. font-weight:400;
  11002. font-style:normal;
  11003. font-size:14px;
  11004. color:#AAAAAA;
  11005. text-align:center;
  11006. line-height:30px;
  11007. }
  11008. #u6798 .text {
  11009. position:absolute;
  11010. align-self:center;
  11011. padding:5px 10px 5px 10px;
  11012. box-sizing:border-box;
  11013. width:100%;
  11014. }
  11015. #u6798_text {
  11016. border-width:0px;
  11017. word-wrap:break-word;
  11018. text-transform:none;
  11019. visibility:hidden;
  11020. }
  11021. #u6799_div {
  11022. border-width:0px;
  11023. position:absolute;
  11024. left:0px;
  11025. top:0px;
  11026. width:80px;
  11027. height:30px;
  11028. background:inherit;
  11029. background-color:rgba(24, 144, 255, 1);
  11030. border-radius:4px;
  11031. filter:drop-shadow(none);
  11032. transition:none;
  11033. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11034. font-weight:400;
  11035. font-style:normal;
  11036. font-size:14px;
  11037. color:#FFFFFF;
  11038. }
  11039. #u6799 {
  11040. border-width:0px;
  11041. position:absolute;
  11042. left:1980px;
  11043. top:1199px;
  11044. width:80px;
  11045. height:30px;
  11046. display:flex;
  11047. transition:none;
  11048. transform-origin:50% 50%;
  11049. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11050. font-weight:400;
  11051. font-style:normal;
  11052. font-size:14px;
  11053. color:#FFFFFF;
  11054. }
  11055. #u6799 .text {
  11056. position:absolute;
  11057. align-self:center;
  11058. padding:2px 2px 2px 2px;
  11059. box-sizing:border-box;
  11060. width:100%;
  11061. }
  11062. #u6799_text {
  11063. border-width:0px;
  11064. word-wrap:break-word;
  11065. text-transform:none;
  11066. }
  11067. #u6800_div {
  11068. border-width:0px;
  11069. position:absolute;
  11070. left:0px;
  11071. top:0px;
  11072. width:80px;
  11073. height:30px;
  11074. background:inherit;
  11075. background-color:rgba(255, 255, 255, 1);
  11076. box-sizing:border-box;
  11077. border-width:1px;
  11078. border-style:solid;
  11079. border-color:rgba(121, 121, 121, 1);
  11080. border-radius:4px;
  11081. filter:drop-shadow(none);
  11082. transition:none;
  11083. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11084. font-weight:400;
  11085. font-style:normal;
  11086. font-size:14px;
  11087. }
  11088. #u6800 {
  11089. border-width:0px;
  11090. position:absolute;
  11091. left:1890px;
  11092. top:1199px;
  11093. width:80px;
  11094. height:30px;
  11095. display:flex;
  11096. transition:none;
  11097. transform-origin:50% 50%;
  11098. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11099. font-weight:400;
  11100. font-style:normal;
  11101. font-size:14px;
  11102. }
  11103. #u6800 .text {
  11104. position:absolute;
  11105. align-self:center;
  11106. padding:2px 2px 2px 2px;
  11107. box-sizing:border-box;
  11108. width:100%;
  11109. }
  11110. #u6800_text {
  11111. border-width:0px;
  11112. word-wrap:break-word;
  11113. text-transform:none;
  11114. }
  11115. #u6801 {
  11116. border-width:0px;
  11117. position:absolute;
  11118. left:0px;
  11119. top:0px;
  11120. width:0px;
  11121. height:0px;
  11122. }
  11123. #u6802_div {
  11124. border-width:0px;
  11125. position:absolute;
  11126. left:0px;
  11127. top:0px;
  11128. width:280px;
  11129. height:40px;
  11130. background:inherit;
  11131. background-color:rgba(255, 255, 255, 1);
  11132. box-sizing:border-box;
  11133. border-width:1px;
  11134. border-style:solid;
  11135. border-color:rgba(170, 170, 170, 1);
  11136. border-radius:4px;
  11137. filter:drop-shadow(none);
  11138. transition:none;
  11139. }
  11140. #u6802 {
  11141. border-width:0px;
  11142. position:absolute;
  11143. left:1131px;
  11144. top:428px;
  11145. width:280px;
  11146. height:40px;
  11147. display:flex;
  11148. transition:none;
  11149. transform-origin:50% 50%;
  11150. }
  11151. #u6802 .text {
  11152. position:absolute;
  11153. align-self:center;
  11154. padding:2px 2px 2px 0px;
  11155. box-sizing:border-box;
  11156. width:100%;
  11157. }
  11158. #u6802_text {
  11159. border-width:0px;
  11160. word-wrap:break-word;
  11161. text-transform:none;
  11162. visibility:hidden;
  11163. }
  11164. #u6803_input {
  11165. position:absolute;
  11166. left:0px;
  11167. top:0px;
  11168. width:273px;
  11169. height:30px;
  11170. padding:2px 2px 2px 0px;
  11171. font-family:"ArialMT", "Arial", sans-serif;
  11172. font-weight:400;
  11173. font-style:normal;
  11174. font-size:13px;
  11175. letter-spacing:normal;
  11176. color:#AAAAAA;
  11177. vertical-align:none;
  11178. text-align:left;
  11179. text-transform:none;
  11180. background-color:transparent;
  11181. border-color:transparent;
  11182. }
  11183. #u6803_input.disabled {
  11184. position:absolute;
  11185. left:0px;
  11186. top:0px;
  11187. width:273px;
  11188. height:30px;
  11189. padding:2px 2px 2px 0px;
  11190. font-family:"ArialMT", "Arial", sans-serif;
  11191. font-weight:400;
  11192. font-style:normal;
  11193. font-size:13px;
  11194. letter-spacing:normal;
  11195. color:#AAAAAA;
  11196. vertical-align:none;
  11197. text-align:left;
  11198. text-transform:none;
  11199. background-color:transparent;
  11200. border-color:transparent;
  11201. }
  11202. #u6803_div {
  11203. border-width:0px;
  11204. position:absolute;
  11205. left:0px;
  11206. top:0px;
  11207. width:273px;
  11208. height:30px;
  11209. background:inherit;
  11210. background-color:rgba(255, 255, 255, 1);
  11211. border-radius:0px;
  11212. filter:drop-shadow(none);
  11213. transition:none;
  11214. color:#AAAAAA;
  11215. }
  11216. #u6803 {
  11217. border-width:0px;
  11218. position:absolute;
  11219. left:1136px;
  11220. top:433px;
  11221. width:273px;
  11222. height:30px;
  11223. display:flex;
  11224. transition:none;
  11225. transform-origin:50% 50%;
  11226. color:#AAAAAA;
  11227. }
  11228. #u6803 .text {
  11229. position:absolute;
  11230. align-self:flex-start;
  11231. padding:2px 2px 2px 0px;
  11232. box-sizing:border-box;
  11233. width:100%;
  11234. }
  11235. #u6803_div.disabled {
  11236. border-width:0px;
  11237. position:absolute;
  11238. left:0px;
  11239. top:0px;
  11240. width:273px;
  11241. height:30px;
  11242. background:inherit;
  11243. background-color:rgba(240, 240, 240, 1);
  11244. border-radius:0px;
  11245. filter:drop-shadow(none);
  11246. transition:none;
  11247. color:#AAAAAA;
  11248. }
  11249. #u6803.disabled {
  11250. }
  11251. .u6803_input_option {
  11252. }