styles.css 124 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-75px;
  6. width:1000px;
  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. #u14615 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u14616_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1716px;
  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. #u14616 {
  46. border-width:0px;
  47. position:absolute;
  48. left:75px;
  49. top:73px;
  50. width:1000px;
  51. height:1716px;
  52. display:flex;
  53. }
  54. #u14616 .text {
  55. position:absolute;
  56. align-self:center;
  57. padding:2px 2px 2px 2px;
  58. box-sizing:border-box;
  59. width:100%;
  60. }
  61. #u14616_text {
  62. border-width:0px;
  63. word-wrap:break-word;
  64. text-transform:none;
  65. visibility:hidden;
  66. }
  67. #u14617_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. #u14617 {
  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. #u14617 .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. #u14617_text {
  111. border-width:0px;
  112. white-space:nowrap;
  113. text-transform:none;
  114. }
  115. #u14618_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. #u14618 {
  140. border-width:0px;
  141. position:absolute;
  142. left:114px;
  143. top:302px;
  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. #u14618 .text {
  153. position:absolute;
  154. align-self:center;
  155. padding:5px 10px 5px 0px;
  156. box-sizing:border-box;
  157. width:100%;
  158. }
  159. #u14618_text {
  160. border-width:0px;
  161. white-space:nowrap;
  162. text-transform:none;
  163. }
  164. #u14619 {
  165. border-width:0px;
  166. position:absolute;
  167. left:0px;
  168. top:0px;
  169. width:0px;
  170. height:0px;
  171. }
  172. #u14620_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. #u14620 {
  195. border-width:0px;
  196. position:absolute;
  197. left:114px;
  198. top:332px;
  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. #u14620 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 10px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u14620_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u14621_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. #u14621_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. #u14621_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. #u14621 {
  278. border-width:0px;
  279. position:absolute;
  280. left:121px;
  281. top:337px;
  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. #u14621 .text {
  291. position:absolute;
  292. align-self:center;
  293. padding:2px 2px 2px 2px;
  294. box-sizing:border-box;
  295. width:100%;
  296. }
  297. #u14621_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. #u14621.disabled {
  317. }
  318. #u14622 {
  319. border-width:0px;
  320. position:absolute;
  321. left:0px;
  322. top:0px;
  323. width:0px;
  324. height:0px;
  325. }
  326. #u14623_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. #u14623 {
  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. #u14623 .text {
  366. position:absolute;
  367. align-self:center;
  368. padding:5px 10px 5px 0px;
  369. box-sizing:border-box;
  370. width:100%;
  371. }
  372. #u14623_text {
  373. border-width:0px;
  374. word-wrap:break-word;
  375. text-transform:none;
  376. }
  377. #u14624_img {
  378. border-width:0px;
  379. position:absolute;
  380. left:0px;
  381. top:0px;
  382. width:13px;
  383. height:13px;
  384. }
  385. #u14624 {
  386. border-width:0px;
  387. position:absolute;
  388. left:1022px;
  389. top:91px;
  390. width:13px;
  391. height:13px;
  392. display:flex;
  393. }
  394. #u14624 .text {
  395. position:absolute;
  396. align-self:center;
  397. padding:2px 2px 2px 2px;
  398. box-sizing:border-box;
  399. width:100%;
  400. }
  401. #u14624_text {
  402. border-width:0px;
  403. word-wrap:break-word;
  404. text-transform:none;
  405. visibility:hidden;
  406. }
  407. #u14625 {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:0px;
  413. height:0px;
  414. }
  415. #u14626_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. #u14626 {
  441. border-width:0px;
  442. position:absolute;
  443. left:75px;
  444. top:1729px;
  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. #u14626 .text {
  457. position:absolute;
  458. align-self:center;
  459. padding:5px 10px 5px 10px;
  460. box-sizing:border-box;
  461. width:100%;
  462. }
  463. #u14626_text {
  464. border-width:0px;
  465. word-wrap:break-word;
  466. text-transform:none;
  467. visibility:hidden;
  468. }
  469. #u14627_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. #u14627 {
  490. border-width:0px;
  491. position:absolute;
  492. left:950px;
  493. top:1744px;
  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. #u14627 .text {
  504. position:absolute;
  505. align-self:center;
  506. padding:2px 2px 2px 2px;
  507. box-sizing:border-box;
  508. width:100%;
  509. }
  510. #u14627_text {
  511. border-width:0px;
  512. word-wrap:break-word;
  513. text-transform:none;
  514. }
  515. #u14628_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. #u14628 {
  538. border-width:0px;
  539. position:absolute;
  540. left:860px;
  541. top:1744px;
  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. #u14628 .text {
  551. position:absolute;
  552. align-self:center;
  553. padding:2px 2px 2px 2px;
  554. box-sizing:border-box;
  555. width:100%;
  556. }
  557. #u14628_text {
  558. border-width:0px;
  559. word-wrap:break-word;
  560. text-transform:none;
  561. }
  562. #u14629_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. #u14629 {
  589. border-width:0px;
  590. position:absolute;
  591. left:524px;
  592. top:567px;
  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. #u14629 .text {
  604. position:absolute;
  605. align-self:center;
  606. padding:5px 10px 5px 0px;
  607. box-sizing:border-box;
  608. width:100%;
  609. }
  610. #u14629_text {
  611. border-width:0px;
  612. word-wrap:break-word;
  613. text-transform:none;
  614. }
  615. #u14630_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. #u14630 {
  640. border-width:0px;
  641. position:absolute;
  642. left:114px;
  643. top:260px;
  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. #u14630 .text {
  653. position:absolute;
  654. align-self:center;
  655. padding:5px 10px 5px 0px;
  656. box-sizing:border-box;
  657. width:100%;
  658. }
  659. #u14630_text {
  660. border-width:0px;
  661. white-space:nowrap;
  662. text-transform:none;
  663. }
  664. #u14631_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. #u14631 {
  689. border-width:0px;
  690. position:absolute;
  691. left:434px;
  692. top:382px;
  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. #u14631 .text {
  702. position:absolute;
  703. align-self:center;
  704. padding:5px 10px 5px 0px;
  705. box-sizing:border-box;
  706. width:100%;
  707. }
  708. #u14631_text {
  709. border-width:0px;
  710. white-space:nowrap;
  711. text-transform:none;
  712. }
  713. #u14632 {
  714. border-width:0px;
  715. position:absolute;
  716. left:0px;
  717. top:0px;
  718. width:0px;
  719. height:0px;
  720. }
  721. #u14633_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. #u14633 {
  744. border-width:0px;
  745. position:absolute;
  746. left:434px;
  747. top:412px;
  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. #u14633 .text {
  757. position:absolute;
  758. align-self:center;
  759. padding:2px 2px 2px 10px;
  760. box-sizing:border-box;
  761. width:100%;
  762. }
  763. #u14633_text {
  764. border-width:0px;
  765. word-wrap:break-word;
  766. text-transform:none;
  767. visibility:hidden;
  768. }
  769. #u14634_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. #u14634_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. #u14634_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. #u14634 {
  827. border-width:0px;
  828. position:absolute;
  829. left:441px;
  830. top:417px;
  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. #u14634 .text {
  840. position:absolute;
  841. align-self:center;
  842. padding:2px 2px 2px 2px;
  843. box-sizing:border-box;
  844. width:100%;
  845. }
  846. #u14634_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. #u14634.disabled {
  866. }
  867. #u14635_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. #u14635 {
  892. border-width:0px;
  893. position:absolute;
  894. left:114px;
  895. top:542px;
  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. #u14635 .text {
  905. position:absolute;
  906. align-self:center;
  907. padding:5px 10px 5px 0px;
  908. box-sizing:border-box;
  909. width:100%;
  910. }
  911. #u14635_text {
  912. border-width:0px;
  913. white-space:nowrap;
  914. text-transform:none;
  915. }
  916. #u14636_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. #u14636 {
  941. border-width:0px;
  942. position:absolute;
  943. left:114px;
  944. top:382px;
  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. #u14636 .text {
  954. position:absolute;
  955. align-self:center;
  956. padding:5px 10px 5px 0px;
  957. box-sizing:border-box;
  958. width:100%;
  959. }
  960. #u14636_text {
  961. border-width:0px;
  962. white-space:nowrap;
  963. text-transform:none;
  964. }
  965. #u14637_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. #u14637 {
  990. border-width:0px;
  991. position:absolute;
  992. left:754px;
  993. top:542px;
  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. #u14637 .text {
  1003. position:absolute;
  1004. align-self:center;
  1005. padding:5px 10px 5px 0px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u14637_text {
  1010. border-width:0px;
  1011. white-space:nowrap;
  1012. text-transform:none;
  1013. }
  1014. #u14638 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:0px;
  1018. top:0px;
  1019. width:0px;
  1020. height:0px;
  1021. }
  1022. #u14639_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. #u14639 {
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:754px;
  1048. top:572px;
  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. #u14639 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 10px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u14639_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u14640_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. #u14640_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. #u14640_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. #u14640 {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:761px;
  1131. top:577px;
  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. #u14640 .text {
  1141. position:absolute;
  1142. align-self:center;
  1143. padding:2px 2px 2px 2px;
  1144. box-sizing:border-box;
  1145. width:100%;
  1146. }
  1147. #u14640_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. #u14640.disabled {
  1167. }
  1168. #u14641 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:0px;
  1172. top:0px;
  1173. width:0px;
  1174. height:0px;
  1175. }
  1176. #u14642_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. #u14642 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:114px;
  1198. top:572px;
  1199. width:280px;
  1200. height:40px;
  1201. display:flex;
  1202. }
  1203. #u14642 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u14642_text {
  1211. border-width:0px;
  1212. word-wrap:break-word;
  1213. text-transform:none;
  1214. visibility:hidden;
  1215. }
  1216. #u14643_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. #u14643_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. #u14643_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. #u14643 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:121px;
  1274. top:578px;
  1275. width:266px;
  1276. height:30px;
  1277. display:flex;
  1278. color:#AAAAAA;
  1279. }
  1280. #u14643 .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. #u14643_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. #u14643.disabled {
  1304. }
  1305. .u14643_input_option {
  1306. }
  1307. #u14644_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. #u14644 {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:434px;
  1335. top:537px;
  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. #u14644 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:5px 10px 5px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u14644_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u14645_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. #u14645 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:434px;
  1382. top:567px;
  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. #u14645 .text {
  1392. position:absolute;
  1393. align-self:center;
  1394. padding:2px 2px 2px 2px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u14645_text {
  1399. border-width:0px;
  1400. word-wrap:break-word;
  1401. text-transform:none;
  1402. }
  1403. #u14646_div {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:0px;
  1407. top:0px;
  1408. width:67px;
  1409. height:30px;
  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-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:14px;
  1426. }
  1427. #u14646 {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:754px;
  1431. top:382px;
  1432. width:67px;
  1433. height:30px;
  1434. display:flex;
  1435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1436. font-weight:400;
  1437. font-style:normal;
  1438. font-size:14px;
  1439. }
  1440. #u14646 .text {
  1441. position:absolute;
  1442. align-self:center;
  1443. padding:5px 10px 5px 0px;
  1444. box-sizing:border-box;
  1445. width:100%;
  1446. }
  1447. #u14646_text {
  1448. border-width:0px;
  1449. white-space:nowrap;
  1450. text-transform:none;
  1451. }
  1452. #u14647 {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:0px;
  1458. height:0px;
  1459. }
  1460. #u14648_div {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:280px;
  1466. height:40px;
  1467. background:inherit;
  1468. background-color:rgba(255, 255, 255, 1);
  1469. box-sizing:border-box;
  1470. border-width:1px;
  1471. border-style:solid;
  1472. border-color:rgba(170, 170, 170, 1);
  1473. border-radius:4px;
  1474. -moz-box-shadow:none;
  1475. -webkit-box-shadow:none;
  1476. box-shadow:none;
  1477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1478. font-weight:400;
  1479. font-style:normal;
  1480. text-align:left;
  1481. }
  1482. #u14648 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:754px;
  1486. top:412px;
  1487. width:280px;
  1488. height:40px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. text-align:left;
  1494. }
  1495. #u14648 .text {
  1496. position:absolute;
  1497. align-self:center;
  1498. padding:2px 2px 2px 10px;
  1499. box-sizing:border-box;
  1500. width:100%;
  1501. }
  1502. #u14648_text {
  1503. border-width:0px;
  1504. word-wrap:break-word;
  1505. text-transform:none;
  1506. visibility:hidden;
  1507. }
  1508. #u14649_input {
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:132px;
  1513. height:31px;
  1514. padding:2px 2px 2px 2px;
  1515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1516. font-weight:400;
  1517. font-style:normal;
  1518. font-size:13px;
  1519. letter-spacing:normal;
  1520. color:#AAAAAA;
  1521. vertical-align:none;
  1522. text-align:left;
  1523. text-transform:none;
  1524. background-color:transparent;
  1525. border-color:transparent;
  1526. }
  1527. #u14649_input.disabled {
  1528. position:absolute;
  1529. left:0px;
  1530. top:0px;
  1531. width:132px;
  1532. height:31px;
  1533. padding:2px 2px 2px 2px;
  1534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1535. font-weight:400;
  1536. font-style:normal;
  1537. font-size:13px;
  1538. letter-spacing:normal;
  1539. color:#AAAAAA;
  1540. vertical-align:none;
  1541. text-align:left;
  1542. text-transform:none;
  1543. background-color:transparent;
  1544. border-color:transparent;
  1545. }
  1546. #u14649_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:132px;
  1552. height:31px;
  1553. background:inherit;
  1554. background-color:rgba(255, 255, 255, 0);
  1555. border:none;
  1556. border-radius:0px;
  1557. -moz-box-shadow:none;
  1558. -webkit-box-shadow:none;
  1559. box-shadow:none;
  1560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1561. font-weight:400;
  1562. font-style:normal;
  1563. color:#AAAAAA;
  1564. }
  1565. #u14649 {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:761px;
  1569. top:417px;
  1570. width:132px;
  1571. height:31px;
  1572. display:flex;
  1573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1574. font-weight:400;
  1575. font-style:normal;
  1576. color:#AAAAAA;
  1577. }
  1578. #u14649 .text {
  1579. position:absolute;
  1580. align-self:center;
  1581. padding:2px 2px 2px 2px;
  1582. box-sizing:border-box;
  1583. width:100%;
  1584. }
  1585. #u14649_div.disabled {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:0px;
  1589. top:0px;
  1590. width:132px;
  1591. height:31px;
  1592. background:inherit;
  1593. background-color:rgba(240, 240, 240, 1);
  1594. border:none;
  1595. border-radius:0px;
  1596. -moz-box-shadow:none;
  1597. -webkit-box-shadow:none;
  1598. box-shadow:none;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. color:#AAAAAA;
  1603. }
  1604. #u14649.disabled {
  1605. }
  1606. #u14650 {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:0px;
  1612. height:0px;
  1613. }
  1614. #u14651_div {
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:0px;
  1618. top:0px;
  1619. width:280px;
  1620. height:40px;
  1621. background:inherit;
  1622. background-color:rgba(255, 255, 255, 1);
  1623. box-sizing:border-box;
  1624. border-width:1px;
  1625. border-style:solid;
  1626. border-color:rgba(170, 170, 170, 1);
  1627. border-radius:4px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. }
  1632. #u14651 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:114px;
  1636. top:412px;
  1637. width:280px;
  1638. height:40px;
  1639. display:flex;
  1640. }
  1641. #u14651 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 0px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u14651_text {
  1649. border-width:0px;
  1650. word-wrap:break-word;
  1651. text-transform:none;
  1652. visibility:hidden;
  1653. }
  1654. #u14652_input {
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:266px;
  1659. height:30px;
  1660. padding:2px 2px 2px 0px;
  1661. font-family:'ArialMT', 'Arial', sans-serif;
  1662. font-weight:400;
  1663. font-style:normal;
  1664. font-size:13px;
  1665. letter-spacing:normal;
  1666. color:#AAAAAA;
  1667. vertical-align:none;
  1668. text-align:left;
  1669. text-transform:none;
  1670. background-color:transparent;
  1671. border-color:transparent;
  1672. }
  1673. #u14652_input.disabled {
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:266px;
  1678. height:30px;
  1679. padding:2px 2px 2px 0px;
  1680. font-family:'ArialMT', 'Arial', sans-serif;
  1681. font-weight:400;
  1682. font-style:normal;
  1683. font-size:13px;
  1684. letter-spacing:normal;
  1685. color:#AAAAAA;
  1686. vertical-align:none;
  1687. text-align:left;
  1688. text-transform:none;
  1689. background-color:transparent;
  1690. border-color:transparent;
  1691. }
  1692. #u14652_div {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:266px;
  1698. height:30px;
  1699. background:inherit;
  1700. background-color:rgba(255, 255, 255, 1);
  1701. border:none;
  1702. border-radius:0px;
  1703. -moz-box-shadow:none;
  1704. -webkit-box-shadow:none;
  1705. box-shadow:none;
  1706. color:#AAAAAA;
  1707. }
  1708. #u14652 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:121px;
  1712. top:418px;
  1713. width:266px;
  1714. height:30px;
  1715. display:flex;
  1716. color:#AAAAAA;
  1717. }
  1718. #u14652 .text {
  1719. position:absolute;
  1720. align-self:flex-start;
  1721. padding:2px 2px 2px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u14652_div.disabled {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:0px;
  1729. top:0px;
  1730. width:266px;
  1731. height:30px;
  1732. background:inherit;
  1733. background-color:rgba(240, 240, 240, 1);
  1734. border:none;
  1735. border-radius:0px;
  1736. -moz-box-shadow:none;
  1737. -webkit-box-shadow:none;
  1738. box-shadow:none;
  1739. color:#AAAAAA;
  1740. }
  1741. #u14652.disabled {
  1742. }
  1743. .u14652_input_option {
  1744. }
  1745. #u14653_div {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:60px;
  1751. height:30px;
  1752. background:inherit;
  1753. background-color:rgba(255, 255, 255, 0);
  1754. border:none;
  1755. border-top:0px;
  1756. border-right:0px;
  1757. border-bottom:0px;
  1758. border-radius:0px;
  1759. border-top-left-radius:0px;
  1760. border-bottom-left-radius:0px;
  1761. -moz-box-shadow:none;
  1762. -webkit-box-shadow:none;
  1763. box-shadow:none;
  1764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1765. font-weight:400;
  1766. font-style:normal;
  1767. font-size:14px;
  1768. }
  1769. #u14653 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:114px;
  1773. top:462px;
  1774. width:60px;
  1775. height:30px;
  1776. display:flex;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:14px;
  1781. }
  1782. #u14653 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:5px 10px 5px 0px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u14653_text {
  1790. border-width:0px;
  1791. white-space:nowrap;
  1792. text-transform:none;
  1793. }
  1794. #u14654 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:0px;
  1800. height:0px;
  1801. }
  1802. #u14655_div {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:280px;
  1808. height:40px;
  1809. background:inherit;
  1810. background-color:rgba(255, 255, 255, 1);
  1811. box-sizing:border-box;
  1812. border-width:1px;
  1813. border-style:solid;
  1814. border-color:rgba(170, 170, 170, 1);
  1815. border-radius:4px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1820. font-weight:400;
  1821. font-style:normal;
  1822. text-align:left;
  1823. }
  1824. #u14655 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:114px;
  1828. top:492px;
  1829. width:280px;
  1830. height:40px;
  1831. display:flex;
  1832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. text-align:left;
  1836. }
  1837. #u14655 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 10px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u14655_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. visibility:hidden;
  1849. }
  1850. #u14656_input {
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:132px;
  1855. height:31px;
  1856. padding:2px 2px 2px 2px;
  1857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1858. font-weight:400;
  1859. font-style:normal;
  1860. font-size:13px;
  1861. letter-spacing:normal;
  1862. color:#AAAAAA;
  1863. vertical-align:none;
  1864. text-align:left;
  1865. text-transform:none;
  1866. background-color:transparent;
  1867. border-color:transparent;
  1868. }
  1869. #u14656_input.disabled {
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:132px;
  1874. height:31px;
  1875. padding:2px 2px 2px 2px;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:13px;
  1880. letter-spacing:normal;
  1881. color:#AAAAAA;
  1882. vertical-align:none;
  1883. text-align:left;
  1884. text-transform:none;
  1885. background-color:transparent;
  1886. border-color:transparent;
  1887. }
  1888. #u14656_div {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:132px;
  1894. height:31px;
  1895. background:inherit;
  1896. background-color:rgba(255, 255, 255, 0);
  1897. border:none;
  1898. border-radius:0px;
  1899. -moz-box-shadow:none;
  1900. -webkit-box-shadow:none;
  1901. box-shadow:none;
  1902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1903. font-weight:400;
  1904. font-style:normal;
  1905. color:#AAAAAA;
  1906. }
  1907. #u14656 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:121px;
  1911. top:497px;
  1912. width:132px;
  1913. height:31px;
  1914. display:flex;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. color:#AAAAAA;
  1919. }
  1920. #u14656 .text {
  1921. position:absolute;
  1922. align-self:center;
  1923. padding:2px 2px 2px 2px;
  1924. box-sizing:border-box;
  1925. width:100%;
  1926. }
  1927. #u14656_div.disabled {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:132px;
  1933. height:31px;
  1934. background:inherit;
  1935. background-color:rgba(240, 240, 240, 1);
  1936. border:none;
  1937. border-radius:0px;
  1938. -moz-box-shadow:none;
  1939. -webkit-box-shadow:none;
  1940. box-shadow:none;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. color:#AAAAAA;
  1945. }
  1946. #u14656.disabled {
  1947. }
  1948. #u14657_div {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:74px;
  1954. height:30px;
  1955. background:inherit;
  1956. background-color:rgba(255, 255, 255, 0);
  1957. border:none;
  1958. border-top:0px;
  1959. border-right:0px;
  1960. border-bottom:0px;
  1961. border-radius:0px;
  1962. border-top-left-radius:0px;
  1963. border-bottom-left-radius:0px;
  1964. -moz-box-shadow:none;
  1965. -webkit-box-shadow:none;
  1966. box-shadow:none;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:14px;
  1971. }
  1972. #u14657 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:434px;
  1976. top:462px;
  1977. width:74px;
  1978. height:30px;
  1979. display:flex;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:14px;
  1984. }
  1985. #u14657 .text {
  1986. position:absolute;
  1987. align-self:center;
  1988. padding:5px 10px 5px 0px;
  1989. box-sizing:border-box;
  1990. width:100%;
  1991. }
  1992. #u14657_text {
  1993. border-width:0px;
  1994. white-space:nowrap;
  1995. text-transform:none;
  1996. }
  1997. #u14658 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:0px;
  2003. height:0px;
  2004. }
  2005. #u14659_div {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:280px;
  2011. height:40px;
  2012. background:inherit;
  2013. background-color:rgba(255, 255, 255, 1);
  2014. box-sizing:border-box;
  2015. border-width:1px;
  2016. border-style:solid;
  2017. border-color:rgba(170, 170, 170, 1);
  2018. border-radius:4px;
  2019. -moz-box-shadow:none;
  2020. -webkit-box-shadow:none;
  2021. box-shadow:none;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. text-align:left;
  2026. }
  2027. #u14659 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:434px;
  2031. top:492px;
  2032. width:280px;
  2033. height:40px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. text-align:left;
  2039. }
  2040. #u14659 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:2px 2px 2px 10px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u14659_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. visibility:hidden;
  2052. }
  2053. #u14660_input {
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:132px;
  2058. height:31px;
  2059. padding:2px 2px 2px 2px;
  2060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2061. font-weight:400;
  2062. font-style:normal;
  2063. font-size:13px;
  2064. letter-spacing:normal;
  2065. color:#AAAAAA;
  2066. vertical-align:none;
  2067. text-align:left;
  2068. text-transform:none;
  2069. background-color:transparent;
  2070. border-color:transparent;
  2071. }
  2072. #u14660_input.disabled {
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:132px;
  2077. height:31px;
  2078. padding:2px 2px 2px 2px;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:13px;
  2083. letter-spacing:normal;
  2084. color:#AAAAAA;
  2085. vertical-align:none;
  2086. text-align:left;
  2087. text-transform:none;
  2088. background-color:transparent;
  2089. border-color:transparent;
  2090. }
  2091. #u14660_div {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:132px;
  2097. height:31px;
  2098. background:inherit;
  2099. background-color:rgba(255, 255, 255, 0);
  2100. border:none;
  2101. border-radius:0px;
  2102. -moz-box-shadow:none;
  2103. -webkit-box-shadow:none;
  2104. box-shadow:none;
  2105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2106. font-weight:400;
  2107. font-style:normal;
  2108. color:#AAAAAA;
  2109. }
  2110. #u14660 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:441px;
  2114. top:497px;
  2115. width:132px;
  2116. height:31px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. color:#AAAAAA;
  2122. }
  2123. #u14660 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 2px 2px 2px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u14660_div.disabled {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:132px;
  2136. height:31px;
  2137. background:inherit;
  2138. background-color:rgba(240, 240, 240, 1);
  2139. border:none;
  2140. border-radius:0px;
  2141. -moz-box-shadow:none;
  2142. -webkit-box-shadow:none;
  2143. box-shadow:none;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. color:#AAAAAA;
  2148. }
  2149. #u14660.disabled {
  2150. }
  2151. #u14661_div {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:67px;
  2157. height:30px;
  2158. background:inherit;
  2159. background-color:rgba(255, 255, 255, 0);
  2160. border:none;
  2161. border-top:0px;
  2162. border-right:0px;
  2163. border-bottom:0px;
  2164. border-radius:0px;
  2165. border-top-left-radius:0px;
  2166. border-bottom-left-radius:0px;
  2167. -moz-box-shadow:none;
  2168. -webkit-box-shadow:none;
  2169. box-shadow:none;
  2170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2171. font-weight:400;
  2172. font-style:normal;
  2173. font-size:14px;
  2174. }
  2175. #u14661 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:754px;
  2179. top:462px;
  2180. width:67px;
  2181. height:30px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:14px;
  2187. }
  2188. #u14661 .text {
  2189. position:absolute;
  2190. align-self:center;
  2191. padding:5px 10px 5px 0px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u14661_text {
  2196. border-width:0px;
  2197. white-space:nowrap;
  2198. text-transform:none;
  2199. }
  2200. #u14662 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:0px;
  2206. height:0px;
  2207. }
  2208. #u14663_div {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:280px;
  2214. height:40px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 1);
  2217. box-sizing:border-box;
  2218. border-width:1px;
  2219. border-style:solid;
  2220. border-color:rgba(170, 170, 170, 1);
  2221. border-radius:4px;
  2222. -moz-box-shadow:none;
  2223. -webkit-box-shadow:none;
  2224. box-shadow:none;
  2225. }
  2226. #u14663 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:754px;
  2230. top:492px;
  2231. width:280px;
  2232. height:40px;
  2233. display:flex;
  2234. }
  2235. #u14663 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 2px 2px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u14663_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u14664_input {
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:266px;
  2253. height:30px;
  2254. padding:2px 2px 2px 0px;
  2255. font-family:'ArialMT', 'Arial', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:13px;
  2259. letter-spacing:normal;
  2260. color:#AAAAAA;
  2261. vertical-align:none;
  2262. text-align:left;
  2263. text-transform:none;
  2264. background-color:transparent;
  2265. border-color:transparent;
  2266. }
  2267. #u14664_input.disabled {
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:266px;
  2272. height:30px;
  2273. padding:2px 2px 2px 0px;
  2274. font-family:'ArialMT', 'Arial', sans-serif;
  2275. font-weight:400;
  2276. font-style:normal;
  2277. font-size:13px;
  2278. letter-spacing:normal;
  2279. color:#AAAAAA;
  2280. vertical-align:none;
  2281. text-align:left;
  2282. text-transform:none;
  2283. background-color:transparent;
  2284. border-color:transparent;
  2285. }
  2286. #u14664_div {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:266px;
  2292. height:30px;
  2293. background:inherit;
  2294. background-color:rgba(255, 255, 255, 1);
  2295. border:none;
  2296. border-radius:0px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. color:#AAAAAA;
  2301. }
  2302. #u14664 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:761px;
  2306. top:498px;
  2307. width:266px;
  2308. height:30px;
  2309. display:flex;
  2310. color:#AAAAAA;
  2311. }
  2312. #u14664 .text {
  2313. position:absolute;
  2314. align-self:flex-start;
  2315. padding:2px 2px 2px 0px;
  2316. box-sizing:border-box;
  2317. width:100%;
  2318. }
  2319. #u14664_div.disabled {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:266px;
  2325. height:30px;
  2326. background:inherit;
  2327. background-color:rgba(240, 240, 240, 1);
  2328. border:none;
  2329. border-radius:0px;
  2330. -moz-box-shadow:none;
  2331. -webkit-box-shadow:none;
  2332. box-shadow:none;
  2333. color:#AAAAAA;
  2334. }
  2335. #u14664.disabled {
  2336. }
  2337. .u14664_input_option {
  2338. }
  2339. #u14665_div {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:81px;
  2345. height:30px;
  2346. background:inherit;
  2347. background-color:rgba(255, 255, 255, 0);
  2348. border:none;
  2349. border-top:0px;
  2350. border-right:0px;
  2351. border-bottom:0px;
  2352. border-radius:0px;
  2353. border-top-left-radius:0px;
  2354. border-bottom-left-radius:0px;
  2355. -moz-box-shadow:none;
  2356. -webkit-box-shadow:none;
  2357. box-shadow:none;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:14px;
  2362. }
  2363. #u14665 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:754px;
  2367. top:302px;
  2368. width:81px;
  2369. height:30px;
  2370. display:flex;
  2371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2372. font-weight:400;
  2373. font-style:normal;
  2374. font-size:14px;
  2375. }
  2376. #u14665 .text {
  2377. position:absolute;
  2378. align-self:center;
  2379. padding:5px 10px 5px 0px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u14665_text {
  2384. border-width:0px;
  2385. white-space:nowrap;
  2386. text-transform:none;
  2387. }
  2388. #u14666 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:0px;
  2394. height:0px;
  2395. }
  2396. #u14667_div {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:280px;
  2402. height:40px;
  2403. background:inherit;
  2404. background-color:rgba(242, 242, 242, 1);
  2405. box-sizing:border-box;
  2406. border-width:1px;
  2407. border-style:solid;
  2408. border-color:rgba(170, 170, 170, 1);
  2409. border-radius:4px;
  2410. -moz-box-shadow:none;
  2411. -webkit-box-shadow:none;
  2412. box-shadow:none;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. text-align:left;
  2417. }
  2418. #u14667 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:754px;
  2422. top:332px;
  2423. width:280px;
  2424. height:40px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. text-align:left;
  2430. }
  2431. #u14667 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 10px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u14667_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. visibility:hidden;
  2443. }
  2444. #u14668_input {
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:132px;
  2449. height:31px;
  2450. padding:2px 2px 2px 2px;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:13px;
  2455. letter-spacing:normal;
  2456. color:#AAAAAA;
  2457. vertical-align:none;
  2458. text-align:left;
  2459. text-transform:none;
  2460. background-color:transparent;
  2461. border-color:transparent;
  2462. }
  2463. #u14668_input.disabled {
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:132px;
  2468. height:31px;
  2469. padding:2px 2px 2px 2px;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:13px;
  2474. letter-spacing:normal;
  2475. color:#AAAAAA;
  2476. vertical-align:none;
  2477. text-align:left;
  2478. text-transform:none;
  2479. background-color:transparent;
  2480. border-color:transparent;
  2481. }
  2482. #u14668_div {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:132px;
  2488. height:31px;
  2489. background:inherit;
  2490. background-color:rgba(242, 242, 242, 1);
  2491. border:none;
  2492. border-radius:0px;
  2493. -moz-box-shadow:none;
  2494. -webkit-box-shadow:none;
  2495. box-shadow:none;
  2496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2497. font-weight:400;
  2498. font-style:normal;
  2499. color:#AAAAAA;
  2500. }
  2501. #u14668 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:761px;
  2505. top:337px;
  2506. width:132px;
  2507. height:31px;
  2508. display:flex;
  2509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. color:#AAAAAA;
  2513. }
  2514. #u14668 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 2px 2px 2px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u14668_div.disabled {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:132px;
  2527. height:31px;
  2528. background:inherit;
  2529. background-color:rgba(240, 240, 240, 1);
  2530. border:none;
  2531. border-radius:0px;
  2532. -moz-box-shadow:none;
  2533. -webkit-box-shadow:none;
  2534. box-shadow:none;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. color:#AAAAAA;
  2539. }
  2540. #u14668.disabled {
  2541. }
  2542. #u14669_div {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:74px;
  2548. height:30px;
  2549. background:inherit;
  2550. background-color:rgba(255, 255, 255, 0);
  2551. border:none;
  2552. border-top:0px;
  2553. border-right:0px;
  2554. border-bottom:0px;
  2555. border-radius:0px;
  2556. border-top-left-radius:0px;
  2557. border-bottom-left-radius:0px;
  2558. -moz-box-shadow:none;
  2559. -webkit-box-shadow:none;
  2560. box-shadow:none;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:14px;
  2565. }
  2566. #u14669 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:434px;
  2570. top:302px;
  2571. width:74px;
  2572. height:30px;
  2573. display:flex;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:14px;
  2578. }
  2579. #u14669 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:5px 10px 5px 0px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u14669_text {
  2587. border-width:0px;
  2588. white-space:nowrap;
  2589. text-transform:none;
  2590. }
  2591. #u14670 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:0px;
  2597. height:0px;
  2598. }
  2599. #u14671_div {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:0px;
  2603. top:0px;
  2604. width:280px;
  2605. height:40px;
  2606. background:inherit;
  2607. background-color:rgba(242, 242, 242, 1);
  2608. box-sizing:border-box;
  2609. border-width:1px;
  2610. border-style:solid;
  2611. border-color:rgba(170, 170, 170, 1);
  2612. border-radius:4px;
  2613. -moz-box-shadow:none;
  2614. -webkit-box-shadow:none;
  2615. box-shadow:none;
  2616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2617. font-weight:400;
  2618. font-style:normal;
  2619. text-align:left;
  2620. }
  2621. #u14671 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:434px;
  2625. top:332px;
  2626. width:280px;
  2627. height:40px;
  2628. display:flex;
  2629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. text-align:left;
  2633. }
  2634. #u14671 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 10px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u14671_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. }
  2646. #u14672_img {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:921px;
  2652. height:2px;
  2653. }
  2654. #u14672 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:114px;
  2658. top:676px;
  2659. width:920px;
  2660. height:1px;
  2661. display:flex;
  2662. }
  2663. #u14672 .text {
  2664. position:absolute;
  2665. align-self:center;
  2666. padding:2px 2px 2px 2px;
  2667. box-sizing:border-box;
  2668. width:100%;
  2669. }
  2670. #u14672_text {
  2671. border-width:0px;
  2672. word-wrap:break-word;
  2673. text-transform:none;
  2674. visibility:hidden;
  2675. }
  2676. #u14673_div {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:0px;
  2681. width:97px;
  2682. height:30px;
  2683. background:inherit;
  2684. background-color:rgba(255, 255, 255, 0);
  2685. border:none;
  2686. border-top:0px;
  2687. border-right:0px;
  2688. border-bottom:0px;
  2689. border-radius:0px;
  2690. border-top-left-radius:0px;
  2691. border-bottom-left-radius:0px;
  2692. -moz-box-shadow:none;
  2693. -webkit-box-shadow:none;
  2694. box-shadow:none;
  2695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. font-size:14px;
  2699. }
  2700. #u14673 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:114px;
  2704. top:214px;
  2705. width:97px;
  2706. height:30px;
  2707. display:flex;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:14px;
  2712. }
  2713. #u14673 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:5px 10px 5px 0px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u14673_text {
  2721. border-width:0px;
  2722. white-space:nowrap;
  2723. text-transform:none;
  2724. }
  2725. #u14674 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:0px;
  2731. height:0px;
  2732. }
  2733. #u14675_div {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:823px;
  2739. height:40px;
  2740. background:inherit;
  2741. background-color:rgba(255, 255, 255, 1);
  2742. box-sizing:border-box;
  2743. border-width:1px;
  2744. border-style:solid;
  2745. border-color:rgba(170, 170, 170, 1);
  2746. border-radius:4px;
  2747. -moz-box-shadow:none;
  2748. -webkit-box-shadow:none;
  2749. box-shadow:none;
  2750. }
  2751. #u14675 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:211px;
  2755. top:209px;
  2756. width:823px;
  2757. height:40px;
  2758. display:flex;
  2759. }
  2760. #u14675 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 2px 2px 0px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u14675_text {
  2768. border-width:0px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. visibility:hidden;
  2772. }
  2773. #u14676_input {
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:782px;
  2778. height:30px;
  2779. padding:2px 2px 2px 0px;
  2780. font-family:'ArialMT', 'Arial', sans-serif;
  2781. font-weight:400;
  2782. font-style:normal;
  2783. font-size:13px;
  2784. letter-spacing:normal;
  2785. color:#AAAAAA;
  2786. vertical-align:none;
  2787. text-align:left;
  2788. text-transform:none;
  2789. background-color:transparent;
  2790. border-color:transparent;
  2791. }
  2792. #u14676_input.disabled {
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:782px;
  2797. height:30px;
  2798. padding:2px 2px 2px 0px;
  2799. font-family:'ArialMT', 'Arial', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:13px;
  2803. letter-spacing:normal;
  2804. color:#AAAAAA;
  2805. vertical-align:none;
  2806. text-align:left;
  2807. text-transform:none;
  2808. background-color:transparent;
  2809. border-color:transparent;
  2810. }
  2811. #u14676_div {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:782px;
  2817. height:30px;
  2818. background:inherit;
  2819. background-color:rgba(255, 255, 255, 1);
  2820. border:none;
  2821. border-radius:0px;
  2822. -moz-box-shadow:none;
  2823. -webkit-box-shadow:none;
  2824. box-shadow:none;
  2825. color:#AAAAAA;
  2826. }
  2827. #u14676 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:232px;
  2831. top:215px;
  2832. width:782px;
  2833. height:30px;
  2834. display:flex;
  2835. color:#AAAAAA;
  2836. }
  2837. #u14676 .text {
  2838. position:absolute;
  2839. align-self:flex-start;
  2840. padding:2px 2px 2px 0px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u14676_div.disabled {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:0px;
  2848. top:0px;
  2849. width:782px;
  2850. height:30px;
  2851. background:inherit;
  2852. background-color:rgba(240, 240, 240, 1);
  2853. border:none;
  2854. border-radius:0px;
  2855. -moz-box-shadow:none;
  2856. -webkit-box-shadow:none;
  2857. box-shadow:none;
  2858. color:#AAAAAA;
  2859. }
  2860. #u14676.disabled {
  2861. }
  2862. .u14676_input_option {
  2863. }
  2864. #u14677_div {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:73px;
  2870. height:40px;
  2871. background:inherit;
  2872. background-color:rgba(255, 255, 255, 0);
  2873. box-sizing:border-box;
  2874. border-width:3px;
  2875. border-style:solid;
  2876. border-color:rgba(24, 144, 255, 1);
  2877. border-left:0px;
  2878. border-top:0px;
  2879. border-right:0px;
  2880. border-radius:0px;
  2881. border-bottom-right-radius:0px;
  2882. border-bottom-left-radius:0px;
  2883. -moz-box-shadow:none;
  2884. -webkit-box-shadow:none;
  2885. box-shadow:none;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:18px;
  2890. color:#000000;
  2891. line-height:40px;
  2892. }
  2893. #u14677 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:114px;
  2897. top:149px;
  2898. width:73px;
  2899. height:40px;
  2900. display:flex;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:18px;
  2905. color:#000000;
  2906. line-height:40px;
  2907. }
  2908. #u14677 .text {
  2909. position:absolute;
  2910. align-self:flex-start;
  2911. padding:0px 0px 0px 0px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u14677_text {
  2916. border-width:0px;
  2917. white-space:nowrap;
  2918. text-transform:none;
  2919. }
  2920. #u14678_div {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:73px;
  2926. height:40px;
  2927. background:inherit;
  2928. background-color:rgba(255, 255, 255, 0);
  2929. border:none;
  2930. border-left:0px;
  2931. border-top:0px;
  2932. border-right:0px;
  2933. border-radius:0px;
  2934. border-bottom-right-radius:0px;
  2935. border-bottom-left-radius:0px;
  2936. -moz-box-shadow:none;
  2937. -webkit-box-shadow:none;
  2938. box-shadow:none;
  2939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2940. font-weight:400;
  2941. font-style:normal;
  2942. font-size:18px;
  2943. color:#000000;
  2944. line-height:40px;
  2945. }
  2946. #u14678 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:227px;
  2950. top:149px;
  2951. width:73px;
  2952. height:40px;
  2953. display:flex;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:18px;
  2958. color:#000000;
  2959. line-height:40px;
  2960. }
  2961. #u14678 .text {
  2962. position:absolute;
  2963. align-self:flex-start;
  2964. padding:0px 0px 0px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u14678_text {
  2969. border-width:0px;
  2970. white-space:nowrap;
  2971. text-transform:none;
  2972. }
  2973. #u14679_div {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:71px;
  2979. height:35px;
  2980. background:inherit;
  2981. background-color:rgba(255, 255, 255, 0);
  2982. border:none;
  2983. border-top:0px;
  2984. border-right:0px;
  2985. border-bottom:0px;
  2986. border-radius:0px;
  2987. border-top-left-radius:0px;
  2988. border-bottom-left-radius:0px;
  2989. -moz-box-shadow:none;
  2990. -webkit-box-shadow:none;
  2991. box-shadow:none;
  2992. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2993. font-weight:500;
  2994. font-style:normal;
  2995. font-size:18px;
  2996. color:#1890FF;
  2997. }
  2998. #u14679 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:114px;
  3002. top:982px;
  3003. width:71px;
  3004. height:35px;
  3005. display:flex;
  3006. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3007. font-weight:500;
  3008. font-style:normal;
  3009. font-size:18px;
  3010. color:#1890FF;
  3011. }
  3012. #u14679 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:5px 10px 5px 0px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u14679_text {
  3020. border-width:0px;
  3021. white-space:nowrap;
  3022. text-transform:none;
  3023. }
  3024. #u14680_div {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:100px;
  3030. height:30px;
  3031. background:inherit;
  3032. background-color:rgba(255, 255, 255, 1);
  3033. box-sizing:border-box;
  3034. border-width:1px;
  3035. border-style:solid;
  3036. border-color:rgba(170, 170, 170, 1);
  3037. border-radius:4px;
  3038. -moz-box-shadow:none;
  3039. -webkit-box-shadow:none;
  3040. box-shadow:none;
  3041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3042. font-weight:400;
  3043. font-style:normal;
  3044. font-size:12px;
  3045. }
  3046. #u14680 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:114px;
  3050. top:1027px;
  3051. width:100px;
  3052. height:30px;
  3053. display:flex;
  3054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:12px;
  3058. }
  3059. #u14680 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:2px 2px 2px 2px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u14680_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. }
  3071. #u14681_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:89px;
  3077. height:35px;
  3078. background:inherit;
  3079. background-color:rgba(255, 255, 255, 0);
  3080. border:none;
  3081. border-top:0px;
  3082. border-right:0px;
  3083. border-bottom:0px;
  3084. border-radius:0px;
  3085. border-top-left-radius:0px;
  3086. border-bottom-left-radius:0px;
  3087. -moz-box-shadow:none;
  3088. -webkit-box-shadow:none;
  3089. box-shadow:none;
  3090. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3091. font-weight:500;
  3092. font-style:normal;
  3093. font-size:18px;
  3094. }
  3095. #u14681 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:219px;
  3099. top:982px;
  3100. width:89px;
  3101. height:35px;
  3102. display:flex;
  3103. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3104. font-weight:500;
  3105. font-style:normal;
  3106. font-size:18px;
  3107. }
  3108. #u14681 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:5px 10px 5px 0px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u14681_text {
  3116. border-width:0px;
  3117. white-space:nowrap;
  3118. text-transform:none;
  3119. }
  3120. #u14682_div {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:155px;
  3126. height:35px;
  3127. background:inherit;
  3128. background-color:rgba(255, 255, 255, 0);
  3129. border:none;
  3130. border-top:0px;
  3131. border-right:0px;
  3132. border-bottom:0px;
  3133. border-radius:0px;
  3134. border-top-left-radius:0px;
  3135. border-bottom-left-radius:0px;
  3136. -moz-box-shadow:none;
  3137. -webkit-box-shadow:none;
  3138. box-shadow:none;
  3139. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3140. font-weight:500;
  3141. font-style:normal;
  3142. font-size:18px;
  3143. }
  3144. #u14682 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:114px;
  3148. top:707px;
  3149. width:155px;
  3150. height:35px;
  3151. display:flex;
  3152. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3153. font-weight:500;
  3154. font-style:normal;
  3155. font-size:18px;
  3156. }
  3157. #u14682 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:5px 10px 5px 0px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u14682_text {
  3165. border-width:0px;
  3166. white-space:nowrap;
  3167. text-transform:none;
  3168. }
  3169. #u14683 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:0px;
  3175. height:0px;
  3176. }
  3177. #u14684_div {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:0px;
  3181. top:0px;
  3182. width:80px;
  3183. height:80px;
  3184. background:inherit;
  3185. background-color:rgba(255, 255, 255, 1);
  3186. box-sizing:border-box;
  3187. border-width:1px;
  3188. border-style:solid;
  3189. border-color:rgba(170, 170, 170, 1);
  3190. border-radius:4px;
  3191. -moz-box-shadow:none;
  3192. -webkit-box-shadow:none;
  3193. box-shadow:none;
  3194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:24px;
  3198. }
  3199. #u14684 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:115px;
  3203. top:752px;
  3204. width:80px;
  3205. height:80px;
  3206. display:flex;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:24px;
  3211. }
  3212. #u14684 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 2px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u14684_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. visibility:hidden;
  3224. }
  3225. #u14685_div {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:28px;
  3231. height:27px;
  3232. background:inherit;
  3233. background-color:rgba(0, 255, 255, 1);
  3234. box-sizing:border-box;
  3235. border-width:1px;
  3236. border-style:solid;
  3237. border-color:rgba(170, 170, 170, 1);
  3238. border-radius:4px;
  3239. -moz-box-shadow:none;
  3240. -webkit-box-shadow:none;
  3241. box-shadow:none;
  3242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3243. font-weight:400;
  3244. font-style:normal;
  3245. text-align:left;
  3246. }
  3247. #u14685 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:141px;
  3251. top:765px;
  3252. width:28px;
  3253. height:27px;
  3254. display:flex;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. text-align:left;
  3259. }
  3260. #u14685 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:2px 2px 2px 10px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u14685_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u14686_div {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:29px;
  3279. height:30px;
  3280. background:inherit;
  3281. background-color:rgba(255, 255, 255, 0);
  3282. border:none;
  3283. border-top:0px;
  3284. border-right:0px;
  3285. border-bottom:0px;
  3286. border-radius:0px;
  3287. border-top-left-radius:0px;
  3288. border-bottom-left-radius:0px;
  3289. -moz-box-shadow:none;
  3290. -webkit-box-shadow:none;
  3291. box-shadow:none;
  3292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. font-size:14px;
  3296. }
  3297. #u14686 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:140px;
  3301. top:797px;
  3302. width:29px;
  3303. height:30px;
  3304. display:flex;
  3305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:14px;
  3309. }
  3310. #u14686 .text {
  3311. position:absolute;
  3312. align-self:center;
  3313. padding:5px 0px 5px 0px;
  3314. box-sizing:border-box;
  3315. width:100%;
  3316. }
  3317. #u14686_text {
  3318. border-width:0px;
  3319. white-space:nowrap;
  3320. text-transform:none;
  3321. }
  3322. #u14687 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:0px;
  3328. height:0px;
  3329. }
  3330. #u14688_div {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:80px;
  3336. height:80px;
  3337. background:inherit;
  3338. background-color:rgba(255, 255, 255, 1);
  3339. box-sizing:border-box;
  3340. border-width:1px;
  3341. border-style:solid;
  3342. border-color:rgba(170, 170, 170, 1);
  3343. border-radius:4px;
  3344. -moz-box-shadow:none;
  3345. -webkit-box-shadow:none;
  3346. box-shadow:none;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:24px;
  3351. }
  3352. #u14688 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:214px;
  3356. top:752px;
  3357. width:80px;
  3358. height:80px;
  3359. display:flex;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. font-size:24px;
  3364. }
  3365. #u14688 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:2px 2px 2px 2px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u14688_text {
  3373. border-width:0px;
  3374. word-wrap:break-word;
  3375. text-transform:none;
  3376. visibility:hidden;
  3377. }
  3378. #u14689_div {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:28px;
  3384. height:27px;
  3385. background:inherit;
  3386. background-color:rgba(0, 128, 128, 1);
  3387. box-sizing:border-box;
  3388. border-width:1px;
  3389. border-style:solid;
  3390. border-color:rgba(170, 170, 170, 1);
  3391. border-radius:4px;
  3392. -moz-box-shadow:none;
  3393. -webkit-box-shadow:none;
  3394. box-shadow:none;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. text-align:left;
  3399. }
  3400. #u14689 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:240px;
  3404. top:765px;
  3405. width:28px;
  3406. height:27px;
  3407. display:flex;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. text-align:left;
  3412. }
  3413. #u14689 .text {
  3414. position:absolute;
  3415. align-self:center;
  3416. padding:2px 2px 2px 10px;
  3417. box-sizing:border-box;
  3418. width:100%;
  3419. }
  3420. #u14689_text {
  3421. border-width:0px;
  3422. word-wrap:break-word;
  3423. text-transform:none;
  3424. visibility:hidden;
  3425. }
  3426. #u14690_div {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:29px;
  3432. height:30px;
  3433. background:inherit;
  3434. background-color:rgba(255, 255, 255, 0);
  3435. border:none;
  3436. border-top:0px;
  3437. border-right:0px;
  3438. border-bottom:0px;
  3439. border-radius:0px;
  3440. border-top-left-radius:0px;
  3441. border-bottom-left-radius:0px;
  3442. -moz-box-shadow:none;
  3443. -webkit-box-shadow:none;
  3444. box-shadow:none;
  3445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:14px;
  3449. }
  3450. #u14690 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:239px;
  3454. top:797px;
  3455. width:29px;
  3456. height:30px;
  3457. display:flex;
  3458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3459. font-weight:400;
  3460. font-style:normal;
  3461. font-size:14px;
  3462. }
  3463. #u14690 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:5px 0px 5px 0px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u14690_text {
  3471. border-width:0px;
  3472. white-space:nowrap;
  3473. text-transform:none;
  3474. }
  3475. #u14691 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:0px;
  3481. height:0px;
  3482. }
  3483. #u14692_div {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:80px;
  3489. height:80px;
  3490. background:inherit;
  3491. background-color:rgba(255, 255, 255, 1);
  3492. box-sizing:border-box;
  3493. border-width:1px;
  3494. border-style:solid;
  3495. border-color:rgba(170, 170, 170, 1);
  3496. border-radius:4px;
  3497. -moz-box-shadow:none;
  3498. -webkit-box-shadow:none;
  3499. box-shadow:none;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:24px;
  3504. }
  3505. #u14692 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:314px;
  3509. top:752px;
  3510. width:80px;
  3511. height:80px;
  3512. display:flex;
  3513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:24px;
  3517. }
  3518. #u14692 .text {
  3519. position:absolute;
  3520. align-self:center;
  3521. padding:2px 2px 2px 2px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u14692_text {
  3526. border-width:0px;
  3527. word-wrap:break-word;
  3528. text-transform:none;
  3529. visibility:hidden;
  3530. }
  3531. #u14693_div {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:0px;
  3535. top:0px;
  3536. width:28px;
  3537. height:27px;
  3538. background:inherit;
  3539. background-color:rgba(2, 167, 240, 1);
  3540. box-sizing:border-box;
  3541. border-width:1px;
  3542. border-style:solid;
  3543. border-color:rgba(170, 170, 170, 1);
  3544. border-radius:4px;
  3545. -moz-box-shadow:none;
  3546. -webkit-box-shadow:none;
  3547. box-shadow:none;
  3548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. text-align:left;
  3552. }
  3553. #u14693 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:340px;
  3557. top:765px;
  3558. width:28px;
  3559. height:27px;
  3560. display:flex;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. text-align:left;
  3565. }
  3566. #u14693 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 10px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u14693_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u14694_div {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:29px;
  3585. height:30px;
  3586. background:inherit;
  3587. background-color:rgba(255, 255, 255, 0);
  3588. border:none;
  3589. border-top:0px;
  3590. border-right:0px;
  3591. border-bottom:0px;
  3592. border-radius:0px;
  3593. border-top-left-radius:0px;
  3594. border-bottom-left-radius:0px;
  3595. -moz-box-shadow:none;
  3596. -webkit-box-shadow:none;
  3597. box-shadow:none;
  3598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3599. font-weight:400;
  3600. font-style:normal;
  3601. font-size:14px;
  3602. }
  3603. #u14694 {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:339px;
  3607. top:797px;
  3608. width:29px;
  3609. height:30px;
  3610. display:flex;
  3611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:14px;
  3615. }
  3616. #u14694 .text {
  3617. position:absolute;
  3618. align-self:center;
  3619. padding:5px 0px 5px 0px;
  3620. box-sizing:border-box;
  3621. width:100%;
  3622. }
  3623. #u14694_text {
  3624. border-width:0px;
  3625. white-space:nowrap;
  3626. text-transform:none;
  3627. }
  3628. #u14695 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:0px;
  3634. height:0px;
  3635. }
  3636. #u14696_div {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:80px;
  3642. height:80px;
  3643. background:inherit;
  3644. background-color:rgba(255, 255, 255, 1);
  3645. box-sizing:border-box;
  3646. border-width:1px;
  3647. border-style:solid;
  3648. border-color:rgba(170, 170, 170, 1);
  3649. border-radius:4px;
  3650. -moz-box-shadow:none;
  3651. -webkit-box-shadow:none;
  3652. box-shadow:none;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:24px;
  3657. }
  3658. #u14696 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:414px;
  3662. top:752px;
  3663. width:80px;
  3664. height:80px;
  3665. display:flex;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:24px;
  3670. }
  3671. #u14696 .text {
  3672. position:absolute;
  3673. align-self:center;
  3674. padding:2px 2px 2px 2px;
  3675. box-sizing:border-box;
  3676. width:100%;
  3677. }
  3678. #u14696_text {
  3679. border-width:0px;
  3680. word-wrap:break-word;
  3681. text-transform:none;
  3682. visibility:hidden;
  3683. }
  3684. #u14697_div {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:28px;
  3690. height:27px;
  3691. background:inherit;
  3692. background-color:rgba(129, 211, 248, 1);
  3693. box-sizing:border-box;
  3694. border-width:1px;
  3695. border-style:solid;
  3696. border-color:rgba(170, 170, 170, 1);
  3697. border-radius:4px;
  3698. -moz-box-shadow:none;
  3699. -webkit-box-shadow:none;
  3700. box-shadow:none;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. text-align:left;
  3705. }
  3706. #u14697 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:440px;
  3710. top:765px;
  3711. width:28px;
  3712. height:27px;
  3713. display:flex;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. text-align:left;
  3718. }
  3719. #u14697 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 10px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u14697_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. visibility:hidden;
  3731. }
  3732. #u14698_div {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:29px;
  3738. height:30px;
  3739. background:inherit;
  3740. background-color:rgba(255, 255, 255, 0);
  3741. border:none;
  3742. border-top:0px;
  3743. border-right:0px;
  3744. border-bottom:0px;
  3745. border-radius:0px;
  3746. border-top-left-radius:0px;
  3747. border-bottom-left-radius:0px;
  3748. -moz-box-shadow:none;
  3749. -webkit-box-shadow:none;
  3750. box-shadow:none;
  3751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3752. font-weight:400;
  3753. font-style:normal;
  3754. font-size:14px;
  3755. }
  3756. #u14698 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:439px;
  3760. top:797px;
  3761. width:29px;
  3762. height:30px;
  3763. display:flex;
  3764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:14px;
  3768. }
  3769. #u14698 .text {
  3770. position:absolute;
  3771. align-self:center;
  3772. padding:5px 0px 5px 0px;
  3773. box-sizing:border-box;
  3774. width:100%;
  3775. }
  3776. #u14698_text {
  3777. border-width:0px;
  3778. white-space:nowrap;
  3779. text-transform:none;
  3780. }
  3781. #u14699 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:0px;
  3787. height:0px;
  3788. }
  3789. #u14700_div {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:80px;
  3795. height:80px;
  3796. background:inherit;
  3797. background-color:rgba(255, 255, 255, 1);
  3798. box-sizing:border-box;
  3799. border-width:1px;
  3800. border-style:solid;
  3801. border-color:rgba(170, 170, 170, 1);
  3802. border-radius:4px;
  3803. -moz-box-shadow:none;
  3804. -webkit-box-shadow:none;
  3805. box-shadow:none;
  3806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:24px;
  3810. }
  3811. #u14700 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:513px;
  3815. top:752px;
  3816. width:80px;
  3817. height:80px;
  3818. display:flex;
  3819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:24px;
  3823. }
  3824. #u14700 .text {
  3825. position:absolute;
  3826. align-self:center;
  3827. padding:2px 2px 2px 2px;
  3828. box-sizing:border-box;
  3829. width:100%;
  3830. }
  3831. #u14700_text {
  3832. border-width:0px;
  3833. word-wrap:break-word;
  3834. text-transform:none;
  3835. visibility:hidden;
  3836. }
  3837. #u14701_div {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:0px;
  3841. top:0px;
  3842. width:28px;
  3843. height:27px;
  3844. background:inherit;
  3845. background-color:rgba(184, 116, 26, 1);
  3846. box-sizing:border-box;
  3847. border-width:1px;
  3848. border-style:solid;
  3849. border-color:rgba(170, 170, 170, 1);
  3850. border-radius:4px;
  3851. -moz-box-shadow:none;
  3852. -webkit-box-shadow:none;
  3853. box-shadow:none;
  3854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3855. font-weight:400;
  3856. font-style:normal;
  3857. text-align:left;
  3858. }
  3859. #u14701 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:539px;
  3863. top:765px;
  3864. width:28px;
  3865. height:27px;
  3866. display:flex;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. text-align:left;
  3871. }
  3872. #u14701 .text {
  3873. position:absolute;
  3874. align-self:center;
  3875. padding:2px 2px 2px 10px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u14701_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. visibility:hidden;
  3884. }
  3885. #u14702_div {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:29px;
  3891. height:30px;
  3892. background:inherit;
  3893. background-color:rgba(255, 255, 255, 0);
  3894. border:none;
  3895. border-top:0px;
  3896. border-right:0px;
  3897. border-bottom:0px;
  3898. border-radius:0px;
  3899. border-top-left-radius:0px;
  3900. border-bottom-left-radius:0px;
  3901. -moz-box-shadow:none;
  3902. -webkit-box-shadow:none;
  3903. box-shadow:none;
  3904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:14px;
  3908. }
  3909. #u14702 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:538px;
  3913. top:797px;
  3914. width:29px;
  3915. height:30px;
  3916. display:flex;
  3917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3918. font-weight:400;
  3919. font-style:normal;
  3920. font-size:14px;
  3921. }
  3922. #u14702 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:5px 0px 5px 0px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u14702_text {
  3930. border-width:0px;
  3931. white-space:nowrap;
  3932. text-transform:none;
  3933. }
  3934. #u14703 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:0px;
  3940. height:0px;
  3941. }
  3942. #u14704_div {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:80px;
  3948. height:80px;
  3949. background:inherit;
  3950. background-color:rgba(255, 255, 255, 1);
  3951. box-sizing:border-box;
  3952. border-width:1px;
  3953. border-style:solid;
  3954. border-color:rgba(170, 170, 170, 1);
  3955. border-radius:4px;
  3956. -moz-box-shadow:none;
  3957. -webkit-box-shadow:none;
  3958. box-shadow:none;
  3959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3960. font-weight:400;
  3961. font-style:normal;
  3962. font-size:24px;
  3963. }
  3964. #u14704 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:613px;
  3968. top:752px;
  3969. width:80px;
  3970. height:80px;
  3971. display:flex;
  3972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3973. font-weight:400;
  3974. font-style:normal;
  3975. font-size:24px;
  3976. }
  3977. #u14704 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:2px 2px 2px 2px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u14704_text {
  3985. border-width:0px;
  3986. word-wrap:break-word;
  3987. text-transform:none;
  3988. visibility:hidden;
  3989. }
  3990. #u14705_div {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:0px;
  3994. top:0px;
  3995. width:28px;
  3996. height:27px;
  3997. background:inherit;
  3998. background-color:rgba(255, 255, 0, 1);
  3999. box-sizing:border-box;
  4000. border-width:1px;
  4001. border-style:solid;
  4002. border-color:rgba(170, 170, 170, 1);
  4003. border-radius:4px;
  4004. -moz-box-shadow:none;
  4005. -webkit-box-shadow:none;
  4006. box-shadow:none;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. text-align:left;
  4011. }
  4012. #u14705 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:639px;
  4016. top:765px;
  4017. width:28px;
  4018. height:27px;
  4019. display:flex;
  4020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. text-align:left;
  4024. }
  4025. #u14705 .text {
  4026. position:absolute;
  4027. align-self:center;
  4028. padding:2px 2px 2px 10px;
  4029. box-sizing:border-box;
  4030. width:100%;
  4031. }
  4032. #u14705_text {
  4033. border-width:0px;
  4034. word-wrap:break-word;
  4035. text-transform:none;
  4036. visibility:hidden;
  4037. }
  4038. #u14706_div {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:29px;
  4044. height:30px;
  4045. background:inherit;
  4046. background-color:rgba(255, 255, 255, 0);
  4047. border:none;
  4048. border-top:0px;
  4049. border-right:0px;
  4050. border-bottom:0px;
  4051. border-radius:0px;
  4052. border-top-left-radius:0px;
  4053. border-bottom-left-radius:0px;
  4054. -moz-box-shadow:none;
  4055. -webkit-box-shadow:none;
  4056. box-shadow:none;
  4057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:14px;
  4061. }
  4062. #u14706 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:638px;
  4066. top:797px;
  4067. width:29px;
  4068. height:30px;
  4069. display:flex;
  4070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4071. font-weight:400;
  4072. font-style:normal;
  4073. font-size:14px;
  4074. }
  4075. #u14706 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:5px 0px 5px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u14706_text {
  4083. border-width:0px;
  4084. white-space:nowrap;
  4085. text-transform:none;
  4086. }
  4087. #u14707 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:0px;
  4093. height:0px;
  4094. }
  4095. #u14708_div {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:80px;
  4101. height:80px;
  4102. background:inherit;
  4103. background-color:rgba(255, 255, 255, 1);
  4104. box-sizing:border-box;
  4105. border-width:1px;
  4106. border-style:solid;
  4107. border-color:rgba(170, 170, 170, 1);
  4108. border-radius:4px;
  4109. -moz-box-shadow:none;
  4110. -webkit-box-shadow:none;
  4111. box-shadow:none;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:24px;
  4116. }
  4117. #u14708 {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:713px;
  4121. top:752px;
  4122. width:80px;
  4123. height:80px;
  4124. display:flex;
  4125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:24px;
  4129. }
  4130. #u14708 .text {
  4131. position:absolute;
  4132. align-self:center;
  4133. padding:2px 2px 2px 2px;
  4134. box-sizing:border-box;
  4135. width:100%;
  4136. }
  4137. #u14708_text {
  4138. border-width:0px;
  4139. word-wrap:break-word;
  4140. text-transform:none;
  4141. visibility:hidden;
  4142. }
  4143. #u14709_div {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:28px;
  4149. height:27px;
  4150. background:inherit;
  4151. background-color:rgba(128, 128, 255, 1);
  4152. box-sizing:border-box;
  4153. border-width:1px;
  4154. border-style:solid;
  4155. border-color:rgba(170, 170, 170, 1);
  4156. border-radius:4px;
  4157. -moz-box-shadow:none;
  4158. -webkit-box-shadow:none;
  4159. box-shadow:none;
  4160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. text-align:left;
  4164. }
  4165. #u14709 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:739px;
  4169. top:765px;
  4170. width:28px;
  4171. height:27px;
  4172. display:flex;
  4173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. text-align:left;
  4177. }
  4178. #u14709 .text {
  4179. position:absolute;
  4180. align-self:center;
  4181. padding:2px 2px 2px 10px;
  4182. box-sizing:border-box;
  4183. width:100%;
  4184. }
  4185. #u14709_text {
  4186. border-width:0px;
  4187. word-wrap:break-word;
  4188. text-transform:none;
  4189. visibility:hidden;
  4190. }
  4191. #u14710_div {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:0px;
  4195. top:0px;
  4196. width:29px;
  4197. height:30px;
  4198. background:inherit;
  4199. background-color:rgba(255, 255, 255, 0);
  4200. border:none;
  4201. border-top:0px;
  4202. border-right:0px;
  4203. border-bottom:0px;
  4204. border-radius:0px;
  4205. border-top-left-radius:0px;
  4206. border-bottom-left-radius:0px;
  4207. -moz-box-shadow:none;
  4208. -webkit-box-shadow:none;
  4209. box-shadow:none;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:14px;
  4214. }
  4215. #u14710 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:738px;
  4219. top:797px;
  4220. width:29px;
  4221. height:30px;
  4222. display:flex;
  4223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4224. font-weight:400;
  4225. font-style:normal;
  4226. font-size:14px;
  4227. }
  4228. #u14710 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:5px 0px 5px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u14710_text {
  4236. border-width:0px;
  4237. white-space:nowrap;
  4238. text-transform:none;
  4239. }
  4240. #u14711 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:0px;
  4246. height:0px;
  4247. }
  4248. #u14712_div {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:80px;
  4254. height:80px;
  4255. background:inherit;
  4256. background-color:rgba(255, 255, 255, 1);
  4257. box-sizing:border-box;
  4258. border-width:1px;
  4259. border-style:solid;
  4260. border-color:rgba(170, 170, 170, 1);
  4261. border-radius:4px;
  4262. -moz-box-shadow:none;
  4263. -webkit-box-shadow:none;
  4264. box-shadow:none;
  4265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:24px;
  4269. }
  4270. #u14712 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:812px;
  4274. top:752px;
  4275. width:80px;
  4276. height:80px;
  4277. display:flex;
  4278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:24px;
  4282. }
  4283. #u14712 .text {
  4284. position:absolute;
  4285. align-self:center;
  4286. padding:2px 2px 2px 2px;
  4287. box-sizing:border-box;
  4288. width:100%;
  4289. }
  4290. #u14712_text {
  4291. border-width:0px;
  4292. word-wrap:break-word;
  4293. text-transform:none;
  4294. visibility:hidden;
  4295. }
  4296. #u14713_div {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:28px;
  4302. height:27px;
  4303. background:inherit;
  4304. background-color:rgba(0, 0, 255, 1);
  4305. box-sizing:border-box;
  4306. border-width:1px;
  4307. border-style:solid;
  4308. border-color:rgba(170, 170, 170, 1);
  4309. border-radius:4px;
  4310. -moz-box-shadow:none;
  4311. -webkit-box-shadow:none;
  4312. box-shadow:none;
  4313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. text-align:left;
  4317. }
  4318. #u14713 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:838px;
  4322. top:765px;
  4323. width:28px;
  4324. height:27px;
  4325. display:flex;
  4326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. text-align:left;
  4330. }
  4331. #u14713 .text {
  4332. position:absolute;
  4333. align-self:center;
  4334. padding:2px 2px 2px 10px;
  4335. box-sizing:border-box;
  4336. width:100%;
  4337. }
  4338. #u14713_text {
  4339. border-width:0px;
  4340. word-wrap:break-word;
  4341. text-transform:none;
  4342. visibility:hidden;
  4343. }
  4344. #u14714_div {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:29px;
  4350. height:30px;
  4351. background:inherit;
  4352. background-color:rgba(255, 255, 255, 0);
  4353. border:none;
  4354. border-top:0px;
  4355. border-right:0px;
  4356. border-bottom:0px;
  4357. border-radius:0px;
  4358. border-top-left-radius:0px;
  4359. border-bottom-left-radius:0px;
  4360. -moz-box-shadow:none;
  4361. -webkit-box-shadow:none;
  4362. box-shadow:none;
  4363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4364. font-weight:400;
  4365. font-style:normal;
  4366. font-size:14px;
  4367. }
  4368. #u14714 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:837px;
  4372. top:797px;
  4373. width:29px;
  4374. height:30px;
  4375. display:flex;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:14px;
  4380. }
  4381. #u14714 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:5px 0px 5px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u14714_text {
  4389. border-width:0px;
  4390. white-space:nowrap;
  4391. text-transform:none;
  4392. }
  4393. #u14715 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:0px;
  4399. height:0px;
  4400. }
  4401. #u14716_div {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:80px;
  4407. height:80px;
  4408. background:inherit;
  4409. background-color:rgba(255, 255, 255, 1);
  4410. box-sizing:border-box;
  4411. border-width:1px;
  4412. border-style:solid;
  4413. border-color:rgba(170, 170, 170, 1);
  4414. border-radius:4px;
  4415. -moz-box-shadow:none;
  4416. -webkit-box-shadow:none;
  4417. box-shadow:none;
  4418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4419. font-weight:400;
  4420. font-style:normal;
  4421. font-size:24px;
  4422. }
  4423. #u14716 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:912px;
  4427. top:752px;
  4428. width:80px;
  4429. height:80px;
  4430. display:flex;
  4431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4432. font-weight:400;
  4433. font-style:normal;
  4434. font-size:24px;
  4435. }
  4436. #u14716 .text {
  4437. position:absolute;
  4438. align-self:center;
  4439. padding:2px 2px 2px 2px;
  4440. box-sizing:border-box;
  4441. width:100%;
  4442. }
  4443. #u14716_text {
  4444. border-width:0px;
  4445. word-wrap:break-word;
  4446. text-transform:none;
  4447. visibility:hidden;
  4448. }
  4449. #u14717_div {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:0px;
  4453. top:0px;
  4454. width:28px;
  4455. height:27px;
  4456. background:inherit;
  4457. background-color:rgba(250, 205, 145, 1);
  4458. box-sizing:border-box;
  4459. border-width:1px;
  4460. border-style:solid;
  4461. border-color:rgba(170, 170, 170, 1);
  4462. border-radius:4px;
  4463. -moz-box-shadow:none;
  4464. -webkit-box-shadow:none;
  4465. box-shadow:none;
  4466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. text-align:left;
  4470. }
  4471. #u14717 {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:938px;
  4475. top:765px;
  4476. width:28px;
  4477. height:27px;
  4478. display:flex;
  4479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. text-align:left;
  4483. }
  4484. #u14717 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 2px 2px 10px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u14717_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u14718_div {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:29px;
  4503. height:30px;
  4504. background:inherit;
  4505. background-color:rgba(255, 255, 255, 0);
  4506. border:none;
  4507. border-top:0px;
  4508. border-right:0px;
  4509. border-bottom:0px;
  4510. border-radius:0px;
  4511. border-top-left-radius:0px;
  4512. border-bottom-left-radius:0px;
  4513. -moz-box-shadow:none;
  4514. -webkit-box-shadow:none;
  4515. box-shadow:none;
  4516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:14px;
  4520. }
  4521. #u14718 {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:937px;
  4525. top:797px;
  4526. width:29px;
  4527. height:30px;
  4528. display:flex;
  4529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4530. font-weight:400;
  4531. font-style:normal;
  4532. font-size:14px;
  4533. }
  4534. #u14718 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:5px 0px 5px 0px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u14718_text {
  4542. border-width:0px;
  4543. white-space:nowrap;
  4544. text-transform:none;
  4545. }
  4546. #u14719 {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:0px;
  4552. height:0px;
  4553. }
  4554. #u14720_div {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:80px;
  4560. height:80px;
  4561. background:inherit;
  4562. background-color:rgba(255, 255, 255, 1);
  4563. box-sizing:border-box;
  4564. border-width:1px;
  4565. border-style:solid;
  4566. border-color:rgba(170, 170, 170, 1);
  4567. border-radius:4px;
  4568. -moz-box-shadow:none;
  4569. -webkit-box-shadow:none;
  4570. box-shadow:none;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:24px;
  4575. }
  4576. #u14720 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:115px;
  4580. top:842px;
  4581. width:80px;
  4582. height:80px;
  4583. display:flex;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:24px;
  4588. }
  4589. #u14720 .text {
  4590. position:absolute;
  4591. align-self:center;
  4592. padding:2px 2px 2px 2px;
  4593. box-sizing:border-box;
  4594. width:100%;
  4595. }
  4596. #u14720_text {
  4597. border-width:0px;
  4598. word-wrap:break-word;
  4599. text-transform:none;
  4600. visibility:hidden;
  4601. }
  4602. #u14721_div {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:28px;
  4608. height:27px;
  4609. background:inherit;
  4610. background-color:rgba(66, 0, 128, 1);
  4611. box-sizing:border-box;
  4612. border-width:1px;
  4613. border-style:solid;
  4614. border-color:rgba(170, 170, 170, 1);
  4615. border-radius:4px;
  4616. -moz-box-shadow:none;
  4617. -webkit-box-shadow:none;
  4618. box-shadow:none;
  4619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4620. font-weight:400;
  4621. font-style:normal;
  4622. text-align:left;
  4623. }
  4624. #u14721 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:141px;
  4628. top:855px;
  4629. width:28px;
  4630. height:27px;
  4631. display:flex;
  4632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. text-align:left;
  4636. }
  4637. #u14721 .text {
  4638. position:absolute;
  4639. align-self:center;
  4640. padding:2px 2px 2px 10px;
  4641. box-sizing:border-box;
  4642. width:100%;
  4643. }
  4644. #u14721_text {
  4645. border-width:0px;
  4646. word-wrap:break-word;
  4647. text-transform:none;
  4648. visibility:hidden;
  4649. }
  4650. #u14722_div {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:29px;
  4656. height:30px;
  4657. background:inherit;
  4658. background-color:rgba(255, 255, 255, 0);
  4659. border:none;
  4660. border-top:0px;
  4661. border-right:0px;
  4662. border-bottom:0px;
  4663. border-radius:0px;
  4664. border-top-left-radius:0px;
  4665. border-bottom-left-radius:0px;
  4666. -moz-box-shadow:none;
  4667. -webkit-box-shadow:none;
  4668. box-shadow:none;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:14px;
  4673. }
  4674. #u14722 {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:140px;
  4678. top:887px;
  4679. width:29px;
  4680. height:30px;
  4681. display:flex;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:14px;
  4686. }
  4687. #u14722 .text {
  4688. position:absolute;
  4689. align-self:center;
  4690. padding:5px 0px 5px 0px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u14722_text {
  4695. border-width:0px;
  4696. white-space:nowrap;
  4697. text-transform:none;
  4698. }
  4699. #u14723 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:0px;
  4705. height:0px;
  4706. }
  4707. #u14724_div {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:0px;
  4711. top:0px;
  4712. width:80px;
  4713. height:80px;
  4714. background:inherit;
  4715. background-color:rgba(255, 255, 255, 1);
  4716. box-sizing:border-box;
  4717. border-width:1px;
  4718. border-style:solid;
  4719. border-color:rgba(170, 170, 170, 1);
  4720. border-radius:4px;
  4721. -moz-box-shadow:none;
  4722. -webkit-box-shadow:none;
  4723. box-shadow:none;
  4724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:24px;
  4728. }
  4729. #u14724 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:214px;
  4733. top:842px;
  4734. width:80px;
  4735. height:80px;
  4736. display:flex;
  4737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. font-size:24px;
  4741. }
  4742. #u14724 .text {
  4743. position:absolute;
  4744. align-self:center;
  4745. padding:2px 2px 2px 2px;
  4746. box-sizing:border-box;
  4747. width:100%;
  4748. }
  4749. #u14724_text {
  4750. border-width:0px;
  4751. word-wrap:break-word;
  4752. text-transform:none;
  4753. visibility:hidden;
  4754. }
  4755. #u14725_div {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:0px;
  4759. top:0px;
  4760. width:28px;
  4761. height:27px;
  4762. background:inherit;
  4763. background-color:rgba(215, 215, 215, 1);
  4764. box-sizing:border-box;
  4765. border-width:1px;
  4766. border-style:solid;
  4767. border-color:rgba(170, 170, 170, 1);
  4768. border-radius:4px;
  4769. -moz-box-shadow:none;
  4770. -webkit-box-shadow:none;
  4771. box-shadow:none;
  4772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. text-align:left;
  4776. }
  4777. #u14725 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:240px;
  4781. top:855px;
  4782. width:28px;
  4783. height:27px;
  4784. display:flex;
  4785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4786. font-weight:400;
  4787. font-style:normal;
  4788. text-align:left;
  4789. }
  4790. #u14725 .text {
  4791. position:absolute;
  4792. align-self:center;
  4793. padding:2px 2px 2px 10px;
  4794. box-sizing:border-box;
  4795. width:100%;
  4796. }
  4797. #u14725_text {
  4798. border-width:0px;
  4799. word-wrap:break-word;
  4800. text-transform:none;
  4801. visibility:hidden;
  4802. }
  4803. #u14726_div {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:29px;
  4809. height:30px;
  4810. background:inherit;
  4811. background-color:rgba(255, 255, 255, 0);
  4812. border:none;
  4813. border-top:0px;
  4814. border-right:0px;
  4815. border-bottom:0px;
  4816. border-radius:0px;
  4817. border-top-left-radius:0px;
  4818. border-bottom-left-radius:0px;
  4819. -moz-box-shadow:none;
  4820. -webkit-box-shadow:none;
  4821. box-shadow:none;
  4822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:14px;
  4826. }
  4827. #u14726 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:239px;
  4831. top:887px;
  4832. width:29px;
  4833. height:30px;
  4834. display:flex;
  4835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4836. font-weight:400;
  4837. font-style:normal;
  4838. font-size:14px;
  4839. }
  4840. #u14726 .text {
  4841. position:absolute;
  4842. align-self:center;
  4843. padding:5px 0px 5px 0px;
  4844. box-sizing:border-box;
  4845. width:100%;
  4846. }
  4847. #u14726_text {
  4848. border-width:0px;
  4849. white-space:nowrap;
  4850. text-transform:none;
  4851. }
  4852. #u14727_img {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:921px;
  4858. height:2px;
  4859. }
  4860. #u14727 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:114px;
  4864. top:951px;
  4865. width:920px;
  4866. height:1px;
  4867. display:flex;
  4868. }
  4869. #u14727 .text {
  4870. position:absolute;
  4871. align-self:center;
  4872. padding:2px 2px 2px 2px;
  4873. box-sizing:border-box;
  4874. width:100%;
  4875. }
  4876. #u14727_text {
  4877. border-width:0px;
  4878. word-wrap:break-word;
  4879. text-transform:none;
  4880. visibility:hidden;
  4881. }
  4882. #u14728_div {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:73px;
  4888. height:40px;
  4889. background:inherit;
  4890. background-color:rgba(255, 255, 255, 0);
  4891. box-sizing:border-box;
  4892. border-width:3px;
  4893. border-style:solid;
  4894. border-color:rgba(24, 144, 255, 1);
  4895. border-left:0px;
  4896. border-top:0px;
  4897. border-right:0px;
  4898. border-radius:0px;
  4899. border-bottom-right-radius:0px;
  4900. border-bottom-left-radius:0px;
  4901. -moz-box-shadow:none;
  4902. -webkit-box-shadow:none;
  4903. box-shadow:none;
  4904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4905. font-weight:400;
  4906. font-style:normal;
  4907. font-size:18px;
  4908. color:#000000;
  4909. line-height:40px;
  4910. }
  4911. #u14728 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:114px;
  4915. top:1097px;
  4916. width:73px;
  4917. height:40px;
  4918. display:flex;
  4919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:18px;
  4923. color:#000000;
  4924. line-height:40px;
  4925. }
  4926. #u14728 .text {
  4927. position:absolute;
  4928. align-self:flex-start;
  4929. padding:0px 0px 0px 0px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u14728_text {
  4934. border-width:0px;
  4935. white-space:nowrap;
  4936. text-transform:none;
  4937. }
  4938. #u14729 {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:0px;
  4944. height:0px;
  4945. }
  4946. #u14730_div {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:78px;
  4952. height:40px;
  4953. background:inherit;
  4954. background-color:rgba(255, 255, 255, 0);
  4955. border:none;
  4956. border-left:0px;
  4957. border-top:0px;
  4958. border-right:0px;
  4959. border-radius:0px;
  4960. border-bottom-right-radius:0px;
  4961. border-bottom-left-radius:0px;
  4962. -moz-box-shadow:none;
  4963. -webkit-box-shadow:none;
  4964. box-shadow:none;
  4965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4966. font-weight:400;
  4967. font-style:normal;
  4968. font-size:14px;
  4969. }
  4970. #u14730 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:114px;
  4974. top:1157px;
  4975. width:78px;
  4976. height:40px;
  4977. display:flex;
  4978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4979. font-weight:400;
  4980. font-style:normal;
  4981. font-size:14px;
  4982. }
  4983. #u14730 .text {
  4984. position:absolute;
  4985. align-self:center;
  4986. padding:0px 0px 0px 0px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u14730_text {
  4991. border-width:0px;
  4992. white-space:nowrap;
  4993. text-transform:none;
  4994. }
  4995. #u14731 label {
  4996. left:0px;
  4997. width:100%;
  4998. }
  4999. #u14731_img {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:4px;
  5004. width:12px;
  5005. height:12px;
  5006. }
  5007. #u14731 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:218px;
  5011. top:1167px;
  5012. width:120px;
  5013. height:20px;
  5014. display:flex;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:14px;
  5019. }
  5020. #u14731 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:0px 2px 0px 2px;
  5024. box-sizing:border-box;
  5025. }
  5026. #u14731_img.selected {
  5027. }
  5028. #u14731.selected {
  5029. }
  5030. #u14731_img.disabled {
  5031. }
  5032. #u14731.disabled {
  5033. }
  5034. #u14731_img.selectedDisabled {
  5035. }
  5036. #u14731.selectedDisabled {
  5037. }
  5038. #u14731_text {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:14px;
  5042. top:0px;
  5043. width:104px;
  5044. word-wrap:break-word;
  5045. text-transform:none;
  5046. }
  5047. #u14731_input {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:0px;
  5053. height:0px;
  5054. opacity:0;
  5055. }
  5056. #u14732 label {
  5057. left:0px;
  5058. width:100%;
  5059. }
  5060. #u14732_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:4px;
  5065. width:12px;
  5066. height:12px;
  5067. }
  5068. #u14732 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:364px;
  5072. top:1167px;
  5073. width:120px;
  5074. height:20px;
  5075. display:flex;
  5076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:14px;
  5080. }
  5081. #u14732 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:0px 2px 0px 2px;
  5085. box-sizing:border-box;
  5086. }
  5087. #u14732_img.selected {
  5088. }
  5089. #u14732.selected {
  5090. }
  5091. #u14732_img.disabled {
  5092. }
  5093. #u14732.disabled {
  5094. }
  5095. #u14732_img.selectedDisabled {
  5096. }
  5097. #u14732.selectedDisabled {
  5098. }
  5099. #u14732_text {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:14px;
  5103. top:0px;
  5104. width:104px;
  5105. word-wrap:break-word;
  5106. text-transform:none;
  5107. }
  5108. #u14732_input {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:0px;
  5114. height:0px;
  5115. opacity:0;
  5116. }
  5117. #u14733 label {
  5118. left:0px;
  5119. width:100%;
  5120. }
  5121. #u14733_img {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:4px;
  5126. width:12px;
  5127. height:12px;
  5128. }
  5129. #u14733 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:510px;
  5133. top:1167px;
  5134. width:120px;
  5135. height:20px;
  5136. display:flex;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:14px;
  5141. }
  5142. #u14733 .text {
  5143. position:absolute;
  5144. align-self:center;
  5145. padding:0px 2px 0px 2px;
  5146. box-sizing:border-box;
  5147. }
  5148. #u14733_img.selected {
  5149. }
  5150. #u14733.selected {
  5151. }
  5152. #u14733_img.disabled {
  5153. }
  5154. #u14733.disabled {
  5155. }
  5156. #u14733_img.selectedDisabled {
  5157. }
  5158. #u14733.selectedDisabled {
  5159. }
  5160. #u14733_text {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:14px;
  5164. top:0px;
  5165. width:104px;
  5166. word-wrap:break-word;
  5167. text-transform:none;
  5168. }
  5169. #u14733_input {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:0px;
  5175. height:0px;
  5176. opacity:0;
  5177. }
  5178. #u14734 label {
  5179. left:0px;
  5180. width:100%;
  5181. }
  5182. #u14734_img {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:4px;
  5187. width:12px;
  5188. height:12px;
  5189. }
  5190. #u14734 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:656px;
  5194. top:1167px;
  5195. width:120px;
  5196. height:20px;
  5197. display:flex;
  5198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5199. font-weight:400;
  5200. font-style:normal;
  5201. font-size:14px;
  5202. }
  5203. #u14734 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:0px 2px 0px 2px;
  5207. box-sizing:border-box;
  5208. }
  5209. #u14734_img.selected {
  5210. }
  5211. #u14734.selected {
  5212. }
  5213. #u14734_img.disabled {
  5214. }
  5215. #u14734.disabled {
  5216. }
  5217. #u14734_img.selectedDisabled {
  5218. }
  5219. #u14734.selectedDisabled {
  5220. }
  5221. #u14734_text {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:14px;
  5225. top:0px;
  5226. width:104px;
  5227. word-wrap:break-word;
  5228. text-transform:none;
  5229. }
  5230. #u14734_input {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:0px;
  5236. height:0px;
  5237. opacity:0;
  5238. }
  5239. #u14735_div {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:78px;
  5245. height:40px;
  5246. background:inherit;
  5247. background-color:rgba(255, 255, 255, 0);
  5248. border:none;
  5249. border-left:0px;
  5250. border-top:0px;
  5251. border-right:0px;
  5252. border-radius:0px;
  5253. border-bottom-right-radius:0px;
  5254. border-bottom-left-radius:0px;
  5255. -moz-box-shadow:none;
  5256. -webkit-box-shadow:none;
  5257. box-shadow:none;
  5258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5259. font-weight:400;
  5260. font-style:normal;
  5261. font-size:14px;
  5262. }
  5263. #u14735 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:114px;
  5267. top:1208px;
  5268. width:78px;
  5269. height:40px;
  5270. display:flex;
  5271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5272. font-weight:400;
  5273. font-style:normal;
  5274. font-size:14px;
  5275. }
  5276. #u14735 .text {
  5277. position:absolute;
  5278. align-self:center;
  5279. padding:0px 0px 0px 0px;
  5280. box-sizing:border-box;
  5281. width:100%;
  5282. }
  5283. #u14735_text {
  5284. border-width:0px;
  5285. white-space:nowrap;
  5286. text-transform:none;
  5287. }
  5288. #u14736 label {
  5289. left:0px;
  5290. width:100%;
  5291. }
  5292. #u14736_img {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:4px;
  5297. width:12px;
  5298. height:12px;
  5299. }
  5300. #u14736 {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:218px;
  5304. top:1218px;
  5305. width:286px;
  5306. height:20px;
  5307. display:flex;
  5308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5309. font-weight:400;
  5310. font-style:normal;
  5311. }
  5312. #u14736 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:0px 2px 0px 2px;
  5316. box-sizing:border-box;
  5317. }
  5318. #u14736_img.selected {
  5319. }
  5320. #u14736.selected {
  5321. }
  5322. #u14736_img.disabled {
  5323. }
  5324. #u14736.disabled {
  5325. }
  5326. #u14736_img.selectedDisabled {
  5327. }
  5328. #u14736.selectedDisabled {
  5329. }
  5330. #u14736_text {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:14px;
  5334. top:0px;
  5335. width:270px;
  5336. word-wrap:break-word;
  5337. text-transform:none;
  5338. }
  5339. #u14736_input {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:0px;
  5345. height:0px;
  5346. opacity:0;
  5347. }
  5348. #u14737 label {
  5349. left:0px;
  5350. width:100%;
  5351. }
  5352. #u14737_img {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:0px;
  5356. top:4px;
  5357. width:12px;
  5358. height:12px;
  5359. }
  5360. #u14737 {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:398px;
  5364. top:1218px;
  5365. width:312px;
  5366. height:20px;
  5367. display:flex;
  5368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5369. font-weight:400;
  5370. font-style:normal;
  5371. font-size:14px;
  5372. }
  5373. #u14737 .text {
  5374. position:absolute;
  5375. align-self:center;
  5376. padding:0px 2px 0px 2px;
  5377. box-sizing:border-box;
  5378. }
  5379. #u14737_img.selected {
  5380. }
  5381. #u14737.selected {
  5382. }
  5383. #u14737_img.disabled {
  5384. }
  5385. #u14737.disabled {
  5386. }
  5387. #u14737_img.selectedDisabled {
  5388. }
  5389. #u14737.selectedDisabled {
  5390. }
  5391. #u14737_text {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:14px;
  5395. top:0px;
  5396. width:296px;
  5397. word-wrap:break-word;
  5398. text-transform:none;
  5399. }
  5400. #u14737_input {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:0px;
  5406. height:0px;
  5407. opacity:0;
  5408. }
  5409. #u14738 {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:0px;
  5415. height:0px;
  5416. }
  5417. #u14739_div {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:623px;
  5423. height:368px;
  5424. background:inherit;
  5425. background-color:rgba(242, 242, 242, 1);
  5426. box-sizing:border-box;
  5427. border-width:1px;
  5428. border-style:solid;
  5429. border-color:rgba(242, 242, 242, 1);
  5430. border-radius:0px;
  5431. -moz-box-shadow:none;
  5432. -webkit-box-shadow:none;
  5433. box-shadow:none;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:14px;
  5438. color:#AAAAAA;
  5439. text-align:center;
  5440. line-height:30px;
  5441. }
  5442. #u14739 {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:218px;
  5446. top:1248px;
  5447. width:623px;
  5448. height:368px;
  5449. display:flex;
  5450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5451. font-weight:400;
  5452. font-style:normal;
  5453. font-size:14px;
  5454. color:#AAAAAA;
  5455. text-align:center;
  5456. line-height:30px;
  5457. }
  5458. #u14739 .text {
  5459. position:absolute;
  5460. align-self:center;
  5461. padding:5px 10px 5px 10px;
  5462. box-sizing:border-box;
  5463. width:100%;
  5464. }
  5465. #u14739_text {
  5466. border-width:0px;
  5467. word-wrap:break-word;
  5468. text-transform:none;
  5469. visibility:hidden;
  5470. }
  5471. #u14740_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:57px;
  5477. height:40px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 0);
  5480. border:none;
  5481. border-left:0px;
  5482. border-top:0px;
  5483. border-right:0px;
  5484. border-radius:0px;
  5485. border-bottom-right-radius:0px;
  5486. border-bottom-left-radius:0px;
  5487. -moz-box-shadow:none;
  5488. -webkit-box-shadow:none;
  5489. box-shadow:none;
  5490. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5491. font-weight:500;
  5492. font-style:normal;
  5493. font-size:14px;
  5494. }
  5495. #u14740 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:237px;
  5499. top:1261px;
  5500. width:57px;
  5501. height:40px;
  5502. display:flex;
  5503. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5504. font-weight:500;
  5505. font-style:normal;
  5506. font-size:14px;
  5507. }
  5508. #u14740 .text {
  5509. position:absolute;
  5510. align-self:center;
  5511. padding:0px 0px 0px 0px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u14740_text {
  5516. border-width:0px;
  5517. white-space:nowrap;
  5518. text-transform:none;
  5519. }
  5520. #u14741_div {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:64px;
  5526. height:40px;
  5527. background:inherit;
  5528. background-color:rgba(255, 255, 255, 0);
  5529. border:none;
  5530. border-left:0px;
  5531. border-top:0px;
  5532. border-right:0px;
  5533. border-radius:0px;
  5534. border-bottom-right-radius:0px;
  5535. border-bottom-left-radius:0px;
  5536. -moz-box-shadow:none;
  5537. -webkit-box-shadow:none;
  5538. box-shadow:none;
  5539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:14px;
  5543. }
  5544. #u14741 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:237px;
  5548. top:1301px;
  5549. width:64px;
  5550. height:40px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:14px;
  5556. }
  5557. #u14741 .text {
  5558. position:absolute;
  5559. align-self:center;
  5560. padding:0px 0px 0px 0px;
  5561. box-sizing:border-box;
  5562. width:100%;
  5563. }
  5564. #u14741_text {
  5565. border-width:0px;
  5566. white-space:nowrap;
  5567. text-transform:none;
  5568. }
  5569. #u14742 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:0px;
  5575. height:0px;
  5576. }
  5577. #u14743_div {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:419px;
  5583. height:40px;
  5584. background:inherit;
  5585. background-color:rgba(255, 255, 255, 1);
  5586. box-sizing:border-box;
  5587. border-width:1px;
  5588. border-style:solid;
  5589. border-color:rgba(215, 215, 215, 1);
  5590. border-radius:4px;
  5591. -moz-box-shadow:none;
  5592. -webkit-box-shadow:none;
  5593. box-shadow:none;
  5594. font-size:14px;
  5595. }
  5596. #u14743 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:390px;
  5600. top:1341px;
  5601. width:419px;
  5602. height:40px;
  5603. display:flex;
  5604. font-size:14px;
  5605. }
  5606. #u14743 .text {
  5607. position:absolute;
  5608. align-self:center;
  5609. padding:2px 2px 2px 2px;
  5610. box-sizing:border-box;
  5611. width:100%;
  5612. }
  5613. #u14743_text {
  5614. border-width:0px;
  5615. word-wrap:break-word;
  5616. text-transform:none;
  5617. visibility:hidden;
  5618. }
  5619. #u14744_input {
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:403px;
  5624. height:31px;
  5625. padding:2px 2px 2px 2px;
  5626. font-family:'ArialMT', 'Arial', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. font-size:14px;
  5630. letter-spacing:normal;
  5631. color:#AAAAAA;
  5632. vertical-align:none;
  5633. text-align:left;
  5634. text-transform:none;
  5635. background-color:transparent;
  5636. border-color:transparent;
  5637. }
  5638. #u14744_input.disabled {
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:403px;
  5643. height:31px;
  5644. padding:2px 2px 2px 2px;
  5645. font-family:'ArialMT', 'Arial', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:14px;
  5649. letter-spacing:normal;
  5650. color:#AAAAAA;
  5651. vertical-align:none;
  5652. text-align:left;
  5653. text-transform:none;
  5654. background-color:transparent;
  5655. border-color:transparent;
  5656. }
  5657. #u14744_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:403px;
  5663. height:31px;
  5664. background:inherit;
  5665. background-color:rgba(255, 255, 255, 1);
  5666. border:none;
  5667. border-radius:0px;
  5668. -moz-box-shadow:none;
  5669. -webkit-box-shadow:none;
  5670. box-shadow:none;
  5671. font-size:14px;
  5672. color:#AAAAAA;
  5673. }
  5674. #u14744 {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:398px;
  5678. top:1344px;
  5679. width:403px;
  5680. height:31px;
  5681. display:flex;
  5682. font-size:14px;
  5683. color:#AAAAAA;
  5684. }
  5685. #u14744 .text {
  5686. position:absolute;
  5687. align-self:flex-start;
  5688. padding:2px 2px 2px 2px;
  5689. box-sizing:border-box;
  5690. width:100%;
  5691. }
  5692. #u14744_div.disabled {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:403px;
  5698. height:31px;
  5699. background:inherit;
  5700. background-color:rgba(240, 240, 240, 1);
  5701. border:none;
  5702. border-radius:0px;
  5703. -moz-box-shadow:none;
  5704. -webkit-box-shadow:none;
  5705. box-shadow:none;
  5706. font-size:14px;
  5707. color:#AAAAAA;
  5708. }
  5709. #u14744.disabled {
  5710. }
  5711. .u14744_input_option {
  5712. font-size:14px;
  5713. }
  5714. #u14745_div {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:0px;
  5718. top:0px;
  5719. width:106px;
  5720. height:40px;
  5721. background:inherit;
  5722. background-color:rgba(255, 255, 255, 0);
  5723. border:none;
  5724. border-left:0px;
  5725. border-top:0px;
  5726. border-right:0px;
  5727. border-radius:0px;
  5728. border-bottom-right-radius:0px;
  5729. border-bottom-left-radius:0px;
  5730. -moz-box-shadow:none;
  5731. -webkit-box-shadow:none;
  5732. box-shadow:none;
  5733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:14px;
  5737. }
  5738. #u14745 {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:237px;
  5742. top:1391px;
  5743. width:106px;
  5744. height:40px;
  5745. display:flex;
  5746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5747. font-weight:400;
  5748. font-style:normal;
  5749. font-size:14px;
  5750. }
  5751. #u14745 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:0px 0px 0px 0px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u14745_text {
  5759. border-width:0px;
  5760. white-space:nowrap;
  5761. text-transform:none;
  5762. }
  5763. #u14746 label {
  5764. left:0px;
  5765. width:100%;
  5766. }
  5767. #u14746_img {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:4px;
  5772. width:12px;
  5773. height:12px;
  5774. }
  5775. #u14746 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:237px;
  5779. top:1440px;
  5780. width:286px;
  5781. height:20px;
  5782. display:flex;
  5783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:14px;
  5787. }
  5788. #u14746 .text {
  5789. position:absolute;
  5790. align-self:center;
  5791. padding:0px 2px 0px 2px;
  5792. box-sizing:border-box;
  5793. }
  5794. #u14746_img.selected {
  5795. }
  5796. #u14746.selected {
  5797. }
  5798. #u14746_img.disabled {
  5799. }
  5800. #u14746.disabled {
  5801. }
  5802. #u14746_img.selectedDisabled {
  5803. }
  5804. #u14746.selectedDisabled {
  5805. }
  5806. #u14746_text {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:14px;
  5810. top:0px;
  5811. width:270px;
  5812. word-wrap:break-word;
  5813. text-transform:none;
  5814. }
  5815. #u14746_input {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:0px;
  5821. height:0px;
  5822. opacity:0;
  5823. }
  5824. #u14747 label {
  5825. left:0px;
  5826. width:100%;
  5827. }
  5828. #u14747_img {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:4px;
  5833. width:12px;
  5834. height:12px;
  5835. }
  5836. #u14747 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:365px;
  5840. top:1440px;
  5841. width:286px;
  5842. height:20px;
  5843. display:flex;
  5844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5845. font-weight:400;
  5846. font-style:normal;
  5847. font-size:14px;
  5848. }
  5849. #u14747 .text {
  5850. position:absolute;
  5851. align-self:center;
  5852. padding:0px 2px 0px 2px;
  5853. box-sizing:border-box;
  5854. }
  5855. #u14747_img.selected {
  5856. }
  5857. #u14747.selected {
  5858. }
  5859. #u14747_img.disabled {
  5860. }
  5861. #u14747.disabled {
  5862. }
  5863. #u14747_img.selectedDisabled {
  5864. }
  5865. #u14747.selectedDisabled {
  5866. }
  5867. #u14747_text {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:14px;
  5871. top:0px;
  5872. width:270px;
  5873. word-wrap:break-word;
  5874. text-transform:none;
  5875. }
  5876. #u14747_input {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:0px;
  5882. height:0px;
  5883. opacity:0;
  5884. }
  5885. #u14748 {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:0px;
  5891. height:0px;
  5892. }
  5893. #u14749_div {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:0px;
  5897. top:0px;
  5898. width:143px;
  5899. height:40px;
  5900. background:inherit;
  5901. background-color:rgba(255, 255, 255, 1);
  5902. box-sizing:border-box;
  5903. border-width:1px;
  5904. border-style:solid;
  5905. border-color:rgba(215, 215, 215, 1);
  5906. border-radius:4px;
  5907. -moz-box-shadow:none;
  5908. -webkit-box-shadow:none;
  5909. box-shadow:none;
  5910. font-size:14px;
  5911. }
  5912. #u14749 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:237px;
  5916. top:1341px;
  5917. width:143px;
  5918. height:40px;
  5919. display:flex;
  5920. font-size:14px;
  5921. }
  5922. #u14749 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 2px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u14749_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. visibility:hidden;
  5934. }
  5935. #u14750_input {
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:138px;
  5940. height:31px;
  5941. padding:2px 2px 2px 2px;
  5942. font-family:'ArialMT', 'Arial', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. letter-spacing:normal;
  5947. color:#AAAAAA;
  5948. vertical-align:none;
  5949. text-align:left;
  5950. text-transform:none;
  5951. background-color:transparent;
  5952. border-color:transparent;
  5953. }
  5954. #u14750_input.disabled {
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:138px;
  5959. height:31px;
  5960. padding:2px 2px 2px 2px;
  5961. font-family:'ArialMT', 'Arial', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:14px;
  5965. letter-spacing:normal;
  5966. color:#AAAAAA;
  5967. vertical-align:none;
  5968. text-align:left;
  5969. text-transform:none;
  5970. background-color:transparent;
  5971. border-color:transparent;
  5972. }
  5973. #u14750_div {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:138px;
  5979. height:31px;
  5980. background:inherit;
  5981. background-color:rgba(255, 255, 255, 1);
  5982. border:none;
  5983. border-radius:0px;
  5984. -moz-box-shadow:none;
  5985. -webkit-box-shadow:none;
  5986. box-shadow:none;
  5987. font-size:14px;
  5988. color:#AAAAAA;
  5989. }
  5990. #u14750 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:240px;
  5994. top:1344px;
  5995. width:138px;
  5996. height:31px;
  5997. display:flex;
  5998. font-size:14px;
  5999. color:#AAAAAA;
  6000. }
  6001. #u14750 .text {
  6002. position:absolute;
  6003. align-self:flex-start;
  6004. padding:2px 2px 2px 2px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u14750_div.disabled {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:138px;
  6014. height:31px;
  6015. background:inherit;
  6016. background-color:rgba(240, 240, 240, 1);
  6017. border:none;
  6018. border-radius:0px;
  6019. -moz-box-shadow:none;
  6020. -webkit-box-shadow:none;
  6021. box-shadow:none;
  6022. font-size:14px;
  6023. color:#AAAAAA;
  6024. }
  6025. #u14750.disabled {
  6026. }
  6027. .u14750_input_option {
  6028. font-size:14px;
  6029. }
  6030. #u14751 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:0px;
  6036. height:0px;
  6037. }
  6038. #u14752_div {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:572px;
  6044. height:40px;
  6045. background:inherit;
  6046. background-color:rgba(255, 255, 255, 1);
  6047. box-sizing:border-box;
  6048. border-width:1px;
  6049. border-style:solid;
  6050. border-color:rgba(201, 201, 201, 1);
  6051. border-radius:4px;
  6052. -moz-box-shadow:none;
  6053. -webkit-box-shadow:none;
  6054. box-shadow:none;
  6055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:14px;
  6059. text-align:right;
  6060. }
  6061. #u14752 {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:237px;
  6065. top:1470px;
  6066. width:572px;
  6067. height:40px;
  6068. display:flex;
  6069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. font-size:14px;
  6073. text-align:right;
  6074. }
  6075. #u14752 .text {
  6076. position:absolute;
  6077. align-self:center;
  6078. padding:2px 8px 2px 8px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u14752_text {
  6083. border-width:0px;
  6084. word-wrap:break-word;
  6085. text-transform:none;
  6086. }
  6087. #u14753_input {
  6088. position:absolute;
  6089. left:0px;
  6090. top:0px;
  6091. width:461px;
  6092. height:33px;
  6093. padding:2px 2px 2px 2px;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:14px;
  6098. letter-spacing:normal;
  6099. color:#D7D7D7;
  6100. vertical-align:none;
  6101. text-align:left;
  6102. text-transform:none;
  6103. background-color:transparent;
  6104. border-color:transparent;
  6105. }
  6106. #u14753_input.disabled {
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:461px;
  6111. height:33px;
  6112. padding:2px 2px 2px 2px;
  6113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6114. font-weight:400;
  6115. font-style:normal;
  6116. font-size:14px;
  6117. letter-spacing:normal;
  6118. color:#D7D7D7;
  6119. vertical-align:none;
  6120. text-align:left;
  6121. text-transform:none;
  6122. background-color:transparent;
  6123. border-color:transparent;
  6124. }
  6125. #u14753_div {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:461px;
  6131. height:33px;
  6132. background:inherit;
  6133. background-color:rgba(255, 255, 255, 0);
  6134. border:none;
  6135. border-radius:0px;
  6136. -moz-box-shadow:none;
  6137. -webkit-box-shadow:none;
  6138. box-shadow:none;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:14px;
  6143. color:#D7D7D7;
  6144. }
  6145. #u14753 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:250px;
  6149. top:1473px;
  6150. width:461px;
  6151. height:33px;
  6152. display:flex;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:14px;
  6157. color:#D7D7D7;
  6158. }
  6159. #u14753 .text {
  6160. position:absolute;
  6161. align-self:center;
  6162. padding:2px 2px 2px 2px;
  6163. box-sizing:border-box;
  6164. width:100%;
  6165. }
  6166. #u14753_div.disabled {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:461px;
  6172. height:33px;
  6173. background:inherit;
  6174. background-color:rgba(240, 240, 240, 1);
  6175. border:none;
  6176. border-radius:0px;
  6177. -moz-box-shadow:none;
  6178. -webkit-box-shadow:none;
  6179. box-shadow:none;
  6180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. font-size:14px;
  6184. color:#D7D7D7;
  6185. }
  6186. #u14753.disabled {
  6187. }
  6188. #u14754_div {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:526px;
  6194. height:40px;
  6195. background:inherit;
  6196. background-color:rgba(255, 255, 255, 0);
  6197. border:none;
  6198. border-left:0px;
  6199. border-top:0px;
  6200. border-right:0px;
  6201. border-radius:0px;
  6202. border-bottom-right-radius:0px;
  6203. border-bottom-left-radius:0px;
  6204. -moz-box-shadow:none;
  6205. -webkit-box-shadow:none;
  6206. box-shadow:none;
  6207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6208. font-weight:400;
  6209. font-style:normal;
  6210. }
  6211. #u14754 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:237px;
  6215. top:1520px;
  6216. width:526px;
  6217. height:40px;
  6218. display:flex;
  6219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. }
  6223. #u14754 .text {
  6224. position:absolute;
  6225. align-self:center;
  6226. padding:0px 0px 0px 0px;
  6227. box-sizing:border-box;
  6228. width:100%;
  6229. }
  6230. #u14754_text {
  6231. border-width:0px;
  6232. white-space:nowrap;
  6233. text-transform:none;
  6234. }
  6235. #u14755 label {
  6236. left:0px;
  6237. width:100%;
  6238. }
  6239. #u14755_img {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:4px;
  6244. width:12px;
  6245. height:12px;
  6246. }
  6247. #u14755 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:237px;
  6251. top:1569px;
  6252. width:286px;
  6253. height:20px;
  6254. display:flex;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:14px;
  6259. }
  6260. #u14755 .text {
  6261. position:absolute;
  6262. align-self:center;
  6263. padding:0px 2px 0px 2px;
  6264. box-sizing:border-box;
  6265. }
  6266. #u14755_img.selected {
  6267. }
  6268. #u14755.selected {
  6269. }
  6270. #u14755_img.disabled {
  6271. }
  6272. #u14755.disabled {
  6273. }
  6274. #u14755_img.selectedDisabled {
  6275. }
  6276. #u14755.selectedDisabled {
  6277. }
  6278. #u14755_text {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:14px;
  6282. top:0px;
  6283. width:270px;
  6284. word-wrap:break-word;
  6285. text-transform:none;
  6286. }
  6287. #u14755_input {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:0px;
  6291. top:0px;
  6292. width:0px;
  6293. height:0px;
  6294. opacity:0;
  6295. }
  6296. #u14756 label {
  6297. left:0px;
  6298. width:100%;
  6299. }
  6300. #u14756_img {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:0px;
  6304. top:4px;
  6305. width:12px;
  6306. height:12px;
  6307. }
  6308. #u14756 {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:365px;
  6312. top:1569px;
  6313. width:286px;
  6314. height:20px;
  6315. display:flex;
  6316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:14px;
  6320. }
  6321. #u14756 .text {
  6322. position:absolute;
  6323. align-self:center;
  6324. padding:0px 2px 0px 2px;
  6325. box-sizing:border-box;
  6326. }
  6327. #u14756_img.selected {
  6328. }
  6329. #u14756.selected {
  6330. }
  6331. #u14756_img.disabled {
  6332. }
  6333. #u14756.disabled {
  6334. }
  6335. #u14756_img.selectedDisabled {
  6336. }
  6337. #u14756.selectedDisabled {
  6338. }
  6339. #u14756_text {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:14px;
  6343. top:0px;
  6344. width:270px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. }
  6348. #u14756_input {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:0px;
  6354. height:0px;
  6355. opacity:0;
  6356. }
  6357. #u14757 label {
  6358. left:0px;
  6359. width:100%;
  6360. }
  6361. #u14757_img {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:4px;
  6366. width:12px;
  6367. height:12px;
  6368. }
  6369. #u14757 {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:523px;
  6373. top:1569px;
  6374. width:286px;
  6375. height:20px;
  6376. display:flex;
  6377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6378. font-weight:400;
  6379. font-style:normal;
  6380. font-size:14px;
  6381. }
  6382. #u14757 .text {
  6383. position:absolute;
  6384. align-self:center;
  6385. padding:0px 2px 0px 2px;
  6386. box-sizing:border-box;
  6387. }
  6388. #u14757_img.selected {
  6389. }
  6390. #u14757.selected {
  6391. }
  6392. #u14757_img.disabled {
  6393. }
  6394. #u14757.disabled {
  6395. }
  6396. #u14757_img.selectedDisabled {
  6397. }
  6398. #u14757.selectedDisabled {
  6399. }
  6400. #u14757_text {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:14px;
  6404. top:0px;
  6405. width:270px;
  6406. word-wrap:break-word;
  6407. text-transform:none;
  6408. }
  6409. #u14757_input {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:0px;
  6415. height:0px;
  6416. opacity:0;
  6417. }
  6418. #u14758_div {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:0px;
  6422. top:0px;
  6423. width:78px;
  6424. height:40px;
  6425. background:inherit;
  6426. background-color:rgba(255, 255, 255, 0);
  6427. border:none;
  6428. border-left:0px;
  6429. border-top:0px;
  6430. border-right:0px;
  6431. border-radius:0px;
  6432. border-bottom-right-radius:0px;
  6433. border-bottom-left-radius:0px;
  6434. -moz-box-shadow:none;
  6435. -webkit-box-shadow:none;
  6436. box-shadow:none;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:14px;
  6441. }
  6442. #u14758 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:114px;
  6446. top:1646px;
  6447. width:78px;
  6448. height:40px;
  6449. display:flex;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:14px;
  6454. }
  6455. #u14758 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:0px 0px 0px 0px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u14758_text {
  6463. border-width:0px;
  6464. white-space:nowrap;
  6465. text-transform:none;
  6466. }
  6467. #u14759 label {
  6468. left:0px;
  6469. width:100%;
  6470. }
  6471. #u14759_img {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:4px;
  6476. width:12px;
  6477. height:12px;
  6478. }
  6479. #u14759 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:218px;
  6483. top:1656px;
  6484. width:286px;
  6485. height:20px;
  6486. display:flex;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:14px;
  6491. }
  6492. #u14759 .text {
  6493. position:absolute;
  6494. align-self:center;
  6495. padding:0px 2px 0px 2px;
  6496. box-sizing:border-box;
  6497. }
  6498. #u14759_img.selected {
  6499. }
  6500. #u14759.selected {
  6501. }
  6502. #u14759_img.disabled {
  6503. }
  6504. #u14759.disabled {
  6505. }
  6506. #u14759_img.selectedDisabled {
  6507. }
  6508. #u14759.selectedDisabled {
  6509. }
  6510. #u14759_text {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:14px;
  6514. top:0px;
  6515. width:270px;
  6516. word-wrap:break-word;
  6517. text-transform:none;
  6518. }
  6519. #u14759_input {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:0px;
  6523. top:0px;
  6524. width:0px;
  6525. height:0px;
  6526. opacity:0;
  6527. }
  6528. #u14760 label {
  6529. left:0px;
  6530. width:100%;
  6531. }
  6532. #u14760_img {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:0px;
  6536. top:4px;
  6537. width:12px;
  6538. height:12px;
  6539. }
  6540. #u14760 {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:398px;
  6544. top:1656px;
  6545. width:286px;
  6546. height:20px;
  6547. display:flex;
  6548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6549. font-weight:400;
  6550. font-style:normal;
  6551. font-size:14px;
  6552. }
  6553. #u14760 .text {
  6554. position:absolute;
  6555. align-self:center;
  6556. padding:0px 2px 0px 2px;
  6557. box-sizing:border-box;
  6558. }
  6559. #u14760_img.selected {
  6560. }
  6561. #u14760.selected {
  6562. }
  6563. #u14760_img.disabled {
  6564. }
  6565. #u14760.disabled {
  6566. }
  6567. #u14760_img.selectedDisabled {
  6568. }
  6569. #u14760.selectedDisabled {
  6570. }
  6571. #u14760_text {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:14px;
  6575. top:0px;
  6576. width:270px;
  6577. word-wrap:break-word;
  6578. text-transform:none;
  6579. }
  6580. #u14760_input {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:0px;
  6586. height:0px;
  6587. opacity:0;
  6588. }
  6589. #u14761_div {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:337px;
  6595. height:20px;
  6596. background:inherit;
  6597. background-color:rgba(255, 255, 255, 0);
  6598. border:none;
  6599. border-radius:0px;
  6600. -moz-box-shadow:none;
  6601. -webkit-box-shadow:none;
  6602. box-shadow:none;
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:14px;
  6607. color:#D9001B;
  6608. }
  6609. #u14761 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:530px;
  6613. top:1218px;
  6614. width:337px;
  6615. height:20px;
  6616. display:flex;
  6617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:14px;
  6621. color:#D9001B;
  6622. }
  6623. #u14761 .text {
  6624. position:absolute;
  6625. align-self:flex-start;
  6626. padding:0px 0px 0px 0px;
  6627. box-sizing:border-box;
  6628. width:100%;
  6629. }
  6630. #u14761_text {
  6631. border-width:0px;
  6632. white-space:nowrap;
  6633. text-transform:none;
  6634. }