styles.css 102 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2661px;
  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. #u163730_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. #u163730 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u163730 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u163730_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u163731_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. #u163731 {
  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. #u163731 .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. #u163731_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u163732_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. #u163732 {
  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. #u163732 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u163732_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u163733 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u163734_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u163734 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u163734 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u163734_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u163735_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. #u163735 {
  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. #u163735 .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. #u163735_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u163736_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. #u163736 {
  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. #u163736 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u163736_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u163737 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u163738_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. #u163738_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. #u163738_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. #u163738 {
  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. #u163738 .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. #u163738_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. #u163738.disabled {
  356. }
  357. .u163738_input_option {
  358. font-size:14px;
  359. }
  360. #u163739_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u163739 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u163739 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u163739_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u163740_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. #u163740 {
  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. #u163740 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u163740_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u163741_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. #u163741 {
  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. #u163741 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u163741_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u163742 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u163743_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. #u163743 {
  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. #u163743 .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. #u163743_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u163744_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u163744 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u163744 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u163744_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u163745 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u163746_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. #u163746 {
  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. #u163746 .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. #u163746_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u163747_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u163747 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u163747 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u163747_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u163748 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u163749_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. #u163749 {
  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. #u163749 .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. #u163749_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u163750_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u163750 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u163750 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u163750_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u163751 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u163752_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. #u163752 {
  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. #u163752 .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. #u163752_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u163753_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u163753 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u163753 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u163753_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u163754 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u163755_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. #u163755 {
  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. #u163755 .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. #u163755_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u163756_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u163756 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u163756 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u163756_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u163757 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u163758_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. #u163758 {
  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. #u163758 .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. #u163758_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u163759_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u163759 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u163759 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u163759_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u163760 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u163761_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. #u163761 {
  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. #u163761 .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. #u163761_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u163762_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u163762 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u163762 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u163762_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u163763 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u163764_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. #u163764 {
  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. #u163764 .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. #u163764_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u163765_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u163765 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u163765 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u163765_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u163766 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u163767_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. #u163767 {
  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. #u163767 .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. #u163767_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u163768_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u163768 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u163768 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u163768_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u163769 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u163770_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. #u163770 {
  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. #u163770 .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. #u163770_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u163771_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u163771 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u163771 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u163771_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u163772_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. #u163772 {
  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. #u163772 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u163772_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u163773_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u163773 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u163773 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u163773_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u163774_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. #u163774 {
  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. #u163774 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u163774_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u163775_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u163775 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u163775 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u163775_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u163776 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u163777_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. #u163777 {
  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. #u163777 .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. #u163777_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u163778_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u163778 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u163778 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u163778_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u163779 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u163780_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. #u163780 {
  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. #u163780 .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. #u163780_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u163781_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u163781 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u163781 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u163781_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u163782_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u163782 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u163782 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u163782_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u163783_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:200px;
  1681. height:60px;
  1682. background:inherit;
  1683. background-color:rgba(224, 231, 247, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1690. font-weight:500;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u163783 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:330px;
  1698. top:50px;
  1699. width:200px;
  1700. height:60px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1703. font-weight:500;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u163783 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:0px 0px 0px 20px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u163783_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. }
  1719. #u163784 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:0px;
  1725. height:0px;
  1726. }
  1727. #u163785_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:200px;
  1733. height:1180px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 1);
  1736. border:none;
  1737. border-radius:0px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. }
  1742. #u163785 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:120px;
  1746. top:51px;
  1747. width:200px;
  1748. height:1180px;
  1749. display:flex;
  1750. }
  1751. #u163785 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 2px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u163785_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. visibility:hidden;
  1763. }
  1764. #u163786_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:200px;
  1770. height:60px;
  1771. background:inherit;
  1772. background-color:rgba(224, 231, 247, 1);
  1773. border:none;
  1774. border-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1779. font-weight:500;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. }
  1783. #u163786 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:120px;
  1787. top:51px;
  1788. width:200px;
  1789. height:60px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1792. font-weight:500;
  1793. font-style:normal;
  1794. font-size:18px;
  1795. }
  1796. #u163786 .text {
  1797. position:absolute;
  1798. align-self:center;
  1799. padding:0px 0px 0px 20px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u163786_text {
  1804. border-width:0px;
  1805. word-wrap:break-word;
  1806. text-transform:none;
  1807. }
  1808. #u163787_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:65px;
  1814. height:22px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 0);
  1817. border:none;
  1818. border-radius:0px;
  1819. -moz-box-shadow:none;
  1820. -webkit-box-shadow:none;
  1821. box-shadow:none;
  1822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1823. font-weight:400;
  1824. font-style:normal;
  1825. font-size:16px;
  1826. }
  1827. #u163787 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:147px;
  1831. top:168px;
  1832. width:65px;
  1833. height:22px;
  1834. display:flex;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:16px;
  1839. }
  1840. #u163787 .text {
  1841. position:absolute;
  1842. align-self:flex-start;
  1843. padding:0px 0px 0px 0px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u163787_text {
  1848. border-width:0px;
  1849. white-space:nowrap;
  1850. text-transform:none;
  1851. }
  1852. #u163788_img {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:201px;
  1858. height:2px;
  1859. }
  1860. #u163788 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:120px;
  1864. top:295px;
  1865. width:200px;
  1866. height:1px;
  1867. display:flex;
  1868. }
  1869. #u163788 .text {
  1870. position:absolute;
  1871. align-self:center;
  1872. padding:2px 2px 2px 2px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u163788_text {
  1877. border-width:0px;
  1878. word-wrap:break-word;
  1879. text-transform:none;
  1880. visibility:hidden;
  1881. }
  1882. #u163789_div {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:49px;
  1888. height:17px;
  1889. background:inherit;
  1890. background-color:rgba(255, 255, 255, 0);
  1891. border:none;
  1892. border-radius:0px;
  1893. -moz-box-shadow:none;
  1894. -webkit-box-shadow:none;
  1895. box-shadow:none;
  1896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:12px;
  1900. color:#AAAAAA;
  1901. }
  1902. #u163789 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:147px;
  1906. top:131px;
  1907. width:49px;
  1908. height:17px;
  1909. display:flex;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:12px;
  1914. color:#AAAAAA;
  1915. }
  1916. #u163789 .text {
  1917. position:absolute;
  1918. align-self:flex-start;
  1919. padding:0px 0px 0px 0px;
  1920. box-sizing:border-box;
  1921. width:100%;
  1922. }
  1923. #u163789_text {
  1924. border-width:0px;
  1925. white-space:nowrap;
  1926. text-transform:none;
  1927. }
  1928. #u163790_div {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:65px;
  1934. height:22px;
  1935. background:inherit;
  1936. background-color:rgba(255, 255, 255, 0);
  1937. border:none;
  1938. border-radius:0px;
  1939. -moz-box-shadow:none;
  1940. -webkit-box-shadow:none;
  1941. box-shadow:none;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:16px;
  1946. }
  1947. #u163790 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:147px;
  1951. top:210px;
  1952. width:65px;
  1953. height:22px;
  1954. display:flex;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:16px;
  1959. }
  1960. #u163790 .text {
  1961. position:absolute;
  1962. align-self:flex-start;
  1963. padding:0px 0px 0px 0px;
  1964. box-sizing:border-box;
  1965. width:100%;
  1966. }
  1967. #u163790_text {
  1968. border-width:0px;
  1969. white-space:nowrap;
  1970. text-transform:none;
  1971. }
  1972. #u163791_div {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:65px;
  1978. height:22px;
  1979. background:inherit;
  1980. background-color:rgba(255, 255, 255, 0);
  1981. border:none;
  1982. border-radius:0px;
  1983. -moz-box-shadow:none;
  1984. -webkit-box-shadow:none;
  1985. box-shadow:none;
  1986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1987. font-weight:400;
  1988. font-style:normal;
  1989. font-size:16px;
  1990. }
  1991. #u163791 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:147px;
  1995. top:252px;
  1996. width:65px;
  1997. height:22px;
  1998. display:flex;
  1999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2000. font-weight:400;
  2001. font-style:normal;
  2002. font-size:16px;
  2003. }
  2004. #u163791 .text {
  2005. position:absolute;
  2006. align-self:flex-start;
  2007. padding:0px 0px 0px 0px;
  2008. box-sizing:border-box;
  2009. width:100%;
  2010. }
  2011. #u163791_text {
  2012. border-width:0px;
  2013. white-space:nowrap;
  2014. text-transform:none;
  2015. }
  2016. #u163792_div {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:0px;
  2020. top:0px;
  2021. width:65px;
  2022. height:22px;
  2023. background:inherit;
  2024. background-color:rgba(255, 255, 255, 0);
  2025. border:none;
  2026. border-radius:0px;
  2027. -moz-box-shadow:none;
  2028. -webkit-box-shadow:none;
  2029. box-shadow:none;
  2030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2031. font-weight:400;
  2032. font-style:normal;
  2033. font-size:16px;
  2034. }
  2035. #u163792 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:147px;
  2039. top:352px;
  2040. width:65px;
  2041. height:22px;
  2042. display:flex;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:16px;
  2047. }
  2048. #u163792 .text {
  2049. position:absolute;
  2050. align-self:flex-start;
  2051. padding:0px 0px 0px 0px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u163792_text {
  2056. border-width:0px;
  2057. white-space:nowrap;
  2058. text-transform:none;
  2059. }
  2060. #u163793_div {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:49px;
  2066. height:17px;
  2067. background:inherit;
  2068. background-color:rgba(255, 255, 255, 0);
  2069. border:none;
  2070. border-radius:0px;
  2071. -moz-box-shadow:none;
  2072. -webkit-box-shadow:none;
  2073. box-shadow:none;
  2074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2075. font-weight:400;
  2076. font-style:normal;
  2077. font-size:12px;
  2078. color:#AAAAAA;
  2079. }
  2080. #u163793 {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:147px;
  2084. top:315px;
  2085. width:49px;
  2086. height:17px;
  2087. display:flex;
  2088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:12px;
  2092. color:#AAAAAA;
  2093. }
  2094. #u163793 .text {
  2095. position:absolute;
  2096. align-self:flex-start;
  2097. padding:0px 0px 0px 0px;
  2098. box-sizing:border-box;
  2099. width:100%;
  2100. }
  2101. #u163793_text {
  2102. border-width:0px;
  2103. white-space:nowrap;
  2104. text-transform:none;
  2105. }
  2106. #u163794_div {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:65px;
  2112. height:22px;
  2113. background:inherit;
  2114. background-color:rgba(255, 255, 255, 0);
  2115. border:none;
  2116. border-radius:0px;
  2117. -moz-box-shadow:none;
  2118. -webkit-box-shadow:none;
  2119. box-shadow:none;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:16px;
  2124. }
  2125. #u163794 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:147px;
  2129. top:394px;
  2130. width:65px;
  2131. height:22px;
  2132. display:flex;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:16px;
  2137. }
  2138. #u163794 .text {
  2139. position:absolute;
  2140. align-self:flex-start;
  2141. padding:0px 0px 0px 0px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u163794_text {
  2146. border-width:0px;
  2147. white-space:nowrap;
  2148. text-transform:none;
  2149. }
  2150. #u163795_div {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:65px;
  2156. height:22px;
  2157. background:inherit;
  2158. background-color:rgba(255, 255, 255, 0);
  2159. border:none;
  2160. border-radius:0px;
  2161. -moz-box-shadow:none;
  2162. -webkit-box-shadow:none;
  2163. box-shadow:none;
  2164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2165. font-weight:400;
  2166. font-style:normal;
  2167. font-size:16px;
  2168. }
  2169. #u163795 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:147px;
  2173. top:436px;
  2174. width:65px;
  2175. height:22px;
  2176. display:flex;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:16px;
  2181. }
  2182. #u163795 .text {
  2183. position:absolute;
  2184. align-self:flex-start;
  2185. padding:0px 0px 0px 0px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u163795_text {
  2190. border-width:0px;
  2191. white-space:nowrap;
  2192. text-transform:none;
  2193. }
  2194. #u163796_img {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:201px;
  2200. height:2px;
  2201. }
  2202. #u163796 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:120px;
  2206. top:808px;
  2207. width:200px;
  2208. height:1px;
  2209. display:flex;
  2210. }
  2211. #u163796 .text {
  2212. position:absolute;
  2213. align-self:center;
  2214. padding:2px 2px 2px 2px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u163796_text {
  2219. border-width:0px;
  2220. word-wrap:break-word;
  2221. text-transform:none;
  2222. visibility:hidden;
  2223. }
  2224. #u163797_div {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:65px;
  2230. height:22px;
  2231. background:inherit;
  2232. background-color:rgba(255, 255, 255, 0);
  2233. border:none;
  2234. border-radius:0px;
  2235. -moz-box-shadow:none;
  2236. -webkit-box-shadow:none;
  2237. box-shadow:none;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:16px;
  2242. }
  2243. #u163797 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:147px;
  2247. top:865px;
  2248. width:65px;
  2249. height:22px;
  2250. display:flex;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:16px;
  2255. }
  2256. #u163797 .text {
  2257. position:absolute;
  2258. align-self:flex-start;
  2259. padding:0px 0px 0px 0px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u163797_text {
  2264. border-width:0px;
  2265. white-space:nowrap;
  2266. text-transform:none;
  2267. }
  2268. #u163798_div {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:49px;
  2274. height:17px;
  2275. background:inherit;
  2276. background-color:rgba(255, 255, 255, 0);
  2277. border:none;
  2278. border-radius:0px;
  2279. -moz-box-shadow:none;
  2280. -webkit-box-shadow:none;
  2281. box-shadow:none;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#AAAAAA;
  2287. }
  2288. #u163798 {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:147px;
  2292. top:828px;
  2293. width:49px;
  2294. height:17px;
  2295. display:flex;
  2296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2297. font-weight:400;
  2298. font-style:normal;
  2299. font-size:12px;
  2300. color:#AAAAAA;
  2301. }
  2302. #u163798 .text {
  2303. position:absolute;
  2304. align-self:flex-start;
  2305. padding:0px 0px 0px 0px;
  2306. box-sizing:border-box;
  2307. width:100%;
  2308. }
  2309. #u163798_text {
  2310. border-width:0px;
  2311. white-space:nowrap;
  2312. text-transform:none;
  2313. }
  2314. #u163799_img {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:201px;
  2320. height:2px;
  2321. }
  2322. #u163799 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:120px;
  2326. top:478px;
  2327. width:200px;
  2328. height:1px;
  2329. display:flex;
  2330. }
  2331. #u163799 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 2px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u163799_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. visibility:hidden;
  2343. }
  2344. #u163800_div {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:65px;
  2350. height:22px;
  2351. background:inherit;
  2352. background-color:rgba(255, 255, 255, 0);
  2353. border:none;
  2354. border-radius:0px;
  2355. -moz-box-shadow:none;
  2356. -webkit-box-shadow:none;
  2357. box-shadow:none;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:16px;
  2362. }
  2363. #u163800 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:147px;
  2367. top:535px;
  2368. width:65px;
  2369. height:22px;
  2370. display:flex;
  2371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2372. font-weight:400;
  2373. font-style:normal;
  2374. font-size:16px;
  2375. }
  2376. #u163800 .text {
  2377. position:absolute;
  2378. align-self:flex-start;
  2379. padding:0px 0px 0px 0px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u163800_text {
  2384. border-width:0px;
  2385. white-space:nowrap;
  2386. text-transform:none;
  2387. }
  2388. #u163801_div {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:49px;
  2394. height:17px;
  2395. background:inherit;
  2396. background-color:rgba(255, 255, 255, 0);
  2397. border:none;
  2398. border-radius:0px;
  2399. -moz-box-shadow:none;
  2400. -webkit-box-shadow:none;
  2401. box-shadow:none;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:12px;
  2406. color:#AAAAAA;
  2407. }
  2408. #u163801 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:147px;
  2412. top:498px;
  2413. width:49px;
  2414. height:17px;
  2415. display:flex;
  2416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2417. font-weight:400;
  2418. font-style:normal;
  2419. font-size:12px;
  2420. color:#AAAAAA;
  2421. }
  2422. #u163801 .text {
  2423. position:absolute;
  2424. align-self:flex-start;
  2425. padding:0px 0px 0px 0px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u163801_text {
  2430. border-width:0px;
  2431. white-space:nowrap;
  2432. text-transform:none;
  2433. }
  2434. #u163802_div {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:65px;
  2440. height:22px;
  2441. background:inherit;
  2442. background-color:rgba(255, 255, 255, 0);
  2443. border:none;
  2444. border-radius:0px;
  2445. -moz-box-shadow:none;
  2446. -webkit-box-shadow:none;
  2447. box-shadow:none;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:16px;
  2452. }
  2453. #u163802 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:147px;
  2457. top:577px;
  2458. width:65px;
  2459. height:22px;
  2460. display:flex;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:16px;
  2465. }
  2466. #u163802 .text {
  2467. position:absolute;
  2468. align-self:flex-start;
  2469. padding:0px 0px 0px 0px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u163802_text {
  2474. border-width:0px;
  2475. white-space:nowrap;
  2476. text-transform:none;
  2477. }
  2478. #u163803_div {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:65px;
  2484. height:22px;
  2485. background:inherit;
  2486. background-color:rgba(255, 255, 255, 0);
  2487. border:none;
  2488. border-radius:0px;
  2489. -moz-box-shadow:none;
  2490. -webkit-box-shadow:none;
  2491. box-shadow:none;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:16px;
  2496. }
  2497. #u163803 {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:147px;
  2501. top:619px;
  2502. width:65px;
  2503. height:22px;
  2504. display:flex;
  2505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2506. font-weight:400;
  2507. font-style:normal;
  2508. font-size:16px;
  2509. }
  2510. #u163803 .text {
  2511. position:absolute;
  2512. align-self:flex-start;
  2513. padding:0px 0px 0px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u163803_text {
  2518. border-width:0px;
  2519. white-space:nowrap;
  2520. text-transform:none;
  2521. }
  2522. #u163804_div {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:65px;
  2528. height:22px;
  2529. background:inherit;
  2530. background-color:rgba(255, 255, 255, 0);
  2531. border:none;
  2532. border-radius:0px;
  2533. -moz-box-shadow:none;
  2534. -webkit-box-shadow:none;
  2535. box-shadow:none;
  2536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:16px;
  2540. }
  2541. #u163804 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:147px;
  2545. top:760px;
  2546. width:65px;
  2547. height:22px;
  2548. display:flex;
  2549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:16px;
  2553. }
  2554. #u163804 .text {
  2555. position:absolute;
  2556. align-self:flex-start;
  2557. padding:0px 0px 0px 0px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u163804_text {
  2562. border-width:0px;
  2563. white-space:nowrap;
  2564. text-transform:none;
  2565. }
  2566. #u163805_img {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:0px;
  2570. top:0px;
  2571. width:201px;
  2572. height:2px;
  2573. }
  2574. #u163805 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:120px;
  2578. top:661px;
  2579. width:200px;
  2580. height:1px;
  2581. display:flex;
  2582. }
  2583. #u163805 .text {
  2584. position:absolute;
  2585. align-self:center;
  2586. padding:2px 2px 2px 2px;
  2587. box-sizing:border-box;
  2588. width:100%;
  2589. }
  2590. #u163805_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. visibility:hidden;
  2595. }
  2596. #u163806_div {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:65px;
  2602. height:22px;
  2603. background:inherit;
  2604. background-color:rgba(255, 255, 255, 0);
  2605. border:none;
  2606. border-radius:0px;
  2607. -moz-box-shadow:none;
  2608. -webkit-box-shadow:none;
  2609. box-shadow:none;
  2610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2611. font-weight:400;
  2612. font-style:normal;
  2613. font-size:16px;
  2614. }
  2615. #u163806 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:147px;
  2619. top:718px;
  2620. width:65px;
  2621. height:22px;
  2622. display:flex;
  2623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2624. font-weight:400;
  2625. font-style:normal;
  2626. font-size:16px;
  2627. }
  2628. #u163806 .text {
  2629. position:absolute;
  2630. align-self:flex-start;
  2631. padding:0px 0px 0px 0px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u163806_text {
  2636. border-width:0px;
  2637. white-space:nowrap;
  2638. text-transform:none;
  2639. }
  2640. #u163807_div {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:49px;
  2646. height:17px;
  2647. background:inherit;
  2648. background-color:rgba(255, 255, 255, 0);
  2649. border:none;
  2650. border-radius:0px;
  2651. -moz-box-shadow:none;
  2652. -webkit-box-shadow:none;
  2653. box-shadow:none;
  2654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:12px;
  2658. color:#AAAAAA;
  2659. }
  2660. #u163807 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:147px;
  2664. top:681px;
  2665. width:49px;
  2666. height:17px;
  2667. display:flex;
  2668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:12px;
  2672. color:#AAAAAA;
  2673. }
  2674. #u163807 .text {
  2675. position:absolute;
  2676. align-self:flex-start;
  2677. padding:0px 0px 0px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u163807_text {
  2682. border-width:0px;
  2683. white-space:nowrap;
  2684. text-transform:none;
  2685. }
  2686. #u163808_div {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:65px;
  2692. height:22px;
  2693. background:inherit;
  2694. background-color:rgba(255, 255, 255, 0);
  2695. border:none;
  2696. border-radius:0px;
  2697. -moz-box-shadow:none;
  2698. -webkit-box-shadow:none;
  2699. box-shadow:none;
  2700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2701. font-weight:400;
  2702. font-style:normal;
  2703. font-size:16px;
  2704. }
  2705. #u163808 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:147px;
  2709. top:907px;
  2710. width:65px;
  2711. height:22px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:16px;
  2717. }
  2718. #u163808 .text {
  2719. position:absolute;
  2720. align-self:flex-start;
  2721. padding:0px 0px 0px 0px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u163808_text {
  2726. border-width:0px;
  2727. white-space:nowrap;
  2728. text-transform:none;
  2729. }
  2730. #u163809_div {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:80px;
  2736. height:30px;
  2737. background:inherit;
  2738. background-color:rgba(24, 144, 255, 1);
  2739. border:none;
  2740. border-radius:4px;
  2741. -moz-box-shadow:none;
  2742. -webkit-box-shadow:none;
  2743. box-shadow:none;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:14px;
  2748. color:#FFFFFF;
  2749. }
  2750. #u163809 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:350px;
  2754. top:145px;
  2755. width:80px;
  2756. height:30px;
  2757. display:flex;
  2758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. font-size:14px;
  2762. color:#FFFFFF;
  2763. }
  2764. #u163809 .text {
  2765. position:absolute;
  2766. align-self:center;
  2767. padding:2px 2px 2px 2px;
  2768. box-sizing:border-box;
  2769. width:100%;
  2770. }
  2771. #u163809_text {
  2772. border-width:0px;
  2773. word-wrap:break-word;
  2774. text-transform:none;
  2775. }
  2776. #u163810 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:350px;
  2780. top:195px;
  2781. width:1220px;
  2782. height:230px;
  2783. }
  2784. #u163811_img {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:153px;
  2790. height:30px;
  2791. }
  2792. #u163811 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:153px;
  2798. height:30px;
  2799. display:flex;
  2800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2801. font-weight:400;
  2802. font-style:normal;
  2803. color:#FFFFFF;
  2804. }
  2805. #u163811 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u163811_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. }
  2817. #u163812_img {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:153px;
  2823. height:30px;
  2824. }
  2825. #u163812 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:153px;
  2829. top:0px;
  2830. width:153px;
  2831. height:30px;
  2832. display:flex;
  2833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. color:#FFFFFF;
  2837. }
  2838. #u163812 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u163812_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. }
  2850. #u163813_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:152px;
  2856. height:30px;
  2857. }
  2858. #u163813 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:306px;
  2862. top:0px;
  2863. width:152px;
  2864. height:30px;
  2865. display:flex;
  2866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. color:#FFFFFF;
  2870. }
  2871. #u163813 .text {
  2872. position:absolute;
  2873. align-self:center;
  2874. padding:2px 2px 2px 2px;
  2875. box-sizing:border-box;
  2876. width:100%;
  2877. }
  2878. #u163813_text {
  2879. border-width:0px;
  2880. word-wrap:break-word;
  2881. text-transform:none;
  2882. }
  2883. #u163814_img {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:152px;
  2889. height:30px;
  2890. }
  2891. #u163814 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:458px;
  2895. top:0px;
  2896. width:152px;
  2897. height:30px;
  2898. display:flex;
  2899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. color:#FFFFFF;
  2903. }
  2904. #u163814 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:2px 2px 2px 2px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u163814_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. }
  2916. #u163815_img {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:153px;
  2922. height:30px;
  2923. }
  2924. #u163815 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:610px;
  2928. top:0px;
  2929. width:153px;
  2930. height:30px;
  2931. display:flex;
  2932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2933. font-weight:400;
  2934. font-style:normal;
  2935. color:#FFFFFF;
  2936. }
  2937. #u163815 .text {
  2938. position:absolute;
  2939. align-self:center;
  2940. padding:2px 2px 2px 2px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u163815_text {
  2945. border-width:0px;
  2946. word-wrap:break-word;
  2947. text-transform:none;
  2948. }
  2949. #u163816_img {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:153px;
  2955. height:30px;
  2956. }
  2957. #u163816 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:763px;
  2961. top:0px;
  2962. width:153px;
  2963. height:30px;
  2964. display:flex;
  2965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2966. font-weight:400;
  2967. font-style:normal;
  2968. color:#FFFFFF;
  2969. }
  2970. #u163816 .text {
  2971. position:absolute;
  2972. align-self:center;
  2973. padding:2px 2px 2px 2px;
  2974. box-sizing:border-box;
  2975. width:100%;
  2976. }
  2977. #u163816_text {
  2978. border-width:0px;
  2979. word-wrap:break-word;
  2980. text-transform:none;
  2981. }
  2982. #u163817_img {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:153px;
  2988. height:30px;
  2989. }
  2990. #u163817 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:916px;
  2994. top:0px;
  2995. width:153px;
  2996. height:30px;
  2997. display:flex;
  2998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. color:#FFFFFF;
  3002. }
  3003. #u163817 .text {
  3004. position:absolute;
  3005. align-self:center;
  3006. padding:2px 2px 2px 2px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u163817_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. }
  3015. #u163818_img {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:151px;
  3021. height:30px;
  3022. }
  3023. #u163818 {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:1069px;
  3027. top:0px;
  3028. width:151px;
  3029. height:30px;
  3030. display:flex;
  3031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3032. font-weight:400;
  3033. font-style:normal;
  3034. color:#FFFFFF;
  3035. }
  3036. #u163818 .text {
  3037. position:absolute;
  3038. align-self:center;
  3039. padding:2px 2px 2px 2px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u163818_text {
  3044. border-width:0px;
  3045. word-wrap:break-word;
  3046. text-transform:none;
  3047. }
  3048. #u163819_img {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:153px;
  3054. height:40px;
  3055. }
  3056. #u163819 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:30px;
  3061. width:153px;
  3062. height:40px;
  3063. display:flex;
  3064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. }
  3068. #u163819 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 2px 2px 2px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u163819_text {
  3076. border-width:0px;
  3077. word-wrap:break-word;
  3078. text-transform:none;
  3079. visibility:hidden;
  3080. }
  3081. #u163820_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:153px;
  3087. height:40px;
  3088. }
  3089. #u163820 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:153px;
  3093. top:30px;
  3094. width:153px;
  3095. height:40px;
  3096. display:flex;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. }
  3101. #u163820 .text {
  3102. position:absolute;
  3103. align-self:center;
  3104. padding:2px 2px 2px 2px;
  3105. box-sizing:border-box;
  3106. width:100%;
  3107. }
  3108. #u163820_text {
  3109. border-width:0px;
  3110. word-wrap:break-word;
  3111. text-transform:none;
  3112. visibility:hidden;
  3113. }
  3114. #u163821_img {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:152px;
  3120. height:40px;
  3121. }
  3122. #u163821 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:306px;
  3126. top:30px;
  3127. width:152px;
  3128. height:40px;
  3129. display:flex;
  3130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. }
  3134. #u163821 .text {
  3135. position:absolute;
  3136. align-self:center;
  3137. padding:2px 2px 2px 2px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u163821_text {
  3142. border-width:0px;
  3143. word-wrap:break-word;
  3144. text-transform:none;
  3145. visibility:hidden;
  3146. }
  3147. #u163822_img {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:152px;
  3153. height:40px;
  3154. }
  3155. #u163822 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:458px;
  3159. top:30px;
  3160. width:152px;
  3161. height:40px;
  3162. display:flex;
  3163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. }
  3167. #u163822 .text {
  3168. position:absolute;
  3169. align-self:center;
  3170. padding:2px 2px 2px 2px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u163822_text {
  3175. border-width:0px;
  3176. word-wrap:break-word;
  3177. text-transform:none;
  3178. visibility:hidden;
  3179. }
  3180. #u163823_img {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:0px;
  3184. top:0px;
  3185. width:153px;
  3186. height:40px;
  3187. }
  3188. #u163823 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:610px;
  3192. top:30px;
  3193. width:153px;
  3194. height:40px;
  3195. display:flex;
  3196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3197. font-weight:400;
  3198. font-style:normal;
  3199. }
  3200. #u163823 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:2px 2px 2px 2px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u163823_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u163824_img {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:153px;
  3219. height:40px;
  3220. }
  3221. #u163824 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:763px;
  3225. top:30px;
  3226. width:153px;
  3227. height:40px;
  3228. display:flex;
  3229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. }
  3233. #u163824 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 2px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u163824_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. visibility:hidden;
  3245. }
  3246. #u163825_img {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:153px;
  3252. height:40px;
  3253. }
  3254. #u163825 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:916px;
  3258. top:30px;
  3259. width:153px;
  3260. height:40px;
  3261. display:flex;
  3262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3263. font-weight:400;
  3264. font-style:normal;
  3265. }
  3266. #u163825 .text {
  3267. position:absolute;
  3268. align-self:center;
  3269. padding:2px 2px 2px 2px;
  3270. box-sizing:border-box;
  3271. width:100%;
  3272. }
  3273. #u163825_text {
  3274. border-width:0px;
  3275. word-wrap:break-word;
  3276. text-transform:none;
  3277. }
  3278. #u163826_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:151px;
  3284. height:40px;
  3285. }
  3286. #u163826 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:1069px;
  3290. top:30px;
  3291. width:151px;
  3292. height:40px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. color:#AAAAAA;
  3298. }
  3299. #u163826 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:2px 2px 2px 2px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u163826_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. }
  3311. #u163827_img {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:153px;
  3317. height:40px;
  3318. }
  3319. #u163827 {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:70px;
  3324. width:153px;
  3325. height:40px;
  3326. display:flex;
  3327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3328. font-weight:400;
  3329. font-style:normal;
  3330. }
  3331. #u163827 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 2px 2px 2px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u163827_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u163828_img {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:153px;
  3350. height:40px;
  3351. }
  3352. #u163828 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:153px;
  3356. top:70px;
  3357. width:153px;
  3358. height:40px;
  3359. display:flex;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. }
  3364. #u163828 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 2px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u163828_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. visibility:hidden;
  3376. }
  3377. #u163829_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:152px;
  3383. height:40px;
  3384. }
  3385. #u163829 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:306px;
  3389. top:70px;
  3390. width:152px;
  3391. height:40px;
  3392. display:flex;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. }
  3397. #u163829 .text {
  3398. position:absolute;
  3399. align-self:center;
  3400. padding:2px 2px 2px 2px;
  3401. box-sizing:border-box;
  3402. width:100%;
  3403. }
  3404. #u163829_text {
  3405. border-width:0px;
  3406. word-wrap:break-word;
  3407. text-transform:none;
  3408. visibility:hidden;
  3409. }
  3410. #u163830_img {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:152px;
  3416. height:40px;
  3417. }
  3418. #u163830 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:458px;
  3422. top:70px;
  3423. width:152px;
  3424. height:40px;
  3425. display:flex;
  3426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3427. font-weight:400;
  3428. font-style:normal;
  3429. }
  3430. #u163830 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 2px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u163830_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u163831_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:153px;
  3449. height:40px;
  3450. }
  3451. #u163831 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:610px;
  3455. top:70px;
  3456. width:153px;
  3457. height:40px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. }
  3463. #u163831 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 2px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u163831_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. visibility:hidden;
  3475. }
  3476. #u163832_img {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:153px;
  3482. height:40px;
  3483. }
  3484. #u163832 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:763px;
  3488. top:70px;
  3489. width:153px;
  3490. height:40px;
  3491. display:flex;
  3492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3493. font-weight:400;
  3494. font-style:normal;
  3495. }
  3496. #u163832 .text {
  3497. position:absolute;
  3498. align-self:center;
  3499. padding:2px 2px 2px 2px;
  3500. box-sizing:border-box;
  3501. width:100%;
  3502. }
  3503. #u163832_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. visibility:hidden;
  3508. }
  3509. #u163833_img {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:153px;
  3515. height:40px;
  3516. }
  3517. #u163833 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:916px;
  3521. top:70px;
  3522. width:153px;
  3523. height:40px;
  3524. display:flex;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. }
  3529. #u163833 .text {
  3530. position:absolute;
  3531. align-self:center;
  3532. padding:2px 2px 2px 2px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u163833_text {
  3537. border-width:0px;
  3538. word-wrap:break-word;
  3539. text-transform:none;
  3540. visibility:hidden;
  3541. }
  3542. #u163834_img {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:151px;
  3548. height:40px;
  3549. }
  3550. #u163834 {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:1069px;
  3554. top:70px;
  3555. width:151px;
  3556. height:40px;
  3557. display:flex;
  3558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3559. font-weight:400;
  3560. font-style:normal;
  3561. color:#AAAAAA;
  3562. }
  3563. #u163834 .text {
  3564. position:absolute;
  3565. align-self:center;
  3566. padding:2px 2px 2px 2px;
  3567. box-sizing:border-box;
  3568. width:100%;
  3569. }
  3570. #u163834_text {
  3571. border-width:0px;
  3572. word-wrap:break-word;
  3573. text-transform:none;
  3574. }
  3575. #u163835_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:153px;
  3581. height:40px;
  3582. }
  3583. #u163835 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:110px;
  3588. width:153px;
  3589. height:40px;
  3590. display:flex;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. }
  3595. #u163835 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 2px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u163835_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. visibility:hidden;
  3607. }
  3608. #u163836_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:153px;
  3614. height:40px;
  3615. }
  3616. #u163836 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:153px;
  3620. top:110px;
  3621. width:153px;
  3622. height:40px;
  3623. display:flex;
  3624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. }
  3628. #u163836 .text {
  3629. position:absolute;
  3630. align-self:center;
  3631. padding:2px 2px 2px 2px;
  3632. box-sizing:border-box;
  3633. width:100%;
  3634. }
  3635. #u163836_text {
  3636. border-width:0px;
  3637. word-wrap:break-word;
  3638. text-transform:none;
  3639. visibility:hidden;
  3640. }
  3641. #u163837_img {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:152px;
  3647. height:40px;
  3648. }
  3649. #u163837 {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:306px;
  3653. top:110px;
  3654. width:152px;
  3655. height:40px;
  3656. display:flex;
  3657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. }
  3661. #u163837 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 2px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u163837_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u163838_img {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:152px;
  3680. height:40px;
  3681. }
  3682. #u163838 {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:458px;
  3686. top:110px;
  3687. width:152px;
  3688. height:40px;
  3689. display:flex;
  3690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3691. font-weight:400;
  3692. font-style:normal;
  3693. }
  3694. #u163838 .text {
  3695. position:absolute;
  3696. align-self:center;
  3697. padding:2px 2px 2px 2px;
  3698. box-sizing:border-box;
  3699. width:100%;
  3700. }
  3701. #u163838_text {
  3702. border-width:0px;
  3703. word-wrap:break-word;
  3704. text-transform:none;
  3705. visibility:hidden;
  3706. }
  3707. #u163839_img {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:153px;
  3713. height:40px;
  3714. }
  3715. #u163839 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:610px;
  3719. top:110px;
  3720. width:153px;
  3721. height:40px;
  3722. display:flex;
  3723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3724. font-weight:400;
  3725. font-style:normal;
  3726. }
  3727. #u163839 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 2px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u163839_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u163840_img {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:153px;
  3746. height:40px;
  3747. }
  3748. #u163840 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:763px;
  3752. top:110px;
  3753. width:153px;
  3754. height:40px;
  3755. display:flex;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. }
  3760. #u163840 .text {
  3761. position:absolute;
  3762. align-self:center;
  3763. padding:2px 2px 2px 2px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u163840_text {
  3768. border-width:0px;
  3769. word-wrap:break-word;
  3770. text-transform:none;
  3771. visibility:hidden;
  3772. }
  3773. #u163841_img {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:153px;
  3779. height:40px;
  3780. }
  3781. #u163841 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:916px;
  3785. top:110px;
  3786. width:153px;
  3787. height:40px;
  3788. display:flex;
  3789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. }
  3793. #u163841 .text {
  3794. position:absolute;
  3795. align-self:center;
  3796. padding:2px 2px 2px 2px;
  3797. box-sizing:border-box;
  3798. width:100%;
  3799. }
  3800. #u163841_text {
  3801. border-width:0px;
  3802. word-wrap:break-word;
  3803. text-transform:none;
  3804. visibility:hidden;
  3805. }
  3806. #u163842_img {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:151px;
  3812. height:40px;
  3813. }
  3814. #u163842 {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:1069px;
  3818. top:110px;
  3819. width:151px;
  3820. height:40px;
  3821. display:flex;
  3822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3823. font-weight:400;
  3824. font-style:normal;
  3825. color:#1890FF;
  3826. }
  3827. #u163842 .text {
  3828. position:absolute;
  3829. align-self:center;
  3830. padding:2px 2px 2px 2px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u163842_text {
  3835. border-width:0px;
  3836. word-wrap:break-word;
  3837. text-transform:none;
  3838. }
  3839. #u163843_img {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:153px;
  3845. height:40px;
  3846. }
  3847. #u163843 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:150px;
  3852. width:153px;
  3853. height:40px;
  3854. display:flex;
  3855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. }
  3859. #u163843 .text {
  3860. position:absolute;
  3861. align-self:center;
  3862. padding:2px 2px 2px 2px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u163843_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. visibility:hidden;
  3871. }
  3872. #u163844_img {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:153px;
  3878. height:40px;
  3879. }
  3880. #u163844 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:153px;
  3884. top:150px;
  3885. width:153px;
  3886. height:40px;
  3887. display:flex;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. }
  3892. #u163844 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 2px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u163844_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u163845_img {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:152px;
  3911. height:40px;
  3912. }
  3913. #u163845 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:306px;
  3917. top:150px;
  3918. width:152px;
  3919. height:40px;
  3920. display:flex;
  3921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. }
  3925. #u163845 .text {
  3926. position:absolute;
  3927. align-self:center;
  3928. padding:2px 2px 2px 2px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u163845_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. visibility:hidden;
  3937. }
  3938. #u163846_img {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:152px;
  3944. height:40px;
  3945. }
  3946. #u163846 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:458px;
  3950. top:150px;
  3951. width:152px;
  3952. height:40px;
  3953. display:flex;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. }
  3958. #u163846 .text {
  3959. position:absolute;
  3960. align-self:center;
  3961. padding:2px 2px 2px 2px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u163846_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u163847_img {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:153px;
  3977. height:40px;
  3978. }
  3979. #u163847 {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:610px;
  3983. top:150px;
  3984. width:153px;
  3985. height:40px;
  3986. display:flex;
  3987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. }
  3991. #u163847 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 2px 2px 2px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u163847_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u163848_img {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:153px;
  4010. height:40px;
  4011. }
  4012. #u163848 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:763px;
  4016. top:150px;
  4017. width:153px;
  4018. height:40px;
  4019. display:flex;
  4020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. }
  4024. #u163848 .text {
  4025. position:absolute;
  4026. align-self:center;
  4027. padding:2px 2px 2px 2px;
  4028. box-sizing:border-box;
  4029. width:100%;
  4030. }
  4031. #u163848_text {
  4032. border-width:0px;
  4033. word-wrap:break-word;
  4034. text-transform:none;
  4035. visibility:hidden;
  4036. }
  4037. #u163849_img {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:153px;
  4043. height:40px;
  4044. }
  4045. #u163849 {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:916px;
  4049. top:150px;
  4050. width:153px;
  4051. height:40px;
  4052. display:flex;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. }
  4057. #u163849 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 2px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u163849_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u163850_img {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:151px;
  4076. height:40px;
  4077. }
  4078. #u163850 {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:1069px;
  4082. top:150px;
  4083. width:151px;
  4084. height:40px;
  4085. display:flex;
  4086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4087. font-weight:400;
  4088. font-style:normal;
  4089. }
  4090. #u163850 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:2px 2px 2px 2px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u163850_text {
  4098. border-width:0px;
  4099. word-wrap:break-word;
  4100. text-transform:none;
  4101. visibility:hidden;
  4102. }
  4103. #u163851_img {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:153px;
  4109. height:40px;
  4110. }
  4111. #u163851 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:190px;
  4116. width:153px;
  4117. height:40px;
  4118. display:flex;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. }
  4123. #u163851 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 2px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u163851_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. visibility:hidden;
  4135. }
  4136. #u163852_img {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:153px;
  4142. height:40px;
  4143. }
  4144. #u163852 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:153px;
  4148. top:190px;
  4149. width:153px;
  4150. height:40px;
  4151. display:flex;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. }
  4156. #u163852 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 2px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u163852_text {
  4164. border-width:0px;
  4165. word-wrap:break-word;
  4166. text-transform:none;
  4167. visibility:hidden;
  4168. }
  4169. #u163853_img {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:152px;
  4175. height:40px;
  4176. }
  4177. #u163853 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:306px;
  4181. top:190px;
  4182. width:152px;
  4183. height:40px;
  4184. display:flex;
  4185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4186. font-weight:400;
  4187. font-style:normal;
  4188. }
  4189. #u163853 .text {
  4190. position:absolute;
  4191. align-self:center;
  4192. padding:2px 2px 2px 2px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u163853_text {
  4197. border-width:0px;
  4198. word-wrap:break-word;
  4199. text-transform:none;
  4200. visibility:hidden;
  4201. }
  4202. #u163854_img {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:152px;
  4208. height:40px;
  4209. }
  4210. #u163854 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:458px;
  4214. top:190px;
  4215. width:152px;
  4216. height:40px;
  4217. display:flex;
  4218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. }
  4222. #u163854 .text {
  4223. position:absolute;
  4224. align-self:center;
  4225. padding:2px 2px 2px 2px;
  4226. box-sizing:border-box;
  4227. width:100%;
  4228. }
  4229. #u163854_text {
  4230. border-width:0px;
  4231. word-wrap:break-word;
  4232. text-transform:none;
  4233. visibility:hidden;
  4234. }
  4235. #u163855_img {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:153px;
  4241. height:40px;
  4242. }
  4243. #u163855 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:610px;
  4247. top:190px;
  4248. width:153px;
  4249. height:40px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. }
  4255. #u163855 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:2px 2px 2px 2px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u163855_text {
  4263. border-width:0px;
  4264. word-wrap:break-word;
  4265. text-transform:none;
  4266. visibility:hidden;
  4267. }
  4268. #u163856_img {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:153px;
  4274. height:40px;
  4275. }
  4276. #u163856 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:763px;
  4280. top:190px;
  4281. width:153px;
  4282. height:40px;
  4283. display:flex;
  4284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. }
  4288. #u163856 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:2px 2px 2px 2px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u163856_text {
  4296. border-width:0px;
  4297. word-wrap:break-word;
  4298. text-transform:none;
  4299. visibility:hidden;
  4300. }
  4301. #u163857_img {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:153px;
  4307. height:40px;
  4308. }
  4309. #u163857 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:916px;
  4313. top:190px;
  4314. width:153px;
  4315. height:40px;
  4316. display:flex;
  4317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4318. font-weight:400;
  4319. font-style:normal;
  4320. }
  4321. #u163857 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:2px 2px 2px 2px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u163857_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. visibility:hidden;
  4333. }
  4334. #u163858_img {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:151px;
  4340. height:40px;
  4341. }
  4342. #u163858 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:1069px;
  4346. top:190px;
  4347. width:151px;
  4348. height:40px;
  4349. display:flex;
  4350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. }
  4354. #u163858 .text {
  4355. position:absolute;
  4356. align-self:center;
  4357. padding:2px 2px 2px 2px;
  4358. box-sizing:border-box;
  4359. width:100%;
  4360. }
  4361. #u163858_text {
  4362. border-width:0px;
  4363. word-wrap:break-word;
  4364. text-transform:none;
  4365. visibility:hidden;
  4366. }
  4367. #u163859_div {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:493px;
  4373. height:17px;
  4374. background:inherit;
  4375. background-color:rgba(255, 255, 255, 0);
  4376. border:none;
  4377. border-radius:0px;
  4378. -moz-box-shadow:none;
  4379. -webkit-box-shadow:none;
  4380. box-shadow:none;
  4381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4382. font-weight:400;
  4383. font-style:normal;
  4384. font-size:12px;
  4385. color:#7F7F7F;
  4386. }
  4387. #u163859 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:350px;
  4391. top:105px;
  4392. width:493px;
  4393. height:17px;
  4394. display:flex;
  4395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. font-size:12px;
  4399. color:#7F7F7F;
  4400. }
  4401. #u163859 .text {
  4402. position:absolute;
  4403. align-self:flex-start;
  4404. padding:0px 0px 0px 0px;
  4405. box-sizing:border-box;
  4406. width:100%;
  4407. }
  4408. #u163859_text {
  4409. border-width:0px;
  4410. white-space:nowrap;
  4411. text-transform:none;
  4412. }
  4413. #u163860_img {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:50px;
  4419. height:31px;
  4420. }
  4421. #u163860 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:1320px;
  4425. top:308px;
  4426. width:50px;
  4427. height:31px;
  4428. display:flex;
  4429. }
  4430. #u163860 .text {
  4431. position:absolute;
  4432. align-self:center;
  4433. padding:2px 2px 2px 2px;
  4434. box-sizing:border-box;
  4435. width:100%;
  4436. }
  4437. #u163860_text {
  4438. border-width:0px;
  4439. word-wrap:break-word;
  4440. text-transform:none;
  4441. visibility:hidden;
  4442. }
  4443. #u163861_div {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:906px;
  4449. height:130px;
  4450. background:inherit;
  4451. background-color:rgba(255, 255, 255, 0);
  4452. border:none;
  4453. border-top:0px;
  4454. border-right:0px;
  4455. border-bottom:0px;
  4456. border-radius:0px;
  4457. border-top-left-radius:0px;
  4458. border-bottom-left-radius:0px;
  4459. -moz-box-shadow:none;
  4460. -webkit-box-shadow:none;
  4461. box-shadow:none;
  4462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:14px;
  4466. color:#D9001B;
  4467. line-height:30px;
  4468. }
  4469. #u163861 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:375px;
  4473. top:452px;
  4474. width:906px;
  4475. height:130px;
  4476. display:flex;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:14px;
  4481. color:#D9001B;
  4482. line-height:30px;
  4483. }
  4484. #u163861 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:5px 0px 5px 0px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u163861_text {
  4492. border-width:0px;
  4493. white-space:nowrap;
  4494. text-transform:none;
  4495. }
  4496. #u163862 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:0px;
  4502. height:0px;
  4503. }
  4504. #u163863_div {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:0px;
  4508. top:0px;
  4509. width:1000px;
  4510. height:1162px;
  4511. background:inherit;
  4512. background-color:rgba(255, 255, 255, 1);
  4513. border:none;
  4514. border-radius:0px;
  4515. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4516. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4517. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4518. color:#1890FF;
  4519. }
  4520. #u163863 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:1661px;
  4524. top:44px;
  4525. width:1000px;
  4526. height:1162px;
  4527. display:flex;
  4528. color:#1890FF;
  4529. }
  4530. #u163863 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:2px 2px 2px 2px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u163863_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u163864_div {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:73px;
  4549. height:30px;
  4550. background:inherit;
  4551. background-color:rgba(255, 255, 255, 0);
  4552. border:none;
  4553. border-radius:0px;
  4554. -moz-box-shadow:none;
  4555. -webkit-box-shadow:none;
  4556. box-shadow:none;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:18px;
  4561. color:#000000;
  4562. line-height:30px;
  4563. }
  4564. #u163864 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:1697px;
  4568. top:76px;
  4569. width:73px;
  4570. height:30px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:18px;
  4576. color:#000000;
  4577. line-height:30px;
  4578. }
  4579. #u163864 .text {
  4580. position:absolute;
  4581. align-self:flex-start;
  4582. padding:0px 0px 0px 0px;
  4583. box-sizing:border-box;
  4584. width:100%;
  4585. }
  4586. #u163864_text {
  4587. border-width:0px;
  4588. white-space:nowrap;
  4589. text-transform:none;
  4590. }
  4591. #u163865 {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:0px;
  4597. height:0px;
  4598. }
  4599. #u163866_div {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:40px;
  4605. height:40px;
  4606. background:inherit;
  4607. background-color:rgba(255, 255, 255, 0);
  4608. border:none;
  4609. border-top:0px;
  4610. border-right:0px;
  4611. border-bottom:0px;
  4612. border-radius:0px;
  4613. border-top-left-radius:0px;
  4614. border-bottom-left-radius:0px;
  4615. -moz-box-shadow:none;
  4616. -webkit-box-shadow:none;
  4617. box-shadow:none;
  4618. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4619. font-weight:500;
  4620. font-style:normal;
  4621. font-size:18px;
  4622. text-align:center;
  4623. }
  4624. #u163866 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:2621px;
  4628. top:44px;
  4629. width:40px;
  4630. height:40px;
  4631. display:flex;
  4632. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4633. font-weight:500;
  4634. font-style:normal;
  4635. font-size:18px;
  4636. text-align:center;
  4637. }
  4638. #u163866 .text {
  4639. position:absolute;
  4640. align-self:center;
  4641. padding:5px 10px 5px 0px;
  4642. box-sizing:border-box;
  4643. width:100%;
  4644. }
  4645. #u163866_text {
  4646. border-width:0px;
  4647. word-wrap:break-word;
  4648. text-transform:none;
  4649. }
  4650. #u163867_img {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:13px;
  4656. height:13px;
  4657. }
  4658. #u163867 {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:2608px;
  4662. top:62px;
  4663. width:13px;
  4664. height:13px;
  4665. display:flex;
  4666. }
  4667. #u163867 .text {
  4668. position:absolute;
  4669. align-self:center;
  4670. padding:2px 2px 2px 2px;
  4671. box-sizing:border-box;
  4672. width:100%;
  4673. }
  4674. #u163867_text {
  4675. border-width:0px;
  4676. word-wrap:break-word;
  4677. text-transform:none;
  4678. visibility:hidden;
  4679. }
  4680. #u163868 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:0px;
  4686. height:0px;
  4687. }
  4688. #u163869_div {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:1000px;
  4694. height:60px;
  4695. background:inherit;
  4696. background-color:rgba(255, 255, 255, 1);
  4697. box-sizing:border-box;
  4698. border-width:1px;
  4699. border-style:solid;
  4700. border-color:rgba(215, 215, 215, 1);
  4701. border-radius:0px;
  4702. -moz-box-shadow:none;
  4703. -webkit-box-shadow:none;
  4704. box-shadow:none;
  4705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4706. font-weight:400;
  4707. font-style:normal;
  4708. font-size:14px;
  4709. color:#AAAAAA;
  4710. text-align:center;
  4711. line-height:30px;
  4712. }
  4713. #u163869 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:1661px;
  4717. top:1146px;
  4718. width:1000px;
  4719. height:60px;
  4720. display:flex;
  4721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4722. font-weight:400;
  4723. font-style:normal;
  4724. font-size:14px;
  4725. color:#AAAAAA;
  4726. text-align:center;
  4727. line-height:30px;
  4728. }
  4729. #u163869 .text {
  4730. position:absolute;
  4731. align-self:center;
  4732. padding:5px 10px 5px 10px;
  4733. box-sizing:border-box;
  4734. width:100%;
  4735. }
  4736. #u163869_text {
  4737. border-width:0px;
  4738. word-wrap:break-word;
  4739. text-transform:none;
  4740. visibility:hidden;
  4741. }
  4742. #u163870_div {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:80px;
  4748. height:30px;
  4749. background:inherit;
  4750. background-color:rgba(24, 144, 255, 1);
  4751. border:none;
  4752. border-radius:4px;
  4753. -moz-box-shadow:none;
  4754. -webkit-box-shadow:none;
  4755. box-shadow:none;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:14px;
  4760. color:#FFFFFF;
  4761. }
  4762. #u163870 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:2536px;
  4766. top:1161px;
  4767. width:80px;
  4768. height:30px;
  4769. display:flex;
  4770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:14px;
  4774. color:#FFFFFF;
  4775. }
  4776. #u163870 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 2px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u163870_text {
  4784. border-width:0px;
  4785. word-wrap:break-word;
  4786. text-transform:none;
  4787. }
  4788. #u163871_div {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:80px;
  4794. height:30px;
  4795. background:inherit;
  4796. background-color:rgba(255, 255, 255, 1);
  4797. box-sizing:border-box;
  4798. border-width:1px;
  4799. border-style:solid;
  4800. border-color:rgba(170, 170, 170, 1);
  4801. border-radius:4px;
  4802. -moz-box-shadow:none;
  4803. -webkit-box-shadow:none;
  4804. box-shadow:none;
  4805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:14px;
  4809. }
  4810. #u163871 {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:2437px;
  4814. top:1161px;
  4815. width:80px;
  4816. height:30px;
  4817. display:flex;
  4818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4819. font-weight:400;
  4820. font-style:normal;
  4821. font-size:14px;
  4822. }
  4823. #u163871 .text {
  4824. position:absolute;
  4825. align-self:center;
  4826. padding:2px 2px 2px 2px;
  4827. box-sizing:border-box;
  4828. width:100%;
  4829. }
  4830. #u163871_text {
  4831. border-width:0px;
  4832. word-wrap:break-word;
  4833. text-transform:none;
  4834. }
  4835. #u163872_div {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:449px;
  4841. height:40px;
  4842. background:inherit;
  4843. background-color:rgba(255, 255, 255, 0);
  4844. border:none;
  4845. border-top:0px;
  4846. border-right:0px;
  4847. border-bottom:0px;
  4848. border-radius:0px;
  4849. border-top-left-radius:0px;
  4850. border-bottom-left-radius:0px;
  4851. -moz-box-shadow:none;
  4852. -webkit-box-shadow:none;
  4853. box-shadow:none;
  4854. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4855. font-style:normal;
  4856. }
  4857. #u163872 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:1694px;
  4861. top:127px;
  4862. width:449px;
  4863. height:40px;
  4864. display:flex;
  4865. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4866. font-style:normal;
  4867. }
  4868. #u163872 .text {
  4869. position:absolute;
  4870. align-self:center;
  4871. padding:5px 0px 5px 0px;
  4872. box-sizing:border-box;
  4873. width:100%;
  4874. }
  4875. #u163872_text {
  4876. border-width:0px;
  4877. white-space:nowrap;
  4878. text-transform:none;
  4879. }
  4880. #u163873 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:0px;
  4886. height:0px;
  4887. }
  4888. #u163874_div {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:400px;
  4894. height:40px;
  4895. background:inherit;
  4896. background-color:rgba(255, 255, 255, 1);
  4897. box-sizing:border-box;
  4898. border-width:1px;
  4899. border-style:solid;
  4900. border-color:rgba(170, 170, 170, 1);
  4901. border-radius:4px;
  4902. -moz-box-shadow:none;
  4903. -webkit-box-shadow:none;
  4904. box-shadow:none;
  4905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4906. font-weight:400;
  4907. font-style:normal;
  4908. text-align:left;
  4909. }
  4910. #u163874 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:1807px;
  4914. top:167px;
  4915. width:400px;
  4916. height:40px;
  4917. display:flex;
  4918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4919. font-weight:400;
  4920. font-style:normal;
  4921. text-align:left;
  4922. }
  4923. #u163874 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:2px 2px 2px 10px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u163874_text {
  4931. border-width:0px;
  4932. word-wrap:break-word;
  4933. text-transform:none;
  4934. visibility:hidden;
  4935. }
  4936. #u163875_input {
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:383px;
  4941. height:22px;
  4942. padding:2px 2px 2px 2px;
  4943. font-family:'ArialMT', 'Arial', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:13px;
  4947. letter-spacing:normal;
  4948. color:#000000;
  4949. vertical-align:none;
  4950. text-align:left;
  4951. text-transform:none;
  4952. background-color:transparent;
  4953. border-color:transparent;
  4954. }
  4955. #u163875_input.disabled {
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:383px;
  4960. height:22px;
  4961. padding:2px 2px 2px 2px;
  4962. font-family:'ArialMT', 'Arial', sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:13px;
  4966. letter-spacing:normal;
  4967. color:#000000;
  4968. vertical-align:none;
  4969. text-align:left;
  4970. text-transform:none;
  4971. background-color:transparent;
  4972. border-color:transparent;
  4973. }
  4974. #u163875_div {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:0px;
  4978. top:0px;
  4979. width:383px;
  4980. height:22px;
  4981. background:inherit;
  4982. background-color:rgba(255, 255, 255, 1);
  4983. border:none;
  4984. border-radius:0px;
  4985. -moz-box-shadow:none;
  4986. -webkit-box-shadow:none;
  4987. box-shadow:none;
  4988. }
  4989. #u163875 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:1817px;
  4993. top:177px;
  4994. width:383px;
  4995. height:22px;
  4996. display:flex;
  4997. }
  4998. #u163875 .text {
  4999. position:absolute;
  5000. align-self:flex-start;
  5001. padding:2px 2px 2px 2px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u163875_div.disabled {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:383px;
  5011. height:22px;
  5012. background:inherit;
  5013. background-color:rgba(240, 240, 240, 1);
  5014. border:none;
  5015. border-radius:0px;
  5016. -moz-box-shadow:none;
  5017. -webkit-box-shadow:none;
  5018. box-shadow:none;
  5019. }
  5020. #u163875.disabled {
  5021. }
  5022. .u163875_input_option {
  5023. }
  5024. #u163876 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:0px;
  5030. height:0px;
  5031. }
  5032. #u163877_div {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:106px;
  5038. height:40px;
  5039. background:inherit;
  5040. background-color:rgba(255, 255, 255, 1);
  5041. box-sizing:border-box;
  5042. border-width:1px;
  5043. border-style:solid;
  5044. border-color:rgba(170, 170, 170, 1);
  5045. border-radius:4px;
  5046. -moz-box-shadow:none;
  5047. -webkit-box-shadow:none;
  5048. box-shadow:none;
  5049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. text-align:left;
  5053. }
  5054. #u163877 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:1694px;
  5058. top:167px;
  5059. width:106px;
  5060. height:40px;
  5061. display:flex;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. text-align:left;
  5066. }
  5067. #u163877 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:2px 2px 2px 10px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u163877_text {
  5075. border-width:0px;
  5076. word-wrap:break-word;
  5077. text-transform:none;
  5078. visibility:hidden;
  5079. }
  5080. #u163878_input {
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:94px;
  5085. height:22px;
  5086. padding:2px 2px 2px 2px;
  5087. font-family:'ArialMT', 'Arial', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:13px;
  5091. letter-spacing:normal;
  5092. color:#000000;
  5093. vertical-align:none;
  5094. text-align:left;
  5095. text-transform:none;
  5096. background-color:transparent;
  5097. border-color:transparent;
  5098. }
  5099. #u163878_input.disabled {
  5100. position:absolute;
  5101. left:0px;
  5102. top:0px;
  5103. width:94px;
  5104. height:22px;
  5105. padding:2px 2px 2px 2px;
  5106. font-family:'ArialMT', 'Arial', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:13px;
  5110. letter-spacing:normal;
  5111. color:#000000;
  5112. vertical-align:none;
  5113. text-align:left;
  5114. text-transform:none;
  5115. background-color:transparent;
  5116. border-color:transparent;
  5117. }
  5118. #u163878_div {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:94px;
  5124. height:22px;
  5125. background:inherit;
  5126. background-color:rgba(255, 255, 255, 1);
  5127. border:none;
  5128. border-radius:0px;
  5129. -moz-box-shadow:none;
  5130. -webkit-box-shadow:none;
  5131. box-shadow:none;
  5132. }
  5133. #u163878 {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:1701px;
  5137. top:176px;
  5138. width:94px;
  5139. height:22px;
  5140. display:flex;
  5141. }
  5142. #u163878 .text {
  5143. position:absolute;
  5144. align-self:flex-start;
  5145. padding:2px 2px 2px 2px;
  5146. box-sizing:border-box;
  5147. width:100%;
  5148. }
  5149. #u163878_div.disabled {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:94px;
  5155. height:22px;
  5156. background:inherit;
  5157. background-color:rgba(240, 240, 240, 1);
  5158. border:none;
  5159. border-radius:0px;
  5160. -moz-box-shadow:none;
  5161. -webkit-box-shadow:none;
  5162. box-shadow:none;
  5163. }
  5164. #u163878.disabled {
  5165. }
  5166. .u163878_input_option {
  5167. }
  5168. #u163879 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:1694px;
  5172. top:257px;
  5173. width:927px;
  5174. height:80px;
  5175. }
  5176. #u163880_img {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:235px;
  5182. height:40px;
  5183. }
  5184. #u163880 {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:235px;
  5190. height:40px;
  5191. display:flex;
  5192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5193. font-weight:400;
  5194. font-style:normal;
  5195. color:#FFFFFF;
  5196. }
  5197. #u163880 .text {
  5198. position:absolute;
  5199. align-self:center;
  5200. padding:2px 2px 2px 2px;
  5201. box-sizing:border-box;
  5202. width:100%;
  5203. }
  5204. #u163880_text {
  5205. border-width:0px;
  5206. word-wrap:break-word;
  5207. text-transform:none;
  5208. }
  5209. #u163881_img {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:196px;
  5215. height:40px;
  5216. }
  5217. #u163881 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:235px;
  5221. top:0px;
  5222. width:196px;
  5223. height:40px;
  5224. display:flex;
  5225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. color:#FFFFFF;
  5229. }
  5230. #u163881 .text {
  5231. position:absolute;
  5232. align-self:center;
  5233. padding:2px 2px 2px 2px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u163881_text {
  5238. border-width:0px;
  5239. word-wrap:break-word;
  5240. text-transform:none;
  5241. }
  5242. #u163882_img {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:246px;
  5248. height:40px;
  5249. }
  5250. #u163882 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:431px;
  5254. top:0px;
  5255. width:246px;
  5256. height:40px;
  5257. display:flex;
  5258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5259. font-weight:400;
  5260. font-style:normal;
  5261. color:#FFFFFF;
  5262. }
  5263. #u163882 .text {
  5264. position:absolute;
  5265. align-self:center;
  5266. padding:2px 2px 2px 2px;
  5267. box-sizing:border-box;
  5268. width:100%;
  5269. }
  5270. #u163882_text {
  5271. border-width:0px;
  5272. word-wrap:break-word;
  5273. text-transform:none;
  5274. }
  5275. #u163883_img {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:250px;
  5281. height:40px;
  5282. }
  5283. #u163883 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:677px;
  5287. top:0px;
  5288. width:250px;
  5289. height:40px;
  5290. display:flex;
  5291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5292. font-weight:400;
  5293. font-style:normal;
  5294. color:#FFFFFF;
  5295. }
  5296. #u163883 .text {
  5297. position:absolute;
  5298. align-self:center;
  5299. padding:2px 2px 2px 2px;
  5300. box-sizing:border-box;
  5301. width:100%;
  5302. }
  5303. #u163883_text {
  5304. border-width:0px;
  5305. word-wrap:break-word;
  5306. text-transform:none;
  5307. }
  5308. #u163884_img {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:235px;
  5314. height:40px;
  5315. }
  5316. #u163884 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:40px;
  5321. width:235px;
  5322. height:40px;
  5323. display:flex;
  5324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5325. font-weight:400;
  5326. font-style:normal;
  5327. }
  5328. #u163884 .text {
  5329. position:absolute;
  5330. align-self:center;
  5331. padding:2px 2px 2px 2px;
  5332. box-sizing:border-box;
  5333. width:100%;
  5334. }
  5335. #u163884_text {
  5336. border-width:0px;
  5337. word-wrap:break-word;
  5338. text-transform:none;
  5339. visibility:hidden;
  5340. }
  5341. #u163885_img {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:196px;
  5347. height:40px;
  5348. }
  5349. #u163885 {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:235px;
  5353. top:40px;
  5354. width:196px;
  5355. height:40px;
  5356. display:flex;
  5357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5358. font-weight:400;
  5359. font-style:normal;
  5360. }
  5361. #u163885 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 2px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u163885_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u163886_img {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:246px;
  5380. height:40px;
  5381. }
  5382. #u163886 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:431px;
  5386. top:40px;
  5387. width:246px;
  5388. height:40px;
  5389. display:flex;
  5390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5391. font-weight:400;
  5392. font-style:normal;
  5393. }
  5394. #u163886 .text {
  5395. position:absolute;
  5396. align-self:center;
  5397. padding:2px 2px 2px 2px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u163886_text {
  5402. border-width:0px;
  5403. word-wrap:break-word;
  5404. text-transform:none;
  5405. visibility:hidden;
  5406. }
  5407. #u163887_img {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:250px;
  5413. height:40px;
  5414. }
  5415. #u163887 {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:677px;
  5419. top:40px;
  5420. width:250px;
  5421. height:40px;
  5422. display:flex;
  5423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5424. font-weight:400;
  5425. font-style:normal;
  5426. }
  5427. #u163887 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:2px 2px 2px 2px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u163887_text {
  5435. border-width:0px;
  5436. word-wrap:break-word;
  5437. text-transform:none;
  5438. visibility:hidden;
  5439. }
  5440. #u163888_div {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:805px;
  5446. height:460px;
  5447. background:inherit;
  5448. background-color:rgba(255, 255, 255, 0);
  5449. border:none;
  5450. border-top:0px;
  5451. border-right:0px;
  5452. border-bottom:0px;
  5453. border-radius:0px;
  5454. border-top-left-radius:0px;
  5455. border-bottom-left-radius:0px;
  5456. -moz-box-shadow:none;
  5457. -webkit-box-shadow:none;
  5458. box-shadow:none;
  5459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:14px;
  5463. color:#D9001B;
  5464. line-height:30px;
  5465. }
  5466. #u163888 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:1723px;
  5470. top:411px;
  5471. width:805px;
  5472. height:460px;
  5473. display:flex;
  5474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:14px;
  5478. color:#D9001B;
  5479. line-height:30px;
  5480. }
  5481. #u163888 .text {
  5482. position:absolute;
  5483. align-self:center;
  5484. padding:5px 0px 5px 0px;
  5485. box-sizing:border-box;
  5486. width:100%;
  5487. }
  5488. #u163888_text {
  5489. border-width:0px;
  5490. word-wrap:break-word;
  5491. text-transform:none;
  5492. }
  5493. #u163889_input {
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:170px;
  5498. height:22px;
  5499. padding:2px 2px 2px 2px;
  5500. font-family:'ArialMT', 'Arial', sans-serif;
  5501. font-weight:400;
  5502. font-style:normal;
  5503. font-size:13px;
  5504. letter-spacing:normal;
  5505. color:#000000;
  5506. vertical-align:none;
  5507. text-align:left;
  5508. text-transform:none;
  5509. background-color:transparent;
  5510. border-color:transparent;
  5511. }
  5512. #u163889_input.disabled {
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:170px;
  5517. height:22px;
  5518. padding:2px 2px 2px 2px;
  5519. font-family:'ArialMT', 'Arial', sans-serif;
  5520. font-weight:400;
  5521. font-style:normal;
  5522. font-size:13px;
  5523. letter-spacing:normal;
  5524. color:#000000;
  5525. vertical-align:none;
  5526. text-align:left;
  5527. text-transform:none;
  5528. background-color:transparent;
  5529. border-color:transparent;
  5530. }
  5531. #u163889_div {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:170px;
  5537. height:22px;
  5538. background:inherit;
  5539. background-color:rgba(255, 255, 255, 1);
  5540. box-sizing:border-box;
  5541. border-width:1px;
  5542. border-style:solid;
  5543. border-color:rgba(121, 121, 121, 1);
  5544. border-radius:0px;
  5545. -moz-box-shadow:none;
  5546. -webkit-box-shadow:none;
  5547. box-shadow:none;
  5548. }
  5549. #u163889 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:1943px;
  5553. top:306px;
  5554. width:170px;
  5555. height:22px;
  5556. display:flex;
  5557. }
  5558. #u163889 .text {
  5559. position:absolute;
  5560. align-self:flex-start;
  5561. padding:2px 2px 2px 2px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u163889_div.disabled {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:170px;
  5571. height:22px;
  5572. background:inherit;
  5573. background-color:rgba(240, 240, 240, 1);
  5574. box-sizing:border-box;
  5575. border-width:1px;
  5576. border-style:solid;
  5577. border-color:rgba(121, 121, 121, 1);
  5578. border-radius:0px;
  5579. -moz-box-shadow:none;
  5580. -webkit-box-shadow:none;
  5581. box-shadow:none;
  5582. }
  5583. #u163889.disabled {
  5584. }
  5585. .u163889_input_option {
  5586. }
  5587. #u163890_img {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:50px;
  5593. height:31px;
  5594. }
  5595. #u163890 {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:1793px;
  5599. top:301px;
  5600. width:50px;
  5601. height:31px;
  5602. display:flex;
  5603. }
  5604. #u163890 .text {
  5605. position:absolute;
  5606. align-self:center;
  5607. padding:2px 2px 2px 2px;
  5608. box-sizing:border-box;
  5609. width:100%;
  5610. }
  5611. #u163890_text {
  5612. border-width:0px;
  5613. word-wrap:break-word;
  5614. text-transform:none;
  5615. visibility:hidden;
  5616. }
  5617. #u163891_img {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:50px;
  5623. height:31px;
  5624. }
  5625. #u163891 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:2231px;
  5629. top:301px;
  5630. width:50px;
  5631. height:31px;
  5632. display:flex;
  5633. }
  5634. #u163891 .text {
  5635. position:absolute;
  5636. align-self:center;
  5637. padding:2px 2px 2px 2px;
  5638. box-sizing:border-box;
  5639. width:100%;
  5640. }
  5641. #u163891_text {
  5642. border-width:0px;
  5643. word-wrap:break-word;
  5644. text-transform:none;
  5645. visibility:hidden;
  5646. }
  5647. #u163892_img {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:50px;
  5653. height:31px;
  5654. }
  5655. #u163892 {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:2488px;
  5659. top:301px;
  5660. width:50px;
  5661. height:31px;
  5662. display:flex;
  5663. }
  5664. #u163892 .text {
  5665. position:absolute;
  5666. align-self:center;
  5667. padding:2px 2px 2px 2px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u163892_text {
  5672. border-width:0px;
  5673. word-wrap:break-word;
  5674. text-transform:none;
  5675. visibility:hidden;
  5676. }
  5677. #u163893_div {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:57px;
  5683. height:40px;
  5684. background:inherit;
  5685. background-color:rgba(255, 255, 255, 0);
  5686. border:none;
  5687. border-top:0px;
  5688. border-right:0px;
  5689. border-bottom:0px;
  5690. border-radius:0px;
  5691. border-top-left-radius:0px;
  5692. border-bottom-left-radius:0px;
  5693. -moz-box-shadow:none;
  5694. -webkit-box-shadow:none;
  5695. box-shadow:none;
  5696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5697. font-weight:500;
  5698. font-style:normal;
  5699. font-size:14px;
  5700. }
  5701. #u163893 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:1694px;
  5705. top:217px;
  5706. width:57px;
  5707. height:40px;
  5708. display:flex;
  5709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5710. font-weight:500;
  5711. font-style:normal;
  5712. font-size:14px;
  5713. }
  5714. #u163893 .text {
  5715. position:absolute;
  5716. align-self:center;
  5717. padding:5px 0px 5px 0px;
  5718. box-sizing:border-box;
  5719. width:100%;
  5720. }
  5721. #u163893_text {
  5722. border-width:0px;
  5723. white-space:nowrap;
  5724. text-transform:none;
  5725. }
  5726. #u163894_div {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:0px;
  5730. top:0px;
  5731. width:166px;
  5732. height:40px;
  5733. background:inherit;
  5734. background-color:rgba(255, 255, 255, 0);
  5735. border:none;
  5736. border-top:0px;
  5737. border-right:0px;
  5738. border-bottom:0px;
  5739. border-radius:0px;
  5740. border-top-left-radius:0px;
  5741. border-bottom-left-radius:0px;
  5742. -moz-box-shadow:none;
  5743. -webkit-box-shadow:none;
  5744. box-shadow:none;
  5745. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5746. font-weight:500;
  5747. font-style:normal;
  5748. font-size:14px;
  5749. color:#D9001B;
  5750. }
  5751. #u163894 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:2090px;
  5755. top:207px;
  5756. width:166px;
  5757. height:40px;
  5758. display:flex;
  5759. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5760. font-weight:500;
  5761. font-style:normal;
  5762. font-size:14px;
  5763. color:#D9001B;
  5764. }
  5765. #u163894 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:5px 0px 5px 0px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u163894_text {
  5773. border-width:0px;
  5774. white-space:nowrap;
  5775. text-transform:none;
  5776. }