styles.css 105 KB

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