styles.css 103 KB

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