styles.css 109 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1601px;
  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. #u155829_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u155829 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u155829 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u155829_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u155830_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. #u155830 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u155830 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u155830_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u155831 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u155832_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. #u155832 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u155832 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u155832_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u155833 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u155834_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u155834 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u155834 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u155834_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u155835_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u155835 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u155835 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u155835_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u155836 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u155837_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u155837 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u155837 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u155837_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u155838_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u155838 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u155838 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u155838_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u155839_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u155839 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u155839 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u155839_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u155840_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u155840 {
  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. #u155840 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u155840_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u155841_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u155841 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u155841 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u155841_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u155842_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. #u155842 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u155842 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u155842_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u155843 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u155844_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u155844 {
  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. #u155844 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u155844_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u155845_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. #u155845 {
  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. #u155845 .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. #u155845_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u155846 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u155847_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u155847 {
  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. #u155847 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u155847_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u155848_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. #u155848 {
  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. #u155848 .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. #u155848_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u155849_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. #u155849 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u155849 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u155849_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u155850 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u155851_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u155851 {
  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. #u155851 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u155851_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u155852_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. #u155852 {
  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. #u155852 .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. #u155852_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u155853 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u155854_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u155854 {
  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. #u155854 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u155854_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u155855_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. #u155855 {
  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. #u155855 .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. #u155855_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u155856_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:731px;
  786. }
  787. #u155856 {
  788. border-width:0px;
  789. position:absolute;
  790. left:29px;
  791. top:108px;
  792. width:375px;
  793. height:731px;
  794. display:flex;
  795. }
  796. #u155856 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u155856_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u155857 {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:0px;
  815. height:0px;
  816. }
  817. #u155858_img {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:11px;
  823. height:18px;
  824. }
  825. #u155858 {
  826. border-width:0px;
  827. position:absolute;
  828. left:39px;
  829. top:80px;
  830. width:11px;
  831. height:18px;
  832. display:flex;
  833. }
  834. #u155858 .text {
  835. position:absolute;
  836. align-self:center;
  837. padding:2px 2px 2px 2px;
  838. box-sizing:border-box;
  839. width:100%;
  840. }
  841. #u155858_text {
  842. border-width:0px;
  843. word-wrap:break-word;
  844. text-transform:none;
  845. visibility:hidden;
  846. }
  847. #u155859_div {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:29px;
  853. height:30px;
  854. background:inherit;
  855. background-color:rgba(255, 255, 255, 0);
  856. border:none;
  857. border-left:0px;
  858. border-top:0px;
  859. border-right:0px;
  860. border-radius:0px;
  861. border-bottom-right-radius:0px;
  862. border-bottom-left-radius:0px;
  863. -moz-box-shadow:none;
  864. -webkit-box-shadow:none;
  865. box-shadow:none;
  866. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  867. font-weight:500;
  868. font-style:normal;
  869. font-size:14px;
  870. line-height:30px;
  871. }
  872. #u155859 {
  873. border-width:0px;
  874. position:absolute;
  875. left:70px;
  876. top:74px;
  877. width:29px;
  878. height:30px;
  879. display:flex;
  880. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  881. font-weight:500;
  882. font-style:normal;
  883. font-size:14px;
  884. line-height:30px;
  885. }
  886. #u155859 .text {
  887. position:absolute;
  888. align-self:flex-start;
  889. padding:0px 0px 0px 0px;
  890. box-sizing:border-box;
  891. width:100%;
  892. }
  893. #u155859_text {
  894. border-width:0px;
  895. white-space:nowrap;
  896. text-transform:none;
  897. }
  898. #u155860 {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:0px;
  904. height:0px;
  905. }
  906. #u155861_div {
  907. border-width:0px;
  908. position:absolute;
  909. left:0px;
  910. top:0px;
  911. width:375px;
  912. height:387px;
  913. background:inherit;
  914. background-color:rgba(255, 255, 255, 1);
  915. box-sizing:border-box;
  916. border-width:1px;
  917. border-style:solid;
  918. border-color:rgba(215, 215, 215, 1);
  919. border-left:0px;
  920. border-top:0px;
  921. border-right:0px;
  922. border-radius:0px;
  923. border-bottom-right-radius:0px;
  924. border-bottom-left-radius:0px;
  925. -moz-box-shadow:none;
  926. -webkit-box-shadow:none;
  927. box-shadow:none;
  928. }
  929. #u155861 {
  930. border-width:0px;
  931. position:absolute;
  932. left:29px;
  933. top:108px;
  934. width:375px;
  935. height:387px;
  936. display:flex;
  937. }
  938. #u155861 .text {
  939. position:absolute;
  940. align-self:center;
  941. padding:2px 2px 2px 2px;
  942. box-sizing:border-box;
  943. width:100%;
  944. }
  945. #u155861_text {
  946. border-width:0px;
  947. word-wrap:break-word;
  948. text-transform:none;
  949. visibility:hidden;
  950. }
  951. #u155862_div {
  952. border-width:0px;
  953. position:absolute;
  954. left:0px;
  955. top:0px;
  956. width:353px;
  957. height:30px;
  958. background:inherit;
  959. background-color:rgba(255, 255, 255, 0);
  960. border:none;
  961. border-top:0px;
  962. border-right:0px;
  963. border-bottom:0px;
  964. border-radius:0px;
  965. border-top-left-radius:0px;
  966. border-bottom-left-radius:0px;
  967. -moz-box-shadow:none;
  968. -webkit-box-shadow:none;
  969. box-shadow:none;
  970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  971. font-weight:500;
  972. font-style:normal;
  973. font-size:14px;
  974. line-height:30px;
  975. }
  976. #u155862 {
  977. border-width:0px;
  978. position:absolute;
  979. left:42px;
  980. top:118px;
  981. width:353px;
  982. height:30px;
  983. display:flex;
  984. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  985. font-weight:500;
  986. font-style:normal;
  987. font-size:14px;
  988. line-height:30px;
  989. }
  990. #u155862 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:5px 10px 5px 0px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u155862_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. }
  1002. #u155863_div {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:0px;
  1006. top:0px;
  1007. width:40px;
  1008. height:20px;
  1009. background:inherit;
  1010. background-color:rgba(242, 242, 242, 0);
  1011. border:none;
  1012. border-radius:29px;
  1013. -moz-box-shadow:none;
  1014. -webkit-box-shadow:none;
  1015. box-shadow:none;
  1016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:12px;
  1020. color:#298FFF;
  1021. text-align:center;
  1022. line-height:20px;
  1023. }
  1024. #u155863 {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:334px;
  1028. top:123px;
  1029. width:40px;
  1030. height:20px;
  1031. display:flex;
  1032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1033. font-weight:400;
  1034. font-style:normal;
  1035. font-size:12px;
  1036. color:#298FFF;
  1037. text-align:center;
  1038. line-height:20px;
  1039. }
  1040. #u155863 .text {
  1041. position:absolute;
  1042. align-self:flex-start;
  1043. padding:0px 0px 0px 0px;
  1044. box-sizing:border-box;
  1045. width:100%;
  1046. }
  1047. #u155863_text {
  1048. border-width:0px;
  1049. word-wrap:break-word;
  1050. text-transform:none;
  1051. }
  1052. #u155864_div {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:0px;
  1056. top:0px;
  1057. width:109px;
  1058. height:17px;
  1059. background:inherit;
  1060. background-color:rgba(255, 255, 255, 0);
  1061. border:none;
  1062. border-left:0px;
  1063. border-top:0px;
  1064. border-right:0px;
  1065. border-radius:0px;
  1066. border-bottom-right-radius:0px;
  1067. border-bottom-left-radius:0px;
  1068. -moz-box-shadow:none;
  1069. -webkit-box-shadow:none;
  1070. box-shadow:none;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:12px;
  1075. color:#298FFF;
  1076. }
  1077. #u155864 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:42px;
  1081. top:148px;
  1082. width:109px;
  1083. height:17px;
  1084. display:flex;
  1085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:12px;
  1089. color:#298FFF;
  1090. }
  1091. #u155864 .text {
  1092. position:absolute;
  1093. align-self:flex-start;
  1094. padding:0px 0px 0px 0px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u155864_text {
  1099. border-width:0px;
  1100. white-space:nowrap;
  1101. text-transform:none;
  1102. }
  1103. #u155865_div {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:181px;
  1109. height:25px;
  1110. background:inherit;
  1111. background-color:rgba(255, 255, 255, 0);
  1112. border:none;
  1113. border-left:0px;
  1114. border-top:0px;
  1115. border-right:0px;
  1116. border-radius:0px;
  1117. border-bottom-right-radius:0px;
  1118. border-bottom-left-radius:0px;
  1119. -moz-box-shadow:none;
  1120. -webkit-box-shadow:none;
  1121. box-shadow:none;
  1122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1123. font-weight:400;
  1124. font-style:normal;
  1125. font-size:12px;
  1126. line-height:25px;
  1127. }
  1128. #u155865 {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:42px;
  1132. top:250px;
  1133. width:181px;
  1134. height:25px;
  1135. display:flex;
  1136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1137. font-weight:400;
  1138. font-style:normal;
  1139. font-size:12px;
  1140. line-height:25px;
  1141. }
  1142. #u155865 .text {
  1143. position:absolute;
  1144. align-self:flex-start;
  1145. padding:0px 0px 0px 0px;
  1146. box-sizing:border-box;
  1147. width:100%;
  1148. }
  1149. #u155865_text {
  1150. border-width:0px;
  1151. white-space:nowrap;
  1152. text-transform:none;
  1153. }
  1154. #u155866_div {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:201px;
  1160. height:25px;
  1161. background:inherit;
  1162. background-color:rgba(255, 255, 255, 0);
  1163. border:none;
  1164. border-left:0px;
  1165. border-top:0px;
  1166. border-right:0px;
  1167. border-radius:0px;
  1168. border-bottom-right-radius:0px;
  1169. border-bottom-left-radius:0px;
  1170. -moz-box-shadow:none;
  1171. -webkit-box-shadow:none;
  1172. box-shadow:none;
  1173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1174. font-weight:400;
  1175. font-style:normal;
  1176. font-size:12px;
  1177. line-height:25px;
  1178. }
  1179. #u155866 {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:42px;
  1183. top:175px;
  1184. width:201px;
  1185. height:25px;
  1186. display:flex;
  1187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1188. font-weight:400;
  1189. font-style:normal;
  1190. font-size:12px;
  1191. line-height:25px;
  1192. }
  1193. #u155866 .text {
  1194. position:absolute;
  1195. align-self:flex-start;
  1196. padding:0px 0px 0px 0px;
  1197. box-sizing:border-box;
  1198. width:100%;
  1199. }
  1200. #u155866_text {
  1201. border-width:0px;
  1202. white-space:nowrap;
  1203. text-transform:none;
  1204. }
  1205. #u155867_div {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:115px;
  1211. height:25px;
  1212. background:inherit;
  1213. background-color:rgba(255, 255, 255, 0);
  1214. border:none;
  1215. border-left:0px;
  1216. border-top:0px;
  1217. border-right:0px;
  1218. border-radius:0px;
  1219. border-bottom-right-radius:0px;
  1220. border-bottom-left-radius:0px;
  1221. -moz-box-shadow:none;
  1222. -webkit-box-shadow:none;
  1223. box-shadow:none;
  1224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1225. font-weight:400;
  1226. font-style:normal;
  1227. font-size:12px;
  1228. line-height:25px;
  1229. }
  1230. #u155867 {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:42px;
  1234. top:200px;
  1235. width:115px;
  1236. height:25px;
  1237. display:flex;
  1238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1239. font-weight:400;
  1240. font-style:normal;
  1241. font-size:12px;
  1242. line-height:25px;
  1243. }
  1244. #u155867 .text {
  1245. position:absolute;
  1246. align-self:flex-start;
  1247. padding:0px 0px 0px 0px;
  1248. box-sizing:border-box;
  1249. width:100%;
  1250. }
  1251. #u155867_text {
  1252. border-width:0px;
  1253. white-space:nowrap;
  1254. text-transform:none;
  1255. }
  1256. #u155868_div {
  1257. border-width:0px;
  1258. position:absolute;
  1259. left:0px;
  1260. top:0px;
  1261. width:109px;
  1262. height:25px;
  1263. background:inherit;
  1264. background-color:rgba(255, 255, 255, 0);
  1265. border:none;
  1266. border-left:0px;
  1267. border-top:0px;
  1268. border-right:0px;
  1269. border-radius:0px;
  1270. border-bottom-right-radius:0px;
  1271. border-bottom-left-radius:0px;
  1272. -moz-box-shadow:none;
  1273. -webkit-box-shadow:none;
  1274. box-shadow:none;
  1275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1276. font-weight:400;
  1277. font-style:normal;
  1278. font-size:12px;
  1279. line-height:25px;
  1280. }
  1281. #u155868 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:42px;
  1285. top:225px;
  1286. width:109px;
  1287. height:25px;
  1288. display:flex;
  1289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1290. font-weight:400;
  1291. font-style:normal;
  1292. font-size:12px;
  1293. line-height:25px;
  1294. }
  1295. #u155868 .text {
  1296. position:absolute;
  1297. align-self:flex-start;
  1298. padding:0px 0px 0px 0px;
  1299. box-sizing:border-box;
  1300. width:100%;
  1301. }
  1302. #u155868_text {
  1303. border-width:0px;
  1304. white-space:nowrap;
  1305. text-transform:none;
  1306. }
  1307. #u155869 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:0px;
  1311. top:0px;
  1312. width:0px;
  1313. height:0px;
  1314. }
  1315. #u155870_div {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:330px;
  1321. height:90px;
  1322. background:inherit;
  1323. background-color:rgba(242, 242, 242, 1);
  1324. border:none;
  1325. border-radius:6px;
  1326. -moz-box-shadow:none;
  1327. -webkit-box-shadow:none;
  1328. box-shadow:none;
  1329. }
  1330. #u155870 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:42px;
  1334. top:285px;
  1335. width:330px;
  1336. height:90px;
  1337. display:flex;
  1338. }
  1339. #u155870 .text {
  1340. position:absolute;
  1341. align-self:center;
  1342. padding:2px 2px 2px 2px;
  1343. box-sizing:border-box;
  1344. width:100%;
  1345. }
  1346. #u155870_text {
  1347. border-width:0px;
  1348. word-wrap:break-word;
  1349. text-transform:none;
  1350. visibility:hidden;
  1351. }
  1352. #u155871_div {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:0px;
  1356. top:0px;
  1357. width:85px;
  1358. height:30px;
  1359. background:inherit;
  1360. background-color:rgba(255, 255, 255, 0);
  1361. border:none;
  1362. border-left:0px;
  1363. border-top:0px;
  1364. border-right:0px;
  1365. border-radius:0px;
  1366. border-bottom-right-radius:0px;
  1367. border-bottom-left-radius:0px;
  1368. -moz-box-shadow:none;
  1369. -webkit-box-shadow:none;
  1370. box-shadow:none;
  1371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1372. font-weight:400;
  1373. font-style:normal;
  1374. font-size:14px;
  1375. line-height:30px;
  1376. }
  1377. #u155871 {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:58px;
  1381. top:300px;
  1382. width:85px;
  1383. height:30px;
  1384. display:flex;
  1385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1386. font-weight:400;
  1387. font-style:normal;
  1388. font-size:14px;
  1389. line-height:30px;
  1390. }
  1391. #u155871 .text {
  1392. position:absolute;
  1393. align-self:flex-start;
  1394. padding:0px 0px 0px 0px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u155871_text {
  1399. border-width:0px;
  1400. white-space:nowrap;
  1401. text-transform:none;
  1402. }
  1403. #u155872_div {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:0px;
  1407. top:0px;
  1408. width:105px;
  1409. height:25px;
  1410. background:inherit;
  1411. background-color:rgba(255, 255, 255, 0);
  1412. border:none;
  1413. border-left:0px;
  1414. border-top:0px;
  1415. border-right:0px;
  1416. border-radius:0px;
  1417. border-bottom-right-radius:0px;
  1418. border-bottom-left-radius:0px;
  1419. -moz-box-shadow:none;
  1420. -webkit-box-shadow:none;
  1421. box-shadow:none;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:12px;
  1426. line-height:25px;
  1427. }
  1428. #u155872 {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:58px;
  1432. top:335px;
  1433. width:105px;
  1434. height:25px;
  1435. display:flex;
  1436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1437. font-weight:400;
  1438. font-style:normal;
  1439. font-size:12px;
  1440. line-height:25px;
  1441. }
  1442. #u155872 .text {
  1443. position:absolute;
  1444. align-self:flex-start;
  1445. padding:0px 0px 0px 0px;
  1446. box-sizing:border-box;
  1447. width:100%;
  1448. }
  1449. #u155872_text {
  1450. border-width:0px;
  1451. white-space:nowrap;
  1452. text-transform:none;
  1453. }
  1454. #u155873_img {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:0px;
  1458. top:0px;
  1459. width:68px;
  1460. height:64px;
  1461. }
  1462. #u155873 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:294px;
  1466. top:300px;
  1467. width:68px;
  1468. height:64px;
  1469. display:flex;
  1470. }
  1471. #u155873 .text {
  1472. position:absolute;
  1473. align-self:center;
  1474. padding:2px 2px 2px 2px;
  1475. box-sizing:border-box;
  1476. width:100%;
  1477. }
  1478. #u155873_text {
  1479. border-width:0px;
  1480. word-wrap:break-word;
  1481. text-transform:none;
  1482. visibility:hidden;
  1483. }
  1484. #u155874 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:0px;
  1488. top:0px;
  1489. width:0px;
  1490. height:0px;
  1491. }
  1492. #u155875_div {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:0px;
  1496. top:0px;
  1497. width:330px;
  1498. height:90px;
  1499. background:inherit;
  1500. background-color:rgba(242, 242, 242, 1);
  1501. border:none;
  1502. border-radius:6px;
  1503. -moz-box-shadow:none;
  1504. -webkit-box-shadow:none;
  1505. box-shadow:none;
  1506. }
  1507. #u155875 {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:42px;
  1511. top:385px;
  1512. width:330px;
  1513. height:90px;
  1514. display:flex;
  1515. }
  1516. #u155875 .text {
  1517. position:absolute;
  1518. align-self:center;
  1519. padding:2px 2px 2px 2px;
  1520. box-sizing:border-box;
  1521. width:100%;
  1522. }
  1523. #u155875_text {
  1524. border-width:0px;
  1525. word-wrap:break-word;
  1526. text-transform:none;
  1527. visibility:hidden;
  1528. }
  1529. #u155876_div {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:85px;
  1535. height:30px;
  1536. background:inherit;
  1537. background-color:rgba(255, 255, 255, 0);
  1538. border:none;
  1539. border-left:0px;
  1540. border-top:0px;
  1541. border-right:0px;
  1542. border-radius:0px;
  1543. border-bottom-right-radius:0px;
  1544. border-bottom-left-radius:0px;
  1545. -moz-box-shadow:none;
  1546. -webkit-box-shadow:none;
  1547. box-shadow:none;
  1548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1549. font-weight:400;
  1550. font-style:normal;
  1551. font-size:14px;
  1552. line-height:30px;
  1553. }
  1554. #u155876 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:58px;
  1558. top:400px;
  1559. width:85px;
  1560. height:30px;
  1561. display:flex;
  1562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:14px;
  1566. line-height:30px;
  1567. }
  1568. #u155876 .text {
  1569. position:absolute;
  1570. align-self:flex-start;
  1571. padding:0px 0px 0px 0px;
  1572. box-sizing:border-box;
  1573. width:100%;
  1574. }
  1575. #u155876_text {
  1576. border-width:0px;
  1577. white-space:nowrap;
  1578. text-transform:none;
  1579. }
  1580. #u155877_div {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:187px;
  1586. height:25px;
  1587. background:inherit;
  1588. background-color:rgba(255, 255, 255, 0);
  1589. border:none;
  1590. border-left:0px;
  1591. border-top:0px;
  1592. border-right:0px;
  1593. border-radius:0px;
  1594. border-bottom-right-radius:0px;
  1595. border-bottom-left-radius:0px;
  1596. -moz-box-shadow:none;
  1597. -webkit-box-shadow:none;
  1598. box-shadow:none;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:12px;
  1603. line-height:25px;
  1604. }
  1605. #u155877 {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:58px;
  1609. top:435px;
  1610. width:187px;
  1611. height:25px;
  1612. display:flex;
  1613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1614. font-weight:400;
  1615. font-style:normal;
  1616. font-size:12px;
  1617. line-height:25px;
  1618. }
  1619. #u155877 .text {
  1620. position:absolute;
  1621. align-self:flex-start;
  1622. padding:0px 0px 0px 0px;
  1623. box-sizing:border-box;
  1624. width:100%;
  1625. }
  1626. #u155877_text {
  1627. border-width:0px;
  1628. white-space:nowrap;
  1629. text-transform:none;
  1630. }
  1631. #u155878_img {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:0px;
  1635. top:0px;
  1636. width:68px;
  1637. height:68px;
  1638. }
  1639. #u155878 {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:294px;
  1643. top:396px;
  1644. width:68px;
  1645. height:68px;
  1646. display:flex;
  1647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1648. font-weight:400;
  1649. font-style:normal;
  1650. }
  1651. #u155878 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 2px 2px 2px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u155878_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. }
  1663. #u155879_img {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:6px;
  1669. height:10px;
  1670. }
  1671. #u155879 {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:381px;
  1675. top:128px;
  1676. width:6px;
  1677. height:10px;
  1678. display:flex;
  1679. -webkit-transform:rotate(90deg);
  1680. -moz-transform:rotate(90deg);
  1681. -ms-transform:rotate(90deg);
  1682. transform:rotate(90deg);
  1683. }
  1684. #u155879 .text {
  1685. position:absolute;
  1686. align-self:center;
  1687. padding:2px 2px 2px 2px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u155879_text {
  1692. border-width:0px;
  1693. word-wrap:break-word;
  1694. text-transform:none;
  1695. visibility:hidden;
  1696. }
  1697. #u155881_img {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:433px;
  1703. height:865px;
  1704. }
  1705. #u155881 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:463px;
  1709. top:0px;
  1710. width:433px;
  1711. height:865px;
  1712. display:flex;
  1713. }
  1714. #u155881 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:2px 2px 2px 2px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u155881_text {
  1722. border-width:0px;
  1723. word-wrap:break-word;
  1724. text-transform:none;
  1725. visibility:hidden;
  1726. }
  1727. #u155882_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:375px;
  1733. height:40px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 1);
  1736. box-sizing:border-box;
  1737. border-width:1px;
  1738. border-style:solid;
  1739. border-color:rgba(215, 215, 215, 1);
  1740. border-left:0px;
  1741. border-top:0px;
  1742. border-right:0px;
  1743. border-radius:0px;
  1744. border-bottom-right-radius:0px;
  1745. border-bottom-left-radius:0px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. }
  1750. #u155882 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:492px;
  1754. top:67px;
  1755. width:375px;
  1756. height:40px;
  1757. display:flex;
  1758. }
  1759. #u155882 .text {
  1760. position:absolute;
  1761. align-self:center;
  1762. padding:2px 2px 2px 2px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u155882_text {
  1767. border-width:0px;
  1768. word-wrap:break-word;
  1769. text-transform:none;
  1770. visibility:hidden;
  1771. }
  1772. #u155883 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:0px;
  1778. height:0px;
  1779. }
  1780. #u155884_div {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:88px;
  1786. height:32px;
  1787. background:inherit;
  1788. background-color:rgba(255, 255, 255, 1);
  1789. box-sizing:border-box;
  1790. border-width:1px;
  1791. border-style:solid;
  1792. border-color:rgba(242, 242, 242, 1);
  1793. border-radius:33px;
  1794. -moz-box-shadow:none;
  1795. -webkit-box-shadow:none;
  1796. box-shadow:none;
  1797. }
  1798. #u155884 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:772px;
  1802. top:71px;
  1803. width:88px;
  1804. height:32px;
  1805. display:flex;
  1806. }
  1807. #u155884 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:2px 2px 2px 2px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u155884_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. visibility:hidden;
  1819. }
  1820. #u155885 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:0px;
  1826. height:0px;
  1827. }
  1828. #u155886_img {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:18px;
  1834. height:18px;
  1835. }
  1836. #u155886 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:835px;
  1840. top:78px;
  1841. width:18px;
  1842. height:18px;
  1843. display:flex;
  1844. }
  1845. #u155886 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 2px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u155886_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. visibility:hidden;
  1857. }
  1858. #u155887_img {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:6px;
  1864. height:6px;
  1865. }
  1866. #u155887 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:841px;
  1870. top:84px;
  1871. width:6px;
  1872. height:6px;
  1873. display:flex;
  1874. }
  1875. #u155887 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 2px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u155887_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. visibility:hidden;
  1887. }
  1888. #u155888 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:0px;
  1894. height:0px;
  1895. }
  1896. #u155889_img {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:5px;
  1902. height:5px;
  1903. }
  1904. #u155889 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:786px;
  1908. top:85px;
  1909. width:5px;
  1910. height:5px;
  1911. display:flex;
  1912. }
  1913. #u155889 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 2px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u155889_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. visibility:hidden;
  1925. }
  1926. #u155890_img {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:5px;
  1932. height:5px;
  1933. }
  1934. #u155890 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:802px;
  1938. top:85px;
  1939. width:5px;
  1940. height:5px;
  1941. display:flex;
  1942. }
  1943. #u155890 .text {
  1944. position:absolute;
  1945. align-self:center;
  1946. padding:2px 2px 2px 2px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u155890_text {
  1951. border-width:0px;
  1952. word-wrap:break-word;
  1953. text-transform:none;
  1954. visibility:hidden;
  1955. }
  1956. #u155891_img {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:0px;
  1960. top:0px;
  1961. width:7px;
  1962. height:7px;
  1963. }
  1964. #u155891 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:793px;
  1968. top:84px;
  1969. width:7px;
  1970. height:7px;
  1971. display:flex;
  1972. }
  1973. #u155891 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u155891_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. visibility:hidden;
  1985. }
  1986. #u155892_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:19px;
  1992. height:2px;
  1993. }
  1994. #u155892 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:810px;
  1998. top:87px;
  1999. width:18px;
  2000. height:1px;
  2001. display:flex;
  2002. -webkit-transform:rotate(90deg);
  2003. -moz-transform:rotate(90deg);
  2004. -ms-transform:rotate(90deg);
  2005. transform:rotate(90deg);
  2006. }
  2007. #u155892 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 2px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u155892_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. visibility:hidden;
  2019. }
  2020. #u155893_img {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:375px;
  2026. height:44px;
  2027. }
  2028. #u155893 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:492px;
  2032. top:24px;
  2033. width:375px;
  2034. height:44px;
  2035. display:flex;
  2036. }
  2037. #u155893 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 2px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u155893_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. visibility:hidden;
  2049. }
  2050. #u155894_div {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:375px;
  2056. height:50px;
  2057. background:inherit;
  2058. background-color:rgba(255, 255, 255, 1);
  2059. box-sizing:border-box;
  2060. border-width:1px;
  2061. border-style:solid;
  2062. border-color:rgba(242, 242, 242, 1);
  2063. border-radius:26px;
  2064. border-top-left-radius:0px;
  2065. border-top-right-radius:0px;
  2066. -moz-box-shadow:none;
  2067. -webkit-box-shadow:none;
  2068. box-shadow:none;
  2069. }
  2070. #u155894 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:492px;
  2074. top:788px;
  2075. width:375px;
  2076. height:50px;
  2077. display:flex;
  2078. }
  2079. #u155894 .text {
  2080. position:absolute;
  2081. align-self:center;
  2082. padding:2px 2px 2px 2px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u155894_text {
  2087. border-width:0px;
  2088. word-wrap:break-word;
  2089. text-transform:none;
  2090. visibility:hidden;
  2091. }
  2092. #u155895 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:0px;
  2096. top:0px;
  2097. width:0px;
  2098. height:0px;
  2099. }
  2100. #u155896_img {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:24px;
  2106. height:24px;
  2107. }
  2108. #u155896 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:532px;
  2112. top:792px;
  2113. width:24px;
  2114. height:24px;
  2115. display:flex;
  2116. font-size:8px;
  2117. }
  2118. #u155896 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 2px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u155896_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. }
  2130. #u155897_div {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:25px;
  2136. height:17px;
  2137. background:inherit;
  2138. background-color:rgba(255, 255, 255, 0);
  2139. border:none;
  2140. border-radius:0px;
  2141. -moz-box-shadow:none;
  2142. -webkit-box-shadow:none;
  2143. box-shadow:none;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:12px;
  2148. }
  2149. #u155897 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:532px;
  2153. top:817px;
  2154. width:25px;
  2155. height:17px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:12px;
  2161. }
  2162. #u155897 .text {
  2163. position:absolute;
  2164. align-self:flex-start;
  2165. padding:0px 0px 0px 0px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u155897_text {
  2170. border-width:0px;
  2171. white-space:nowrap;
  2172. text-transform:none;
  2173. }
  2174. #u155898 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:0px;
  2180. height:0px;
  2181. }
  2182. #u155899_img {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:24px;
  2188. height:24px;
  2189. }
  2190. #u155899 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:802px;
  2194. top:794px;
  2195. width:24px;
  2196. height:24px;
  2197. display:flex;
  2198. font-size:8px;
  2199. }
  2200. #u155899 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:2px 2px 2px 2px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u155899_text {
  2208. border-width:0px;
  2209. word-wrap:break-word;
  2210. text-transform:none;
  2211. }
  2212. #u155900_div {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:25px;
  2218. height:17px;
  2219. background:inherit;
  2220. background-color:rgba(255, 255, 255, 0);
  2221. border:none;
  2222. border-radius:0px;
  2223. -moz-box-shadow:none;
  2224. -webkit-box-shadow:none;
  2225. box-shadow:none;
  2226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2227. font-weight:400;
  2228. font-style:normal;
  2229. font-size:12px;
  2230. }
  2231. #u155900 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:802px;
  2235. top:819px;
  2236. width:25px;
  2237. height:17px;
  2238. display:flex;
  2239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. font-size:12px;
  2243. }
  2244. #u155900 .text {
  2245. position:absolute;
  2246. align-self:flex-start;
  2247. padding:0px 0px 0px 0px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u155900_text {
  2252. border-width:0px;
  2253. white-space:nowrap;
  2254. text-transform:none;
  2255. }
  2256. #u155901_div {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:375px;
  2262. height:681px;
  2263. background:inherit;
  2264. background-color:rgba(242, 242, 242, 0.462745098039216);
  2265. border:none;
  2266. border-radius:0px;
  2267. -moz-box-shadow:none;
  2268. -webkit-box-shadow:none;
  2269. box-shadow:none;
  2270. }
  2271. #u155901 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:492px;
  2275. top:107px;
  2276. width:375px;
  2277. height:681px;
  2278. display:flex;
  2279. }
  2280. #u155901 .text {
  2281. position:absolute;
  2282. align-self:center;
  2283. padding:2px 2px 2px 2px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u155901_text {
  2288. border-width:0px;
  2289. word-wrap:break-word;
  2290. text-transform:none;
  2291. visibility:hidden;
  2292. }
  2293. #u155902 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:0px;
  2299. height:0px;
  2300. }
  2301. #u155903_img {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:24px;
  2307. height:24px;
  2308. }
  2309. #u155903 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:714px;
  2313. top:792px;
  2314. width:24px;
  2315. height:24px;
  2316. display:flex;
  2317. font-size:8px;
  2318. }
  2319. #u155903 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:2px 2px 2px 2px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u155903_text {
  2327. border-width:0px;
  2328. word-wrap:break-word;
  2329. text-transform:none;
  2330. }
  2331. #u155904_div {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:37px;
  2337. height:17px;
  2338. background:inherit;
  2339. background-color:rgba(255, 255, 255, 0);
  2340. border:none;
  2341. border-radius:0px;
  2342. -moz-box-shadow:none;
  2343. -webkit-box-shadow:none;
  2344. box-shadow:none;
  2345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2346. font-weight:400;
  2347. font-style:normal;
  2348. font-size:12px;
  2349. }
  2350. #u155904 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:708px;
  2354. top:817px;
  2355. width:37px;
  2356. height:17px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. }
  2363. #u155904 .text {
  2364. position:absolute;
  2365. align-self:flex-start;
  2366. padding:0px 0px 0px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u155904_text {
  2371. border-width:0px;
  2372. white-space:nowrap;
  2373. text-transform:none;
  2374. }
  2375. #u155905 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:0px;
  2381. height:0px;
  2382. }
  2383. #u155906_img {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:24px;
  2389. height:24px;
  2390. }
  2391. #u155906 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:620px;
  2395. top:792px;
  2396. width:24px;
  2397. height:24px;
  2398. display:flex;
  2399. font-size:8px;
  2400. }
  2401. #u155906 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u155906_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. }
  2413. #u155907_div {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:37px;
  2419. height:17px;
  2420. background:inherit;
  2421. background-color:rgba(255, 255, 255, 0);
  2422. border:none;
  2423. border-radius:0px;
  2424. -moz-box-shadow:none;
  2425. -webkit-box-shadow:none;
  2426. box-shadow:none;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:12px;
  2431. }
  2432. #u155907 {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:614px;
  2436. top:817px;
  2437. width:37px;
  2438. height:17px;
  2439. display:flex;
  2440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2441. font-weight:400;
  2442. font-style:normal;
  2443. font-size:12px;
  2444. }
  2445. #u155907 .text {
  2446. position:absolute;
  2447. align-self:flex-start;
  2448. padding:0px 0px 0px 0px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u155907_text {
  2453. border-width:0px;
  2454. white-space:nowrap;
  2455. text-transform:none;
  2456. }
  2457. #u155908_img {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:0px;
  2461. top:0px;
  2462. width:375px;
  2463. height:731px;
  2464. }
  2465. #u155908 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:492px;
  2469. top:108px;
  2470. width:375px;
  2471. height:731px;
  2472. display:flex;
  2473. }
  2474. #u155908 .text {
  2475. position:absolute;
  2476. align-self:center;
  2477. padding:2px 2px 2px 2px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u155908_text {
  2482. border-width:0px;
  2483. word-wrap:break-word;
  2484. text-transform:none;
  2485. visibility:hidden;
  2486. }
  2487. #u155909 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:0px;
  2493. height:0px;
  2494. }
  2495. #u155910_img {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:11px;
  2501. height:18px;
  2502. }
  2503. #u155910 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:502px;
  2507. top:80px;
  2508. width:11px;
  2509. height:18px;
  2510. display:flex;
  2511. }
  2512. #u155910 .text {
  2513. position:absolute;
  2514. align-self:center;
  2515. padding:2px 2px 2px 2px;
  2516. box-sizing:border-box;
  2517. width:100%;
  2518. }
  2519. #u155910_text {
  2520. border-width:0px;
  2521. word-wrap:break-word;
  2522. text-transform:none;
  2523. visibility:hidden;
  2524. }
  2525. #u155911_div {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:29px;
  2531. height:30px;
  2532. background:inherit;
  2533. background-color:rgba(255, 255, 255, 0);
  2534. border:none;
  2535. border-left:0px;
  2536. border-top:0px;
  2537. border-right:0px;
  2538. border-radius:0px;
  2539. border-bottom-right-radius:0px;
  2540. border-bottom-left-radius:0px;
  2541. -moz-box-shadow:none;
  2542. -webkit-box-shadow:none;
  2543. box-shadow:none;
  2544. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2545. font-weight:500;
  2546. font-style:normal;
  2547. font-size:14px;
  2548. line-height:30px;
  2549. }
  2550. #u155911 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:533px;
  2554. top:74px;
  2555. width:29px;
  2556. height:30px;
  2557. display:flex;
  2558. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2559. font-weight:500;
  2560. font-style:normal;
  2561. font-size:14px;
  2562. line-height:30px;
  2563. }
  2564. #u155911 .text {
  2565. position:absolute;
  2566. align-self:flex-start;
  2567. padding:0px 0px 0px 0px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u155911_text {
  2572. border-width:0px;
  2573. white-space:nowrap;
  2574. text-transform:none;
  2575. }
  2576. #u155913_img {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:433px;
  2582. height:865px;
  2583. }
  2584. #u155913 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:1856px;
  2588. top:0px;
  2589. width:433px;
  2590. height:865px;
  2591. display:flex;
  2592. }
  2593. #u155913 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 2px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u155913_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. visibility:hidden;
  2605. }
  2606. #u155914_div {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:375px;
  2612. height:40px;
  2613. background:inherit;
  2614. background-color:rgba(255, 255, 255, 1);
  2615. box-sizing:border-box;
  2616. border-width:1px;
  2617. border-style:solid;
  2618. border-color:rgba(215, 215, 215, 1);
  2619. border-left:0px;
  2620. border-top:0px;
  2621. border-right:0px;
  2622. border-radius:0px;
  2623. border-bottom-right-radius:0px;
  2624. border-bottom-left-radius:0px;
  2625. -moz-box-shadow:none;
  2626. -webkit-box-shadow:none;
  2627. box-shadow:none;
  2628. }
  2629. #u155914 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:1885px;
  2633. top:67px;
  2634. width:375px;
  2635. height:40px;
  2636. display:flex;
  2637. }
  2638. #u155914 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 2px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u155914_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u155915 {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:0px;
  2657. height:0px;
  2658. }
  2659. #u155916_div {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:88px;
  2665. height:32px;
  2666. background:inherit;
  2667. background-color:rgba(255, 255, 255, 1);
  2668. box-sizing:border-box;
  2669. border-width:1px;
  2670. border-style:solid;
  2671. border-color:rgba(242, 242, 242, 1);
  2672. border-radius:33px;
  2673. -moz-box-shadow:none;
  2674. -webkit-box-shadow:none;
  2675. box-shadow:none;
  2676. }
  2677. #u155916 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:2165px;
  2681. top:71px;
  2682. width:88px;
  2683. height:32px;
  2684. display:flex;
  2685. }
  2686. #u155916 .text {
  2687. position:absolute;
  2688. align-self:center;
  2689. padding:2px 2px 2px 2px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u155916_text {
  2694. border-width:0px;
  2695. word-wrap:break-word;
  2696. text-transform:none;
  2697. visibility:hidden;
  2698. }
  2699. #u155917 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:0px;
  2705. height:0px;
  2706. }
  2707. #u155918_img {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:18px;
  2713. height:18px;
  2714. }
  2715. #u155918 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:2228px;
  2719. top:78px;
  2720. width:18px;
  2721. height:18px;
  2722. display:flex;
  2723. }
  2724. #u155918 .text {
  2725. position:absolute;
  2726. align-self:center;
  2727. padding:2px 2px 2px 2px;
  2728. box-sizing:border-box;
  2729. width:100%;
  2730. }
  2731. #u155918_text {
  2732. border-width:0px;
  2733. word-wrap:break-word;
  2734. text-transform:none;
  2735. visibility:hidden;
  2736. }
  2737. #u155919_img {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:6px;
  2743. height:6px;
  2744. }
  2745. #u155919 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:2234px;
  2749. top:84px;
  2750. width:6px;
  2751. height:6px;
  2752. display:flex;
  2753. }
  2754. #u155919 .text {
  2755. position:absolute;
  2756. align-self:center;
  2757. padding:2px 2px 2px 2px;
  2758. box-sizing:border-box;
  2759. width:100%;
  2760. }
  2761. #u155919_text {
  2762. border-width:0px;
  2763. word-wrap:break-word;
  2764. text-transform:none;
  2765. visibility:hidden;
  2766. }
  2767. #u155920 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:0px;
  2773. height:0px;
  2774. }
  2775. #u155921_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:5px;
  2781. height:5px;
  2782. }
  2783. #u155921 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:2179px;
  2787. top:85px;
  2788. width:5px;
  2789. height:5px;
  2790. display:flex;
  2791. }
  2792. #u155921 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:2px 2px 2px 2px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u155921_text {
  2800. border-width:0px;
  2801. word-wrap:break-word;
  2802. text-transform:none;
  2803. visibility:hidden;
  2804. }
  2805. #u155922_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:5px;
  2811. height:5px;
  2812. }
  2813. #u155922 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:2195px;
  2817. top:85px;
  2818. width:5px;
  2819. height:5px;
  2820. display:flex;
  2821. }
  2822. #u155922 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 2px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u155922_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u155923_img {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:7px;
  2841. height:7px;
  2842. }
  2843. #u155923 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:2186px;
  2847. top:84px;
  2848. width:7px;
  2849. height:7px;
  2850. display:flex;
  2851. }
  2852. #u155923 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 2px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u155923_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. visibility:hidden;
  2864. }
  2865. #u155924_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:19px;
  2871. height:2px;
  2872. }
  2873. #u155924 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:2203px;
  2877. top:87px;
  2878. width:18px;
  2879. height:1px;
  2880. display:flex;
  2881. -webkit-transform:rotate(90deg);
  2882. -moz-transform:rotate(90deg);
  2883. -ms-transform:rotate(90deg);
  2884. transform:rotate(90deg);
  2885. }
  2886. #u155924 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 2px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u155924_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u155925_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:375px;
  2905. height:44px;
  2906. }
  2907. #u155925 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:1885px;
  2911. top:24px;
  2912. width:375px;
  2913. height:44px;
  2914. display:flex;
  2915. }
  2916. #u155925 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u155925_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u155926_div {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:375px;
  2935. height:50px;
  2936. background:inherit;
  2937. background-color:rgba(255, 255, 255, 1);
  2938. box-sizing:border-box;
  2939. border-width:1px;
  2940. border-style:solid;
  2941. border-color:rgba(242, 242, 242, 1);
  2942. border-radius:26px;
  2943. border-top-left-radius:0px;
  2944. border-top-right-radius:0px;
  2945. -moz-box-shadow:none;
  2946. -webkit-box-shadow:none;
  2947. box-shadow:none;
  2948. }
  2949. #u155926 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:1885px;
  2953. top:788px;
  2954. width:375px;
  2955. height:50px;
  2956. display:flex;
  2957. }
  2958. #u155926 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u155926_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u155927 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:0px;
  2977. height:0px;
  2978. }
  2979. #u155928_img {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:24px;
  2985. height:24px;
  2986. }
  2987. #u155928 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:1925px;
  2991. top:792px;
  2992. width:24px;
  2993. height:24px;
  2994. display:flex;
  2995. font-size:8px;
  2996. }
  2997. #u155928 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 2px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u155928_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. }
  3009. #u155929_div {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:25px;
  3015. height:17px;
  3016. background:inherit;
  3017. background-color:rgba(255, 255, 255, 0);
  3018. border:none;
  3019. border-radius:0px;
  3020. -moz-box-shadow:none;
  3021. -webkit-box-shadow:none;
  3022. box-shadow:none;
  3023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3024. font-weight:400;
  3025. font-style:normal;
  3026. font-size:12px;
  3027. }
  3028. #u155929 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:1925px;
  3032. top:817px;
  3033. width:25px;
  3034. height:17px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:12px;
  3040. }
  3041. #u155929 .text {
  3042. position:absolute;
  3043. align-self:flex-start;
  3044. padding:0px 0px 0px 0px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u155929_text {
  3049. border-width:0px;
  3050. white-space:nowrap;
  3051. text-transform:none;
  3052. }
  3053. #u155930 {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:0px;
  3059. height:0px;
  3060. }
  3061. #u155931_img {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:24px;
  3067. height:24px;
  3068. }
  3069. #u155931 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:2195px;
  3073. top:794px;
  3074. width:24px;
  3075. height:24px;
  3076. display:flex;
  3077. font-size:8px;
  3078. }
  3079. #u155931 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 2px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u155931_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. }
  3091. #u155932_div {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:25px;
  3097. height:17px;
  3098. background:inherit;
  3099. background-color:rgba(255, 255, 255, 0);
  3100. border:none;
  3101. border-radius:0px;
  3102. -moz-box-shadow:none;
  3103. -webkit-box-shadow:none;
  3104. box-shadow:none;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:12px;
  3109. }
  3110. #u155932 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:2195px;
  3114. top:819px;
  3115. width:25px;
  3116. height:17px;
  3117. display:flex;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:12px;
  3122. }
  3123. #u155932 .text {
  3124. position:absolute;
  3125. align-self:flex-start;
  3126. padding:0px 0px 0px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u155932_text {
  3131. border-width:0px;
  3132. white-space:nowrap;
  3133. text-transform:none;
  3134. }
  3135. #u155933_div {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:375px;
  3141. height:681px;
  3142. background:inherit;
  3143. background-color:rgba(242, 242, 242, 0.462745098039216);
  3144. border:none;
  3145. border-radius:0px;
  3146. -moz-box-shadow:none;
  3147. -webkit-box-shadow:none;
  3148. box-shadow:none;
  3149. }
  3150. #u155933 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:1885px;
  3154. top:107px;
  3155. width:375px;
  3156. height:681px;
  3157. display:flex;
  3158. }
  3159. #u155933 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:2px 2px 2px 2px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u155933_text {
  3167. border-width:0px;
  3168. word-wrap:break-word;
  3169. text-transform:none;
  3170. visibility:hidden;
  3171. }
  3172. #u155934 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:0px;
  3178. height:0px;
  3179. }
  3180. #u155935_img {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:0px;
  3184. top:0px;
  3185. width:24px;
  3186. height:24px;
  3187. }
  3188. #u155935 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:2107px;
  3192. top:792px;
  3193. width:24px;
  3194. height:24px;
  3195. display:flex;
  3196. font-size:8px;
  3197. }
  3198. #u155935 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 2px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u155935_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. }
  3210. #u155936_div {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:37px;
  3216. height:17px;
  3217. background:inherit;
  3218. background-color:rgba(255, 255, 255, 0);
  3219. border:none;
  3220. border-radius:0px;
  3221. -moz-box-shadow:none;
  3222. -webkit-box-shadow:none;
  3223. box-shadow:none;
  3224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:12px;
  3228. }
  3229. #u155936 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:2101px;
  3233. top:817px;
  3234. width:37px;
  3235. height:17px;
  3236. display:flex;
  3237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:12px;
  3241. }
  3242. #u155936 .text {
  3243. position:absolute;
  3244. align-self:flex-start;
  3245. padding:0px 0px 0px 0px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u155936_text {
  3250. border-width:0px;
  3251. white-space:nowrap;
  3252. text-transform:none;
  3253. }
  3254. #u155937 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:0px;
  3260. height:0px;
  3261. }
  3262. #u155938_img {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:24px;
  3268. height:24px;
  3269. }
  3270. #u155938 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:2013px;
  3274. top:792px;
  3275. width:24px;
  3276. height:24px;
  3277. display:flex;
  3278. font-size:8px;
  3279. }
  3280. #u155938 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 2px 2px 2px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u155938_text {
  3288. border-width:0px;
  3289. word-wrap:break-word;
  3290. text-transform:none;
  3291. }
  3292. #u155939_div {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:37px;
  3298. height:17px;
  3299. background:inherit;
  3300. background-color:rgba(255, 255, 255, 0);
  3301. border:none;
  3302. border-radius:0px;
  3303. -moz-box-shadow:none;
  3304. -webkit-box-shadow:none;
  3305. box-shadow:none;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:12px;
  3310. }
  3311. #u155939 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:2007px;
  3315. top:817px;
  3316. width:37px;
  3317. height:17px;
  3318. display:flex;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:12px;
  3323. }
  3324. #u155939 .text {
  3325. position:absolute;
  3326. align-self:flex-start;
  3327. padding:0px 0px 0px 0px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u155939_text {
  3332. border-width:0px;
  3333. white-space:nowrap;
  3334. text-transform:none;
  3335. }
  3336. #u155940_img {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:375px;
  3342. height:731px;
  3343. }
  3344. #u155940 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:1885px;
  3348. top:108px;
  3349. width:375px;
  3350. height:731px;
  3351. display:flex;
  3352. }
  3353. #u155940 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:2px 2px 2px 2px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u155940_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. visibility:hidden;
  3365. }
  3366. #u155941 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:0px;
  3372. height:0px;
  3373. }
  3374. #u155942_img {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:11px;
  3380. height:18px;
  3381. }
  3382. #u155942 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:1895px;
  3386. top:80px;
  3387. width:11px;
  3388. height:18px;
  3389. display:flex;
  3390. }
  3391. #u155942 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 2px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u155942_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. visibility:hidden;
  3403. }
  3404. #u155943_div {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:29px;
  3410. height:30px;
  3411. background:inherit;
  3412. background-color:rgba(255, 255, 255, 0);
  3413. border:none;
  3414. border-left:0px;
  3415. border-top:0px;
  3416. border-right:0px;
  3417. border-radius:0px;
  3418. border-bottom-right-radius:0px;
  3419. border-bottom-left-radius:0px;
  3420. -moz-box-shadow:none;
  3421. -webkit-box-shadow:none;
  3422. box-shadow:none;
  3423. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3424. font-weight:500;
  3425. font-style:normal;
  3426. font-size:14px;
  3427. line-height:30px;
  3428. }
  3429. #u155943 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:1926px;
  3433. top:74px;
  3434. width:29px;
  3435. height:30px;
  3436. display:flex;
  3437. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3438. font-weight:500;
  3439. font-style:normal;
  3440. font-size:14px;
  3441. line-height:30px;
  3442. }
  3443. #u155943 .text {
  3444. position:absolute;
  3445. align-self:flex-start;
  3446. padding:0px 0px 0px 0px;
  3447. box-sizing:border-box;
  3448. width:100%;
  3449. }
  3450. #u155943_text {
  3451. border-width:0px;
  3452. white-space:nowrap;
  3453. text-transform:none;
  3454. }
  3455. #u155944 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:0px;
  3461. height:0px;
  3462. }
  3463. #u155945_div {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:0px;
  3467. top:0px;
  3468. width:376px;
  3469. height:60px;
  3470. background:inherit;
  3471. background-color:rgba(255, 255, 255, 1);
  3472. border:none;
  3473. border-top:0px;
  3474. border-radius:22px;
  3475. border-top-left-radius:0px;
  3476. border-top-right-radius:0px;
  3477. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3478. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3479. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3480. }
  3481. #u155945 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:491px;
  3485. top:779px;
  3486. width:376px;
  3487. height:60px;
  3488. display:flex;
  3489. }
  3490. #u155945 .text {
  3491. position:absolute;
  3492. align-self:center;
  3493. padding:2px 2px 2px 2px;
  3494. box-sizing:border-box;
  3495. width:100%;
  3496. }
  3497. #u155945_text {
  3498. border-width:0px;
  3499. word-wrap:break-word;
  3500. text-transform:none;
  3501. visibility:hidden;
  3502. }
  3503. #u155946_div {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:336px;
  3509. height:40px;
  3510. background:inherit;
  3511. background-color:rgba(41, 143, 255, 1);
  3512. border:none;
  3513. border-radius:45px;
  3514. -moz-box-shadow:none;
  3515. -webkit-box-shadow:none;
  3516. box-shadow:none;
  3517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:14px;
  3521. color:#FFFFFF;
  3522. }
  3523. #u155946 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:516px;
  3527. top:789px;
  3528. width:336px;
  3529. height:40px;
  3530. display:flex;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:14px;
  3535. color:#FFFFFF;
  3536. }
  3537. #u155946 .text {
  3538. position:absolute;
  3539. align-self:center;
  3540. padding:2px 2px 2px 2px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u155946_text {
  3545. border-width:0px;
  3546. word-wrap:break-word;
  3547. text-transform:none;
  3548. }
  3549. #u155947_div {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:307px;
  3555. height:50px;
  3556. background:inherit;
  3557. background-color:rgba(255, 255, 255, 0);
  3558. border:none;
  3559. border-left:0px;
  3560. border-top:0px;
  3561. border-right:0px;
  3562. border-radius:0px;
  3563. border-bottom-right-radius:0px;
  3564. border-bottom-left-radius:0px;
  3565. -moz-box-shadow:none;
  3566. -webkit-box-shadow:none;
  3567. box-shadow:none;
  3568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:14px;
  3572. color:#D9001B;
  3573. line-height:25px;
  3574. }
  3575. #u155947 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:1910px;
  3579. top:592px;
  3580. width:307px;
  3581. height:50px;
  3582. display:flex;
  3583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3584. font-weight:400;
  3585. font-style:normal;
  3586. font-size:14px;
  3587. color:#D9001B;
  3588. line-height:25px;
  3589. }
  3590. #u155947 .text {
  3591. position:absolute;
  3592. align-self:flex-start;
  3593. padding:0px 0px 0px 0px;
  3594. box-sizing:border-box;
  3595. width:100%;
  3596. }
  3597. #u155947_text {
  3598. border-width:0px;
  3599. word-wrap:break-word;
  3600. text-transform:none;
  3601. }
  3602. #u155948 {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:0px;
  3608. height:0px;
  3609. }
  3610. #u155949_div {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:375px;
  3616. height:154px;
  3617. background:inherit;
  3618. background-color:rgba(255, 255, 255, 1);
  3619. border:none;
  3620. border-left:0px;
  3621. border-top:0px;
  3622. border-right:0px;
  3623. border-radius:0px;
  3624. border-bottom-right-radius:0px;
  3625. border-bottom-left-radius:0px;
  3626. -moz-box-shadow:none;
  3627. -webkit-box-shadow:none;
  3628. box-shadow:none;
  3629. }
  3630. #u155949 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:492px;
  3634. top:108px;
  3635. width:375px;
  3636. height:154px;
  3637. display:flex;
  3638. }
  3639. #u155949 .text {
  3640. position:absolute;
  3641. align-self:center;
  3642. padding:2px 2px 2px 2px;
  3643. box-sizing:border-box;
  3644. width:100%;
  3645. }
  3646. #u155949_text {
  3647. border-width:0px;
  3648. word-wrap:break-word;
  3649. text-transform:none;
  3650. visibility:hidden;
  3651. }
  3652. #u155950_img {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:6px;
  3658. height:10px;
  3659. }
  3660. #u155950 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:844px;
  3664. top:128px;
  3665. width:6px;
  3666. height:10px;
  3667. display:flex;
  3668. -webkit-transform:rotate(270deg);
  3669. -moz-transform:rotate(270deg);
  3670. -ms-transform:rotate(270deg);
  3671. transform:rotate(270deg);
  3672. }
  3673. #u155950 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 2px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u155950_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. visibility:hidden;
  3685. }
  3686. #u155951_div {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:75px;
  3692. height:40px;
  3693. background:inherit;
  3694. background-color:rgba(255, 255, 255, 0);
  3695. border:none;
  3696. border-top:0px;
  3697. border-right:0px;
  3698. border-bottom:0px;
  3699. border-radius:0px;
  3700. border-top-left-radius:0px;
  3701. border-bottom-left-radius:0px;
  3702. -moz-box-shadow:none;
  3703. -webkit-box-shadow:none;
  3704. box-shadow:none;
  3705. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3706. font-weight:500;
  3707. font-style:normal;
  3708. font-size:14px;
  3709. line-height:30px;
  3710. }
  3711. #u155951 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:502px;
  3715. top:113px;
  3716. width:75px;
  3717. height:40px;
  3718. display:flex;
  3719. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3720. font-weight:500;
  3721. font-style:normal;
  3722. font-size:14px;
  3723. line-height:30px;
  3724. }
  3725. #u155951 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:5px 10px 5px 0px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u155951_text {
  3733. border-width:0px;
  3734. white-space:nowrap;
  3735. text-transform:none;
  3736. }
  3737. #u155952_div {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:109px;
  3743. height:17px;
  3744. background:inherit;
  3745. background-color:rgba(255, 255, 255, 0);
  3746. border:none;
  3747. border-left:0px;
  3748. border-top:0px;
  3749. border-right:0px;
  3750. border-radius:0px;
  3751. border-bottom-right-radius:0px;
  3752. border-bottom-left-radius:0px;
  3753. -moz-box-shadow:none;
  3754. -webkit-box-shadow:none;
  3755. box-shadow:none;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:12px;
  3760. color:#298FFF;
  3761. }
  3762. #u155952 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:502px;
  3766. top:148px;
  3767. width:109px;
  3768. height:17px;
  3769. display:flex;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:12px;
  3774. color:#298FFF;
  3775. }
  3776. #u155952 .text {
  3777. position:absolute;
  3778. align-self:flex-start;
  3779. padding:0px 0px 0px 0px;
  3780. box-sizing:border-box;
  3781. width:100%;
  3782. }
  3783. #u155952_text {
  3784. border-width:0px;
  3785. white-space:nowrap;
  3786. text-transform:none;
  3787. }
  3788. #u155953_div {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:201px;
  3794. height:25px;
  3795. background:inherit;
  3796. background-color:rgba(255, 255, 255, 0);
  3797. border:none;
  3798. border-left:0px;
  3799. border-top:0px;
  3800. border-right:0px;
  3801. border-radius:0px;
  3802. border-bottom-right-radius:0px;
  3803. border-bottom-left-radius:0px;
  3804. -moz-box-shadow:none;
  3805. -webkit-box-shadow:none;
  3806. box-shadow:none;
  3807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:12px;
  3811. line-height:25px;
  3812. }
  3813. #u155953 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:502px;
  3817. top:175px;
  3818. width:201px;
  3819. height:25px;
  3820. display:flex;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:12px;
  3825. line-height:25px;
  3826. }
  3827. #u155953 .text {
  3828. position:absolute;
  3829. align-self:flex-start;
  3830. padding:0px 0px 0px 0px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u155953_text {
  3835. border-width:0px;
  3836. white-space:nowrap;
  3837. text-transform:none;
  3838. }
  3839. #u155954_div {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:115px;
  3845. height:25px;
  3846. background:inherit;
  3847. background-color:rgba(255, 255, 255, 0);
  3848. border:none;
  3849. border-left:0px;
  3850. border-top:0px;
  3851. border-right:0px;
  3852. border-radius:0px;
  3853. border-bottom-right-radius:0px;
  3854. border-bottom-left-radius:0px;
  3855. -moz-box-shadow:none;
  3856. -webkit-box-shadow:none;
  3857. box-shadow:none;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:12px;
  3862. line-height:25px;
  3863. }
  3864. #u155954 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:502px;
  3868. top:200px;
  3869. width:115px;
  3870. height:25px;
  3871. display:flex;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:12px;
  3876. line-height:25px;
  3877. }
  3878. #u155954 .text {
  3879. position:absolute;
  3880. align-self:flex-start;
  3881. padding:0px 0px 0px 0px;
  3882. box-sizing:border-box;
  3883. width:100%;
  3884. }
  3885. #u155954_text {
  3886. border-width:0px;
  3887. white-space:nowrap;
  3888. text-transform:none;
  3889. }
  3890. #u155955_div {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:109px;
  3896. height:25px;
  3897. background:inherit;
  3898. background-color:rgba(255, 255, 255, 0);
  3899. border:none;
  3900. border-left:0px;
  3901. border-top:0px;
  3902. border-right:0px;
  3903. border-radius:0px;
  3904. border-bottom-right-radius:0px;
  3905. border-bottom-left-radius:0px;
  3906. -moz-box-shadow:none;
  3907. -webkit-box-shadow:none;
  3908. box-shadow:none;
  3909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3910. font-weight:400;
  3911. font-style:normal;
  3912. font-size:12px;
  3913. line-height:25px;
  3914. }
  3915. #u155955 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:502px;
  3919. top:225px;
  3920. width:109px;
  3921. height:25px;
  3922. display:flex;
  3923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3924. font-weight:400;
  3925. font-style:normal;
  3926. font-size:12px;
  3927. line-height:25px;
  3928. }
  3929. #u155955 .text {
  3930. position:absolute;
  3931. align-self:flex-start;
  3932. padding:0px 0px 0px 0px;
  3933. box-sizing:border-box;
  3934. width:100%;
  3935. }
  3936. #u155955_text {
  3937. border-width:0px;
  3938. white-space:nowrap;
  3939. text-transform:none;
  3940. }
  3941. #u155956_div {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:40px;
  3947. height:20px;
  3948. background:inherit;
  3949. background-color:rgba(242, 242, 242, 0);
  3950. border:none;
  3951. border-radius:29px;
  3952. -moz-box-shadow:none;
  3953. -webkit-box-shadow:none;
  3954. box-shadow:none;
  3955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. color:#00BFBF;
  3960. text-align:center;
  3961. line-height:20px;
  3962. }
  3963. #u155956 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:793px;
  3967. top:122px;
  3968. width:40px;
  3969. height:20px;
  3970. display:flex;
  3971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:12px;
  3975. color:#00BFBF;
  3976. text-align:center;
  3977. line-height:20px;
  3978. }
  3979. #u155956 .text {
  3980. position:absolute;
  3981. align-self:flex-start;
  3982. padding:0px 0px 0px 0px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u155956_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. }
  3991. #u155957 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:0px;
  3997. height:0px;
  3998. }
  3999. #u155958_div {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:375px;
  4005. height:154px;
  4006. background:inherit;
  4007. background-color:rgba(255, 255, 255, 1);
  4008. border:none;
  4009. border-left:0px;
  4010. border-top:0px;
  4011. border-right:0px;
  4012. border-radius:0px;
  4013. border-bottom-right-radius:0px;
  4014. border-bottom-left-radius:0px;
  4015. -moz-box-shadow:none;
  4016. -webkit-box-shadow:none;
  4017. box-shadow:none;
  4018. }
  4019. #u155958 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:1885px;
  4023. top:108px;
  4024. width:375px;
  4025. height:154px;
  4026. display:flex;
  4027. }
  4028. #u155958 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 2px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u155958_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u155959_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:6px;
  4047. height:10px;
  4048. }
  4049. #u155959 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:2237px;
  4053. top:128px;
  4054. width:6px;
  4055. height:10px;
  4056. display:flex;
  4057. -webkit-transform:rotate(270deg);
  4058. -moz-transform:rotate(270deg);
  4059. -ms-transform:rotate(270deg);
  4060. transform:rotate(270deg);
  4061. }
  4062. #u155959 .text {
  4063. position:absolute;
  4064. align-self:center;
  4065. padding:2px 2px 2px 2px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u155959_text {
  4070. border-width:0px;
  4071. word-wrap:break-word;
  4072. text-transform:none;
  4073. visibility:hidden;
  4074. }
  4075. #u155960_div {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:75px;
  4081. height:40px;
  4082. background:inherit;
  4083. background-color:rgba(255, 255, 255, 0);
  4084. border:none;
  4085. border-top:0px;
  4086. border-right:0px;
  4087. border-bottom:0px;
  4088. border-radius:0px;
  4089. border-top-left-radius:0px;
  4090. border-bottom-left-radius:0px;
  4091. -moz-box-shadow:none;
  4092. -webkit-box-shadow:none;
  4093. box-shadow:none;
  4094. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4095. font-weight:500;
  4096. font-style:normal;
  4097. font-size:14px;
  4098. line-height:30px;
  4099. }
  4100. #u155960 {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:1895px;
  4104. top:113px;
  4105. width:75px;
  4106. height:40px;
  4107. display:flex;
  4108. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4109. font-weight:500;
  4110. font-style:normal;
  4111. font-size:14px;
  4112. line-height:30px;
  4113. }
  4114. #u155960 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:5px 10px 5px 0px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u155960_text {
  4122. border-width:0px;
  4123. white-space:nowrap;
  4124. text-transform:none;
  4125. }
  4126. #u155961_div {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:109px;
  4132. height:17px;
  4133. background:inherit;
  4134. background-color:rgba(255, 255, 255, 0);
  4135. border:none;
  4136. border-left:0px;
  4137. border-top:0px;
  4138. border-right:0px;
  4139. border-radius:0px;
  4140. border-bottom-right-radius:0px;
  4141. border-bottom-left-radius:0px;
  4142. -moz-box-shadow:none;
  4143. -webkit-box-shadow:none;
  4144. box-shadow:none;
  4145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:12px;
  4149. color:#298FFF;
  4150. }
  4151. #u155961 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:1895px;
  4155. top:148px;
  4156. width:109px;
  4157. height:17px;
  4158. display:flex;
  4159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:12px;
  4163. color:#298FFF;
  4164. }
  4165. #u155961 .text {
  4166. position:absolute;
  4167. align-self:flex-start;
  4168. padding:0px 0px 0px 0px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u155961_text {
  4173. border-width:0px;
  4174. white-space:nowrap;
  4175. text-transform:none;
  4176. }
  4177. #u155962_div {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:201px;
  4183. height:25px;
  4184. background:inherit;
  4185. background-color:rgba(255, 255, 255, 0);
  4186. border:none;
  4187. border-left:0px;
  4188. border-top:0px;
  4189. border-right:0px;
  4190. border-radius:0px;
  4191. border-bottom-right-radius:0px;
  4192. border-bottom-left-radius:0px;
  4193. -moz-box-shadow:none;
  4194. -webkit-box-shadow:none;
  4195. box-shadow:none;
  4196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4197. font-weight:400;
  4198. font-style:normal;
  4199. font-size:12px;
  4200. line-height:25px;
  4201. }
  4202. #u155962 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:1895px;
  4206. top:175px;
  4207. width:201px;
  4208. height:25px;
  4209. display:flex;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:12px;
  4214. line-height:25px;
  4215. }
  4216. #u155962 .text {
  4217. position:absolute;
  4218. align-self:flex-start;
  4219. padding:0px 0px 0px 0px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u155962_text {
  4224. border-width:0px;
  4225. white-space:nowrap;
  4226. text-transform:none;
  4227. }
  4228. #u155963_div {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:0px;
  4233. width:115px;
  4234. height:25px;
  4235. background:inherit;
  4236. background-color:rgba(255, 255, 255, 0);
  4237. border:none;
  4238. border-left:0px;
  4239. border-top:0px;
  4240. border-right:0px;
  4241. border-radius:0px;
  4242. border-bottom-right-radius:0px;
  4243. border-bottom-left-radius:0px;
  4244. -moz-box-shadow:none;
  4245. -webkit-box-shadow:none;
  4246. box-shadow:none;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:12px;
  4251. line-height:25px;
  4252. }
  4253. #u155963 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:1895px;
  4257. top:200px;
  4258. width:115px;
  4259. height:25px;
  4260. display:flex;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:12px;
  4265. line-height:25px;
  4266. }
  4267. #u155963 .text {
  4268. position:absolute;
  4269. align-self:flex-start;
  4270. padding:0px 0px 0px 0px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u155963_text {
  4275. border-width:0px;
  4276. white-space:nowrap;
  4277. text-transform:none;
  4278. }
  4279. #u155964_div {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:0px;
  4283. top:0px;
  4284. width:109px;
  4285. height:25px;
  4286. background:inherit;
  4287. background-color:rgba(255, 255, 255, 0);
  4288. border:none;
  4289. border-left:0px;
  4290. border-top:0px;
  4291. border-right:0px;
  4292. border-radius:0px;
  4293. border-bottom-right-radius:0px;
  4294. border-bottom-left-radius:0px;
  4295. -moz-box-shadow:none;
  4296. -webkit-box-shadow:none;
  4297. box-shadow:none;
  4298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4299. font-weight:400;
  4300. font-style:normal;
  4301. font-size:12px;
  4302. line-height:25px;
  4303. }
  4304. #u155964 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:1895px;
  4308. top:225px;
  4309. width:109px;
  4310. height:25px;
  4311. display:flex;
  4312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4313. font-weight:400;
  4314. font-style:normal;
  4315. font-size:12px;
  4316. line-height:25px;
  4317. }
  4318. #u155964 .text {
  4319. position:absolute;
  4320. align-self:flex-start;
  4321. padding:0px 0px 0px 0px;
  4322. box-sizing:border-box;
  4323. width:100%;
  4324. }
  4325. #u155964_text {
  4326. border-width:0px;
  4327. white-space:nowrap;
  4328. text-transform:none;
  4329. }
  4330. #u155965_div {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:40px;
  4336. height:20px;
  4337. background:inherit;
  4338. background-color:rgba(242, 242, 242, 0);
  4339. border:none;
  4340. border-radius:29px;
  4341. -moz-box-shadow:none;
  4342. -webkit-box-shadow:none;
  4343. box-shadow:none;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:12px;
  4348. color:#AAAAAA;
  4349. text-align:center;
  4350. line-height:20px;
  4351. }
  4352. #u155965 {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:2187px;
  4356. top:123px;
  4357. width:40px;
  4358. height:20px;
  4359. display:flex;
  4360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:12px;
  4364. color:#AAAAAA;
  4365. text-align:center;
  4366. line-height:20px;
  4367. }
  4368. #u155965 .text {
  4369. position:absolute;
  4370. align-self:flex-start;
  4371. padding:0px 0px 0px 0px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u155965_text {
  4376. border-width:0px;
  4377. word-wrap:break-word;
  4378. text-transform:none;
  4379. }
  4380. #u155966_div {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:61px;
  4386. height:20px;
  4387. background:inherit;
  4388. background-color:rgba(242, 242, 242, 0);
  4389. border:none;
  4390. border-radius:29px;
  4391. -moz-box-shadow:none;
  4392. -webkit-box-shadow:none;
  4393. box-shadow:none;
  4394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:10px;
  4398. color:#F59A23;
  4399. text-align:center;
  4400. line-height:20px;
  4401. }
  4402. #u155966 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:2166px;
  4406. top:143px;
  4407. width:61px;
  4408. height:20px;
  4409. display:flex;
  4410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4411. font-weight:400;
  4412. font-style:normal;
  4413. font-size:10px;
  4414. color:#F59A23;
  4415. text-align:center;
  4416. line-height:20px;
  4417. }
  4418. #u155966 .text {
  4419. position:absolute;
  4420. align-self:flex-start;
  4421. padding:0px 0px 0px 0px;
  4422. box-sizing:border-box;
  4423. width:100%;
  4424. }
  4425. #u155966_text {
  4426. border-width:0px;
  4427. white-space:nowrap;
  4428. text-transform:none;
  4429. }
  4430. #u155967_div {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:375px;
  4436. height:507px;
  4437. background:inherit;
  4438. background-color:rgba(255, 255, 255, 1);
  4439. border:none;
  4440. border-left:0px;
  4441. border-top:0px;
  4442. border-right:0px;
  4443. border-radius:0px;
  4444. border-bottom-right-radius:0px;
  4445. border-bottom-left-radius:0px;
  4446. -moz-box-shadow:none;
  4447. -webkit-box-shadow:none;
  4448. box-shadow:none;
  4449. }
  4450. #u155967 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:492px;
  4454. top:272px;
  4455. width:375px;
  4456. height:507px;
  4457. display:flex;
  4458. }
  4459. #u155967 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 2px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u155967_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. visibility:hidden;
  4471. }
  4472. #u155968_div {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:353px;
  4478. height:30px;
  4479. background:inherit;
  4480. background-color:rgba(255, 255, 255, 0);
  4481. border:none;
  4482. border-top:0px;
  4483. border-right:0px;
  4484. border-bottom:0px;
  4485. border-radius:0px;
  4486. border-top-left-radius:0px;
  4487. border-bottom-left-radius:0px;
  4488. -moz-box-shadow:none;
  4489. -webkit-box-shadow:none;
  4490. box-shadow:none;
  4491. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4492. font-weight:500;
  4493. font-style:normal;
  4494. font-size:14px;
  4495. line-height:30px;
  4496. }
  4497. #u155968 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:505px;
  4501. top:282px;
  4502. width:353px;
  4503. height:30px;
  4504. display:flex;
  4505. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4506. font-weight:500;
  4507. font-style:normal;
  4508. font-size:14px;
  4509. line-height:30px;
  4510. }
  4511. #u155968 .text {
  4512. position:absolute;
  4513. align-self:center;
  4514. padding:5px 10px 5px 0px;
  4515. box-sizing:border-box;
  4516. width:100%;
  4517. }
  4518. #u155968_text {
  4519. border-width:0px;
  4520. word-wrap:break-word;
  4521. text-transform:none;
  4522. }
  4523. #u155969 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:0px;
  4529. height:0px;
  4530. }
  4531. #u155970_div {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:375px;
  4537. height:273px;
  4538. background:inherit;
  4539. background-color:rgba(255, 255, 255, 1);
  4540. border:none;
  4541. border-left:0px;
  4542. border-top:0px;
  4543. border-right:0px;
  4544. border-radius:0px;
  4545. border-bottom-right-radius:0px;
  4546. border-bottom-left-radius:0px;
  4547. -moz-box-shadow:none;
  4548. -webkit-box-shadow:none;
  4549. box-shadow:none;
  4550. }
  4551. #u155970 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:1885px;
  4555. top:272px;
  4556. width:375px;
  4557. height:273px;
  4558. display:flex;
  4559. }
  4560. #u155970 .text {
  4561. position:absolute;
  4562. align-self:center;
  4563. padding:2px 2px 2px 2px;
  4564. box-sizing:border-box;
  4565. width:100%;
  4566. }
  4567. #u155970_text {
  4568. border-width:0px;
  4569. word-wrap:break-word;
  4570. text-transform:none;
  4571. visibility:hidden;
  4572. }
  4573. #u155971_div {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:353px;
  4579. height:30px;
  4580. background:inherit;
  4581. background-color:rgba(255, 255, 255, 0);
  4582. border:none;
  4583. border-top:0px;
  4584. border-right:0px;
  4585. border-bottom:0px;
  4586. border-radius:0px;
  4587. border-top-left-radius:0px;
  4588. border-bottom-left-radius:0px;
  4589. -moz-box-shadow:none;
  4590. -webkit-box-shadow:none;
  4591. box-shadow:none;
  4592. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4593. font-weight:500;
  4594. font-style:normal;
  4595. font-size:14px;
  4596. line-height:30px;
  4597. }
  4598. #u155971 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:1898px;
  4602. top:282px;
  4603. width:353px;
  4604. height:30px;
  4605. display:flex;
  4606. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4607. font-weight:500;
  4608. font-style:normal;
  4609. font-size:14px;
  4610. line-height:30px;
  4611. }
  4612. #u155971 .text {
  4613. position:absolute;
  4614. align-self:center;
  4615. padding:5px 10px 5px 0px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u155971_text {
  4620. border-width:0px;
  4621. word-wrap:break-word;
  4622. text-transform:none;
  4623. }
  4624. #u155972 label {
  4625. left:0px;
  4626. width:100%;
  4627. }
  4628. #u155972_img {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:3px;
  4633. width:12px;
  4634. height:12px;
  4635. }
  4636. #u155972 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:1913px;
  4640. top:347px;
  4641. width:100px;
  4642. height:18px;
  4643. display:flex;
  4644. }
  4645. #u155972 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:0px 2px 0px 2px;
  4649. box-sizing:border-box;
  4650. }
  4651. #u155972_img.selected {
  4652. }
  4653. #u155972.selected {
  4654. }
  4655. #u155972_img.disabled {
  4656. }
  4657. #u155972.disabled {
  4658. }
  4659. #u155972_img.selectedDisabled {
  4660. }
  4661. #u155972.selectedDisabled {
  4662. }
  4663. #u155972_text {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:14px;
  4667. top:0px;
  4668. width:84px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. }
  4672. #u155972_input {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:0px;
  4678. height:0px;
  4679. opacity:0;
  4680. }
  4681. #u155973 label {
  4682. left:0px;
  4683. width:100%;
  4684. }
  4685. #u155973_img {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:3px;
  4690. width:12px;
  4691. height:12px;
  4692. }
  4693. #u155973 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:2013px;
  4697. top:347px;
  4698. width:100px;
  4699. height:18px;
  4700. display:flex;
  4701. }
  4702. #u155973 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:0px 2px 0px 2px;
  4706. box-sizing:border-box;
  4707. }
  4708. #u155973_img.selected {
  4709. }
  4710. #u155973.selected {
  4711. }
  4712. #u155973_img.disabled {
  4713. }
  4714. #u155973.disabled {
  4715. }
  4716. #u155973_img.selectedDisabled {
  4717. }
  4718. #u155973.selectedDisabled {
  4719. }
  4720. #u155973_text {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:14px;
  4724. top:0px;
  4725. width:84px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. }
  4729. #u155973_input {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:0px;
  4735. height:0px;
  4736. opacity:0;
  4737. }
  4738. #u155974 label {
  4739. left:0px;
  4740. width:100%;
  4741. }
  4742. #u155974_img {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:3px;
  4747. width:12px;
  4748. height:12px;
  4749. }
  4750. #u155974 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:2113px;
  4754. top:347px;
  4755. width:100px;
  4756. height:18px;
  4757. display:flex;
  4758. }
  4759. #u155974 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:0px 2px 0px 2px;
  4763. box-sizing:border-box;
  4764. }
  4765. #u155974_img.selected {
  4766. }
  4767. #u155974.selected {
  4768. }
  4769. #u155974_img.disabled {
  4770. }
  4771. #u155974.disabled {
  4772. }
  4773. #u155974_img.selectedDisabled {
  4774. }
  4775. #u155974.selectedDisabled {
  4776. }
  4777. #u155974_text {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:14px;
  4781. top:0px;
  4782. width:84px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. }
  4786. #u155974_input {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:0px;
  4792. height:0px;
  4793. opacity:0;
  4794. }
  4795. #u155975 label {
  4796. left:0px;
  4797. width:100%;
  4798. }
  4799. #u155975_img {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:0px;
  4803. top:3px;
  4804. width:12px;
  4805. height:12px;
  4806. }
  4807. #u155975 {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:1913px;
  4811. top:375px;
  4812. width:100px;
  4813. height:18px;
  4814. display:flex;
  4815. }
  4816. #u155975 .text {
  4817. position:absolute;
  4818. align-self:center;
  4819. padding:0px 2px 0px 2px;
  4820. box-sizing:border-box;
  4821. }
  4822. #u155975_img.selected {
  4823. }
  4824. #u155975.selected {
  4825. }
  4826. #u155975_img.disabled {
  4827. }
  4828. #u155975.disabled {
  4829. }
  4830. #u155975_img.selectedDisabled {
  4831. }
  4832. #u155975.selectedDisabled {
  4833. }
  4834. #u155975_text {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:14px;
  4838. top:0px;
  4839. width:84px;
  4840. word-wrap:break-word;
  4841. text-transform:none;
  4842. }
  4843. #u155975_input {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:0px;
  4849. height:0px;
  4850. opacity:0;
  4851. }
  4852. #u155976 label {
  4853. left:0px;
  4854. width:100%;
  4855. }
  4856. #u155976_img {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:3px;
  4861. width:12px;
  4862. height:12px;
  4863. }
  4864. #u155976 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:2013px;
  4868. top:375px;
  4869. width:100px;
  4870. height:18px;
  4871. display:flex;
  4872. }
  4873. #u155976 .text {
  4874. position:absolute;
  4875. align-self:center;
  4876. padding:0px 2px 0px 2px;
  4877. box-sizing:border-box;
  4878. }
  4879. #u155976_img.selected {
  4880. }
  4881. #u155976.selected {
  4882. }
  4883. #u155976_img.disabled {
  4884. }
  4885. #u155976.disabled {
  4886. }
  4887. #u155976_img.selectedDisabled {
  4888. }
  4889. #u155976.selectedDisabled {
  4890. }
  4891. #u155976_text {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:14px;
  4895. top:0px;
  4896. width:84px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. }
  4900. #u155976_input {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:0px;
  4906. height:0px;
  4907. opacity:0;
  4908. }
  4909. #u155977 label {
  4910. left:0px;
  4911. width:100%;
  4912. }
  4913. #u155977_img {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:3px;
  4918. width:12px;
  4919. height:12px;
  4920. }
  4921. #u155977 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:2113px;
  4925. top:375px;
  4926. width:100px;
  4927. height:18px;
  4928. display:flex;
  4929. }
  4930. #u155977 .text {
  4931. position:absolute;
  4932. align-self:center;
  4933. padding:0px 2px 0px 2px;
  4934. box-sizing:border-box;
  4935. }
  4936. #u155977_img.selected {
  4937. }
  4938. #u155977.selected {
  4939. }
  4940. #u155977_img.disabled {
  4941. }
  4942. #u155977.disabled {
  4943. }
  4944. #u155977_img.selectedDisabled {
  4945. }
  4946. #u155977.selectedDisabled {
  4947. }
  4948. #u155977_text {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:14px;
  4952. top:0px;
  4953. width:84px;
  4954. word-wrap:break-word;
  4955. text-transform:none;
  4956. }
  4957. #u155977_input {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:0px;
  4963. height:0px;
  4964. opacity:0;
  4965. }
  4966. #u155978 label {
  4967. left:0px;
  4968. width:100%;
  4969. }
  4970. #u155978_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:3px;
  4975. width:12px;
  4976. height:12px;
  4977. }
  4978. #u155978 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:2210px;
  4982. top:288px;
  4983. width:50px;
  4984. height:18px;
  4985. display:flex;
  4986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. }
  4990. #u155978 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:0px 2px 0px 2px;
  4994. box-sizing:border-box;
  4995. }
  4996. #u155978_img.selected {
  4997. }
  4998. #u155978.selected {
  4999. }
  5000. #u155978_img.disabled {
  5001. }
  5002. #u155978.disabled {
  5003. }
  5004. #u155978_img.selectedDisabled {
  5005. }
  5006. #u155978.selectedDisabled {
  5007. }
  5008. #u155978_text {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:14px;
  5012. top:0px;
  5013. width:34px;
  5014. word-wrap:break-word;
  5015. text-transform:none;
  5016. }
  5017. #u155978_input {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:0px;
  5023. height:0px;
  5024. opacity:0;
  5025. }
  5026. #u155979 label {
  5027. left:0px;
  5028. width:100%;
  5029. }
  5030. #u155979_img {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:3px;
  5035. width:12px;
  5036. height:12px;
  5037. }
  5038. #u155979 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:1898px;
  5042. top:321px;
  5043. width:50px;
  5044. height:18px;
  5045. display:flex;
  5046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5047. font-weight:400;
  5048. font-style:normal;
  5049. }
  5050. #u155979 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:0px 2px 0px 2px;
  5054. box-sizing:border-box;
  5055. }
  5056. #u155979_img.selected {
  5057. }
  5058. #u155979.selected {
  5059. }
  5060. #u155979_img.disabled {
  5061. }
  5062. #u155979.disabled {
  5063. }
  5064. #u155979_img.selectedDisabled {
  5065. }
  5066. #u155979.selectedDisabled {
  5067. }
  5068. #u155979_text {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:14px;
  5072. top:0px;
  5073. width:34px;
  5074. word-wrap:break-word;
  5075. text-transform:none;
  5076. }
  5077. #u155979_input {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:0px;
  5083. height:0px;
  5084. opacity:0;
  5085. }
  5086. #u155980 label {
  5087. left:0px;
  5088. width:100%;
  5089. }
  5090. #u155980_img {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:0px;
  5094. top:3px;
  5095. width:12px;
  5096. height:12px;
  5097. }
  5098. #u155980 {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:1913px;
  5102. top:429px;
  5103. width:100px;
  5104. height:18px;
  5105. display:flex;
  5106. }
  5107. #u155980 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:0px 2px 0px 2px;
  5111. box-sizing:border-box;
  5112. }
  5113. #u155980_img.selected {
  5114. }
  5115. #u155980.selected {
  5116. }
  5117. #u155980_img.disabled {
  5118. }
  5119. #u155980.disabled {
  5120. }
  5121. #u155980_img.selectedDisabled {
  5122. }
  5123. #u155980.selectedDisabled {
  5124. }
  5125. #u155980_text {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:14px;
  5129. top:0px;
  5130. width:84px;
  5131. word-wrap:break-word;
  5132. text-transform:none;
  5133. }
  5134. #u155980_input {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:0px;
  5140. height:0px;
  5141. opacity:0;
  5142. }
  5143. #u155981 label {
  5144. left:0px;
  5145. width:100%;
  5146. }
  5147. #u155981_img {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:3px;
  5152. width:12px;
  5153. height:12px;
  5154. }
  5155. #u155981 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:2013px;
  5159. top:429px;
  5160. width:100px;
  5161. height:18px;
  5162. display:flex;
  5163. }
  5164. #u155981 .text {
  5165. position:absolute;
  5166. align-self:center;
  5167. padding:0px 2px 0px 2px;
  5168. box-sizing:border-box;
  5169. }
  5170. #u155981_img.selected {
  5171. }
  5172. #u155981.selected {
  5173. }
  5174. #u155981_img.disabled {
  5175. }
  5176. #u155981.disabled {
  5177. }
  5178. #u155981_img.selectedDisabled {
  5179. }
  5180. #u155981.selectedDisabled {
  5181. }
  5182. #u155981_text {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:14px;
  5186. top:0px;
  5187. width:84px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. }
  5191. #u155981_input {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:0px;
  5197. height:0px;
  5198. opacity:0;
  5199. }
  5200. #u155982 label {
  5201. left:0px;
  5202. width:100%;
  5203. }
  5204. #u155982_img {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:3px;
  5209. width:12px;
  5210. height:12px;
  5211. }
  5212. #u155982 {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:2113px;
  5216. top:429px;
  5217. width:100px;
  5218. height:18px;
  5219. display:flex;
  5220. }
  5221. #u155982 .text {
  5222. position:absolute;
  5223. align-self:center;
  5224. padding:0px 2px 0px 2px;
  5225. box-sizing:border-box;
  5226. }
  5227. #u155982_img.selected {
  5228. }
  5229. #u155982.selected {
  5230. }
  5231. #u155982_img.disabled {
  5232. }
  5233. #u155982.disabled {
  5234. }
  5235. #u155982_img.selectedDisabled {
  5236. }
  5237. #u155982.selectedDisabled {
  5238. }
  5239. #u155982_text {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:14px;
  5243. top:0px;
  5244. width:84px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. }
  5248. #u155982_input {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:0px;
  5254. height:0px;
  5255. opacity:0;
  5256. }
  5257. #u155983 label {
  5258. left:0px;
  5259. width:100%;
  5260. }
  5261. #u155983_img {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:3px;
  5266. width:12px;
  5267. height:12px;
  5268. }
  5269. #u155983 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:1913px;
  5273. top:457px;
  5274. width:100px;
  5275. height:18px;
  5276. display:flex;
  5277. }
  5278. #u155983 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:0px 2px 0px 2px;
  5282. box-sizing:border-box;
  5283. }
  5284. #u155983_img.selected {
  5285. }
  5286. #u155983.selected {
  5287. }
  5288. #u155983_img.disabled {
  5289. }
  5290. #u155983.disabled {
  5291. }
  5292. #u155983_img.selectedDisabled {
  5293. }
  5294. #u155983.selectedDisabled {
  5295. }
  5296. #u155983_text {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:14px;
  5300. top:0px;
  5301. width:84px;
  5302. word-wrap:break-word;
  5303. text-transform:none;
  5304. }
  5305. #u155983_input {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:0px;
  5311. height:0px;
  5312. opacity:0;
  5313. }
  5314. #u155984 label {
  5315. left:0px;
  5316. width:100%;
  5317. }
  5318. #u155984_img {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:3px;
  5323. width:12px;
  5324. height:12px;
  5325. }
  5326. #u155984 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:2013px;
  5330. top:457px;
  5331. width:100px;
  5332. height:18px;
  5333. display:flex;
  5334. }
  5335. #u155984 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:0px 2px 0px 2px;
  5339. box-sizing:border-box;
  5340. }
  5341. #u155984_img.selected {
  5342. }
  5343. #u155984.selected {
  5344. }
  5345. #u155984_img.disabled {
  5346. }
  5347. #u155984.disabled {
  5348. }
  5349. #u155984_img.selectedDisabled {
  5350. }
  5351. #u155984.selectedDisabled {
  5352. }
  5353. #u155984_text {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:14px;
  5357. top:0px;
  5358. width:84px;
  5359. word-wrap:break-word;
  5360. text-transform:none;
  5361. }
  5362. #u155984_input {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:0px;
  5368. height:0px;
  5369. opacity:0;
  5370. }
  5371. #u155985 label {
  5372. left:0px;
  5373. width:100%;
  5374. }
  5375. #u155985_img {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:3px;
  5380. width:12px;
  5381. height:12px;
  5382. }
  5383. #u155985 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:2113px;
  5387. top:457px;
  5388. width:100px;
  5389. height:18px;
  5390. display:flex;
  5391. }
  5392. #u155985 .text {
  5393. position:absolute;
  5394. align-self:center;
  5395. padding:0px 2px 0px 2px;
  5396. box-sizing:border-box;
  5397. }
  5398. #u155985_img.selected {
  5399. }
  5400. #u155985.selected {
  5401. }
  5402. #u155985_img.disabled {
  5403. }
  5404. #u155985.disabled {
  5405. }
  5406. #u155985_img.selectedDisabled {
  5407. }
  5408. #u155985.selectedDisabled {
  5409. }
  5410. #u155985_text {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:14px;
  5414. top:0px;
  5415. width:84px;
  5416. word-wrap:break-word;
  5417. text-transform:none;
  5418. }
  5419. #u155985_input {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:0px;
  5425. height:0px;
  5426. opacity:0;
  5427. }
  5428. #u155986 label {
  5429. left:0px;
  5430. width:100%;
  5431. }
  5432. #u155986_img {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:3px;
  5437. width:12px;
  5438. height:12px;
  5439. }
  5440. #u155986 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:1898px;
  5444. top:403px;
  5445. width:50px;
  5446. height:18px;
  5447. display:flex;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. }
  5452. #u155986 .text {
  5453. position:absolute;
  5454. align-self:center;
  5455. padding:0px 2px 0px 2px;
  5456. box-sizing:border-box;
  5457. }
  5458. #u155986_img.selected {
  5459. }
  5460. #u155986.selected {
  5461. }
  5462. #u155986_img.disabled {
  5463. }
  5464. #u155986.disabled {
  5465. }
  5466. #u155986_img.selectedDisabled {
  5467. }
  5468. #u155986.selectedDisabled {
  5469. }
  5470. #u155986_text {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:14px;
  5474. top:0px;
  5475. width:34px;
  5476. word-wrap:break-word;
  5477. text-transform:none;
  5478. }
  5479. #u155986_input {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:0px;
  5485. height:0px;
  5486. opacity:0;
  5487. }
  5488. #u155987 label {
  5489. left:0px;
  5490. width:100%;
  5491. }
  5492. #u155987_img {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:9px;
  5497. width:12px;
  5498. height:12px;
  5499. }
  5500. #u155987 {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:1898px;
  5504. top:491px;
  5505. width:170px;
  5506. height:30px;
  5507. display:flex;
  5508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5509. font-weight:400;
  5510. font-style:normal;
  5511. font-size:14px;
  5512. line-height:30px;
  5513. }
  5514. #u155987 .text {
  5515. position:absolute;
  5516. align-self:center;
  5517. padding:0px 2px 0px 2px;
  5518. box-sizing:border-box;
  5519. }
  5520. #u155987_img.selected {
  5521. }
  5522. #u155987.selected {
  5523. }
  5524. #u155987_img.disabled {
  5525. }
  5526. #u155987.disabled {
  5527. }
  5528. #u155987_img.selectedDisabled {
  5529. }
  5530. #u155987.selectedDisabled {
  5531. }
  5532. #u155987_text {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:14px;
  5536. top:0px;
  5537. width:154px;
  5538. word-wrap:break-word;
  5539. text-transform:none;
  5540. }
  5541. #u155987_input {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:0px;
  5547. height:0px;
  5548. opacity:0;
  5549. }
  5550. #u155988 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:0px;
  5556. height:0px;
  5557. }
  5558. #u155989_div {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:347px;
  5564. height:70px;
  5565. background:inherit;
  5566. background-color:rgba(242, 242, 242, 1);
  5567. border:none;
  5568. border-radius:4px;
  5569. -moz-box-shadow:none;
  5570. -webkit-box-shadow:none;
  5571. box-shadow:none;
  5572. }
  5573. #u155989 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:505px;
  5577. top:312px;
  5578. width:347px;
  5579. height:70px;
  5580. display:flex;
  5581. }
  5582. #u155989 .text {
  5583. position:absolute;
  5584. align-self:center;
  5585. padding:2px 2px 2px 2px;
  5586. box-sizing:border-box;
  5587. width:100%;
  5588. }
  5589. #u155989_text {
  5590. border-width:0px;
  5591. word-wrap:break-word;
  5592. text-transform:none;
  5593. visibility:hidden;
  5594. }
  5595. #u155990_div {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:0px;
  5599. top:0px;
  5600. width:85px;
  5601. height:30px;
  5602. background:inherit;
  5603. background-color:rgba(255, 255, 255, 0);
  5604. border:none;
  5605. border-left:0px;
  5606. border-top:0px;
  5607. border-right:0px;
  5608. border-radius:0px;
  5609. border-bottom-right-radius:0px;
  5610. border-bottom-left-radius:0px;
  5611. -moz-box-shadow:none;
  5612. -webkit-box-shadow:none;
  5613. box-shadow:none;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:14px;
  5618. line-height:30px;
  5619. }
  5620. #u155990 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:520px;
  5624. top:318px;
  5625. width:85px;
  5626. height:30px;
  5627. display:flex;
  5628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5629. font-weight:400;
  5630. font-style:normal;
  5631. font-size:14px;
  5632. line-height:30px;
  5633. }
  5634. #u155990 .text {
  5635. position:absolute;
  5636. align-self:flex-start;
  5637. padding:0px 0px 0px 0px;
  5638. box-sizing:border-box;
  5639. width:100%;
  5640. }
  5641. #u155990_text {
  5642. border-width:0px;
  5643. white-space:nowrap;
  5644. text-transform:none;
  5645. }
  5646. #u155991 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:0px;
  5652. height:0px;
  5653. }
  5654. #u155992_div {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:100px;
  5660. height:17px;
  5661. background:inherit;
  5662. background-color:rgba(255, 255, 255, 0);
  5663. border:none;
  5664. border-left:0px;
  5665. border-top:0px;
  5666. border-right:0px;
  5667. border-radius:0px;
  5668. border-bottom-right-radius:0px;
  5669. border-bottom-left-radius:0px;
  5670. -moz-box-shadow:none;
  5671. -webkit-box-shadow:none;
  5672. box-shadow:none;
  5673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:12px;
  5677. color:#4D8CFC;
  5678. }
  5679. #u155992 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:520px;
  5683. top:353px;
  5684. width:100px;
  5685. height:17px;
  5686. display:flex;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:12px;
  5691. color:#4D8CFC;
  5692. }
  5693. #u155992 .text {
  5694. position:absolute;
  5695. align-self:flex-start;
  5696. padding:0px 0px 0px 0px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u155992_text {
  5701. border-width:0px;
  5702. white-space:nowrap;
  5703. text-transform:none;
  5704. }
  5705. #u155993_img {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:6px;
  5711. height:10px;
  5712. }
  5713. #u155993 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:836px;
  5717. top:356px;
  5718. width:6px;
  5719. height:10px;
  5720. display:flex;
  5721. -webkit-transform:rotate(180deg);
  5722. -moz-transform:rotate(180deg);
  5723. -ms-transform:rotate(180deg);
  5724. transform:rotate(180deg);
  5725. }
  5726. #u155993 .text {
  5727. position:absolute;
  5728. align-self:center;
  5729. padding:2px 2px 2px 2px;
  5730. box-sizing:border-box;
  5731. width:100%;
  5732. }
  5733. #u155993_text {
  5734. border-width:0px;
  5735. word-wrap:break-word;
  5736. text-transform:none;
  5737. visibility:hidden;
  5738. }
  5739. #u155994 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:0px;
  5743. top:0px;
  5744. width:0px;
  5745. height:0px;
  5746. }
  5747. #u155995_div {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:347px;
  5753. height:70px;
  5754. background:inherit;
  5755. background-color:rgba(242, 242, 242, 1);
  5756. border:none;
  5757. border-radius:4px;
  5758. -moz-box-shadow:none;
  5759. -webkit-box-shadow:none;
  5760. box-shadow:none;
  5761. }
  5762. #u155995 {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:505px;
  5766. top:383px;
  5767. width:347px;
  5768. height:70px;
  5769. display:flex;
  5770. }
  5771. #u155995 .text {
  5772. position:absolute;
  5773. align-self:center;
  5774. padding:2px 2px 2px 2px;
  5775. box-sizing:border-box;
  5776. width:100%;
  5777. }
  5778. #u155995_text {
  5779. border-width:0px;
  5780. word-wrap:break-word;
  5781. text-transform:none;
  5782. visibility:hidden;
  5783. }
  5784. #u155996_div {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:0px;
  5788. top:0px;
  5789. width:85px;
  5790. height:30px;
  5791. background:inherit;
  5792. background-color:rgba(255, 255, 255, 0);
  5793. border:none;
  5794. border-left:0px;
  5795. border-top:0px;
  5796. border-right:0px;
  5797. border-radius:0px;
  5798. border-bottom-right-radius:0px;
  5799. border-bottom-left-radius:0px;
  5800. -moz-box-shadow:none;
  5801. -webkit-box-shadow:none;
  5802. box-shadow:none;
  5803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5804. font-weight:400;
  5805. font-style:normal;
  5806. font-size:14px;
  5807. line-height:30px;
  5808. }
  5809. #u155996 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:520px;
  5813. top:389px;
  5814. width:85px;
  5815. height:30px;
  5816. display:flex;
  5817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:14px;
  5821. line-height:30px;
  5822. }
  5823. #u155996 .text {
  5824. position:absolute;
  5825. align-self:flex-start;
  5826. padding:0px 0px 0px 0px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u155996_text {
  5831. border-width:0px;
  5832. white-space:nowrap;
  5833. text-transform:none;
  5834. }
  5835. #u155997 {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:0px;
  5841. height:0px;
  5842. }
  5843. #u155998_div {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:100px;
  5849. height:17px;
  5850. background:inherit;
  5851. background-color:rgba(255, 255, 255, 0);
  5852. border:none;
  5853. border-left:0px;
  5854. border-top:0px;
  5855. border-right:0px;
  5856. border-radius:0px;
  5857. border-bottom-right-radius:0px;
  5858. border-bottom-left-radius:0px;
  5859. -moz-box-shadow:none;
  5860. -webkit-box-shadow:none;
  5861. box-shadow:none;
  5862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:12px;
  5866. color:#4D8CFC;
  5867. }
  5868. #u155998 {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:520px;
  5872. top:424px;
  5873. width:100px;
  5874. height:17px;
  5875. display:flex;
  5876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:12px;
  5880. color:#4D8CFC;
  5881. }
  5882. #u155998 .text {
  5883. position:absolute;
  5884. align-self:flex-start;
  5885. padding:0px 0px 0px 0px;
  5886. box-sizing:border-box;
  5887. width:100%;
  5888. }
  5889. #u155998_text {
  5890. border-width:0px;
  5891. white-space:nowrap;
  5892. text-transform:none;
  5893. }
  5894. #u155999_img {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:6px;
  5900. height:10px;
  5901. }
  5902. #u155999 {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:836px;
  5906. top:427px;
  5907. width:6px;
  5908. height:10px;
  5909. display:flex;
  5910. -webkit-transform:rotate(180deg);
  5911. -moz-transform:rotate(180deg);
  5912. -ms-transform:rotate(180deg);
  5913. transform:rotate(180deg);
  5914. }
  5915. #u155999 .text {
  5916. position:absolute;
  5917. align-self:center;
  5918. padding:2px 2px 2px 2px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u155999_text {
  5923. border-width:0px;
  5924. word-wrap:break-word;
  5925. text-transform:none;
  5926. visibility:hidden;
  5927. }
  5928. #u156000 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:0px;
  5934. height:0px;
  5935. }
  5936. #u156001_div {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:347px;
  5942. height:70px;
  5943. background:inherit;
  5944. background-color:rgba(242, 242, 242, 1);
  5945. border:none;
  5946. border-radius:4px;
  5947. -moz-box-shadow:none;
  5948. -webkit-box-shadow:none;
  5949. box-shadow:none;
  5950. }
  5951. #u156001 {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:505px;
  5955. top:454px;
  5956. width:347px;
  5957. height:70px;
  5958. display:flex;
  5959. }
  5960. #u156001 .text {
  5961. position:absolute;
  5962. align-self:center;
  5963. padding:2px 2px 2px 2px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u156001_text {
  5968. border-width:0px;
  5969. word-wrap:break-word;
  5970. text-transform:none;
  5971. visibility:hidden;
  5972. }
  5973. #u156002_div {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:57px;
  5979. height:30px;
  5980. background:inherit;
  5981. background-color:rgba(255, 255, 255, 0);
  5982. border:none;
  5983. border-left:0px;
  5984. border-top:0px;
  5985. border-right:0px;
  5986. border-radius:0px;
  5987. border-bottom-right-radius:0px;
  5988. border-bottom-left-radius:0px;
  5989. -moz-box-shadow:none;
  5990. -webkit-box-shadow:none;
  5991. box-shadow:none;
  5992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:14px;
  5996. line-height:30px;
  5997. }
  5998. #u156002 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:520px;
  6002. top:460px;
  6003. width:57px;
  6004. height:30px;
  6005. display:flex;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:14px;
  6010. line-height:30px;
  6011. }
  6012. #u156002 .text {
  6013. position:absolute;
  6014. align-self:flex-start;
  6015. padding:0px 0px 0px 0px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u156002_text {
  6020. border-width:0px;
  6021. white-space:nowrap;
  6022. text-transform:none;
  6023. }
  6024. #u156003 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:0px;
  6030. height:0px;
  6031. }
  6032. #u156004_div {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:265px;
  6038. height:17px;
  6039. background:inherit;
  6040. background-color:rgba(255, 255, 255, 0);
  6041. border:none;
  6042. border-left:0px;
  6043. border-top:0px;
  6044. border-right:0px;
  6045. border-radius:0px;
  6046. border-bottom-right-radius:0px;
  6047. border-bottom-left-radius:0px;
  6048. -moz-box-shadow:none;
  6049. -webkit-box-shadow:none;
  6050. box-shadow:none;
  6051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. font-size:12px;
  6055. color:#D7D7D7;
  6056. }
  6057. #u156004 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:520px;
  6061. top:495px;
  6062. width:265px;
  6063. height:17px;
  6064. display:flex;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:12px;
  6069. color:#D7D7D7;
  6070. }
  6071. #u156004 .text {
  6072. position:absolute;
  6073. align-self:flex-start;
  6074. padding:0px 0px 0px 0px;
  6075. box-sizing:border-box;
  6076. width:100%;
  6077. }
  6078. #u156004_text {
  6079. border-width:0px;
  6080. white-space:nowrap;
  6081. text-transform:none;
  6082. }
  6083. #u156005_img {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:6px;
  6089. height:10px;
  6090. }
  6091. #u156005 {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:836px;
  6095. top:498px;
  6096. width:6px;
  6097. height:10px;
  6098. display:flex;
  6099. -webkit-transform:rotate(180deg);
  6100. -moz-transform:rotate(180deg);
  6101. -ms-transform:rotate(180deg);
  6102. transform:rotate(180deg);
  6103. }
  6104. #u156005 .text {
  6105. position:absolute;
  6106. align-self:center;
  6107. padding:2px 2px 2px 2px;
  6108. box-sizing:border-box;
  6109. width:100%;
  6110. }
  6111. #u156005_text {
  6112. border-width:0px;
  6113. word-wrap:break-word;
  6114. text-transform:none;
  6115. visibility:hidden;
  6116. }
  6117. #u156006_div {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:0px;
  6122. width:687px;
  6123. height:100px;
  6124. background:inherit;
  6125. background-color:rgba(255, 255, 255, 0);
  6126. border:none;
  6127. border-top:0px;
  6128. border-right:0px;
  6129. border-bottom:0px;
  6130. border-radius:0px;
  6131. border-top-left-radius:0px;
  6132. border-bottom-left-radius:0px;
  6133. -moz-box-shadow:none;
  6134. -webkit-box-shadow:none;
  6135. box-shadow:none;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:14px;
  6140. color:#D9001B;
  6141. line-height:30px;
  6142. }
  6143. #u156006 {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:914px;
  6147. top:506px;
  6148. width:687px;
  6149. height:100px;
  6150. display:flex;
  6151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6152. font-weight:400;
  6153. font-style:normal;
  6154. font-size:14px;
  6155. color:#D9001B;
  6156. line-height:30px;
  6157. }
  6158. #u156006 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:5px 10px 5px 0px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u156006_text {
  6166. border-width:0px;
  6167. word-wrap:break-word;
  6168. text-transform:none;
  6169. }
  6170. #u156007_div {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:575px;
  6176. height:130px;
  6177. background:inherit;
  6178. background-color:rgba(255, 255, 255, 0);
  6179. border:none;
  6180. border-top:0px;
  6181. border-right:0px;
  6182. border-bottom:0px;
  6183. border-radius:0px;
  6184. border-top-left-radius:0px;
  6185. border-bottom-left-radius:0px;
  6186. -moz-box-shadow:none;
  6187. -webkit-box-shadow:none;
  6188. box-shadow:none;
  6189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:14px;
  6193. color:#D9001B;
  6194. line-height:30px;
  6195. }
  6196. #u156007 {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:914px;
  6200. top:279px;
  6201. width:575px;
  6202. height:130px;
  6203. display:flex;
  6204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:14px;
  6208. color:#D9001B;
  6209. line-height:30px;
  6210. }
  6211. #u156007 .text {
  6212. position:absolute;
  6213. align-self:center;
  6214. padding:5px 10px 5px 0px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u156007_text {
  6219. border-width:0px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. }
  6223. #u156008_div {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:362px;
  6229. height:100px;
  6230. background:inherit;
  6231. background-color:rgba(255, 255, 255, 0);
  6232. border:none;
  6233. border-top:0px;
  6234. border-right:0px;
  6235. border-bottom:0px;
  6236. border-radius:0px;
  6237. border-top-left-radius:0px;
  6238. border-bottom-left-radius:0px;
  6239. -moz-box-shadow:none;
  6240. -webkit-box-shadow:none;
  6241. box-shadow:none;
  6242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6243. font-weight:400;
  6244. font-style:normal;
  6245. font-size:14px;
  6246. color:#D9001B;
  6247. line-height:30px;
  6248. }
  6249. #u156008 {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:505px;
  6253. top:541px;
  6254. width:362px;
  6255. height:100px;
  6256. display:flex;
  6257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:14px;
  6261. color:#D9001B;
  6262. line-height:30px;
  6263. }
  6264. #u156008 .text {
  6265. position:absolute;
  6266. align-self:center;
  6267. padding:5px 10px 5px 0px;
  6268. box-sizing:border-box;
  6269. width:100%;
  6270. }
  6271. #u156008_text {
  6272. border-width:0px;
  6273. word-wrap:break-word;
  6274. text-transform:none;
  6275. }
  6276. #u156009 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:577px;
  6280. top:475px;
  6281. width:0px;
  6282. height:0px;
  6283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6284. font-weight:400;
  6285. font-style:normal;
  6286. font-size:10px;
  6287. color:#333333;
  6288. }
  6289. #u156009_seg0 {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:-5px;
  6294. width:686px;
  6295. height:10px;
  6296. }
  6297. #u156009_seg1 {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:676px;
  6301. top:-5px;
  6302. width:10px;
  6303. height:36px;
  6304. }
  6305. #u156009_seg2 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:671px;
  6309. top:19px;
  6310. width:20px;
  6311. height:20px;
  6312. }
  6313. #u156009_text {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:306px;
  6317. top:-8px;
  6318. width:100px;
  6319. word-wrap:break-word;
  6320. text-transform:none;
  6321. visibility:hidden;
  6322. }