styles.css 185 KB

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