styles.css 100 KB

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