styles.css 135 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u73569_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u73569 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u73569 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u73569_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u73570_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u73570 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u73570 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u73570_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u73571_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u73571 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u73571 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u73571_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u73572 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u73573_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u73573 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u73573 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u73573_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u73574_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u73574 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u73574 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u73574_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u73575_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u73575 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u73575 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u73575_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u73576 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u73577_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u73577_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u73577_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u73577 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u73577 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u73577_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u73577.disabled {
  356. }
  357. .u73577_input_option {
  358. font-size:14px;
  359. }
  360. #u73578_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u73578 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u73578 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u73578_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u73579_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u73579 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u73579 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u73579_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u73580_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u73580 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u73580 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u73580_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u73581 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u73582_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u73582 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u73582 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u73582_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u73583_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u73583 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u73583 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u73583_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u73584 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u73585_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u73585 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u73585 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u73585_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u73586_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u73586 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u73586 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u73586_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u73587 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u73588_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u73588 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u73588 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u73588_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u73589_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u73589 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u73589 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u73589_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u73590 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u73591_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u73591 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u73591 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u73591_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u73592_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u73592 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u73592 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u73592_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u73593 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u73594_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u73594 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u73594 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u73594_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u73595_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u73595 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u73595 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u73595_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u73596 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u73597_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u73597 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u73597 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u73597_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u73598_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u73598 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u73598 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u73598_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u73599 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u73600_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u73600 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u73600 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u73600_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u73601_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u73601 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u73601 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u73601_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u73602 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u73603_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u73603 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u73603 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u73603_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u73604_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u73604 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u73604 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u73604_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u73605 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u73606_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u73606 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u73606 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u73606_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u73607_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u73607 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u73607 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u73607_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u73608 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u73609_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u73609 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u73609 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u73609_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u73610_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u73610 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u73610 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u73610_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u73611_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u73611 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u73611 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u73611_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u73612_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u73612 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u73612 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u73612_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u73613_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u73613 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u73613 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u73613_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u73614_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u73614 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u73614 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u73614_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u73615 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u73616_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u73616 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u73616 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u73616_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u73617_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u73617 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u73617 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u73617_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u73618 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u73619_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u73619 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u73619 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u73619_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u73620_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u73620 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u73620 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u73620_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u73621_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1258px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. }
  1653. #u73621 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:331px;
  1657. top:50px;
  1658. width:1258px;
  1659. height:1191px;
  1660. display:flex;
  1661. }
  1662. #u73621 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u73621_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u73622_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:85px;
  1681. height:40px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1690. font-weight:500;
  1691. font-style:normal;
  1692. color:#1890FF;
  1693. line-height:40px;
  1694. }
  1695. #u73622 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:729px;
  1699. top:140px;
  1700. width:85px;
  1701. height:40px;
  1702. display:flex;
  1703. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1704. font-weight:500;
  1705. font-style:normal;
  1706. color:#1890FF;
  1707. line-height:40px;
  1708. }
  1709. #u73622 .text {
  1710. position:absolute;
  1711. align-self:flex-start;
  1712. padding:0px 0px 0px 0px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u73622_text {
  1717. border-width:0px;
  1718. white-space:nowrap;
  1719. text-transform:none;
  1720. }
  1721. #u73623_div {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:85px;
  1727. height:40px;
  1728. background:inherit;
  1729. background-color:rgba(255, 255, 255, 0);
  1730. border:none;
  1731. border-radius:0px;
  1732. -moz-box-shadow:none;
  1733. -webkit-box-shadow:none;
  1734. box-shadow:none;
  1735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1736. font-weight:500;
  1737. font-style:normal;
  1738. line-height:40px;
  1739. }
  1740. #u73623 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:844px;
  1744. top:140px;
  1745. width:85px;
  1746. height:40px;
  1747. display:flex;
  1748. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1749. font-weight:500;
  1750. font-style:normal;
  1751. line-height:40px;
  1752. }
  1753. #u73623 .text {
  1754. position:absolute;
  1755. align-self:flex-start;
  1756. padding:0px 0px 0px 0px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u73623_text {
  1761. border-width:0px;
  1762. white-space:nowrap;
  1763. text-transform:none;
  1764. }
  1765. #u73624_div {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:113px;
  1771. height:40px;
  1772. background:inherit;
  1773. background-color:rgba(255, 255, 255, 0);
  1774. border:none;
  1775. border-radius:0px;
  1776. -moz-box-shadow:none;
  1777. -webkit-box-shadow:none;
  1778. box-shadow:none;
  1779. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1780. font-weight:500;
  1781. font-style:normal;
  1782. line-height:40px;
  1783. }
  1784. #u73624 {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:959px;
  1788. top:140px;
  1789. width:113px;
  1790. height:40px;
  1791. display:flex;
  1792. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1793. font-weight:500;
  1794. font-style:normal;
  1795. line-height:40px;
  1796. }
  1797. #u73624 .text {
  1798. position:absolute;
  1799. align-self:flex-start;
  1800. padding:0px 0px 0px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u73624_text {
  1805. border-width:0px;
  1806. white-space:nowrap;
  1807. text-transform:none;
  1808. }
  1809. #u73625_div {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:75px;
  1815. height:30px;
  1816. background:inherit;
  1817. background-color:rgba(255, 255, 255, 0);
  1818. box-sizing:border-box;
  1819. border-width:1px;
  1820. border-style:solid;
  1821. border-color:rgba(121, 121, 121, 1);
  1822. border-radius:3px;
  1823. border-top-right-radius:0px;
  1824. border-bottom-right-radius:0px;
  1825. -moz-box-shadow:none;
  1826. -webkit-box-shadow:none;
  1827. box-shadow:none;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:14px;
  1832. text-align:center;
  1833. }
  1834. #u73625 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:739px;
  1838. top:270px;
  1839. width:75px;
  1840. height:30px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:14px;
  1846. text-align:center;
  1847. }
  1848. #u73625 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:5px 10px 5px 10px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u73625_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. }
  1860. #u73626_div {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:99px;
  1866. height:40px;
  1867. background:inherit;
  1868. background-color:rgba(255, 255, 255, 0);
  1869. border:none;
  1870. border-radius:0px;
  1871. -moz-box-shadow:none;
  1872. -webkit-box-shadow:none;
  1873. box-shadow:none;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. line-height:40px;
  1878. }
  1879. #u73626 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:739px;
  1883. top:230px;
  1884. width:99px;
  1885. height:40px;
  1886. display:flex;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. line-height:40px;
  1891. }
  1892. #u73626 .text {
  1893. position:absolute;
  1894. align-self:flex-start;
  1895. padding:0px 0px 0px 0px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u73626_text {
  1900. border-width:0px;
  1901. white-space:nowrap;
  1902. text-transform:none;
  1903. }
  1904. #u73627_div {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:75px;
  1910. height:30px;
  1911. background:inherit;
  1912. background-color:rgba(255, 255, 255, 0);
  1913. box-sizing:border-box;
  1914. border-width:1px;
  1915. border-style:solid;
  1916. border-color:rgba(24, 144, 255, 1);
  1917. border-radius:3px;
  1918. border-top-left-radius:0px;
  1919. border-bottom-left-radius:0px;
  1920. -moz-box-shadow:none;
  1921. -webkit-box-shadow:none;
  1922. box-shadow:none;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:14px;
  1927. color:#1890FF;
  1928. text-align:center;
  1929. }
  1930. #u73627 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:813px;
  1934. top:270px;
  1935. width:75px;
  1936. height:30px;
  1937. display:flex;
  1938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1939. font-weight:400;
  1940. font-style:normal;
  1941. font-size:14px;
  1942. color:#1890FF;
  1943. text-align:center;
  1944. }
  1945. #u73627 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:5px 10px 5px 10px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u73627_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u73628_div {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:75px;
  1963. height:30px;
  1964. background:inherit;
  1965. background-color:rgba(255, 255, 255, 0);
  1966. box-sizing:border-box;
  1967. border-width:1px;
  1968. border-style:solid;
  1969. border-color:rgba(121, 121, 121, 1);
  1970. border-radius:3px;
  1971. border-top-right-radius:0px;
  1972. border-bottom-right-radius:0px;
  1973. -moz-box-shadow:none;
  1974. -webkit-box-shadow:none;
  1975. box-shadow:none;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:14px;
  1980. text-align:center;
  1981. }
  1982. #u73628 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:739px;
  1986. top:350px;
  1987. width:75px;
  1988. height:30px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:14px;
  1994. text-align:center;
  1995. }
  1996. #u73628 .text {
  1997. position:absolute;
  1998. align-self:center;
  1999. padding:5px 10px 5px 10px;
  2000. box-sizing:border-box;
  2001. width:100%;
  2002. }
  2003. #u73628_text {
  2004. border-width:0px;
  2005. word-wrap:break-word;
  2006. text-transform:none;
  2007. }
  2008. #u73629_div {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:141px;
  2014. height:40px;
  2015. background:inherit;
  2016. background-color:rgba(255, 255, 255, 0);
  2017. border:none;
  2018. border-radius:0px;
  2019. -moz-box-shadow:none;
  2020. -webkit-box-shadow:none;
  2021. box-shadow:none;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. line-height:40px;
  2026. }
  2027. #u73629 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:739px;
  2031. top:310px;
  2032. width:141px;
  2033. height:40px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. line-height:40px;
  2039. }
  2040. #u73629 .text {
  2041. position:absolute;
  2042. align-self:flex-start;
  2043. padding:0px 0px 0px 0px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u73629_text {
  2048. border-width:0px;
  2049. white-space:nowrap;
  2050. text-transform:none;
  2051. }
  2052. #u73630_div {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:75px;
  2058. height:30px;
  2059. background:inherit;
  2060. background-color:rgba(255, 255, 255, 0);
  2061. box-sizing:border-box;
  2062. border-width:1px;
  2063. border-style:solid;
  2064. border-color:rgba(24, 144, 255, 1);
  2065. border-radius:3px;
  2066. border-top-left-radius:0px;
  2067. border-bottom-left-radius:0px;
  2068. -moz-box-shadow:none;
  2069. -webkit-box-shadow:none;
  2070. box-shadow:none;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:14px;
  2075. color:#1890FF;
  2076. text-align:center;
  2077. }
  2078. #u73630 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:813px;
  2082. top:350px;
  2083. width:75px;
  2084. height:30px;
  2085. display:flex;
  2086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:14px;
  2090. color:#1890FF;
  2091. text-align:center;
  2092. }
  2093. #u73630 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:5px 10px 5px 10px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u73630_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u73631_div {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:75px;
  2111. height:30px;
  2112. background:inherit;
  2113. background-color:rgba(255, 255, 255, 0);
  2114. box-sizing:border-box;
  2115. border-width:1px;
  2116. border-style:solid;
  2117. border-color:rgba(121, 121, 121, 1);
  2118. border-radius:3px;
  2119. border-top-right-radius:0px;
  2120. border-bottom-right-radius:0px;
  2121. -moz-box-shadow:none;
  2122. -webkit-box-shadow:none;
  2123. box-shadow:none;
  2124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2125. font-weight:400;
  2126. font-style:normal;
  2127. font-size:14px;
  2128. text-align:center;
  2129. }
  2130. #u73631 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:739px;
  2134. top:487px;
  2135. width:75px;
  2136. height:30px;
  2137. display:flex;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:14px;
  2142. text-align:center;
  2143. }
  2144. #u73631 .text {
  2145. position:absolute;
  2146. align-self:center;
  2147. padding:5px 10px 5px 10px;
  2148. box-sizing:border-box;
  2149. width:100%;
  2150. }
  2151. #u73631_text {
  2152. border-width:0px;
  2153. word-wrap:break-word;
  2154. text-transform:none;
  2155. }
  2156. #u73632_div {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:127px;
  2162. height:40px;
  2163. background:inherit;
  2164. background-color:rgba(255, 255, 255, 0);
  2165. border:none;
  2166. border-radius:0px;
  2167. -moz-box-shadow:none;
  2168. -webkit-box-shadow:none;
  2169. box-shadow:none;
  2170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2171. font-weight:400;
  2172. font-style:normal;
  2173. line-height:40px;
  2174. }
  2175. #u73632 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:739px;
  2179. top:447px;
  2180. width:127px;
  2181. height:40px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. line-height:40px;
  2187. }
  2188. #u73632 .text {
  2189. position:absolute;
  2190. align-self:flex-start;
  2191. padding:0px 0px 0px 0px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u73632_text {
  2196. border-width:0px;
  2197. white-space:nowrap;
  2198. text-transform:none;
  2199. }
  2200. #u73633_div {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:75px;
  2206. height:30px;
  2207. background:inherit;
  2208. background-color:rgba(255, 255, 255, 0);
  2209. box-sizing:border-box;
  2210. border-width:1px;
  2211. border-style:solid;
  2212. border-color:rgba(24, 144, 255, 1);
  2213. border-radius:3px;
  2214. border-top-left-radius:0px;
  2215. border-bottom-left-radius:0px;
  2216. -moz-box-shadow:none;
  2217. -webkit-box-shadow:none;
  2218. box-shadow:none;
  2219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:14px;
  2223. color:#1890FF;
  2224. text-align:center;
  2225. }
  2226. #u73633 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:813px;
  2230. top:487px;
  2231. width:75px;
  2232. height:30px;
  2233. display:flex;
  2234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:14px;
  2238. color:#1890FF;
  2239. text-align:center;
  2240. }
  2241. #u73633 .text {
  2242. position:absolute;
  2243. align-self:center;
  2244. padding:5px 10px 5px 10px;
  2245. box-sizing:border-box;
  2246. width:100%;
  2247. }
  2248. #u73633_text {
  2249. border-width:0px;
  2250. word-wrap:break-word;
  2251. text-transform:none;
  2252. }
  2253. #u73634_div {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:0px;
  2257. top:0px;
  2258. width:75px;
  2259. height:30px;
  2260. background:inherit;
  2261. background-color:rgba(255, 255, 255, 0);
  2262. box-sizing:border-box;
  2263. border-width:1px;
  2264. border-style:solid;
  2265. border-color:rgba(121, 121, 121, 1);
  2266. border-radius:3px;
  2267. border-top-right-radius:0px;
  2268. border-bottom-right-radius:0px;
  2269. -moz-box-shadow:none;
  2270. -webkit-box-shadow:none;
  2271. box-shadow:none;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:14px;
  2276. text-align:center;
  2277. }
  2278. #u73634 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:739px;
  2282. top:567px;
  2283. width:75px;
  2284. height:30px;
  2285. display:flex;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:14px;
  2290. text-align:center;
  2291. }
  2292. #u73634 .text {
  2293. position:absolute;
  2294. align-self:center;
  2295. padding:5px 10px 5px 10px;
  2296. box-sizing:border-box;
  2297. width:100%;
  2298. }
  2299. #u73634_text {
  2300. border-width:0px;
  2301. word-wrap:break-word;
  2302. text-transform:none;
  2303. }
  2304. #u73635_div {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:107px;
  2310. height:40px;
  2311. background:inherit;
  2312. background-color:rgba(255, 255, 255, 0);
  2313. border:none;
  2314. border-radius:0px;
  2315. -moz-box-shadow:none;
  2316. -webkit-box-shadow:none;
  2317. box-shadow:none;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. line-height:40px;
  2322. }
  2323. #u73635 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:739px;
  2327. top:527px;
  2328. width:107px;
  2329. height:40px;
  2330. display:flex;
  2331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2332. font-weight:400;
  2333. font-style:normal;
  2334. line-height:40px;
  2335. }
  2336. #u73635 .text {
  2337. position:absolute;
  2338. align-self:flex-start;
  2339. padding:0px 0px 0px 0px;
  2340. box-sizing:border-box;
  2341. width:100%;
  2342. }
  2343. #u73635_text {
  2344. border-width:0px;
  2345. white-space:nowrap;
  2346. text-transform:none;
  2347. }
  2348. #u73636_div {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:75px;
  2354. height:30px;
  2355. background:inherit;
  2356. background-color:rgba(255, 255, 255, 0);
  2357. box-sizing:border-box;
  2358. border-width:1px;
  2359. border-style:solid;
  2360. border-color:rgba(24, 144, 255, 1);
  2361. border-radius:3px;
  2362. border-top-left-radius:0px;
  2363. border-bottom-left-radius:0px;
  2364. -moz-box-shadow:none;
  2365. -webkit-box-shadow:none;
  2366. box-shadow:none;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:14px;
  2371. color:#1890FF;
  2372. text-align:center;
  2373. }
  2374. #u73636 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:813px;
  2378. top:567px;
  2379. width:75px;
  2380. height:30px;
  2381. display:flex;
  2382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:14px;
  2386. color:#1890FF;
  2387. text-align:center;
  2388. }
  2389. #u73636 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:5px 10px 5px 10px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u73636_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. }
  2401. #u73637_div {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:411px;
  2407. height:40px;
  2408. background:inherit;
  2409. background-color:rgba(255, 255, 255, 0);
  2410. border:none;
  2411. border-radius:0px;
  2412. -moz-box-shadow:none;
  2413. -webkit-box-shadow:none;
  2414. box-shadow:none;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:12px;
  2419. color:#AAAAAA;
  2420. line-height:40px;
  2421. }
  2422. #u73637 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:856px;
  2426. top:527px;
  2427. width:411px;
  2428. height:40px;
  2429. display:flex;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:12px;
  2434. color:#AAAAAA;
  2435. line-height:40px;
  2436. }
  2437. #u73637 .text {
  2438. position:absolute;
  2439. align-self:flex-start;
  2440. padding:0px 0px 0px 0px;
  2441. box-sizing:border-box;
  2442. width:100%;
  2443. }
  2444. #u73637_text {
  2445. border-width:0px;
  2446. white-space:nowrap;
  2447. text-transform:none;
  2448. }
  2449. #u73638_div {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:80px;
  2455. height:40px;
  2456. background:inherit;
  2457. background-color:rgba(24, 144, 255, 1);
  2458. border:none;
  2459. border-radius:4px;
  2460. -moz-box-shadow:none;
  2461. -webkit-box-shadow:none;
  2462. box-shadow:none;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:14px;
  2467. color:#FFFFFF;
  2468. }
  2469. #u73638 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:729px;
  2473. top:627px;
  2474. width:80px;
  2475. height:40px;
  2476. display:flex;
  2477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2478. font-weight:400;
  2479. font-style:normal;
  2480. font-size:14px;
  2481. color:#FFFFFF;
  2482. }
  2483. #u73638 .text {
  2484. position:absolute;
  2485. align-self:center;
  2486. padding:2px 2px 2px 2px;
  2487. box-sizing:border-box;
  2488. width:100%;
  2489. }
  2490. #u73638_text {
  2491. border-width:0px;
  2492. word-wrap:break-word;
  2493. text-transform:none;
  2494. }
  2495. #u73639_div {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:85px;
  2501. height:40px;
  2502. background:inherit;
  2503. background-color:rgba(255, 255, 255, 0);
  2504. border:none;
  2505. border-radius:0px;
  2506. -moz-box-shadow:none;
  2507. -webkit-box-shadow:none;
  2508. box-shadow:none;
  2509. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2510. font-weight:500;
  2511. font-style:normal;
  2512. line-height:40px;
  2513. }
  2514. #u73639 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:729px;
  2518. top:190px;
  2519. width:85px;
  2520. height:40px;
  2521. display:flex;
  2522. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2523. font-weight:500;
  2524. font-style:normal;
  2525. line-height:40px;
  2526. }
  2527. #u73639 .text {
  2528. position:absolute;
  2529. align-self:flex-start;
  2530. padding:0px 0px 0px 0px;
  2531. box-sizing:border-box;
  2532. width:100%;
  2533. }
  2534. #u73639_text {
  2535. border-width:0px;
  2536. white-space:nowrap;
  2537. text-transform:none;
  2538. }
  2539. #u73640_div {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:85px;
  2545. height:40px;
  2546. background:inherit;
  2547. background-color:rgba(255, 255, 255, 0);
  2548. border:none;
  2549. border-radius:0px;
  2550. -moz-box-shadow:none;
  2551. -webkit-box-shadow:none;
  2552. box-shadow:none;
  2553. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2554. font-weight:500;
  2555. font-style:normal;
  2556. line-height:40px;
  2557. }
  2558. #u73640 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:729px;
  2562. top:407px;
  2563. width:85px;
  2564. height:40px;
  2565. display:flex;
  2566. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2567. font-weight:500;
  2568. font-style:normal;
  2569. line-height:40px;
  2570. }
  2571. #u73640 .text {
  2572. position:absolute;
  2573. align-self:flex-start;
  2574. padding:0px 0px 0px 0px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u73640_text {
  2579. border-width:0px;
  2580. white-space:nowrap;
  2581. text-transform:none;
  2582. }
  2583. #u73641 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:0px;
  2589. height:0px;
  2590. }
  2591. #u73642_div {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:199px;
  2597. height:40px;
  2598. background:inherit;
  2599. background-color:rgba(255, 255, 255, 0);
  2600. border:none;
  2601. border-radius:0px;
  2602. -moz-box-shadow:none;
  2603. -webkit-box-shadow:none;
  2604. box-shadow:none;
  2605. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2606. font-weight:500;
  2607. font-style:normal;
  2608. font-size:18px;
  2609. line-height:40px;
  2610. }
  2611. #u73642 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:752px;
  2615. top:82px;
  2616. width:199px;
  2617. height:40px;
  2618. display:flex;
  2619. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2620. font-weight:500;
  2621. font-style:normal;
  2622. font-size:18px;
  2623. line-height:40px;
  2624. }
  2625. #u73642 .text {
  2626. position:absolute;
  2627. align-self:flex-start;
  2628. padding:0px 0px 0px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u73642_text {
  2633. border-width:0px;
  2634. white-space:nowrap;
  2635. text-transform:none;
  2636. }
  2637. #u73643_img {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:30px;
  2643. height:30px;
  2644. }
  2645. #u73643 {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:712px;
  2649. top:87px;
  2650. width:30px;
  2651. height:30px;
  2652. display:flex;
  2653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2654. font-weight:400;
  2655. font-style:normal;
  2656. font-size:10px;
  2657. color:#FFFFFF;
  2658. }
  2659. #u73643 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 2px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u73643_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. }
  2671. #u73644 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:0px;
  2677. height:0px;
  2678. }
  2679. #u73645_div {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:350px;
  2685. height:1126px;
  2686. background:inherit;
  2687. background-color:rgba(240, 242, 245, 1);
  2688. border:none;
  2689. border-radius:0px;
  2690. -moz-box-shadow:none;
  2691. -webkit-box-shadow:none;
  2692. box-shadow:none;
  2693. }
  2694. #u73645 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:331px;
  2698. top:50px;
  2699. width:350px;
  2700. height:1126px;
  2701. display:flex;
  2702. }
  2703. #u73645 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 2px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u73645_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. visibility:hidden;
  2715. }
  2716. #u73646 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:0px;
  2722. height:0px;
  2723. }
  2724. #u73647_div {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:300px;
  2730. height:40px;
  2731. background:inherit;
  2732. background-color:rgba(255, 255, 255, 1);
  2733. box-sizing:border-box;
  2734. border-width:1px;
  2735. border-style:solid;
  2736. border-color:rgba(242, 242, 242, 1);
  2737. border-radius:4px;
  2738. -moz-box-shadow:none;
  2739. -webkit-box-shadow:none;
  2740. box-shadow:none;
  2741. font-family:'Microsoft YaHei', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:14px;
  2745. color:#CCCCCC;
  2746. text-align:left;
  2747. }
  2748. #u73647 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:351px;
  2752. top:119px;
  2753. width:300px;
  2754. height:40px;
  2755. display:flex;
  2756. font-family:'Microsoft YaHei', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:14px;
  2760. color:#CCCCCC;
  2761. text-align:left;
  2762. }
  2763. #u73647 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 8px 2px 8px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u73647_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. visibility:hidden;
  2775. }
  2776. #u73648_input {
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:263px;
  2781. height:33px;
  2782. padding:2px 2px 2px 2px;
  2783. font-family:'Microsoft YaHei', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:14px;
  2787. letter-spacing:normal;
  2788. color:#000000;
  2789. vertical-align:none;
  2790. text-align:left;
  2791. text-transform:none;
  2792. background-color:transparent;
  2793. border-color:transparent;
  2794. }
  2795. #u73648_input.disabled {
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:263px;
  2800. height:33px;
  2801. padding:2px 2px 2px 2px;
  2802. font-family:'Microsoft YaHei', sans-serif;
  2803. font-weight:400;
  2804. font-style:normal;
  2805. font-size:14px;
  2806. letter-spacing:normal;
  2807. color:#000000;
  2808. vertical-align:none;
  2809. text-align:left;
  2810. text-transform:none;
  2811. background-color:transparent;
  2812. border-color:transparent;
  2813. }
  2814. #u73648_div {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:263px;
  2820. height:33px;
  2821. background:inherit;
  2822. background-color:rgba(255, 255, 255, 1);
  2823. border:none;
  2824. border-radius:0px;
  2825. -moz-box-shadow:none;
  2826. -webkit-box-shadow:none;
  2827. box-shadow:none;
  2828. font-family:'Microsoft YaHei', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:14px;
  2832. }
  2833. #u73648 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:359px;
  2837. top:120px;
  2838. width:263px;
  2839. height:33px;
  2840. display:flex;
  2841. font-family:'Microsoft YaHei', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:14px;
  2845. }
  2846. #u73648 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 2px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u73648_div.disabled {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:263px;
  2859. height:33px;
  2860. background:inherit;
  2861. background-color:rgba(240, 240, 240, 1);
  2862. border:none;
  2863. border-radius:0px;
  2864. -moz-box-shadow:none;
  2865. -webkit-box-shadow:none;
  2866. box-shadow:none;
  2867. font-family:'Microsoft YaHei', sans-serif;
  2868. font-weight:400;
  2869. font-style:normal;
  2870. font-size:14px;
  2871. }
  2872. #u73648.disabled {
  2873. }
  2874. #u73649_img {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:0px;
  2879. width:14px;
  2880. height:14px;
  2881. }
  2882. #u73649 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:626px;
  2886. top:131px;
  2887. width:14px;
  2888. height:14px;
  2889. display:flex;
  2890. }
  2891. #u73649 .text {
  2892. position:absolute;
  2893. align-self:center;
  2894. padding:2px 2px 2px 2px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u73649_text {
  2899. border-width:0px;
  2900. word-wrap:break-word;
  2901. text-transform:none;
  2902. visibility:hidden;
  2903. }
  2904. #u73650 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:0px;
  2910. height:0px;
  2911. }
  2912. #u73651_div {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:300px;
  2918. height:50px;
  2919. background:inherit;
  2920. background-color:rgba(242, 242, 242, 0);
  2921. border:none;
  2922. border-radius:4px;
  2923. -moz-box-shadow:none;
  2924. -webkit-box-shadow:none;
  2925. box-shadow:none;
  2926. font-family:'Microsoft YaHei', sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:14px;
  2930. color:#CCCCCC;
  2931. text-align:left;
  2932. }
  2933. #u73651 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:351px;
  2937. top:169px;
  2938. width:300px;
  2939. height:50px;
  2940. display:flex;
  2941. font-family:'Microsoft YaHei', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:14px;
  2945. color:#CCCCCC;
  2946. text-align:left;
  2947. }
  2948. #u73651 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 8px 2px 8px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u73651_text {
  2956. border-width:0px;
  2957. word-wrap:break-word;
  2958. text-transform:none;
  2959. visibility:hidden;
  2960. }
  2961. #u73652_div {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:15px;
  2967. height:15px;
  2968. background:inherit;
  2969. background-color:rgba(51, 51, 51, 1);
  2970. border:none;
  2971. border-radius:8px;
  2972. -moz-box-shadow:none;
  2973. -webkit-box-shadow:none;
  2974. box-shadow:none;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:10px;
  2979. color:#FFFFFF;
  2980. }
  2981. #u73652 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:364px;
  2985. top:187px;
  2986. width:15px;
  2987. height:15px;
  2988. display:flex;
  2989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2990. font-weight:400;
  2991. font-style:normal;
  2992. font-size:10px;
  2993. color:#FFFFFF;
  2994. }
  2995. #u73652 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:0px 0px 0px 0px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u73652_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. }
  3007. #u73653_div {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:127px;
  3013. height:20px;
  3014. background:inherit;
  3015. background-color:rgba(51, 51, 51, 0);
  3016. border:none;
  3017. border-radius:4px;
  3018. -moz-box-shadow:none;
  3019. -webkit-box-shadow:none;
  3020. box-shadow:none;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:14px;
  3025. text-align:left;
  3026. }
  3027. #u73653 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:385px;
  3031. top:184px;
  3032. width:127px;
  3033. height:20px;
  3034. display:flex;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:14px;
  3039. text-align:left;
  3040. }
  3041. #u73653 .text {
  3042. position:absolute;
  3043. align-self:center;
  3044. padding:0px 0px 0px 0px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u73653_text {
  3049. border-width:0px;
  3050. white-space:nowrap;
  3051. text-transform:none;
  3052. }
  3053. #u73654 {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:0px;
  3059. height:0px;
  3060. }
  3061. #u73655 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:0px;
  3067. height:0px;
  3068. }
  3069. #u73656_div {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:300px;
  3075. height:50px;
  3076. background:inherit;
  3077. background-color:rgba(242, 242, 242, 1);
  3078. border:none;
  3079. border-radius:4px;
  3080. -moz-box-shadow:none;
  3081. -webkit-box-shadow:none;
  3082. box-shadow:none;
  3083. font-family:'Microsoft YaHei', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:14px;
  3087. color:#CCCCCC;
  3088. text-align:left;
  3089. }
  3090. #u73656 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:351px;
  3094. top:219px;
  3095. width:300px;
  3096. height:50px;
  3097. display:flex;
  3098. font-family:'Microsoft YaHei', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:14px;
  3102. color:#CCCCCC;
  3103. text-align:left;
  3104. }
  3105. #u73656 .text {
  3106. position:absolute;
  3107. align-self:center;
  3108. padding:2px 8px 2px 8px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u73656_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. visibility:hidden;
  3117. }
  3118. #u73657_div {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:57px;
  3124. height:20px;
  3125. background:inherit;
  3126. background-color:rgba(51, 51, 51, 0);
  3127. border:none;
  3128. border-radius:4px;
  3129. -moz-box-shadow:none;
  3130. -webkit-box-shadow:none;
  3131. box-shadow:none;
  3132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3133. font-weight:400;
  3134. font-style:normal;
  3135. font-size:14px;
  3136. text-align:left;
  3137. }
  3138. #u73657 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:429px;
  3142. top:234px;
  3143. width:57px;
  3144. height:20px;
  3145. display:flex;
  3146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3147. font-weight:400;
  3148. font-style:normal;
  3149. font-size:14px;
  3150. text-align:left;
  3151. }
  3152. #u73657 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:0px 0px 0px 0px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u73657_text {
  3160. border-width:0px;
  3161. white-space:nowrap;
  3162. text-transform:none;
  3163. }
  3164. #u73658_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:15px;
  3170. height:15px;
  3171. }
  3172. #u73658 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:410px;
  3176. top:237px;
  3177. width:15px;
  3178. height:15px;
  3179. display:flex;
  3180. }
  3181. #u73658 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u73658_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u73659 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:0px;
  3200. height:0px;
  3201. }
  3202. #u73660_div {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:300px;
  3208. height:50px;
  3209. background:inherit;
  3210. background-color:rgba(216, 233, 245, 1);
  3211. border:none;
  3212. border-radius:4px;
  3213. -moz-box-shadow:none;
  3214. -webkit-box-shadow:none;
  3215. box-shadow:none;
  3216. font-family:'Microsoft YaHei', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:14px;
  3220. color:#CCCCCC;
  3221. text-align:left;
  3222. }
  3223. #u73660 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:351px;
  3227. top:269px;
  3228. width:300px;
  3229. height:50px;
  3230. display:flex;
  3231. font-family:'Microsoft YaHei', sans-serif;
  3232. font-weight:400;
  3233. font-style:normal;
  3234. font-size:14px;
  3235. color:#CCCCCC;
  3236. text-align:left;
  3237. }
  3238. #u73660 .text {
  3239. position:absolute;
  3240. align-self:center;
  3241. padding:2px 8px 2px 8px;
  3242. box-sizing:border-box;
  3243. width:100%;
  3244. }
  3245. #u73660_text {
  3246. border-width:0px;
  3247. word-wrap:break-word;
  3248. text-transform:none;
  3249. visibility:hidden;
  3250. }
  3251. #u73661_div {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:85px;
  3257. height:20px;
  3258. background:inherit;
  3259. background-color:rgba(51, 51, 51, 0);
  3260. border:none;
  3261. border-radius:4px;
  3262. -moz-box-shadow:none;
  3263. -webkit-box-shadow:none;
  3264. box-shadow:none;
  3265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:14px;
  3269. text-align:left;
  3270. }
  3271. #u73661 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:450px;
  3275. top:284px;
  3276. width:85px;
  3277. height:20px;
  3278. display:flex;
  3279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:14px;
  3283. text-align:left;
  3284. }
  3285. #u73661 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:0px 0px 0px 0px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u73661_text {
  3293. border-width:0px;
  3294. white-space:nowrap;
  3295. text-transform:none;
  3296. }
  3297. #u73662_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:14px;
  3303. height:14px;
  3304. }
  3305. #u73662 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:431px;
  3309. top:287px;
  3310. width:14px;
  3311. height:14px;
  3312. display:flex;
  3313. }
  3314. #u73662 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:2px 2px 2px 2px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u73662_text {
  3322. border-width:0px;
  3323. word-wrap:break-word;
  3324. text-transform:none;
  3325. visibility:hidden;
  3326. }
  3327. #u73663 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:0px;
  3333. height:0px;
  3334. }
  3335. #u73664_div {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:300px;
  3341. height:50px;
  3342. background:inherit;
  3343. background-color:rgba(255, 255, 255, 0);
  3344. border:none;
  3345. border-radius:4px;
  3346. -moz-box-shadow:none;
  3347. -webkit-box-shadow:none;
  3348. box-shadow:none;
  3349. font-family:'Microsoft YaHei', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:14px;
  3353. color:#CCCCCC;
  3354. text-align:left;
  3355. }
  3356. #u73664 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:351px;
  3360. top:313px;
  3361. width:300px;
  3362. height:50px;
  3363. display:flex;
  3364. font-family:'Microsoft YaHei', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:14px;
  3368. color:#CCCCCC;
  3369. text-align:left;
  3370. }
  3371. #u73664 .text {
  3372. position:absolute;
  3373. align-self:center;
  3374. padding:2px 8px 2px 8px;
  3375. box-sizing:border-box;
  3376. width:100%;
  3377. }
  3378. #u73664_text {
  3379. border-width:0px;
  3380. word-wrap:break-word;
  3381. text-transform:none;
  3382. visibility:hidden;
  3383. }
  3384. #u73665_div {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:57px;
  3390. height:20px;
  3391. background:inherit;
  3392. background-color:rgba(51, 51, 51, 0);
  3393. border:none;
  3394. border-radius:4px;
  3395. -moz-box-shadow:none;
  3396. -webkit-box-shadow:none;
  3397. box-shadow:none;
  3398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:14px;
  3402. text-align:left;
  3403. }
  3404. #u73665 {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:429px;
  3408. top:328px;
  3409. width:57px;
  3410. height:20px;
  3411. display:flex;
  3412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3413. font-weight:400;
  3414. font-style:normal;
  3415. font-size:14px;
  3416. text-align:left;
  3417. }
  3418. #u73665 .text {
  3419. position:absolute;
  3420. align-self:center;
  3421. padding:0px 0px 0px 0px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u73665_text {
  3426. border-width:0px;
  3427. white-space:nowrap;
  3428. text-transform:none;
  3429. }
  3430. #u73666_img {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:0px;
  3435. width:15px;
  3436. height:15px;
  3437. }
  3438. #u73666 {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:410px;
  3442. top:331px;
  3443. width:15px;
  3444. height:15px;
  3445. display:flex;
  3446. }
  3447. #u73666 .text {
  3448. position:absolute;
  3449. align-self:center;
  3450. padding:2px 2px 2px 2px;
  3451. box-sizing:border-box;
  3452. width:100%;
  3453. }
  3454. #u73666_text {
  3455. border-width:0px;
  3456. word-wrap:break-word;
  3457. text-transform:none;
  3458. visibility:hidden;
  3459. }
  3460. #u73667 {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:0px;
  3466. height:0px;
  3467. }
  3468. #u73668_div {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:300px;
  3474. height:50px;
  3475. background:inherit;
  3476. background-color:rgba(255, 255, 255, 0);
  3477. border:none;
  3478. border-radius:4px;
  3479. -moz-box-shadow:none;
  3480. -webkit-box-shadow:none;
  3481. box-shadow:none;
  3482. font-family:'Microsoft YaHei', sans-serif;
  3483. font-weight:400;
  3484. font-style:normal;
  3485. font-size:14px;
  3486. color:#CCCCCC;
  3487. text-align:left;
  3488. }
  3489. #u73668 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:351px;
  3493. top:358px;
  3494. width:300px;
  3495. height:50px;
  3496. display:flex;
  3497. font-family:'Microsoft YaHei', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:14px;
  3501. color:#CCCCCC;
  3502. text-align:left;
  3503. }
  3504. #u73668 .text {
  3505. position:absolute;
  3506. align-self:center;
  3507. padding:2px 8px 2px 8px;
  3508. box-sizing:border-box;
  3509. width:100%;
  3510. }
  3511. #u73668_text {
  3512. border-width:0px;
  3513. word-wrap:break-word;
  3514. text-transform:none;
  3515. visibility:hidden;
  3516. }
  3517. #u73669_div {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:85px;
  3523. height:20px;
  3524. background:inherit;
  3525. background-color:rgba(51, 51, 51, 0);
  3526. border:none;
  3527. border-radius:4px;
  3528. -moz-box-shadow:none;
  3529. -webkit-box-shadow:none;
  3530. box-shadow:none;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:14px;
  3535. text-align:left;
  3536. }
  3537. #u73669 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:450px;
  3541. top:373px;
  3542. width:85px;
  3543. height:20px;
  3544. display:flex;
  3545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:14px;
  3549. text-align:left;
  3550. }
  3551. #u73669 .text {
  3552. position:absolute;
  3553. align-self:center;
  3554. padding:0px 0px 0px 0px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u73669_text {
  3559. border-width:0px;
  3560. white-space:nowrap;
  3561. text-transform:none;
  3562. }
  3563. #u73670_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:14px;
  3569. height:14px;
  3570. }
  3571. #u73670 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:431px;
  3575. top:376px;
  3576. width:14px;
  3577. height:14px;
  3578. display:flex;
  3579. }
  3580. #u73670 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 2px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u73670_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u73671 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:0px;
  3599. height:0px;
  3600. }
  3601. #u73672_div {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:300px;
  3607. height:50px;
  3608. background:inherit;
  3609. background-color:rgba(255, 255, 255, 0);
  3610. border:none;
  3611. border-radius:4px;
  3612. -moz-box-shadow:none;
  3613. -webkit-box-shadow:none;
  3614. box-shadow:none;
  3615. font-family:'Microsoft YaHei', sans-serif;
  3616. font-weight:400;
  3617. font-style:normal;
  3618. font-size:14px;
  3619. color:#CCCCCC;
  3620. text-align:left;
  3621. }
  3622. #u73672 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:351px;
  3626. top:408px;
  3627. width:300px;
  3628. height:50px;
  3629. display:flex;
  3630. font-family:'Microsoft YaHei', sans-serif;
  3631. font-weight:400;
  3632. font-style:normal;
  3633. font-size:14px;
  3634. color:#CCCCCC;
  3635. text-align:left;
  3636. }
  3637. #u73672 .text {
  3638. position:absolute;
  3639. align-self:center;
  3640. padding:2px 8px 2px 8px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u73672_text {
  3645. border-width:0px;
  3646. word-wrap:break-word;
  3647. text-transform:none;
  3648. visibility:hidden;
  3649. }
  3650. #u73673_div {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:51px;
  3656. height:20px;
  3657. background:inherit;
  3658. background-color:rgba(51, 51, 51, 0);
  3659. border:none;
  3660. border-radius:4px;
  3661. -moz-box-shadow:none;
  3662. -webkit-box-shadow:none;
  3663. box-shadow:none;
  3664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:14px;
  3668. text-align:left;
  3669. }
  3670. #u73673 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:429px;
  3674. top:423px;
  3675. width:51px;
  3676. height:20px;
  3677. display:flex;
  3678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:14px;
  3682. text-align:left;
  3683. }
  3684. #u73673 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:0px 0px 0px 0px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u73673_text {
  3692. border-width:0px;
  3693. white-space:nowrap;
  3694. text-transform:none;
  3695. }
  3696. #u73674_img {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:15px;
  3702. height:15px;
  3703. }
  3704. #u73674 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:410px;
  3708. top:426px;
  3709. width:15px;
  3710. height:15px;
  3711. display:flex;
  3712. }
  3713. #u73674 .text {
  3714. position:absolute;
  3715. align-self:center;
  3716. padding:2px 2px 2px 2px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u73674_text {
  3721. border-width:0px;
  3722. word-wrap:break-word;
  3723. text-transform:none;
  3724. visibility:hidden;
  3725. }
  3726. #u73675 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:0px;
  3732. height:0px;
  3733. }
  3734. #u73676_div {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:300px;
  3740. height:50px;
  3741. background:inherit;
  3742. background-color:rgba(255, 255, 255, 0);
  3743. border:none;
  3744. border-radius:4px;
  3745. -moz-box-shadow:none;
  3746. -webkit-box-shadow:none;
  3747. box-shadow:none;
  3748. font-family:'Microsoft YaHei', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:14px;
  3752. color:#CCCCCC;
  3753. text-align:left;
  3754. }
  3755. #u73676 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:351px;
  3759. top:458px;
  3760. width:300px;
  3761. height:50px;
  3762. display:flex;
  3763. font-family:'Microsoft YaHei', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:14px;
  3767. color:#CCCCCC;
  3768. text-align:left;
  3769. }
  3770. #u73676 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 8px 2px 8px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u73676_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u73677_div {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:51px;
  3789. height:20px;
  3790. background:inherit;
  3791. background-color:rgba(51, 51, 51, 0);
  3792. border:none;
  3793. border-radius:4px;
  3794. -moz-box-shadow:none;
  3795. -webkit-box-shadow:none;
  3796. box-shadow:none;
  3797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3798. font-weight:400;
  3799. font-style:normal;
  3800. font-size:14px;
  3801. text-align:left;
  3802. }
  3803. #u73677 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:450px;
  3807. top:473px;
  3808. width:51px;
  3809. height:20px;
  3810. display:flex;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:14px;
  3815. text-align:left;
  3816. }
  3817. #u73677 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:0px 0px 0px 0px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u73677_text {
  3825. border-width:0px;
  3826. white-space:nowrap;
  3827. text-transform:none;
  3828. }
  3829. #u73678_img {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:14px;
  3835. height:14px;
  3836. }
  3837. #u73678 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:431px;
  3841. top:476px;
  3842. width:14px;
  3843. height:14px;
  3844. display:flex;
  3845. }
  3846. #u73678 .text {
  3847. position:absolute;
  3848. align-self:center;
  3849. padding:2px 2px 2px 2px;
  3850. box-sizing:border-box;
  3851. width:100%;
  3852. }
  3853. #u73678_text {
  3854. border-width:0px;
  3855. word-wrap:break-word;
  3856. text-transform:none;
  3857. visibility:hidden;
  3858. }
  3859. #u73679 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:0px;
  3865. height:0px;
  3866. }
  3867. #u73680_div {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:300px;
  3873. height:50px;
  3874. background:inherit;
  3875. background-color:rgba(255, 255, 255, 0);
  3876. border:none;
  3877. border-radius:4px;
  3878. -moz-box-shadow:none;
  3879. -webkit-box-shadow:none;
  3880. box-shadow:none;
  3881. font-family:'Microsoft YaHei', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:14px;
  3885. color:#CCCCCC;
  3886. text-align:left;
  3887. }
  3888. #u73680 {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:351px;
  3892. top:502px;
  3893. width:300px;
  3894. height:50px;
  3895. display:flex;
  3896. font-family:'Microsoft YaHei', sans-serif;
  3897. font-weight:400;
  3898. font-style:normal;
  3899. font-size:14px;
  3900. color:#CCCCCC;
  3901. text-align:left;
  3902. }
  3903. #u73680 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 8px 2px 8px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u73680_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u73681_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:49px;
  3922. height:20px;
  3923. background:inherit;
  3924. background-color:rgba(51, 51, 51, 0);
  3925. border:none;
  3926. border-radius:4px;
  3927. -moz-box-shadow:none;
  3928. -webkit-box-shadow:none;
  3929. box-shadow:none;
  3930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:14px;
  3934. text-align:left;
  3935. }
  3936. #u73681 {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:429px;
  3940. top:517px;
  3941. width:49px;
  3942. height:20px;
  3943. display:flex;
  3944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3945. font-weight:400;
  3946. font-style:normal;
  3947. font-size:14px;
  3948. text-align:left;
  3949. }
  3950. #u73681 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:0px 0px 0px 0px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u73681_text {
  3958. border-width:0px;
  3959. white-space:nowrap;
  3960. text-transform:none;
  3961. }
  3962. #u73682_img {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:0px;
  3966. top:0px;
  3967. width:15px;
  3968. height:15px;
  3969. }
  3970. #u73682 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:410px;
  3974. top:520px;
  3975. width:15px;
  3976. height:15px;
  3977. display:flex;
  3978. }
  3979. #u73682 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 2px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u73682_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. visibility:hidden;
  3991. }
  3992. #u73683 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:0px;
  3998. height:0px;
  3999. }
  4000. #u73684_div {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:300px;
  4006. height:50px;
  4007. background:inherit;
  4008. background-color:rgba(255, 255, 255, 0);
  4009. border:none;
  4010. border-radius:4px;
  4011. -moz-box-shadow:none;
  4012. -webkit-box-shadow:none;
  4013. box-shadow:none;
  4014. font-family:'Microsoft YaHei', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:14px;
  4018. color:#CCCCCC;
  4019. text-align:left;
  4020. }
  4021. #u73684 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:351px;
  4025. top:552px;
  4026. width:300px;
  4027. height:50px;
  4028. display:flex;
  4029. font-family:'Microsoft YaHei', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:14px;
  4033. color:#CCCCCC;
  4034. text-align:left;
  4035. }
  4036. #u73684 .text {
  4037. position:absolute;
  4038. align-self:center;
  4039. padding:2px 8px 2px 8px;
  4040. box-sizing:border-box;
  4041. width:100%;
  4042. }
  4043. #u73684_text {
  4044. border-width:0px;
  4045. word-wrap:break-word;
  4046. text-transform:none;
  4047. visibility:hidden;
  4048. }
  4049. #u73685_div {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:49px;
  4055. height:20px;
  4056. background:inherit;
  4057. background-color:rgba(51, 51, 51, 0);
  4058. border:none;
  4059. border-radius:4px;
  4060. -moz-box-shadow:none;
  4061. -webkit-box-shadow:none;
  4062. box-shadow:none;
  4063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4064. font-weight:400;
  4065. font-style:normal;
  4066. font-size:14px;
  4067. text-align:left;
  4068. }
  4069. #u73685 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:450px;
  4073. top:567px;
  4074. width:49px;
  4075. height:20px;
  4076. display:flex;
  4077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:14px;
  4081. text-align:left;
  4082. }
  4083. #u73685 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:0px 0px 0px 0px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u73685_text {
  4091. border-width:0px;
  4092. white-space:nowrap;
  4093. text-transform:none;
  4094. }
  4095. #u73686_img {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:14px;
  4101. height:14px;
  4102. }
  4103. #u73686 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:431px;
  4107. top:570px;
  4108. width:14px;
  4109. height:14px;
  4110. display:flex;
  4111. }
  4112. #u73686 .text {
  4113. position:absolute;
  4114. align-self:center;
  4115. padding:2px 2px 2px 2px;
  4116. box-sizing:border-box;
  4117. width:100%;
  4118. }
  4119. #u73686_text {
  4120. border-width:0px;
  4121. word-wrap:break-word;
  4122. text-transform:none;
  4123. visibility:hidden;
  4124. }
  4125. #u73687 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:0px;
  4131. height:0px;
  4132. }
  4133. #u73688_div {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:300px;
  4139. height:50px;
  4140. background:inherit;
  4141. background-color:rgba(255, 255, 255, 0);
  4142. border:none;
  4143. border-radius:4px;
  4144. -moz-box-shadow:none;
  4145. -webkit-box-shadow:none;
  4146. box-shadow:none;
  4147. font-family:'Microsoft YaHei', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. font-size:14px;
  4151. color:#CCCCCC;
  4152. text-align:left;
  4153. }
  4154. #u73688 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:351px;
  4158. top:662px;
  4159. width:300px;
  4160. height:50px;
  4161. display:flex;
  4162. font-family:'Microsoft YaHei', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:14px;
  4166. color:#CCCCCC;
  4167. text-align:left;
  4168. }
  4169. #u73688 .text {
  4170. position:absolute;
  4171. align-self:center;
  4172. padding:2px 8px 2px 8px;
  4173. box-sizing:border-box;
  4174. width:100%;
  4175. }
  4176. #u73688_text {
  4177. border-width:0px;
  4178. word-wrap:break-word;
  4179. text-transform:none;
  4180. visibility:hidden;
  4181. }
  4182. #u73689_div {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:51px;
  4188. height:20px;
  4189. background:inherit;
  4190. background-color:rgba(51, 51, 51, 0);
  4191. border:none;
  4192. border-radius:4px;
  4193. -moz-box-shadow:none;
  4194. -webkit-box-shadow:none;
  4195. box-shadow:none;
  4196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4197. font-weight:400;
  4198. font-style:normal;
  4199. font-size:14px;
  4200. text-align:left;
  4201. }
  4202. #u73689 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:429px;
  4206. top:677px;
  4207. width:51px;
  4208. height:20px;
  4209. display:flex;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:14px;
  4214. text-align:left;
  4215. }
  4216. #u73689 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:0px 0px 0px 0px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u73689_text {
  4224. border-width:0px;
  4225. white-space:nowrap;
  4226. text-transform:none;
  4227. }
  4228. #u73690_img {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:0px;
  4233. width:15px;
  4234. height:15px;
  4235. }
  4236. #u73690 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:410px;
  4240. top:680px;
  4241. width:15px;
  4242. height:15px;
  4243. display:flex;
  4244. }
  4245. #u73690 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:2px 2px 2px 2px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u73690_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. visibility:hidden;
  4257. }
  4258. #u73691 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:0px;
  4264. height:0px;
  4265. }
  4266. #u73692_div {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:300px;
  4272. height:50px;
  4273. background:inherit;
  4274. background-color:rgba(255, 255, 255, 0);
  4275. border:none;
  4276. border-radius:4px;
  4277. -moz-box-shadow:none;
  4278. -webkit-box-shadow:none;
  4279. box-shadow:none;
  4280. font-family:'Microsoft YaHei', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:14px;
  4284. color:#CCCCCC;
  4285. text-align:left;
  4286. }
  4287. #u73692 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:351px;
  4291. top:712px;
  4292. width:300px;
  4293. height:50px;
  4294. display:flex;
  4295. font-family:'Microsoft YaHei', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:14px;
  4299. color:#CCCCCC;
  4300. text-align:left;
  4301. }
  4302. #u73692 .text {
  4303. position:absolute;
  4304. align-self:center;
  4305. padding:2px 8px 2px 8px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u73692_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. visibility:hidden;
  4314. }
  4315. #u73693_div {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:51px;
  4321. height:20px;
  4322. background:inherit;
  4323. background-color:rgba(51, 51, 51, 0);
  4324. border:none;
  4325. border-radius:4px;
  4326. -moz-box-shadow:none;
  4327. -webkit-box-shadow:none;
  4328. box-shadow:none;
  4329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:14px;
  4333. text-align:left;
  4334. }
  4335. #u73693 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:450px;
  4339. top:727px;
  4340. width:51px;
  4341. height:20px;
  4342. display:flex;
  4343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4344. font-weight:400;
  4345. font-style:normal;
  4346. font-size:14px;
  4347. text-align:left;
  4348. }
  4349. #u73693 .text {
  4350. position:absolute;
  4351. align-self:center;
  4352. padding:0px 0px 0px 0px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u73693_text {
  4357. border-width:0px;
  4358. white-space:nowrap;
  4359. text-transform:none;
  4360. }
  4361. #u73694_img {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:14px;
  4367. height:14px;
  4368. }
  4369. #u73694 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:431px;
  4373. top:730px;
  4374. width:14px;
  4375. height:14px;
  4376. display:flex;
  4377. }
  4378. #u73694 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 2px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u73694_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u73695 {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:0px;
  4397. height:0px;
  4398. }
  4399. #u73696_div {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:0px;
  4403. top:0px;
  4404. width:300px;
  4405. height:50px;
  4406. background:inherit;
  4407. background-color:rgba(242, 242, 242, 1);
  4408. border:none;
  4409. border-radius:4px;
  4410. -moz-box-shadow:none;
  4411. -webkit-box-shadow:none;
  4412. box-shadow:none;
  4413. font-family:'Microsoft YaHei', sans-serif;
  4414. font-weight:400;
  4415. font-style:normal;
  4416. font-size:14px;
  4417. color:#CCCCCC;
  4418. text-align:left;
  4419. }
  4420. #u73696 {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:351px;
  4424. top:612px;
  4425. width:300px;
  4426. height:50px;
  4427. display:flex;
  4428. font-family:'Microsoft YaHei', sans-serif;
  4429. font-weight:400;
  4430. font-style:normal;
  4431. font-size:14px;
  4432. color:#CCCCCC;
  4433. text-align:left;
  4434. }
  4435. #u73696 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 8px 2px 8px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u73696_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u73697_div {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:15px;
  4454. height:15px;
  4455. background:inherit;
  4456. background-color:rgba(51, 51, 51, 0);
  4457. box-sizing:border-box;
  4458. border-width:1px;
  4459. border-style:solid;
  4460. border-color:rgba(51, 51, 51, 1);
  4461. border-radius:8px;
  4462. -moz-box-shadow:none;
  4463. -webkit-box-shadow:none;
  4464. box-shadow:none;
  4465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4466. font-weight:400;
  4467. font-style:normal;
  4468. font-size:10px;
  4469. }
  4470. #u73697 {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:384px;
  4474. top:630px;
  4475. width:15px;
  4476. height:15px;
  4477. display:flex;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:10px;
  4482. }
  4483. #u73697 .text {
  4484. position:absolute;
  4485. align-self:center;
  4486. padding:0px 0px 0px 0px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u73697_text {
  4491. border-width:0px;
  4492. word-wrap:break-word;
  4493. text-transform:none;
  4494. }
  4495. #u73698_div {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:0px;
  4499. top:0px;
  4500. width:127px;
  4501. height:20px;
  4502. background:inherit;
  4503. background-color:rgba(51, 51, 51, 0);
  4504. border:none;
  4505. border-radius:4px;
  4506. -moz-box-shadow:none;
  4507. -webkit-box-shadow:none;
  4508. box-shadow:none;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:14px;
  4513. text-align:left;
  4514. }
  4515. #u73698 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:405px;
  4519. top:627px;
  4520. width:127px;
  4521. height:20px;
  4522. display:flex;
  4523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:14px;
  4527. text-align:left;
  4528. }
  4529. #u73698 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:0px 0px 0px 0px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u73698_text {
  4537. border-width:0px;
  4538. white-space:nowrap;
  4539. text-transform:none;
  4540. }
  4541. #u73699_img {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:14px;
  4547. height:8px;
  4548. }
  4549. #u73699 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:620px;
  4553. top:633px;
  4554. width:14px;
  4555. height:8px;
  4556. display:flex;
  4557. }
  4558. #u73699 .text {
  4559. position:absolute;
  4560. align-self:center;
  4561. padding:2px 2px 2px 2px;
  4562. box-sizing:border-box;
  4563. width:100%;
  4564. }
  4565. #u73699_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. visibility:hidden;
  4570. }
  4571. #u73700_div {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:73px;
  4577. height:50px;
  4578. background:inherit;
  4579. background-color:rgba(255, 255, 255, 0);
  4580. border:none;
  4581. border-left:0px;
  4582. border-top:0px;
  4583. border-right:0px;
  4584. border-radius:0px;
  4585. border-bottom-right-radius:0px;
  4586. border-bottom-left-radius:0px;
  4587. -moz-box-shadow:none;
  4588. -webkit-box-shadow:none;
  4589. box-shadow:none;
  4590. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4591. font-weight:500;
  4592. font-style:normal;
  4593. font-size:18px;
  4594. line-height:40px;
  4595. }
  4596. #u73700 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:345px;
  4600. top:63px;
  4601. width:73px;
  4602. height:50px;
  4603. display:flex;
  4604. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4605. font-weight:500;
  4606. font-style:normal;
  4607. font-size:18px;
  4608. line-height:40px;
  4609. }
  4610. #u73700 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:5px 0px 5px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u73700_text {
  4618. border-width:0px;
  4619. white-space:nowrap;
  4620. text-transform:none;
  4621. }
  4622. #u73701 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:0px;
  4628. height:0px;
  4629. }
  4630. #u73702_div {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:300px;
  4636. height:50px;
  4637. background:inherit;
  4638. background-color:rgba(242, 242, 242, 0.0980392156862745);
  4639. border:none;
  4640. border-radius:4px;
  4641. -moz-box-shadow:none;
  4642. -webkit-box-shadow:none;
  4643. box-shadow:none;
  4644. font-family:'Microsoft YaHei', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. font-size:14px;
  4648. color:#CCCCCC;
  4649. text-align:left;
  4650. }
  4651. #u73702 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:351px;
  4655. top:219px;
  4656. width:300px;
  4657. height:50px;
  4658. display:flex;
  4659. font-family:'Microsoft YaHei', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. font-size:14px;
  4663. color:#CCCCCC;
  4664. text-align:left;
  4665. }
  4666. #u73702 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 8px 2px 8px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u73702_text {
  4674. border-width:0px;
  4675. word-wrap:break-word;
  4676. text-transform:none;
  4677. visibility:hidden;
  4678. }
  4679. #u73703_div {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:15px;
  4685. height:15px;
  4686. background:inherit;
  4687. background-color:rgba(51, 51, 51, 1);
  4688. border:none;
  4689. border-radius:8px;
  4690. -moz-box-shadow:none;
  4691. -webkit-box-shadow:none;
  4692. box-shadow:none;
  4693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:10px;
  4697. color:#FFFFFF;
  4698. }
  4699. #u73703 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:364px;
  4703. top:237px;
  4704. width:15px;
  4705. height:15px;
  4706. display:flex;
  4707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:10px;
  4711. color:#FFFFFF;
  4712. }
  4713. #u73703 .text {
  4714. position:absolute;
  4715. align-self:center;
  4716. padding:0px 0px 0px 0px;
  4717. box-sizing:border-box;
  4718. width:100%;
  4719. }
  4720. #u73703_text {
  4721. border-width:0px;
  4722. word-wrap:break-word;
  4723. text-transform:none;
  4724. }
  4725. #u73704_div {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:127px;
  4731. height:20px;
  4732. background:inherit;
  4733. background-color:rgba(51, 51, 51, 0);
  4734. border:none;
  4735. border-radius:4px;
  4736. -moz-box-shadow:none;
  4737. -webkit-box-shadow:none;
  4738. box-shadow:none;
  4739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4740. font-weight:400;
  4741. font-style:normal;
  4742. font-size:14px;
  4743. text-align:left;
  4744. }
  4745. #u73704 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:385px;
  4749. top:234px;
  4750. width:127px;
  4751. height:20px;
  4752. display:flex;
  4753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4754. font-weight:400;
  4755. font-style:normal;
  4756. font-size:14px;
  4757. text-align:left;
  4758. }
  4759. #u73704 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:0px 0px 0px 0px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u73704_text {
  4767. border-width:0px;
  4768. white-space:nowrap;
  4769. text-transform:none;
  4770. }
  4771. #u73705 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:0px;
  4777. height:0px;
  4778. }
  4779. #u73706_div {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:300px;
  4785. height:50px;
  4786. background:inherit;
  4787. background-color:rgba(242, 242, 242, 1);
  4788. border:none;
  4789. border-radius:4px;
  4790. -moz-box-shadow:none;
  4791. -webkit-box-shadow:none;
  4792. box-shadow:none;
  4793. font-family:'Microsoft YaHei', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:14px;
  4797. color:#CCCCCC;
  4798. text-align:left;
  4799. }
  4800. #u73706 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:351px;
  4804. top:269px;
  4805. width:300px;
  4806. height:50px;
  4807. display:flex;
  4808. font-family:'Microsoft YaHei', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:14px;
  4812. color:#CCCCCC;
  4813. text-align:left;
  4814. }
  4815. #u73706 .text {
  4816. position:absolute;
  4817. align-self:center;
  4818. padding:2px 8px 2px 8px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u73706_text {
  4823. border-width:0px;
  4824. word-wrap:break-word;
  4825. text-transform:none;
  4826. visibility:hidden;
  4827. }
  4828. #u73707_div {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:0px;
  4832. top:0px;
  4833. width:15px;
  4834. height:15px;
  4835. background:inherit;
  4836. background-color:rgba(51, 51, 51, 0);
  4837. box-sizing:border-box;
  4838. border-width:1px;
  4839. border-style:solid;
  4840. border-color:rgba(51, 51, 51, 1);
  4841. border-radius:8px;
  4842. -moz-box-shadow:none;
  4843. -webkit-box-shadow:none;
  4844. box-shadow:none;
  4845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4846. font-weight:400;
  4847. font-style:normal;
  4848. font-size:10px;
  4849. }
  4850. #u73707 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:384px;
  4854. top:287px;
  4855. width:15px;
  4856. height:15px;
  4857. display:flex;
  4858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. font-size:10px;
  4862. }
  4863. #u73707 .text {
  4864. position:absolute;
  4865. align-self:center;
  4866. padding:0px 0px 0px 0px;
  4867. box-sizing:border-box;
  4868. width:100%;
  4869. }
  4870. #u73707_text {
  4871. border-width:0px;
  4872. word-wrap:break-word;
  4873. text-transform:none;
  4874. }
  4875. #u73708_div {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:155px;
  4881. height:20px;
  4882. background:inherit;
  4883. background-color:rgba(51, 51, 51, 0);
  4884. border:none;
  4885. border-radius:4px;
  4886. -moz-box-shadow:none;
  4887. -webkit-box-shadow:none;
  4888. box-shadow:none;
  4889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4890. font-weight:400;
  4891. font-style:normal;
  4892. font-size:14px;
  4893. text-align:left;
  4894. }
  4895. #u73708 {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:405px;
  4899. top:284px;
  4900. width:155px;
  4901. height:20px;
  4902. display:flex;
  4903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4904. font-weight:400;
  4905. font-style:normal;
  4906. font-size:14px;
  4907. text-align:left;
  4908. }
  4909. #u73708 .text {
  4910. position:absolute;
  4911. align-self:center;
  4912. padding:0px 0px 0px 0px;
  4913. box-sizing:border-box;
  4914. width:100%;
  4915. }
  4916. #u73708_text {
  4917. border-width:0px;
  4918. white-space:nowrap;
  4919. text-transform:none;
  4920. }
  4921. #u73709 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:0px;
  4927. height:0px;
  4928. }
  4929. #u73710_div {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:300px;
  4935. height:50px;
  4936. background:inherit;
  4937. background-color:rgba(242, 242, 242, 0.0980392156862745);
  4938. border:none;
  4939. border-radius:4px;
  4940. -moz-box-shadow:none;
  4941. -webkit-box-shadow:none;
  4942. box-shadow:none;
  4943. font-family:'Microsoft YaHei', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:14px;
  4947. color:#CCCCCC;
  4948. text-align:left;
  4949. }
  4950. #u73710 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:351px;
  4954. top:319px;
  4955. width:300px;
  4956. height:50px;
  4957. display:flex;
  4958. font-family:'Microsoft YaHei', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:14px;
  4962. color:#CCCCCC;
  4963. text-align:left;
  4964. }
  4965. #u73710 .text {
  4966. position:absolute;
  4967. align-self:center;
  4968. padding:2px 8px 2px 8px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u73710_text {
  4973. border-width:0px;
  4974. word-wrap:break-word;
  4975. text-transform:none;
  4976. visibility:hidden;
  4977. }
  4978. #u73711_div {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:15px;
  4984. height:15px;
  4985. background:inherit;
  4986. background-color:rgba(51, 51, 51, 1);
  4987. border:none;
  4988. border-radius:8px;
  4989. -moz-box-shadow:none;
  4990. -webkit-box-shadow:none;
  4991. box-shadow:none;
  4992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:10px;
  4996. color:#FFFFFF;
  4997. }
  4998. #u73711 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:364px;
  5002. top:337px;
  5003. width:15px;
  5004. height:15px;
  5005. display:flex;
  5006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:10px;
  5010. color:#FFFFFF;
  5011. }
  5012. #u73711 .text {
  5013. position:absolute;
  5014. align-self:center;
  5015. padding:0px 0px 0px 0px;
  5016. box-sizing:border-box;
  5017. width:100%;
  5018. }
  5019. #u73711_text {
  5020. border-width:0px;
  5021. word-wrap:break-word;
  5022. text-transform:none;
  5023. }
  5024. #u73712_div {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:113px;
  5030. height:20px;
  5031. background:inherit;
  5032. background-color:rgba(51, 51, 51, 0);
  5033. border:none;
  5034. border-radius:4px;
  5035. -moz-box-shadow:none;
  5036. -webkit-box-shadow:none;
  5037. box-shadow:none;
  5038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5039. font-weight:400;
  5040. font-style:normal;
  5041. font-size:14px;
  5042. text-align:left;
  5043. }
  5044. #u73712 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:385px;
  5048. top:334px;
  5049. width:113px;
  5050. height:20px;
  5051. display:flex;
  5052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:14px;
  5056. text-align:left;
  5057. }
  5058. #u73712 .text {
  5059. position:absolute;
  5060. align-self:center;
  5061. padding:0px 0px 0px 0px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u73712_text {
  5066. border-width:0px;
  5067. white-space:nowrap;
  5068. text-transform:none;
  5069. }
  5070. #u73713 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:0px;
  5074. top:0px;
  5075. width:0px;
  5076. height:0px;
  5077. }
  5078. #u73714_div {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:300px;
  5084. height:50px;
  5085. background:inherit;
  5086. background-color:rgba(242, 242, 242, 0.0980392156862745);
  5087. border:none;
  5088. border-radius:4px;
  5089. -moz-box-shadow:none;
  5090. -webkit-box-shadow:none;
  5091. box-shadow:none;
  5092. font-family:'Microsoft YaHei', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:14px;
  5096. color:#CCCCCC;
  5097. text-align:left;
  5098. }
  5099. #u73714 {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:351px;
  5103. top:369px;
  5104. width:300px;
  5105. height:50px;
  5106. display:flex;
  5107. font-family:'Microsoft YaHei', sans-serif;
  5108. font-weight:400;
  5109. font-style:normal;
  5110. font-size:14px;
  5111. color:#CCCCCC;
  5112. text-align:left;
  5113. }
  5114. #u73714 .text {
  5115. position:absolute;
  5116. align-self:center;
  5117. padding:2px 8px 2px 8px;
  5118. box-sizing:border-box;
  5119. width:100%;
  5120. }
  5121. #u73714_text {
  5122. border-width:0px;
  5123. word-wrap:break-word;
  5124. text-transform:none;
  5125. visibility:hidden;
  5126. }
  5127. #u73715_div {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:0px;
  5131. top:0px;
  5132. width:15px;
  5133. height:15px;
  5134. background:inherit;
  5135. background-color:rgba(51, 51, 51, 1);
  5136. border:none;
  5137. border-radius:8px;
  5138. -moz-box-shadow:none;
  5139. -webkit-box-shadow:none;
  5140. box-shadow:none;
  5141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5142. font-weight:400;
  5143. font-style:normal;
  5144. font-size:10px;
  5145. color:#FFFFFF;
  5146. }
  5147. #u73715 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:364px;
  5151. top:387px;
  5152. width:15px;
  5153. height:15px;
  5154. display:flex;
  5155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:10px;
  5159. color:#FFFFFF;
  5160. }
  5161. #u73715 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:0px 0px 0px 0px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u73715_text {
  5169. border-width:0px;
  5170. word-wrap:break-word;
  5171. text-transform:none;
  5172. }
  5173. #u73716_div {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:127px;
  5179. height:20px;
  5180. background:inherit;
  5181. background-color:rgba(51, 51, 51, 0);
  5182. border:none;
  5183. border-radius:4px;
  5184. -moz-box-shadow:none;
  5185. -webkit-box-shadow:none;
  5186. box-shadow:none;
  5187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5188. font-weight:400;
  5189. font-style:normal;
  5190. font-size:14px;
  5191. text-align:left;
  5192. }
  5193. #u73716 {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:385px;
  5197. top:384px;
  5198. width:127px;
  5199. height:20px;
  5200. display:flex;
  5201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:14px;
  5205. text-align:left;
  5206. }
  5207. #u73716 .text {
  5208. position:absolute;
  5209. align-self:center;
  5210. padding:0px 0px 0px 0px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u73716_text {
  5215. border-width:0px;
  5216. white-space:nowrap;
  5217. text-transform:none;
  5218. }
  5219. #u73717_div {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:57px;
  5225. height:40px;
  5226. background:inherit;
  5227. background-color:rgba(255, 255, 255, 0);
  5228. border:none;
  5229. border-radius:0px;
  5230. -moz-box-shadow:none;
  5231. -webkit-box-shadow:none;
  5232. box-shadow:none;
  5233. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5234. font-weight:500;
  5235. font-style:normal;
  5236. line-height:40px;
  5237. }
  5238. #u73717 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:1102px;
  5242. top:140px;
  5243. width:57px;
  5244. height:40px;
  5245. display:flex;
  5246. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5247. font-weight:500;
  5248. font-style:normal;
  5249. line-height:40px;
  5250. }
  5251. #u73717 .text {
  5252. position:absolute;
  5253. align-self:flex-start;
  5254. padding:0px 0px 0px 0px;
  5255. box-sizing:border-box;
  5256. width:100%;
  5257. }
  5258. #u73717_text {
  5259. border-width:0px;
  5260. white-space:nowrap;
  5261. text-transform:none;
  5262. }
  5263. #u73719 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:0px;
  5267. top:0px;
  5268. width:0px;
  5269. height:0px;
  5270. }
  5271. #u73720_img {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:0px;
  5276. width:200px;
  5277. height:1191px;
  5278. }
  5279. #u73720 {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:120px;
  5283. top:50px;
  5284. width:200px;
  5285. height:1191px;
  5286. display:flex;
  5287. }
  5288. #u73720 .text {
  5289. position:absolute;
  5290. align-self:center;
  5291. padding:2px 2px 2px 2px;
  5292. box-sizing:border-box;
  5293. width:100%;
  5294. }
  5295. #u73720_text {
  5296. border-width:0px;
  5297. word-wrap:break-word;
  5298. text-transform:none;
  5299. visibility:hidden;
  5300. }
  5301. #u73721_div {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:200px;
  5307. height:60px;
  5308. background:inherit;
  5309. background-color:rgba(224, 231, 247, 1);
  5310. border:none;
  5311. border-radius:0px;
  5312. -moz-box-shadow:none;
  5313. -webkit-box-shadow:none;
  5314. box-shadow:none;
  5315. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5316. font-weight:500;
  5317. font-style:normal;
  5318. font-size:18px;
  5319. }
  5320. #u73721 {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:120px;
  5324. top:50px;
  5325. width:200px;
  5326. height:60px;
  5327. display:flex;
  5328. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5329. font-weight:500;
  5330. font-style:normal;
  5331. font-size:18px;
  5332. }
  5333. #u73721 .text {
  5334. position:absolute;
  5335. align-self:center;
  5336. padding:0px 0px 0px 20px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u73721_text {
  5341. border-width:0px;
  5342. word-wrap:break-word;
  5343. text-transform:none;
  5344. }
  5345. #u73722 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:120px;
  5349. top:130px;
  5350. width:200px;
  5351. height:1078px;
  5352. }
  5353. #u73722_state0 {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:200px;
  5359. height:1078px;
  5360. overflow:auto;
  5361. -webkit-overflow-scrolling:touch;
  5362. -ms-overflow-x:hidden;
  5363. overflow-x:hidden;
  5364. background-image:none;
  5365. border:none;
  5366. border-radius:0px;
  5367. -moz-box-shadow:none;
  5368. -webkit-box-shadow:none;
  5369. box-shadow:none;
  5370. }
  5371. #u73722_state0_content {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:1px;
  5377. height:1px;
  5378. }
  5379. #u73723_div {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:97px;
  5385. height:22px;
  5386. background:inherit;
  5387. background-color:rgba(255, 255, 255, 0);
  5388. border:none;
  5389. border-radius:0px;
  5390. -moz-box-shadow:none;
  5391. -webkit-box-shadow:none;
  5392. box-shadow:none;
  5393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5394. font-weight:400;
  5395. font-style:normal;
  5396. font-size:16px;
  5397. }
  5398. #u73723 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:30px;
  5402. top:0px;
  5403. width:97px;
  5404. height:22px;
  5405. display:flex;
  5406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:16px;
  5410. }
  5411. #u73723 .text {
  5412. position:absolute;
  5413. align-self:flex-start;
  5414. padding:0px 0px 0px 0px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u73723_text {
  5419. border-width:0px;
  5420. word-wrap:break-word;
  5421. text-transform:none;
  5422. }
  5423. #u73724_div {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:65px;
  5429. height:22px;
  5430. background:inherit;
  5431. background-color:rgba(255, 255, 255, 0);
  5432. border:none;
  5433. border-radius:0px;
  5434. -moz-box-shadow:none;
  5435. -webkit-box-shadow:none;
  5436. box-shadow:none;
  5437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5438. font-weight:400;
  5439. font-style:normal;
  5440. font-size:16px;
  5441. }
  5442. #u73724 {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:30px;
  5446. top:42px;
  5447. width:65px;
  5448. height:22px;
  5449. display:flex;
  5450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5451. font-weight:400;
  5452. font-style:normal;
  5453. font-size:16px;
  5454. }
  5455. #u73724 .text {
  5456. position:absolute;
  5457. align-self:flex-start;
  5458. padding:0px 0px 0px 0px;
  5459. box-sizing:border-box;
  5460. width:100%;
  5461. }
  5462. #u73724_text {
  5463. border-width:0px;
  5464. white-space:nowrap;
  5465. text-transform:none;
  5466. }
  5467. #u73725_div {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:0px;
  5471. top:0px;
  5472. width:49px;
  5473. height:22px;
  5474. background:inherit;
  5475. background-color:rgba(255, 255, 255, 0);
  5476. border:none;
  5477. border-radius:0px;
  5478. -moz-box-shadow:none;
  5479. -webkit-box-shadow:none;
  5480. box-shadow:none;
  5481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:16px;
  5485. }
  5486. #u73725 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:30px;
  5490. top:145px;
  5491. width:49px;
  5492. height:22px;
  5493. display:flex;
  5494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:16px;
  5498. }
  5499. #u73725 .text {
  5500. position:absolute;
  5501. align-self:flex-start;
  5502. padding:0px 0px 0px 0px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u73725_text {
  5507. border-width:0px;
  5508. white-space:nowrap;
  5509. text-transform:none;
  5510. }
  5511. #u73726_div {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:97px;
  5517. height:22px;
  5518. background:inherit;
  5519. background-color:rgba(255, 255, 255, 0);
  5520. border:none;
  5521. border-radius:0px;
  5522. -moz-box-shadow:none;
  5523. -webkit-box-shadow:none;
  5524. box-shadow:none;
  5525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5526. font-weight:400;
  5527. font-style:normal;
  5528. font-size:16px;
  5529. }
  5530. #u73726 {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:30px;
  5534. top:187px;
  5535. width:97px;
  5536. height:22px;
  5537. display:flex;
  5538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:16px;
  5542. }
  5543. #u73726 .text {
  5544. position:absolute;
  5545. align-self:flex-start;
  5546. padding:0px 0px 0px 0px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u73726_text {
  5551. border-width:0px;
  5552. word-wrap:break-word;
  5553. text-transform:none;
  5554. }
  5555. #u73727_img {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:0px;
  5559. top:0px;
  5560. width:201px;
  5561. height:2px;
  5562. }
  5563. #u73727 {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:84px;
  5568. width:200px;
  5569. height:1px;
  5570. display:flex;
  5571. }
  5572. #u73727 .text {
  5573. position:absolute;
  5574. align-self:center;
  5575. padding:2px 2px 2px 2px;
  5576. box-sizing:border-box;
  5577. width:100%;
  5578. }
  5579. #u73727_text {
  5580. border-width:0px;
  5581. word-wrap:break-word;
  5582. text-transform:none;
  5583. visibility:hidden;
  5584. }
  5585. #u73728_div {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:0px;
  5589. top:0px;
  5590. width:49px;
  5591. height:17px;
  5592. background:inherit;
  5593. background-color:rgba(255, 255, 255, 0);
  5594. border:none;
  5595. border-radius:0px;
  5596. -moz-box-shadow:none;
  5597. -webkit-box-shadow:none;
  5598. box-shadow:none;
  5599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:12px;
  5603. color:#AAAAAA;
  5604. }
  5605. #u73728 {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:30px;
  5609. top:105px;
  5610. width:49px;
  5611. height:17px;
  5612. display:flex;
  5613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:12px;
  5617. color:#AAAAAA;
  5618. }
  5619. #u73728 .text {
  5620. position:absolute;
  5621. align-self:flex-start;
  5622. padding:0px 0px 0px 0px;
  5623. box-sizing:border-box;
  5624. width:100%;
  5625. }
  5626. #u73728_text {
  5627. border-width:0px;
  5628. white-space:nowrap;
  5629. text-transform:none;
  5630. }
  5631. #u73729_div {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:97px;
  5637. height:22px;
  5638. background:inherit;
  5639. background-color:rgba(255, 255, 255, 0);
  5640. border:none;
  5641. border-radius:0px;
  5642. -moz-box-shadow:none;
  5643. -webkit-box-shadow:none;
  5644. box-shadow:none;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:16px;
  5649. }
  5650. #u73729 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:30px;
  5654. top:229px;
  5655. width:97px;
  5656. height:22px;
  5657. display:flex;
  5658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. font-size:16px;
  5662. }
  5663. #u73729 .text {
  5664. position:absolute;
  5665. align-self:flex-start;
  5666. padding:0px 0px 0px 0px;
  5667. box-sizing:border-box;
  5668. width:100%;
  5669. }
  5670. #u73729_text {
  5671. border-width:0px;
  5672. word-wrap:break-word;
  5673. text-transform:none;
  5674. }
  5675. #u73730_div {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:65px;
  5681. height:22px;
  5682. background:inherit;
  5683. background-color:rgba(255, 255, 255, 0);
  5684. border:none;
  5685. border-radius:0px;
  5686. -moz-box-shadow:none;
  5687. -webkit-box-shadow:none;
  5688. box-shadow:none;
  5689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5690. font-weight:400;
  5691. font-style:normal;
  5692. font-size:16px;
  5693. }
  5694. #u73730 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:30px;
  5698. top:271px;
  5699. width:65px;
  5700. height:22px;
  5701. display:flex;
  5702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:16px;
  5706. }
  5707. #u73730 .text {
  5708. position:absolute;
  5709. align-self:flex-start;
  5710. padding:0px 0px 0px 0px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u73730_text {
  5715. border-width:0px;
  5716. white-space:nowrap;
  5717. text-transform:none;
  5718. }
  5719. #u73731_img {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:201px;
  5725. height:2px;
  5726. }
  5727. #u73731 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:0px;
  5731. top:313px;
  5732. width:200px;
  5733. height:1px;
  5734. display:flex;
  5735. }
  5736. #u73731 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:2px 2px 2px 2px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u73731_text {
  5744. border-width:0px;
  5745. word-wrap:break-word;
  5746. text-transform:none;
  5747. visibility:hidden;
  5748. }
  5749. #u73732_div {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:65px;
  5755. height:22px;
  5756. background:inherit;
  5757. background-color:rgba(255, 255, 255, 0);
  5758. border:none;
  5759. border-radius:0px;
  5760. -moz-box-shadow:none;
  5761. -webkit-box-shadow:none;
  5762. box-shadow:none;
  5763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:16px;
  5767. }
  5768. #u73732 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:30px;
  5772. top:370px;
  5773. width:65px;
  5774. height:22px;
  5775. display:flex;
  5776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:16px;
  5780. }
  5781. #u73732 .text {
  5782. position:absolute;
  5783. align-self:flex-start;
  5784. padding:0px 0px 0px 0px;
  5785. box-sizing:border-box;
  5786. width:100%;
  5787. }
  5788. #u73732_text {
  5789. border-width:0px;
  5790. white-space:nowrap;
  5791. text-transform:none;
  5792. }
  5793. #u73733_div {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:49px;
  5799. height:17px;
  5800. background:inherit;
  5801. background-color:rgba(255, 255, 255, 0);
  5802. border:none;
  5803. border-radius:0px;
  5804. -moz-box-shadow:none;
  5805. -webkit-box-shadow:none;
  5806. box-shadow:none;
  5807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:12px;
  5811. color:#AAAAAA;
  5812. }
  5813. #u73733 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:30px;
  5817. top:334px;
  5818. width:49px;
  5819. height:17px;
  5820. display:flex;
  5821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5822. font-weight:400;
  5823. font-style:normal;
  5824. font-size:12px;
  5825. color:#AAAAAA;
  5826. }
  5827. #u73733 .text {
  5828. position:absolute;
  5829. align-self:flex-start;
  5830. padding:0px 0px 0px 0px;
  5831. box-sizing:border-box;
  5832. width:100%;
  5833. }
  5834. #u73733_text {
  5835. border-width:0px;
  5836. white-space:nowrap;
  5837. text-transform:none;
  5838. }
  5839. #u73734_div {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:65px;
  5845. height:22px;
  5846. background:inherit;
  5847. background-color:rgba(255, 255, 255, 0);
  5848. border:none;
  5849. border-radius:0px;
  5850. -moz-box-shadow:none;
  5851. -webkit-box-shadow:none;
  5852. box-shadow:none;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:16px;
  5857. }
  5858. #u73734 {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:30px;
  5862. top:412px;
  5863. width:65px;
  5864. height:22px;
  5865. display:flex;
  5866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5867. font-weight:400;
  5868. font-style:normal;
  5869. font-size:16px;
  5870. }
  5871. #u73734 .text {
  5872. position:absolute;
  5873. align-self:flex-start;
  5874. padding:0px 0px 0px 0px;
  5875. box-sizing:border-box;
  5876. width:100%;
  5877. }
  5878. #u73734_text {
  5879. border-width:0px;
  5880. white-space:nowrap;
  5881. text-transform:none;
  5882. }
  5883. #u73735_div {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:65px;
  5889. height:22px;
  5890. background:inherit;
  5891. background-color:rgba(255, 255, 255, 0);
  5892. border:none;
  5893. border-radius:0px;
  5894. -moz-box-shadow:none;
  5895. -webkit-box-shadow:none;
  5896. box-shadow:none;
  5897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:16px;
  5901. }
  5902. #u73735 {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:30px;
  5906. top:454px;
  5907. width:65px;
  5908. height:22px;
  5909. display:flex;
  5910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5911. font-weight:400;
  5912. font-style:normal;
  5913. font-size:16px;
  5914. }
  5915. #u73735 .text {
  5916. position:absolute;
  5917. align-self:flex-start;
  5918. padding:0px 0px 0px 0px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u73735_text {
  5923. border-width:0px;
  5924. white-space:nowrap;
  5925. text-transform:none;
  5926. }
  5927. #u73736_div {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:65px;
  5933. height:22px;
  5934. background:inherit;
  5935. background-color:rgba(255, 255, 255, 0);
  5936. border:none;
  5937. border-radius:0px;
  5938. -moz-box-shadow:none;
  5939. -webkit-box-shadow:none;
  5940. box-shadow:none;
  5941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:16px;
  5945. }
  5946. #u73736 {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:30px;
  5950. top:496px;
  5951. width:65px;
  5952. height:22px;
  5953. display:flex;
  5954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:16px;
  5958. }
  5959. #u73736 .text {
  5960. position:absolute;
  5961. align-self:flex-start;
  5962. padding:0px 0px 0px 0px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u73736_text {
  5967. border-width:0px;
  5968. white-space:nowrap;
  5969. text-transform:none;
  5970. }
  5971. #u73737_div {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:65px;
  5977. height:22px;
  5978. background:inherit;
  5979. background-color:rgba(255, 255, 255, 0);
  5980. border:none;
  5981. border-radius:0px;
  5982. -moz-box-shadow:none;
  5983. -webkit-box-shadow:none;
  5984. box-shadow:none;
  5985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:16px;
  5989. }
  5990. #u73737 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:30px;
  5994. top:538px;
  5995. width:65px;
  5996. height:22px;
  5997. display:flex;
  5998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:16px;
  6002. }
  6003. #u73737 .text {
  6004. position:absolute;
  6005. align-self:flex-start;
  6006. padding:0px 0px 0px 0px;
  6007. box-sizing:border-box;
  6008. width:100%;
  6009. }
  6010. #u73737_text {
  6011. border-width:0px;
  6012. white-space:nowrap;
  6013. text-transform:none;
  6014. }
  6015. #u73738_div {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:0px;
  6019. top:0px;
  6020. width:65px;
  6021. height:22px;
  6022. background:inherit;
  6023. background-color:rgba(255, 255, 255, 0);
  6024. border:none;
  6025. border-radius:0px;
  6026. -moz-box-shadow:none;
  6027. -webkit-box-shadow:none;
  6028. box-shadow:none;
  6029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6030. font-weight:400;
  6031. font-style:normal;
  6032. font-size:16px;
  6033. }
  6034. #u73738 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:30px;
  6038. top:580px;
  6039. width:65px;
  6040. height:22px;
  6041. display:flex;
  6042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6043. font-weight:400;
  6044. font-style:normal;
  6045. font-size:16px;
  6046. }
  6047. #u73738 .text {
  6048. position:absolute;
  6049. align-self:flex-start;
  6050. padding:0px 0px 0px 0px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u73738_text {
  6055. border-width:0px;
  6056. white-space:nowrap;
  6057. text-transform:none;
  6058. }
  6059. #u73739_img {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:0px;
  6063. top:0px;
  6064. width:201px;
  6065. height:2px;
  6066. }
  6067. #u73739 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:1289px;
  6072. width:200px;
  6073. height:1px;
  6074. display:flex;
  6075. }
  6076. #u73739 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 2px 2px 2px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u73739_text {
  6084. border-width:0px;
  6085. word-wrap:break-word;
  6086. text-transform:none;
  6087. visibility:hidden;
  6088. }
  6089. #u73740_div {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:65px;
  6095. height:22px;
  6096. background:inherit;
  6097. background-color:rgba(255, 255, 255, 0);
  6098. border:none;
  6099. border-radius:0px;
  6100. -moz-box-shadow:none;
  6101. -webkit-box-shadow:none;
  6102. box-shadow:none;
  6103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:16px;
  6107. }
  6108. #u73740 {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:30px;
  6112. top:1346px;
  6113. width:65px;
  6114. height:22px;
  6115. display:flex;
  6116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6117. font-weight:400;
  6118. font-style:normal;
  6119. font-size:16px;
  6120. }
  6121. #u73740 .text {
  6122. position:absolute;
  6123. align-self:flex-start;
  6124. padding:0px 0px 0px 0px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u73740_text {
  6129. border-width:0px;
  6130. white-space:nowrap;
  6131. text-transform:none;
  6132. }
  6133. #u73741_div {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:49px;
  6139. height:17px;
  6140. background:inherit;
  6141. background-color:rgba(255, 255, 255, 0);
  6142. border:none;
  6143. border-radius:0px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:12px;
  6151. color:#AAAAAA;
  6152. }
  6153. #u73741 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:30px;
  6157. top:1310px;
  6158. width:49px;
  6159. height:17px;
  6160. display:flex;
  6161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:12px;
  6165. color:#AAAAAA;
  6166. }
  6167. #u73741 .text {
  6168. position:absolute;
  6169. align-self:flex-start;
  6170. padding:0px 0px 0px 0px;
  6171. box-sizing:border-box;
  6172. width:100%;
  6173. }
  6174. #u73741_text {
  6175. border-width:0px;
  6176. white-space:nowrap;
  6177. text-transform:none;
  6178. }
  6179. #u73742_div {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:65px;
  6185. height:22px;
  6186. background:inherit;
  6187. background-color:rgba(255, 255, 255, 0);
  6188. border:none;
  6189. border-radius:0px;
  6190. -moz-box-shadow:none;
  6191. -webkit-box-shadow:none;
  6192. box-shadow:none;
  6193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6194. font-weight:400;
  6195. font-style:normal;
  6196. font-size:16px;
  6197. }
  6198. #u73742 {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:30px;
  6202. top:1388px;
  6203. width:65px;
  6204. height:22px;
  6205. display:flex;
  6206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6207. font-weight:400;
  6208. font-style:normal;
  6209. font-size:16px;
  6210. }
  6211. #u73742 .text {
  6212. position:absolute;
  6213. align-self:flex-start;
  6214. padding:0px 0px 0px 0px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u73742_text {
  6219. border-width:0px;
  6220. white-space:nowrap;
  6221. text-transform:none;
  6222. }
  6223. #u73743_div {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:65px;
  6229. height:22px;
  6230. background:inherit;
  6231. background-color:rgba(255, 255, 255, 0);
  6232. border:none;
  6233. border-radius:0px;
  6234. -moz-box-shadow:none;
  6235. -webkit-box-shadow:none;
  6236. box-shadow:none;
  6237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:16px;
  6241. }
  6242. #u73743 {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:30px;
  6246. top:1472px;
  6247. width:65px;
  6248. height:22px;
  6249. display:flex;
  6250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6251. font-weight:400;
  6252. font-style:normal;
  6253. font-size:16px;
  6254. }
  6255. #u73743 .text {
  6256. position:absolute;
  6257. align-self:flex-start;
  6258. padding:0px 0px 0px 0px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u73743_text {
  6263. border-width:0px;
  6264. white-space:nowrap;
  6265. text-transform:none;
  6266. }
  6267. #u73744_img {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:201px;
  6273. height:2px;
  6274. }
  6275. #u73744 {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:1514px;
  6280. width:200px;
  6281. height:1px;
  6282. display:flex;
  6283. }
  6284. #u73744 .text {
  6285. position:absolute;
  6286. align-self:center;
  6287. padding:2px 2px 2px 2px;
  6288. box-sizing:border-box;
  6289. width:100%;
  6290. }
  6291. #u73744_text {
  6292. border-width:0px;
  6293. word-wrap:break-word;
  6294. text-transform:none;
  6295. visibility:hidden;
  6296. }
  6297. #u73745_div {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:49px;
  6303. height:22px;
  6304. background:inherit;
  6305. background-color:rgba(255, 255, 255, 0);
  6306. border:none;
  6307. border-radius:0px;
  6308. -moz-box-shadow:none;
  6309. -webkit-box-shadow:none;
  6310. box-shadow:none;
  6311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6312. font-weight:400;
  6313. font-style:normal;
  6314. font-size:16px;
  6315. }
  6316. #u73745 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:30px;
  6320. top:1571px;
  6321. width:49px;
  6322. height:22px;
  6323. display:flex;
  6324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:16px;
  6328. }
  6329. #u73745 .text {
  6330. position:absolute;
  6331. align-self:flex-start;
  6332. padding:0px 0px 0px 0px;
  6333. box-sizing:border-box;
  6334. width:100%;
  6335. }
  6336. #u73745_text {
  6337. border-width:0px;
  6338. white-space:nowrap;
  6339. text-transform:none;
  6340. }
  6341. #u73746_div {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:49px;
  6347. height:17px;
  6348. background:inherit;
  6349. background-color:rgba(255, 255, 255, 0);
  6350. border:none;
  6351. border-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:12px;
  6359. color:#AAAAAA;
  6360. }
  6361. #u73746 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:30px;
  6365. top:1535px;
  6366. width:49px;
  6367. height:17px;
  6368. display:flex;
  6369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6370. font-weight:400;
  6371. font-style:normal;
  6372. font-size:12px;
  6373. color:#AAAAAA;
  6374. }
  6375. #u73746 .text {
  6376. position:absolute;
  6377. align-self:flex-start;
  6378. padding:0px 0px 0px 0px;
  6379. box-sizing:border-box;
  6380. width:100%;
  6381. }
  6382. #u73746_text {
  6383. border-width:0px;
  6384. white-space:nowrap;
  6385. text-transform:none;
  6386. }
  6387. #u73747_div {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:49px;
  6393. height:22px;
  6394. background:inherit;
  6395. background-color:rgba(255, 255, 255, 0);
  6396. border:none;
  6397. border-radius:0px;
  6398. -moz-box-shadow:none;
  6399. -webkit-box-shadow:none;
  6400. box-shadow:none;
  6401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:16px;
  6405. }
  6406. #u73747 {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:30px;
  6410. top:1613px;
  6411. width:49px;
  6412. height:22px;
  6413. display:flex;
  6414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. font-size:16px;
  6418. }
  6419. #u73747 .text {
  6420. position:absolute;
  6421. align-self:flex-start;
  6422. padding:0px 0px 0px 0px;
  6423. box-sizing:border-box;
  6424. width:100%;
  6425. }
  6426. #u73747_text {
  6427. border-width:0px;
  6428. white-space:nowrap;
  6429. text-transform:none;
  6430. }
  6431. #u73748_div {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:65px;
  6437. height:22px;
  6438. background:inherit;
  6439. background-color:rgba(255, 255, 255, 0);
  6440. border:none;
  6441. border-radius:0px;
  6442. -moz-box-shadow:none;
  6443. -webkit-box-shadow:none;
  6444. box-shadow:none;
  6445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6446. font-weight:400;
  6447. font-style:normal;
  6448. font-size:16px;
  6449. }
  6450. #u73748 {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:30px;
  6454. top:1655px;
  6455. width:65px;
  6456. height:22px;
  6457. display:flex;
  6458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6459. font-weight:400;
  6460. font-style:normal;
  6461. font-size:16px;
  6462. }
  6463. #u73748 .text {
  6464. position:absolute;
  6465. align-self:flex-start;
  6466. padding:0px 0px 0px 0px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u73748_text {
  6471. border-width:0px;
  6472. white-space:nowrap;
  6473. text-transform:none;
  6474. }
  6475. #u73749_img {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:201px;
  6481. height:2px;
  6482. }
  6483. #u73749 {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:1697px;
  6488. width:200px;
  6489. height:1px;
  6490. display:flex;
  6491. }
  6492. #u73749 .text {
  6493. position:absolute;
  6494. align-self:center;
  6495. padding:2px 2px 2px 2px;
  6496. box-sizing:border-box;
  6497. width:100%;
  6498. }
  6499. #u73749_text {
  6500. border-width:0px;
  6501. word-wrap:break-word;
  6502. text-transform:none;
  6503. visibility:hidden;
  6504. }
  6505. #u73750_div {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:81px;
  6511. height:22px;
  6512. background:inherit;
  6513. background-color:rgba(255, 255, 255, 0);
  6514. border:none;
  6515. border-radius:0px;
  6516. -moz-box-shadow:none;
  6517. -webkit-box-shadow:none;
  6518. box-shadow:none;
  6519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:16px;
  6523. }
  6524. #u73750 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:30px;
  6528. top:1754px;
  6529. width:81px;
  6530. height:22px;
  6531. display:flex;
  6532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:16px;
  6536. }
  6537. #u73750 .text {
  6538. position:absolute;
  6539. align-self:flex-start;
  6540. padding:0px 0px 0px 0px;
  6541. box-sizing:border-box;
  6542. width:100%;
  6543. }
  6544. #u73750_text {
  6545. border-width:0px;
  6546. white-space:nowrap;
  6547. text-transform:none;
  6548. }
  6549. #u73751_div {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:49px;
  6555. height:17px;
  6556. background:inherit;
  6557. background-color:rgba(255, 255, 255, 0);
  6558. border:none;
  6559. border-radius:0px;
  6560. -moz-box-shadow:none;
  6561. -webkit-box-shadow:none;
  6562. box-shadow:none;
  6563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:12px;
  6567. color:#AAAAAA;
  6568. }
  6569. #u73751 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:30px;
  6573. top:1718px;
  6574. width:49px;
  6575. height:17px;
  6576. display:flex;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:12px;
  6581. color:#AAAAAA;
  6582. }
  6583. #u73751 .text {
  6584. position:absolute;
  6585. align-self:flex-start;
  6586. padding:0px 0px 0px 0px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u73751_text {
  6591. border-width:0px;
  6592. white-space:nowrap;
  6593. text-transform:none;
  6594. }
  6595. #u73752_div {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:81px;
  6601. height:22px;
  6602. background:inherit;
  6603. background-color:rgba(255, 255, 255, 0);
  6604. border:none;
  6605. border-radius:0px;
  6606. -moz-box-shadow:none;
  6607. -webkit-box-shadow:none;
  6608. box-shadow:none;
  6609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6610. font-weight:400;
  6611. font-style:normal;
  6612. font-size:16px;
  6613. }
  6614. #u73752 {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:30px;
  6618. top:1796px;
  6619. width:81px;
  6620. height:22px;
  6621. display:flex;
  6622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6623. font-weight:400;
  6624. font-style:normal;
  6625. font-size:16px;
  6626. }
  6627. #u73752 .text {
  6628. position:absolute;
  6629. align-self:flex-start;
  6630. padding:0px 0px 0px 0px;
  6631. box-sizing:border-box;
  6632. width:100%;
  6633. }
  6634. #u73752_text {
  6635. border-width:0px;
  6636. white-space:nowrap;
  6637. text-transform:none;
  6638. }
  6639. #u73753_div {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:0px;
  6643. top:0px;
  6644. width:81px;
  6645. height:22px;
  6646. background:inherit;
  6647. background-color:rgba(255, 255, 255, 0);
  6648. border:none;
  6649. border-radius:0px;
  6650. -moz-box-shadow:none;
  6651. -webkit-box-shadow:none;
  6652. box-shadow:none;
  6653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6654. font-weight:400;
  6655. font-style:normal;
  6656. font-size:16px;
  6657. }
  6658. #u73753 {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:30px;
  6662. top:1838px;
  6663. width:81px;
  6664. height:22px;
  6665. display:flex;
  6666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6667. font-weight:400;
  6668. font-style:normal;
  6669. font-size:16px;
  6670. }
  6671. #u73753 .text {
  6672. position:absolute;
  6673. align-self:flex-start;
  6674. padding:0px 0px 0px 0px;
  6675. box-sizing:border-box;
  6676. width:100%;
  6677. }
  6678. #u73753_text {
  6679. border-width:0px;
  6680. white-space:nowrap;
  6681. text-transform:none;
  6682. }
  6683. #u73754_div {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:65px;
  6689. height:22px;
  6690. background:inherit;
  6691. background-color:rgba(255, 255, 255, 0);
  6692. border:none;
  6693. border-radius:0px;
  6694. -moz-box-shadow:none;
  6695. -webkit-box-shadow:none;
  6696. box-shadow:none;
  6697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:16px;
  6701. }
  6702. #u73754 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:30px;
  6706. top:1430px;
  6707. width:65px;
  6708. height:22px;
  6709. display:flex;
  6710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6711. font-weight:400;
  6712. font-style:normal;
  6713. font-size:16px;
  6714. }
  6715. #u73754 .text {
  6716. position:absolute;
  6717. align-self:flex-start;
  6718. padding:0px 0px 0px 0px;
  6719. box-sizing:border-box;
  6720. width:100%;
  6721. }
  6722. #u73754_text {
  6723. border-width:0px;
  6724. white-space:nowrap;
  6725. text-transform:none;
  6726. }
  6727. #u73755_img {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:0px;
  6731. top:0px;
  6732. width:201px;
  6733. height:2px;
  6734. }
  6735. #u73755 {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:669px;
  6740. width:200px;
  6741. height:1px;
  6742. display:flex;
  6743. }
  6744. #u73755 .text {
  6745. position:absolute;
  6746. align-self:center;
  6747. padding:2px 2px 2px 2px;
  6748. box-sizing:border-box;
  6749. width:100%;
  6750. }
  6751. #u73755_text {
  6752. border-width:0px;
  6753. word-wrap:break-word;
  6754. text-transform:none;
  6755. visibility:hidden;
  6756. }
  6757. #u73756_div {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:65px;
  6763. height:22px;
  6764. background:inherit;
  6765. background-color:rgba(255, 255, 255, 0);
  6766. border:none;
  6767. border-radius:0px;
  6768. -moz-box-shadow:none;
  6769. -webkit-box-shadow:none;
  6770. box-shadow:none;
  6771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:16px;
  6775. }
  6776. #u73756 {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:30px;
  6780. top:726px;
  6781. width:65px;
  6782. height:22px;
  6783. display:flex;
  6784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. font-size:16px;
  6788. }
  6789. #u73756 .text {
  6790. position:absolute;
  6791. align-self:flex-start;
  6792. padding:0px 0px 0px 0px;
  6793. box-sizing:border-box;
  6794. width:100%;
  6795. }
  6796. #u73756_text {
  6797. border-width:0px;
  6798. white-space:nowrap;
  6799. text-transform:none;
  6800. }
  6801. #u73757_div {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:49px;
  6807. height:17px;
  6808. background:inherit;
  6809. background-color:rgba(255, 255, 255, 0);
  6810. border:none;
  6811. border-radius:0px;
  6812. -moz-box-shadow:none;
  6813. -webkit-box-shadow:none;
  6814. box-shadow:none;
  6815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:12px;
  6819. color:#AAAAAA;
  6820. }
  6821. #u73757 {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:30px;
  6825. top:690px;
  6826. width:49px;
  6827. height:17px;
  6828. display:flex;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. font-size:12px;
  6833. color:#AAAAAA;
  6834. }
  6835. #u73757 .text {
  6836. position:absolute;
  6837. align-self:flex-start;
  6838. padding:0px 0px 0px 0px;
  6839. box-sizing:border-box;
  6840. width:100%;
  6841. }
  6842. #u73757_text {
  6843. border-width:0px;
  6844. white-space:nowrap;
  6845. text-transform:none;
  6846. }
  6847. #u73758_div {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:65px;
  6853. height:22px;
  6854. background:inherit;
  6855. background-color:rgba(255, 255, 255, 0);
  6856. border:none;
  6857. border-radius:0px;
  6858. -moz-box-shadow:none;
  6859. -webkit-box-shadow:none;
  6860. box-shadow:none;
  6861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6862. font-weight:400;
  6863. font-style:normal;
  6864. font-size:16px;
  6865. }
  6866. #u73758 {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:30px;
  6870. top:768px;
  6871. width:65px;
  6872. height:22px;
  6873. display:flex;
  6874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6875. font-weight:400;
  6876. font-style:normal;
  6877. font-size:16px;
  6878. }
  6879. #u73758 .text {
  6880. position:absolute;
  6881. align-self:flex-start;
  6882. padding:0px 0px 0px 0px;
  6883. box-sizing:border-box;
  6884. width:100%;
  6885. }
  6886. #u73758_text {
  6887. border-width:0px;
  6888. white-space:nowrap;
  6889. text-transform:none;
  6890. }
  6891. #u73759_div {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:65px;
  6897. height:22px;
  6898. background:inherit;
  6899. background-color:rgba(255, 255, 255, 0);
  6900. border:none;
  6901. border-radius:0px;
  6902. -moz-box-shadow:none;
  6903. -webkit-box-shadow:none;
  6904. box-shadow:none;
  6905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6906. font-weight:400;
  6907. font-style:normal;
  6908. font-size:16px;
  6909. }
  6910. #u73759 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:30px;
  6914. top:852px;
  6915. width:65px;
  6916. height:22px;
  6917. display:flex;
  6918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6919. font-weight:400;
  6920. font-style:normal;
  6921. font-size:16px;
  6922. }
  6923. #u73759 .text {
  6924. position:absolute;
  6925. align-self:flex-start;
  6926. padding:0px 0px 0px 0px;
  6927. box-sizing:border-box;
  6928. width:100%;
  6929. }
  6930. #u73759_text {
  6931. border-width:0px;
  6932. white-space:nowrap;
  6933. text-transform:none;
  6934. }
  6935. #u73760_div {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:65px;
  6941. height:22px;
  6942. background:inherit;
  6943. background-color:rgba(255, 255, 255, 0);
  6944. border:none;
  6945. border-radius:0px;
  6946. -moz-box-shadow:none;
  6947. -webkit-box-shadow:none;
  6948. box-shadow:none;
  6949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:16px;
  6953. }
  6954. #u73760 {
  6955. border-width:0px;
  6956. position:absolute;
  6957. left:30px;
  6958. top:810px;
  6959. width:65px;
  6960. height:22px;
  6961. display:flex;
  6962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6963. font-weight:400;
  6964. font-style:normal;
  6965. font-size:16px;
  6966. }
  6967. #u73760 .text {
  6968. position:absolute;
  6969. align-self:flex-start;
  6970. padding:0px 0px 0px 0px;
  6971. box-sizing:border-box;
  6972. width:100%;
  6973. }
  6974. #u73760_text {
  6975. border-width:0px;
  6976. white-space:nowrap;
  6977. text-transform:none;
  6978. }
  6979. #u73761_div {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:0px;
  6983. top:0px;
  6984. width:65px;
  6985. height:22px;
  6986. background:inherit;
  6987. background-color:rgba(255, 255, 255, 0);
  6988. border:none;
  6989. border-radius:0px;
  6990. -moz-box-shadow:none;
  6991. -webkit-box-shadow:none;
  6992. box-shadow:none;
  6993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6994. font-weight:400;
  6995. font-style:normal;
  6996. font-size:16px;
  6997. }
  6998. #u73761 {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:30px;
  7002. top:894px;
  7003. width:65px;
  7004. height:22px;
  7005. display:flex;
  7006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7007. font-weight:400;
  7008. font-style:normal;
  7009. font-size:16px;
  7010. }
  7011. #u73761 .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. #u73761_text {
  7019. border-width:0px;
  7020. white-space:nowrap;
  7021. text-transform:none;
  7022. }
  7023. #u73762_div {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:65px;
  7029. height:22px;
  7030. background:inherit;
  7031. background-color:rgba(255, 255, 255, 0);
  7032. border:none;
  7033. border-radius:0px;
  7034. -moz-box-shadow:none;
  7035. -webkit-box-shadow:none;
  7036. box-shadow:none;
  7037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7038. font-weight:400;
  7039. font-style:normal;
  7040. font-size:16px;
  7041. }
  7042. #u73762 {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:30px;
  7046. top:936px;
  7047. width:65px;
  7048. height:22px;
  7049. display:flex;
  7050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:16px;
  7054. }
  7055. #u73762 .text {
  7056. position:absolute;
  7057. align-self:flex-start;
  7058. padding:0px 0px 0px 0px;
  7059. box-sizing:border-box;
  7060. width:100%;
  7061. }
  7062. #u73762_text {
  7063. border-width:0px;
  7064. white-space:nowrap;
  7065. text-transform:none;
  7066. }
  7067. #u73763_img {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:201px;
  7073. height:2px;
  7074. }
  7075. #u73763 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:1018px;
  7080. width:200px;
  7081. height:1px;
  7082. display:flex;
  7083. }
  7084. #u73763 .text {
  7085. position:absolute;
  7086. align-self:center;
  7087. padding:2px 2px 2px 2px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u73763_text {
  7092. border-width:0px;
  7093. word-wrap:break-word;
  7094. text-transform:none;
  7095. visibility:hidden;
  7096. }
  7097. #u73764_div {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:65px;
  7103. height:22px;
  7104. background:inherit;
  7105. background-color:rgba(255, 255, 255, 0);
  7106. border:none;
  7107. border-radius:0px;
  7108. -moz-box-shadow:none;
  7109. -webkit-box-shadow:none;
  7110. box-shadow:none;
  7111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7112. font-weight:400;
  7113. font-style:normal;
  7114. font-size:16px;
  7115. }
  7116. #u73764 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:30px;
  7120. top:1075px;
  7121. width:65px;
  7122. height:22px;
  7123. display:flex;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:16px;
  7128. }
  7129. #u73764 .text {
  7130. position:absolute;
  7131. align-self:flex-start;
  7132. padding:0px 0px 0px 0px;
  7133. box-sizing:border-box;
  7134. width:100%;
  7135. }
  7136. #u73764_text {
  7137. border-width:0px;
  7138. white-space:nowrap;
  7139. text-transform:none;
  7140. }
  7141. #u73765_div {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:49px;
  7147. height:17px;
  7148. background:inherit;
  7149. background-color:rgba(255, 255, 255, 0);
  7150. border:none;
  7151. border-radius:0px;
  7152. -moz-box-shadow:none;
  7153. -webkit-box-shadow:none;
  7154. box-shadow:none;
  7155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7156. font-weight:400;
  7157. font-style:normal;
  7158. font-size:12px;
  7159. color:#AAAAAA;
  7160. }
  7161. #u73765 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:30px;
  7165. top:1039px;
  7166. width:49px;
  7167. height:17px;
  7168. display:flex;
  7169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:12px;
  7173. color:#AAAAAA;
  7174. }
  7175. #u73765 .text {
  7176. position:absolute;
  7177. align-self:flex-start;
  7178. padding:0px 0px 0px 0px;
  7179. box-sizing:border-box;
  7180. width:100%;
  7181. }
  7182. #u73765_text {
  7183. border-width:0px;
  7184. white-space:nowrap;
  7185. text-transform:none;
  7186. }
  7187. #u73766_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:65px;
  7193. height:22px;
  7194. background:inherit;
  7195. background-color:rgba(255, 255, 255, 0);
  7196. border:none;
  7197. border-radius:0px;
  7198. -moz-box-shadow:none;
  7199. -webkit-box-shadow:none;
  7200. box-shadow:none;
  7201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:16px;
  7205. }
  7206. #u73766 {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:30px;
  7210. top:1117px;
  7211. width:65px;
  7212. height:22px;
  7213. display:flex;
  7214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. font-size:16px;
  7218. }
  7219. #u73766 .text {
  7220. position:absolute;
  7221. align-self:flex-start;
  7222. padding:0px 0px 0px 0px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u73766_text {
  7227. border-width:0px;
  7228. white-space:nowrap;
  7229. text-transform:none;
  7230. }
  7231. #u73767_div {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:0px;
  7235. top:0px;
  7236. width:65px;
  7237. height:22px;
  7238. background:inherit;
  7239. background-color:rgba(255, 255, 255, 0);
  7240. border:none;
  7241. border-radius:0px;
  7242. -moz-box-shadow:none;
  7243. -webkit-box-shadow:none;
  7244. box-shadow:none;
  7245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7246. font-weight:400;
  7247. font-style:normal;
  7248. font-size:16px;
  7249. }
  7250. #u73767 {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:30px;
  7254. top:1201px;
  7255. width:65px;
  7256. height:22px;
  7257. display:flex;
  7258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7259. font-weight:400;
  7260. font-style:normal;
  7261. font-size:16px;
  7262. }
  7263. #u73767 .text {
  7264. position:absolute;
  7265. align-self:flex-start;
  7266. padding:0px 0px 0px 0px;
  7267. box-sizing:border-box;
  7268. width:100%;
  7269. }
  7270. #u73767_text {
  7271. border-width:0px;
  7272. white-space:nowrap;
  7273. text-transform:none;
  7274. }
  7275. #u73768_div {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:65px;
  7281. height:22px;
  7282. background:inherit;
  7283. background-color:rgba(255, 255, 255, 0);
  7284. border:none;
  7285. border-radius:0px;
  7286. -moz-box-shadow:none;
  7287. -webkit-box-shadow:none;
  7288. box-shadow:none;
  7289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7290. font-weight:400;
  7291. font-style:normal;
  7292. font-size:16px;
  7293. }
  7294. #u73768 {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:30px;
  7298. top:1159px;
  7299. width:65px;
  7300. height:22px;
  7301. display:flex;
  7302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:16px;
  7306. }
  7307. #u73768 .text {
  7308. position:absolute;
  7309. align-self:flex-start;
  7310. padding:0px 0px 0px 0px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u73768_text {
  7315. border-width:0px;
  7316. white-space:nowrap;
  7317. text-transform:none;
  7318. }
  7319. #u73769_div {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:65px;
  7325. height:22px;
  7326. background:inherit;
  7327. background-color:rgba(255, 255, 255, 0);
  7328. border:none;
  7329. border-radius:0px;
  7330. -moz-box-shadow:none;
  7331. -webkit-box-shadow:none;
  7332. box-shadow:none;
  7333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7334. font-weight:400;
  7335. font-style:normal;
  7336. font-size:16px;
  7337. }
  7338. #u73769 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:30px;
  7342. top:1243px;
  7343. width:65px;
  7344. height:22px;
  7345. display:flex;
  7346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7347. font-weight:400;
  7348. font-style:normal;
  7349. font-size:16px;
  7350. }
  7351. #u73769 .text {
  7352. position:absolute;
  7353. align-self:flex-start;
  7354. padding:0px 0px 0px 0px;
  7355. box-sizing:border-box;
  7356. width:100%;
  7357. }
  7358. #u73769_text {
  7359. border-width:0px;
  7360. white-space:nowrap;
  7361. text-transform:none;
  7362. }
  7363. #u73770_div {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:0px;
  7367. top:0px;
  7368. width:65px;
  7369. height:22px;
  7370. background:inherit;
  7371. background-color:rgba(255, 255, 255, 0);
  7372. border:none;
  7373. border-radius:0px;
  7374. -moz-box-shadow:none;
  7375. -webkit-box-shadow:none;
  7376. box-shadow:none;
  7377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:16px;
  7381. }
  7382. #u73770 {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:30px;
  7386. top:978px;
  7387. width:65px;
  7388. height:22px;
  7389. display:flex;
  7390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7391. font-weight:400;
  7392. font-style:normal;
  7393. font-size:16px;
  7394. }
  7395. #u73770 .text {
  7396. position:absolute;
  7397. align-self:flex-start;
  7398. padding:0px 0px 0px 0px;
  7399. box-sizing:border-box;
  7400. width:100%;
  7401. }
  7402. #u73770_text {
  7403. border-width:0px;
  7404. white-space:nowrap;
  7405. text-transform:none;
  7406. }
  7407. #u73771_div {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:0px;
  7411. top:0px;
  7412. width:65px;
  7413. height:22px;
  7414. background:inherit;
  7415. background-color:rgba(255, 255, 255, 0);
  7416. border:none;
  7417. border-radius:0px;
  7418. -moz-box-shadow:none;
  7419. -webkit-box-shadow:none;
  7420. box-shadow:none;
  7421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7422. font-weight:400;
  7423. font-style:normal;
  7424. font-size:16px;
  7425. }
  7426. #u73771 {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:30px;
  7430. top:622px;
  7431. width:65px;
  7432. height:22px;
  7433. display:flex;
  7434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. font-size:16px;
  7438. }
  7439. #u73771 .text {
  7440. position:absolute;
  7441. align-self:flex-start;
  7442. padding:0px 0px 0px 0px;
  7443. box-sizing:border-box;
  7444. width:100%;
  7445. }
  7446. #u73771_text {
  7447. border-width:0px;
  7448. white-space:nowrap;
  7449. text-transform:none;
  7450. }