styles.css 119 KB

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