styles.css 102 KB

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