styles.css 201 KB

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