styles.css 132 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-1px;
  6. width:1418px;
  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. #u140306_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u140306 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1px;
  31. top:1px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u140306 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u140306_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u140307_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. #u140307 {
  73. border-width:0px;
  74. position:absolute;
  75. left:30px;
  76. top:68px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u140307 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u140307_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u140308 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u140309_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. #u140309 {
  121. border-width:0px;
  122. position:absolute;
  123. left:310px;
  124. top:72px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u140309 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u140309_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u140310 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u140311_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u140311 {
  159. border-width:0px;
  160. position:absolute;
  161. left:373px;
  162. top:79px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u140311 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u140311_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u140312_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u140312 {
  189. border-width:0px;
  190. position:absolute;
  191. left:379px;
  192. top:85px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u140312 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u140312_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u140313 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u140314_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u140314 {
  227. border-width:0px;
  228. position:absolute;
  229. left:324px;
  230. top:86px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u140314 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u140314_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u140315_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u140315 {
  257. border-width:0px;
  258. position:absolute;
  259. left:340px;
  260. top:86px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u140315 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u140315_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u140316_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u140316 {
  287. border-width:0px;
  288. position:absolute;
  289. left:331px;
  290. top:85px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u140316 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u140316_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u140317_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u140317 {
  317. border-width:0px;
  318. position:absolute;
  319. left:348px;
  320. top:88px;
  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. #u140317 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u140317_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u140318_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u140318 {
  351. border-width:0px;
  352. position:absolute;
  353. left:30px;
  354. top:25px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u140318 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u140318_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u140319_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. #u140319 {
  393. border-width:0px;
  394. position:absolute;
  395. left:30px;
  396. top:789px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u140319 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u140319_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u140320 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u140321_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u140321 {
  431. border-width:0px;
  432. position:absolute;
  433. left:70px;
  434. top:793px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u140321 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u140321_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u140322_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. #u140322 {
  472. border-width:0px;
  473. position:absolute;
  474. left:70px;
  475. top:818px;
  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. #u140322 .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. #u140322_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u140323 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u140324_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u140324 {
  513. border-width:0px;
  514. position:absolute;
  515. left:340px;
  516. top:795px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u140324 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u140324_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u140325_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. #u140325 {
  554. border-width:0px;
  555. position:absolute;
  556. left:340px;
  557. top:820px;
  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. #u140325 .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. #u140325_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u140326_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. #u140326 {
  594. border-width:0px;
  595. position:absolute;
  596. left:30px;
  597. top:108px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u140326 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u140326_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u140327 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u140328_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u140328 {
  632. border-width:0px;
  633. position:absolute;
  634. left:252px;
  635. top:793px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u140328 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u140328_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u140329_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. #u140329 {
  673. border-width:0px;
  674. position:absolute;
  675. left:246px;
  676. top:818px;
  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. #u140329 .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. #u140329_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u140330 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u140331_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u140331 {
  714. border-width:0px;
  715. position:absolute;
  716. left:158px;
  717. top:793px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u140331 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u140331_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u140332_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. #u140332 {
  755. border-width:0px;
  756. position:absolute;
  757. left:152px;
  758. top:818px;
  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. #u140332 .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. #u140332_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u140333_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:44px;
  786. }
  787. #u140333 {
  788. border-width:0px;
  789. position:absolute;
  790. left:30px;
  791. top:25px;
  792. width:375px;
  793. height:44px;
  794. display:flex;
  795. }
  796. #u140333 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u140333_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u140334 {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:0px;
  815. height:0px;
  816. }
  817. #u140335_div {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:88px;
  823. height:32px;
  824. background:inherit;
  825. background-color:rgba(255, 255, 255, 1);
  826. box-sizing:border-box;
  827. border-width:1px;
  828. border-style:solid;
  829. border-color:rgba(242, 242, 242, 1);
  830. border-radius:33px;
  831. -moz-box-shadow:none;
  832. -webkit-box-shadow:none;
  833. box-shadow:none;
  834. }
  835. #u140335 {
  836. border-width:0px;
  837. position:absolute;
  838. left:310px;
  839. top:72px;
  840. width:88px;
  841. height:32px;
  842. display:flex;
  843. }
  844. #u140335 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u140335_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u140336 {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:0px;
  863. height:0px;
  864. }
  865. #u140337_img {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:18px;
  871. height:18px;
  872. }
  873. #u140337 {
  874. border-width:0px;
  875. position:absolute;
  876. left:373px;
  877. top:79px;
  878. width:18px;
  879. height:18px;
  880. display:flex;
  881. }
  882. #u140337 .text {
  883. position:absolute;
  884. align-self:center;
  885. padding:2px 2px 2px 2px;
  886. box-sizing:border-box;
  887. width:100%;
  888. }
  889. #u140337_text {
  890. border-width:0px;
  891. word-wrap:break-word;
  892. text-transform:none;
  893. visibility:hidden;
  894. }
  895. #u140338_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:6px;
  901. height:6px;
  902. }
  903. #u140338 {
  904. border-width:0px;
  905. position:absolute;
  906. left:379px;
  907. top:85px;
  908. width:6px;
  909. height:6px;
  910. display:flex;
  911. }
  912. #u140338 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u140338_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u140339 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u140340_img {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:5px;
  939. height:5px;
  940. }
  941. #u140340 {
  942. border-width:0px;
  943. position:absolute;
  944. left:324px;
  945. top:86px;
  946. width:5px;
  947. height:5px;
  948. display:flex;
  949. }
  950. #u140340 .text {
  951. position:absolute;
  952. align-self:center;
  953. padding:2px 2px 2px 2px;
  954. box-sizing:border-box;
  955. width:100%;
  956. }
  957. #u140340_text {
  958. border-width:0px;
  959. word-wrap:break-word;
  960. text-transform:none;
  961. visibility:hidden;
  962. }
  963. #u140341_img {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:5px;
  969. height:5px;
  970. }
  971. #u140341 {
  972. border-width:0px;
  973. position:absolute;
  974. left:340px;
  975. top:86px;
  976. width:5px;
  977. height:5px;
  978. display:flex;
  979. }
  980. #u140341 .text {
  981. position:absolute;
  982. align-self:center;
  983. padding:2px 2px 2px 2px;
  984. box-sizing:border-box;
  985. width:100%;
  986. }
  987. #u140341_text {
  988. border-width:0px;
  989. word-wrap:break-word;
  990. text-transform:none;
  991. visibility:hidden;
  992. }
  993. #u140342_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:7px;
  999. height:7px;
  1000. }
  1001. #u140342 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:331px;
  1005. top:85px;
  1006. width:7px;
  1007. height:7px;
  1008. display:flex;
  1009. }
  1010. #u140342 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u140342_text {
  1018. border-width:0px;
  1019. word-wrap:break-word;
  1020. text-transform:none;
  1021. visibility:hidden;
  1022. }
  1023. #u140343_img {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:19px;
  1029. height:2px;
  1030. }
  1031. #u140343 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:348px;
  1035. top:88px;
  1036. width:18px;
  1037. height:1px;
  1038. display:flex;
  1039. -webkit-transform:rotate(90deg);
  1040. -moz-transform:rotate(90deg);
  1041. -ms-transform:rotate(90deg);
  1042. transform:rotate(90deg);
  1043. }
  1044. #u140343 .text {
  1045. position:absolute;
  1046. align-self:center;
  1047. padding:2px 2px 2px 2px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u140343_text {
  1052. border-width:0px;
  1053. word-wrap:break-word;
  1054. text-transform:none;
  1055. visibility:hidden;
  1056. }
  1057. #u140344_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:65px;
  1063. height:22px;
  1064. background:inherit;
  1065. background-color:rgba(255, 255, 255, 0);
  1066. border:none;
  1067. border-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:16px;
  1075. color:#000000;
  1076. }
  1077. #u140344 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:188px;
  1081. top:79px;
  1082. width:65px;
  1083. height:22px;
  1084. display:flex;
  1085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:16px;
  1089. color:#000000;
  1090. }
  1091. #u140344 .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. #u140344_text {
  1099. border-width:0px;
  1100. white-space:nowrap;
  1101. text-transform:none;
  1102. }
  1103. #u140345_div {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:375px;
  1109. height:683px;
  1110. background:inherit;
  1111. background-color:rgba(242, 242, 242, 0.996078431372549);
  1112. border:none;
  1113. border-radius:0px;
  1114. -moz-box-shadow:none;
  1115. -webkit-box-shadow:none;
  1116. box-shadow:none;
  1117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1118. font-weight:400;
  1119. font-style:normal;
  1120. }
  1121. #u140345 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:30px;
  1125. top:107px;
  1126. width:375px;
  1127. height:683px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. }
  1133. #u140345 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u140345_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. }
  1145. #u140346_div {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:12px;
  1151. height:12px;
  1152. background:inherit;
  1153. background-color:rgba(255, 255, 255, 0);
  1154. box-sizing:border-box;
  1155. border-width:2px;
  1156. border-style:solid;
  1157. border-color:rgba(51, 51, 51, 1);
  1158. border-right:0px;
  1159. border-bottom:0px;
  1160. border-radius:0px;
  1161. border-top-right-radius:0px;
  1162. border-bottom-left-radius:0px;
  1163. -moz-box-shadow:none;
  1164. -webkit-box-shadow:none;
  1165. box-shadow:none;
  1166. }
  1167. #u140346 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:45px;
  1171. top:82px;
  1172. width:12px;
  1173. height:12px;
  1174. display:flex;
  1175. -webkit-transform:rotate(315deg);
  1176. -moz-transform:rotate(315deg);
  1177. -ms-transform:rotate(315deg);
  1178. transform:rotate(315deg);
  1179. }
  1180. #u140346 .text {
  1181. position:absolute;
  1182. align-self:center;
  1183. padding:2px 2px 2px 2px;
  1184. box-sizing:border-box;
  1185. width:100%;
  1186. }
  1187. #u140346_text {
  1188. border-width:0px;
  1189. word-wrap:break-word;
  1190. text-transform:none;
  1191. visibility:hidden;
  1192. }
  1193. #u140347_img {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:23px;
  1199. height:23px;
  1200. }
  1201. #u140347 {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:72px;
  1205. top:77px;
  1206. width:23px;
  1207. height:23px;
  1208. display:flex;
  1209. }
  1210. #u140347 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u140347_text {
  1218. border-width:0px;
  1219. word-wrap:break-word;
  1220. text-transform:none;
  1221. visibility:hidden;
  1222. }
  1223. #u140348 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:0px;
  1229. height:0px;
  1230. }
  1231. #u140349_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:375px;
  1237. height:50px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 1);
  1240. box-sizing:border-box;
  1241. border-width:1px;
  1242. border-style:solid;
  1243. border-color:rgba(242, 242, 242, 1);
  1244. border-radius:26px;
  1245. border-top-left-radius:0px;
  1246. border-top-right-radius:0px;
  1247. -moz-box-shadow:none;
  1248. -webkit-box-shadow:none;
  1249. box-shadow:none;
  1250. }
  1251. #u140349 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:29px;
  1255. top:791px;
  1256. width:375px;
  1257. height:50px;
  1258. display:flex;
  1259. }
  1260. #u140349 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:2px 2px 2px 2px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u140349_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. visibility:hidden;
  1272. }
  1273. #u140350 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:0px;
  1279. height:0px;
  1280. }
  1281. #u140351_img {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:24px;
  1287. height:24px;
  1288. }
  1289. #u140351 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:307px;
  1293. top:795px;
  1294. width:24px;
  1295. height:24px;
  1296. display:flex;
  1297. font-size:8px;
  1298. }
  1299. #u140351 .text {
  1300. position:absolute;
  1301. align-self:center;
  1302. padding:2px 2px 2px 2px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u140351_text {
  1307. border-width:0px;
  1308. word-wrap:break-word;
  1309. text-transform:none;
  1310. }
  1311. #u140352_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:49px;
  1317. height:17px;
  1318. background:inherit;
  1319. background-color:rgba(255, 255, 255, 0);
  1320. border:none;
  1321. border-radius:0px;
  1322. -moz-box-shadow:none;
  1323. -webkit-box-shadow:none;
  1324. box-shadow:none;
  1325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1326. font-weight:400;
  1327. font-style:normal;
  1328. font-size:12px;
  1329. }
  1330. #u140352 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:295px;
  1334. top:820px;
  1335. width:49px;
  1336. height:17px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:12px;
  1342. }
  1343. #u140352 .text {
  1344. position:absolute;
  1345. align-self:flex-start;
  1346. padding:0px 0px 0px 0px;
  1347. box-sizing:border-box;
  1348. width:100%;
  1349. }
  1350. #u140352_text {
  1351. border-width:0px;
  1352. white-space:nowrap;
  1353. text-transform:none;
  1354. }
  1355. #u140353 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:0px;
  1361. height:0px;
  1362. }
  1363. #u140354_div {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:49px;
  1369. height:17px;
  1370. background:inherit;
  1371. background-color:rgba(255, 255, 255, 0);
  1372. border:none;
  1373. border-radius:0px;
  1374. -moz-box-shadow:none;
  1375. -webkit-box-shadow:none;
  1376. box-shadow:none;
  1377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1378. font-weight:400;
  1379. font-style:normal;
  1380. font-size:12px;
  1381. }
  1382. #u140354 {
  1383. border-width:0px;
  1384. position:absolute;
  1385. left:89px;
  1386. top:820px;
  1387. width:49px;
  1388. height:17px;
  1389. display:flex;
  1390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1391. font-weight:400;
  1392. font-style:normal;
  1393. font-size:12px;
  1394. }
  1395. #u140354 .text {
  1396. position:absolute;
  1397. align-self:flex-start;
  1398. padding:0px 0px 0px 0px;
  1399. box-sizing:border-box;
  1400. width:100%;
  1401. }
  1402. #u140354_text {
  1403. border-width:0px;
  1404. white-space:nowrap;
  1405. text-transform:none;
  1406. }
  1407. #u140355_img {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:24px;
  1413. height:24px;
  1414. }
  1415. #u140355 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:101px;
  1419. top:795px;
  1420. width:24px;
  1421. height:24px;
  1422. display:flex;
  1423. font-size:8px;
  1424. color:#FFFFFF;
  1425. }
  1426. #u140355 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:2px 2px 2px 2px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u140355_text {
  1434. border-width:0px;
  1435. word-wrap:break-word;
  1436. text-transform:none;
  1437. }
  1438. #u140356_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:33px;
  1445. }
  1446. #u140356 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:94px;
  1450. top:276px;
  1451. width:22px;
  1452. height:33px;
  1453. display:flex;
  1454. }
  1455. #u140356 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u140356_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u140357_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:22px;
  1474. height:33px;
  1475. }
  1476. #u140357 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:202px;
  1480. top:384px;
  1481. width:22px;
  1482. height:33px;
  1483. display:flex;
  1484. }
  1485. #u140357 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u140357_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u140358 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:0px;
  1504. height:0px;
  1505. }
  1506. #u140359_div {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:50px;
  1512. height:28px;
  1513. background:inherit;
  1514. background-color:rgba(255, 255, 255, 1);
  1515. box-sizing:border-box;
  1516. border-width:1px;
  1517. border-style:solid;
  1518. border-color:rgba(215, 215, 215, 1);
  1519. border-radius:4px;
  1520. -moz-box-shadow:none;
  1521. -webkit-box-shadow:none;
  1522. box-shadow:none;
  1523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1524. font-weight:400;
  1525. font-style:normal;
  1526. font-size:11px;
  1527. color:#7F7F7F;
  1528. text-align:left;
  1529. }
  1530. #u140359 {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:348px;
  1534. top:434px;
  1535. width:50px;
  1536. height:28px;
  1537. display:flex;
  1538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. font-size:11px;
  1542. color:#7F7F7F;
  1543. text-align:left;
  1544. }
  1545. #u140359 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 40px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u140359_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u140360 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u140361_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:12px;
  1572. height:25px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-left:0px;
  1577. border-top:0px;
  1578. border-right:0px;
  1579. border-radius:0px;
  1580. border-bottom-right-radius:0px;
  1581. border-bottom-left-radius:0px;
  1582. -moz-box-shadow:none;
  1583. -webkit-box-shadow:none;
  1584. box-shadow:none;
  1585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1586. font-weight:400;
  1587. font-style:normal;
  1588. font-size:18px;
  1589. color:#D9001B;
  1590. }
  1591. #u140361 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:379px;
  1595. top:436px;
  1596. width:12px;
  1597. height:25px;
  1598. display:flex;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:18px;
  1603. color:#D9001B;
  1604. }
  1605. #u140361 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:0px 0px 0px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u140361_text {
  1613. border-width:0px;
  1614. white-space:nowrap;
  1615. text-transform:none;
  1616. }
  1617. #u140362_img {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:19px;
  1623. height:17px;
  1624. }
  1625. #u140362 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:355px;
  1629. top:439px;
  1630. width:19px;
  1631. height:17px;
  1632. display:flex;
  1633. }
  1634. #u140362 .text {
  1635. position:absolute;
  1636. align-self:center;
  1637. padding:2px 2px 2px 2px;
  1638. box-sizing:border-box;
  1639. width:100%;
  1640. }
  1641. #u140362_text {
  1642. border-width:0px;
  1643. word-wrap:break-word;
  1644. text-transform:none;
  1645. visibility:hidden;
  1646. }
  1647. #u140363_img {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:0px;
  1651. top:0px;
  1652. width:22px;
  1653. height:33px;
  1654. }
  1655. #u140363 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:96px;
  1659. top:437px;
  1660. width:22px;
  1661. height:33px;
  1662. display:flex;
  1663. }
  1664. #u140363 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u140363_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u140364_img {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:22px;
  1683. height:33px;
  1684. }
  1685. #u140364 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:340px;
  1689. top:464px;
  1690. width:22px;
  1691. height:33px;
  1692. display:flex;
  1693. }
  1694. #u140364 .text {
  1695. position:absolute;
  1696. align-self:center;
  1697. padding:2px 2px 2px 2px;
  1698. box-sizing:border-box;
  1699. width:100%;
  1700. }
  1701. #u140364_text {
  1702. border-width:0px;
  1703. word-wrap:break-word;
  1704. text-transform:none;
  1705. visibility:hidden;
  1706. }
  1707. #u140365_img {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:22px;
  1713. height:33px;
  1714. }
  1715. #u140365 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:179px;
  1719. top:582px;
  1720. width:22px;
  1721. height:33px;
  1722. display:flex;
  1723. }
  1724. #u140365 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:2px 2px 2px 2px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u140365_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. visibility:hidden;
  1736. }
  1737. #u140366_img {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:22px;
  1743. height:33px;
  1744. }
  1745. #u140366 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:249px;
  1749. top:632px;
  1750. width:22px;
  1751. height:33px;
  1752. display:flex;
  1753. }
  1754. #u140366 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 2px 2px 2px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u140366_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. visibility:hidden;
  1766. }
  1767. #u140367 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:0px;
  1773. height:0px;
  1774. }
  1775. #u140368_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:180px;
  1781. height:51px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 1);
  1784. box-sizing:border-box;
  1785. border-width:1px;
  1786. border-style:solid;
  1787. border-color:rgba(215, 215, 215, 1);
  1788. border-radius:4px;
  1789. -moz-box-shadow:none;
  1790. -webkit-box-shadow:none;
  1791. box-shadow:none;
  1792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1793. font-weight:400;
  1794. font-style:normal;
  1795. text-align:left;
  1796. }
  1797. #u140368 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:123px;
  1801. top:248px;
  1802. width:180px;
  1803. height:51px;
  1804. display:flex;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. text-align:left;
  1809. }
  1810. #u140368 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 55px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u140368_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u140369_img {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:45px;
  1828. height:45px;
  1829. }
  1830. #u140369 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:126px;
  1834. top:251px;
  1835. width:45px;
  1836. height:45px;
  1837. display:flex;
  1838. }
  1839. #u140369 .text {
  1840. position:absolute;
  1841. align-self:center;
  1842. padding:2px 2px 2px 2px;
  1843. box-sizing:border-box;
  1844. width:100%;
  1845. }
  1846. #u140369_text {
  1847. border-width:0px;
  1848. word-wrap:break-word;
  1849. text-transform:none;
  1850. visibility:hidden;
  1851. }
  1852. #u140370_img {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:21px;
  1858. height:14px;
  1859. }
  1860. #u140370 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:138px;
  1864. top:267px;
  1865. width:21px;
  1866. height:14px;
  1867. display:flex;
  1868. }
  1869. #u140370 .text {
  1870. position:absolute;
  1871. align-self:center;
  1872. padding:2px 2px 2px 2px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u140370_text {
  1877. border-width:0px;
  1878. word-wrap:break-word;
  1879. text-transform:none;
  1880. visibility:hidden;
  1881. }
  1882. #u140372_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:433px;
  1888. height:865px;
  1889. }
  1890. #u140372 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:486px;
  1894. top:1px;
  1895. width:433px;
  1896. height:865px;
  1897. display:flex;
  1898. }
  1899. #u140372 .text {
  1900. position:absolute;
  1901. align-self:center;
  1902. padding:2px 2px 2px 2px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u140372_text {
  1907. border-width:0px;
  1908. word-wrap:break-word;
  1909. text-transform:none;
  1910. visibility:hidden;
  1911. }
  1912. #u140373_div {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:375px;
  1918. height:40px;
  1919. background:inherit;
  1920. background-color:rgba(255, 255, 255, 1);
  1921. box-sizing:border-box;
  1922. border-width:1px;
  1923. border-style:solid;
  1924. border-color:rgba(215, 215, 215, 1);
  1925. border-left:0px;
  1926. border-top:0px;
  1927. border-right:0px;
  1928. border-radius:0px;
  1929. border-bottom-right-radius:0px;
  1930. border-bottom-left-radius:0px;
  1931. -moz-box-shadow:none;
  1932. -webkit-box-shadow:none;
  1933. box-shadow:none;
  1934. }
  1935. #u140373 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:515px;
  1939. top:68px;
  1940. width:375px;
  1941. height:40px;
  1942. display:flex;
  1943. }
  1944. #u140373 .text {
  1945. position:absolute;
  1946. align-self:center;
  1947. padding:2px 2px 2px 2px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u140373_text {
  1952. border-width:0px;
  1953. word-wrap:break-word;
  1954. text-transform:none;
  1955. visibility:hidden;
  1956. }
  1957. #u140374 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:0px;
  1963. height:0px;
  1964. }
  1965. #u140375_div {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:88px;
  1971. height:32px;
  1972. background:inherit;
  1973. background-color:rgba(255, 255, 255, 1);
  1974. box-sizing:border-box;
  1975. border-width:1px;
  1976. border-style:solid;
  1977. border-color:rgba(242, 242, 242, 1);
  1978. border-radius:33px;
  1979. -moz-box-shadow:none;
  1980. -webkit-box-shadow:none;
  1981. box-shadow:none;
  1982. }
  1983. #u140375 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:795px;
  1987. top:72px;
  1988. width:88px;
  1989. height:32px;
  1990. display:flex;
  1991. }
  1992. #u140375 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 2px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u140375_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u140376 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:0px;
  2011. height:0px;
  2012. }
  2013. #u140377_img {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:18px;
  2019. height:18px;
  2020. }
  2021. #u140377 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:858px;
  2025. top:79px;
  2026. width:18px;
  2027. height:18px;
  2028. display:flex;
  2029. }
  2030. #u140377 .text {
  2031. position:absolute;
  2032. align-self:center;
  2033. padding:2px 2px 2px 2px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u140377_text {
  2038. border-width:0px;
  2039. word-wrap:break-word;
  2040. text-transform:none;
  2041. visibility:hidden;
  2042. }
  2043. #u140378_img {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:6px;
  2049. height:6px;
  2050. }
  2051. #u140378 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:864px;
  2055. top:85px;
  2056. width:6px;
  2057. height:6px;
  2058. display:flex;
  2059. }
  2060. #u140378 .text {
  2061. position:absolute;
  2062. align-self:center;
  2063. padding:2px 2px 2px 2px;
  2064. box-sizing:border-box;
  2065. width:100%;
  2066. }
  2067. #u140378_text {
  2068. border-width:0px;
  2069. word-wrap:break-word;
  2070. text-transform:none;
  2071. visibility:hidden;
  2072. }
  2073. #u140379 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:0px;
  2079. height:0px;
  2080. }
  2081. #u140380_img {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:5px;
  2087. height:5px;
  2088. }
  2089. #u140380 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:809px;
  2093. top:86px;
  2094. width:5px;
  2095. height:5px;
  2096. display:flex;
  2097. }
  2098. #u140380 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u140380_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u140381_img {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:5px;
  2117. height:5px;
  2118. }
  2119. #u140381 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:825px;
  2123. top:86px;
  2124. width:5px;
  2125. height:5px;
  2126. display:flex;
  2127. }
  2128. #u140381 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 2px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u140381_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u140382_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:7px;
  2147. height:7px;
  2148. }
  2149. #u140382 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:816px;
  2153. top:85px;
  2154. width:7px;
  2155. height:7px;
  2156. display:flex;
  2157. }
  2158. #u140382 .text {
  2159. position:absolute;
  2160. align-self:center;
  2161. padding:2px 2px 2px 2px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u140382_text {
  2166. border-width:0px;
  2167. word-wrap:break-word;
  2168. text-transform:none;
  2169. visibility:hidden;
  2170. }
  2171. #u140383_img {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:19px;
  2177. height:2px;
  2178. }
  2179. #u140383 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:833px;
  2183. top:88px;
  2184. width:18px;
  2185. height:1px;
  2186. display:flex;
  2187. -webkit-transform:rotate(90deg);
  2188. -moz-transform:rotate(90deg);
  2189. -ms-transform:rotate(90deg);
  2190. transform:rotate(90deg);
  2191. }
  2192. #u140383 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:2px 2px 2px 2px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u140383_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. visibility:hidden;
  2204. }
  2205. #u140384_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:375px;
  2211. height:44px;
  2212. }
  2213. #u140384 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:515px;
  2217. top:25px;
  2218. width:375px;
  2219. height:44px;
  2220. display:flex;
  2221. }
  2222. #u140384 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 2px 2px 2px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u140384_text {
  2230. border-width:0px;
  2231. word-wrap:break-word;
  2232. text-transform:none;
  2233. visibility:hidden;
  2234. }
  2235. #u140385_div {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:375px;
  2241. height:50px;
  2242. background:inherit;
  2243. background-color:rgba(255, 255, 255, 1);
  2244. box-sizing:border-box;
  2245. border-width:1px;
  2246. border-style:solid;
  2247. border-color:rgba(242, 242, 242, 1);
  2248. border-radius:26px;
  2249. border-top-left-radius:0px;
  2250. border-top-right-radius:0px;
  2251. -moz-box-shadow:none;
  2252. -webkit-box-shadow:none;
  2253. box-shadow:none;
  2254. }
  2255. #u140385 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:515px;
  2259. top:789px;
  2260. width:375px;
  2261. height:50px;
  2262. display:flex;
  2263. }
  2264. #u140385 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 2px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u140385_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u140386 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:0px;
  2283. height:0px;
  2284. }
  2285. #u140387_img {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:24px;
  2291. height:24px;
  2292. }
  2293. #u140387 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:555px;
  2297. top:793px;
  2298. width:24px;
  2299. height:24px;
  2300. display:flex;
  2301. font-size:8px;
  2302. }
  2303. #u140387 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 2px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u140387_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. }
  2315. #u140388_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:25px;
  2321. height:17px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 0);
  2324. border:none;
  2325. border-radius:0px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. }
  2334. #u140388 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:555px;
  2338. top:818px;
  2339. width:25px;
  2340. height:17px;
  2341. display:flex;
  2342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:12px;
  2346. }
  2347. #u140388 .text {
  2348. position:absolute;
  2349. align-self:flex-start;
  2350. padding:0px 0px 0px 0px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u140388_text {
  2355. border-width:0px;
  2356. white-space:nowrap;
  2357. text-transform:none;
  2358. }
  2359. #u140389 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:0px;
  2365. height:0px;
  2366. }
  2367. #u140390_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:24px;
  2373. height:24px;
  2374. }
  2375. #u140390 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:825px;
  2379. top:795px;
  2380. width:24px;
  2381. height:24px;
  2382. display:flex;
  2383. font-size:8px;
  2384. }
  2385. #u140390 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 2px 2px 2px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u140390_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. }
  2397. #u140391_div {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:25px;
  2403. height:17px;
  2404. background:inherit;
  2405. background-color:rgba(255, 255, 255, 0);
  2406. border:none;
  2407. border-radius:0px;
  2408. -moz-box-shadow:none;
  2409. -webkit-box-shadow:none;
  2410. box-shadow:none;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. font-size:12px;
  2415. }
  2416. #u140391 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:825px;
  2420. top:820px;
  2421. width:25px;
  2422. height:17px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:12px;
  2428. }
  2429. #u140391 .text {
  2430. position:absolute;
  2431. align-self:flex-start;
  2432. padding:0px 0px 0px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u140391_text {
  2437. border-width:0px;
  2438. white-space:nowrap;
  2439. text-transform:none;
  2440. }
  2441. #u140392_div {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:375px;
  2447. height:681px;
  2448. background:inherit;
  2449. background-color:rgba(242, 242, 242, 0.462745098039216);
  2450. border:none;
  2451. border-radius:0px;
  2452. -moz-box-shadow:none;
  2453. -webkit-box-shadow:none;
  2454. box-shadow:none;
  2455. }
  2456. #u140392 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:515px;
  2460. top:108px;
  2461. width:375px;
  2462. height:681px;
  2463. display:flex;
  2464. }
  2465. #u140392 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 2px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u140392_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. visibility:hidden;
  2477. }
  2478. #u140393 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:0px;
  2484. height:0px;
  2485. }
  2486. #u140394_img {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:24px;
  2492. height:24px;
  2493. }
  2494. #u140394 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:737px;
  2498. top:793px;
  2499. width:24px;
  2500. height:24px;
  2501. display:flex;
  2502. font-size:8px;
  2503. }
  2504. #u140394 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 2px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u140394_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. }
  2516. #u140395_div {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:37px;
  2522. height:17px;
  2523. background:inherit;
  2524. background-color:rgba(255, 255, 255, 0);
  2525. border:none;
  2526. border-radius:0px;
  2527. -moz-box-shadow:none;
  2528. -webkit-box-shadow:none;
  2529. box-shadow:none;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. }
  2535. #u140395 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:731px;
  2539. top:818px;
  2540. width:37px;
  2541. height:17px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:12px;
  2547. }
  2548. #u140395 .text {
  2549. position:absolute;
  2550. align-self:flex-start;
  2551. padding:0px 0px 0px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u140395_text {
  2556. border-width:0px;
  2557. white-space:nowrap;
  2558. text-transform:none;
  2559. }
  2560. #u140396 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:0px;
  2566. height:0px;
  2567. }
  2568. #u140397_img {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:24px;
  2574. height:24px;
  2575. }
  2576. #u140397 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:643px;
  2580. top:793px;
  2581. width:24px;
  2582. height:24px;
  2583. display:flex;
  2584. font-size:8px;
  2585. }
  2586. #u140397 .text {
  2587. position:absolute;
  2588. align-self:center;
  2589. padding:2px 2px 2px 2px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u140397_text {
  2594. border-width:0px;
  2595. word-wrap:break-word;
  2596. text-transform:none;
  2597. }
  2598. #u140398_div {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:37px;
  2604. height:17px;
  2605. background:inherit;
  2606. background-color:rgba(255, 255, 255, 0);
  2607. border:none;
  2608. border-radius:0px;
  2609. -moz-box-shadow:none;
  2610. -webkit-box-shadow:none;
  2611. box-shadow:none;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:12px;
  2616. }
  2617. #u140398 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:637px;
  2621. top:818px;
  2622. width:37px;
  2623. height:17px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:12px;
  2629. }
  2630. #u140398 .text {
  2631. position:absolute;
  2632. align-self:flex-start;
  2633. padding:0px 0px 0px 0px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u140398_text {
  2638. border-width:0px;
  2639. white-space:nowrap;
  2640. text-transform:none;
  2641. }
  2642. #u140399_img {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:375px;
  2648. height:44px;
  2649. }
  2650. #u140399 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:515px;
  2654. top:25px;
  2655. width:375px;
  2656. height:44px;
  2657. display:flex;
  2658. }
  2659. #u140399 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 2px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u140399_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. visibility:hidden;
  2671. }
  2672. #u140400 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:0px;
  2678. height:0px;
  2679. }
  2680. #u140401_div {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:88px;
  2686. height:32px;
  2687. background:inherit;
  2688. background-color:rgba(255, 255, 255, 1);
  2689. box-sizing:border-box;
  2690. border-width:1px;
  2691. border-style:solid;
  2692. border-color:rgba(242, 242, 242, 1);
  2693. border-radius:33px;
  2694. -moz-box-shadow:none;
  2695. -webkit-box-shadow:none;
  2696. box-shadow:none;
  2697. }
  2698. #u140401 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:795px;
  2702. top:72px;
  2703. width:88px;
  2704. height:32px;
  2705. display:flex;
  2706. }
  2707. #u140401 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 2px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u140401_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u140402 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:0px;
  2726. height:0px;
  2727. }
  2728. #u140403_img {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:18px;
  2734. height:18px;
  2735. }
  2736. #u140403 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:858px;
  2740. top:79px;
  2741. width:18px;
  2742. height:18px;
  2743. display:flex;
  2744. }
  2745. #u140403 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 2px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u140403_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u140404_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:6px;
  2764. height:6px;
  2765. }
  2766. #u140404 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:864px;
  2770. top:85px;
  2771. width:6px;
  2772. height:6px;
  2773. display:flex;
  2774. }
  2775. #u140404 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 2px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u140404_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u140405 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:0px;
  2794. height:0px;
  2795. }
  2796. #u140406_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:5px;
  2802. height:5px;
  2803. }
  2804. #u140406 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:809px;
  2808. top:86px;
  2809. width:5px;
  2810. height:5px;
  2811. display:flex;
  2812. }
  2813. #u140406 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 2px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u140406_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. visibility:hidden;
  2825. }
  2826. #u140407_img {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:5px;
  2832. height:5px;
  2833. }
  2834. #u140407 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:825px;
  2838. top:86px;
  2839. width:5px;
  2840. height:5px;
  2841. display:flex;
  2842. }
  2843. #u140407 .text {
  2844. position:absolute;
  2845. align-self:center;
  2846. padding:2px 2px 2px 2px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u140407_text {
  2851. border-width:0px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. visibility:hidden;
  2855. }
  2856. #u140408_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:7px;
  2862. height:7px;
  2863. }
  2864. #u140408 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:816px;
  2868. top:85px;
  2869. width:7px;
  2870. height:7px;
  2871. display:flex;
  2872. }
  2873. #u140408 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 2px 2px 2px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u140408_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u140409_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:19px;
  2892. height:2px;
  2893. }
  2894. #u140409 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:833px;
  2898. top:88px;
  2899. width:18px;
  2900. height:1px;
  2901. display:flex;
  2902. -webkit-transform:rotate(90deg);
  2903. -moz-transform:rotate(90deg);
  2904. -ms-transform:rotate(90deg);
  2905. transform:rotate(90deg);
  2906. }
  2907. #u140409 .text {
  2908. position:absolute;
  2909. align-self:center;
  2910. padding:2px 2px 2px 2px;
  2911. box-sizing:border-box;
  2912. width:100%;
  2913. }
  2914. #u140409_text {
  2915. border-width:0px;
  2916. word-wrap:break-word;
  2917. text-transform:none;
  2918. visibility:hidden;
  2919. }
  2920. #u140410_div {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:65px;
  2926. height:22px;
  2927. background:inherit;
  2928. background-color:rgba(255, 255, 255, 0);
  2929. border:none;
  2930. border-radius:0px;
  2931. -moz-box-shadow:none;
  2932. -webkit-box-shadow:none;
  2933. box-shadow:none;
  2934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2935. font-weight:400;
  2936. font-style:normal;
  2937. font-size:16px;
  2938. color:#000000;
  2939. }
  2940. #u140410 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:673px;
  2944. top:79px;
  2945. width:65px;
  2946. height:22px;
  2947. display:flex;
  2948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2949. font-weight:400;
  2950. font-style:normal;
  2951. font-size:16px;
  2952. color:#000000;
  2953. }
  2954. #u140410 .text {
  2955. position:absolute;
  2956. align-self:flex-start;
  2957. padding:0px 0px 0px 0px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u140410_text {
  2962. border-width:0px;
  2963. white-space:nowrap;
  2964. text-transform:none;
  2965. }
  2966. #u140411_div {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:375px;
  2972. height:683px;
  2973. background:inherit;
  2974. background-color:rgba(242, 242, 242, 0.996078431372549);
  2975. border:none;
  2976. border-radius:0px;
  2977. -moz-box-shadow:none;
  2978. -webkit-box-shadow:none;
  2979. box-shadow:none;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. }
  2984. #u140411 {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:515px;
  2988. top:107px;
  2989. width:375px;
  2990. height:683px;
  2991. display:flex;
  2992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2993. font-weight:400;
  2994. font-style:normal;
  2995. }
  2996. #u140411 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:2px 2px 2px 2px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u140411_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. visibility:hidden;
  3008. }
  3009. #u140412_div {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:12px;
  3015. height:12px;
  3016. background:inherit;
  3017. background-color:rgba(255, 255, 255, 0);
  3018. box-sizing:border-box;
  3019. border-width:2px;
  3020. border-style:solid;
  3021. border-color:rgba(51, 51, 51, 1);
  3022. border-right:0px;
  3023. border-bottom:0px;
  3024. border-radius:0px;
  3025. border-top-right-radius:0px;
  3026. border-bottom-left-radius:0px;
  3027. -moz-box-shadow:none;
  3028. -webkit-box-shadow:none;
  3029. box-shadow:none;
  3030. }
  3031. #u140412 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:530px;
  3035. top:82px;
  3036. width:12px;
  3037. height:12px;
  3038. display:flex;
  3039. -webkit-transform:rotate(315deg);
  3040. -moz-transform:rotate(315deg);
  3041. -ms-transform:rotate(315deg);
  3042. transform:rotate(315deg);
  3043. }
  3044. #u140412 .text {
  3045. position:absolute;
  3046. align-self:center;
  3047. padding:2px 2px 2px 2px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u140412_text {
  3052. border-width:0px;
  3053. word-wrap:break-word;
  3054. text-transform:none;
  3055. visibility:hidden;
  3056. }
  3057. #u140413_img {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:23px;
  3063. height:23px;
  3064. }
  3065. #u140413 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:557px;
  3069. top:77px;
  3070. width:23px;
  3071. height:23px;
  3072. display:flex;
  3073. }
  3074. #u140413 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 2px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u140413_text {
  3082. border-width:0px;
  3083. word-wrap:break-word;
  3084. text-transform:none;
  3085. visibility:hidden;
  3086. }
  3087. #u140414 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:0px;
  3093. height:0px;
  3094. }
  3095. #u140415_div {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:11px;
  3101. height:10px;
  3102. background:inherit;
  3103. background-color:rgba(242, 242, 242, 1);
  3104. border:none;
  3105. border-radius:0px;
  3106. -moz-box-shadow:none;
  3107. -webkit-box-shadow:none;
  3108. box-shadow:none;
  3109. }
  3110. #u140415 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:846px;
  3114. top:754px;
  3115. width:11px;
  3116. height:10px;
  3117. display:flex;
  3118. }
  3119. #u140415 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 2px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u140415_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u140416_div {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:11px;
  3138. height:10px;
  3139. background:inherit;
  3140. background-color:rgba(242, 242, 242, 1);
  3141. border:none;
  3142. border-radius:0px;
  3143. -moz-box-shadow:none;
  3144. -webkit-box-shadow:none;
  3145. box-shadow:none;
  3146. }
  3147. #u140416 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:859px;
  3151. top:754px;
  3152. width:11px;
  3153. height:10px;
  3154. display:flex;
  3155. }
  3156. #u140416 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 2px 2px 2px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u140416_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u140417_div {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:11px;
  3175. height:10px;
  3176. background:inherit;
  3177. background-color:rgba(242, 242, 242, 1);
  3178. border:none;
  3179. border-radius:0px;
  3180. -moz-box-shadow:none;
  3181. -webkit-box-shadow:none;
  3182. box-shadow:none;
  3183. }
  3184. #u140417 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:846px;
  3188. top:766px;
  3189. width:11px;
  3190. height:10px;
  3191. display:flex;
  3192. }
  3193. #u140417 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 2px 2px 2px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u140417_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. visibility:hidden;
  3205. }
  3206. #u140418_div {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:11px;
  3212. height:10px;
  3213. background:inherit;
  3214. background-color:rgba(242, 242, 242, 1);
  3215. border:none;
  3216. border-radius:0px;
  3217. -moz-box-shadow:none;
  3218. -webkit-box-shadow:none;
  3219. box-shadow:none;
  3220. }
  3221. #u140418 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:859px;
  3225. top:766px;
  3226. width:11px;
  3227. height:10px;
  3228. display:flex;
  3229. }
  3230. #u140418 .text {
  3231. position:absolute;
  3232. align-self:center;
  3233. padding:2px 2px 2px 2px;
  3234. box-sizing:border-box;
  3235. width:100%;
  3236. }
  3237. #u140418_text {
  3238. border-width:0px;
  3239. word-wrap:break-word;
  3240. text-transform:none;
  3241. visibility:hidden;
  3242. }
  3243. #u140419_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:175px;
  3249. height:119px;
  3250. }
  3251. #u140419 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:523px;
  3255. top:206px;
  3256. width:175px;
  3257. height:119px;
  3258. display:flex;
  3259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. color:#FFFFFF;
  3263. }
  3264. #u140419 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 2px 2px 2px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u140419_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. }
  3276. #u140420_img {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:175px;
  3282. height:119px;
  3283. }
  3284. #u140420 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:708px;
  3288. top:206px;
  3289. width:175px;
  3290. height:119px;
  3291. display:flex;
  3292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. color:#FFFFFF;
  3296. }
  3297. #u140420 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 2px 2px 2px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u140420_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. }
  3309. #u140421_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:175px;
  3315. height:119px;
  3316. }
  3317. #u140421 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:523px;
  3321. top:335px;
  3322. width:175px;
  3323. height:119px;
  3324. display:flex;
  3325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. color:#FFFFFF;
  3329. }
  3330. #u140421 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 2px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u140421_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. }
  3342. #u140422_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:175px;
  3348. height:119px;
  3349. }
  3350. #u140422 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:708px;
  3354. top:335px;
  3355. width:175px;
  3356. height:119px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. color:#FFFFFF;
  3362. }
  3363. #u140422 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:2px 2px 2px 2px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u140422_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. }
  3375. #u140423_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:175px;
  3381. height:119px;
  3382. }
  3383. #u140423 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:523px;
  3387. top:464px;
  3388. width:175px;
  3389. height:119px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. color:#FFFFFF;
  3395. }
  3396. #u140423 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 2px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u140423_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. }
  3408. #u140424_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:175px;
  3414. height:119px;
  3415. }
  3416. #u140424 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:708px;
  3420. top:464px;
  3421. width:175px;
  3422. height:119px;
  3423. display:flex;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. color:#FFFFFF;
  3428. }
  3429. #u140424 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 2px 2px 2px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u140424_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. }
  3441. #u140425_img {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:175px;
  3447. height:119px;
  3448. }
  3449. #u140425 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:523px;
  3453. top:593px;
  3454. width:175px;
  3455. height:119px;
  3456. display:flex;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. color:#FFFFFF;
  3461. }
  3462. #u140425 .text {
  3463. position:absolute;
  3464. align-self:center;
  3465. padding:2px 2px 2px 2px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u140425_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. }
  3474. #u140426_img {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:175px;
  3480. height:119px;
  3481. }
  3482. #u140426 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:708px;
  3486. top:593px;
  3487. width:175px;
  3488. height:119px;
  3489. display:flex;
  3490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. color:#FFFFFF;
  3494. }
  3495. #u140426 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:2px 2px 2px 2px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u140426_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. }
  3507. #u140428_img {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:433px;
  3513. height:865px;
  3514. }
  3515. #u140428 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:986px;
  3519. top:1px;
  3520. width:433px;
  3521. height:865px;
  3522. display:flex;
  3523. }
  3524. #u140428 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 2px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u140428_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u140429_div {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:375px;
  3543. height:40px;
  3544. background:inherit;
  3545. background-color:rgba(255, 255, 255, 1);
  3546. box-sizing:border-box;
  3547. border-width:1px;
  3548. border-style:solid;
  3549. border-color:rgba(215, 215, 215, 1);
  3550. border-left:0px;
  3551. border-top:0px;
  3552. border-right:0px;
  3553. border-radius:0px;
  3554. border-bottom-right-radius:0px;
  3555. border-bottom-left-radius:0px;
  3556. -moz-box-shadow:none;
  3557. -webkit-box-shadow:none;
  3558. box-shadow:none;
  3559. }
  3560. #u140429 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:1015px;
  3564. top:68px;
  3565. width:375px;
  3566. height:40px;
  3567. display:flex;
  3568. }
  3569. #u140429 .text {
  3570. position:absolute;
  3571. align-self:center;
  3572. padding:2px 2px 2px 2px;
  3573. box-sizing:border-box;
  3574. width:100%;
  3575. }
  3576. #u140429_text {
  3577. border-width:0px;
  3578. word-wrap:break-word;
  3579. text-transform:none;
  3580. visibility:hidden;
  3581. }
  3582. #u140430 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:0px;
  3586. top:0px;
  3587. width:0px;
  3588. height:0px;
  3589. }
  3590. #u140431_div {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:88px;
  3596. height:32px;
  3597. background:inherit;
  3598. background-color:rgba(255, 255, 255, 1);
  3599. box-sizing:border-box;
  3600. border-width:1px;
  3601. border-style:solid;
  3602. border-color:rgba(242, 242, 242, 1);
  3603. border-radius:33px;
  3604. -moz-box-shadow:none;
  3605. -webkit-box-shadow:none;
  3606. box-shadow:none;
  3607. }
  3608. #u140431 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:1295px;
  3612. top:72px;
  3613. width:88px;
  3614. height:32px;
  3615. display:flex;
  3616. }
  3617. #u140431 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 2px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u140431_text {
  3625. border-width:0px;
  3626. word-wrap:break-word;
  3627. text-transform:none;
  3628. visibility:hidden;
  3629. }
  3630. #u140432 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:0px;
  3636. height:0px;
  3637. }
  3638. #u140433_img {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:18px;
  3644. height:18px;
  3645. }
  3646. #u140433 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:1358px;
  3650. top:79px;
  3651. width:18px;
  3652. height:18px;
  3653. display:flex;
  3654. }
  3655. #u140433 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 2px 2px 2px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u140433_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u140434_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:6px;
  3674. height:6px;
  3675. }
  3676. #u140434 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:1364px;
  3680. top:85px;
  3681. width:6px;
  3682. height:6px;
  3683. display:flex;
  3684. }
  3685. #u140434 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 2px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u140434_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u140435 {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:0px;
  3704. height:0px;
  3705. }
  3706. #u140436_img {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:5px;
  3712. height:5px;
  3713. }
  3714. #u140436 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:1309px;
  3718. top:86px;
  3719. width:5px;
  3720. height:5px;
  3721. display:flex;
  3722. }
  3723. #u140436 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 2px 2px 2px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u140436_text {
  3731. border-width:0px;
  3732. word-wrap:break-word;
  3733. text-transform:none;
  3734. visibility:hidden;
  3735. }
  3736. #u140437_img {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:5px;
  3742. height:5px;
  3743. }
  3744. #u140437 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:1325px;
  3748. top:86px;
  3749. width:5px;
  3750. height:5px;
  3751. display:flex;
  3752. }
  3753. #u140437 .text {
  3754. position:absolute;
  3755. align-self:center;
  3756. padding:2px 2px 2px 2px;
  3757. box-sizing:border-box;
  3758. width:100%;
  3759. }
  3760. #u140437_text {
  3761. border-width:0px;
  3762. word-wrap:break-word;
  3763. text-transform:none;
  3764. visibility:hidden;
  3765. }
  3766. #u140438_img {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:7px;
  3772. height:7px;
  3773. }
  3774. #u140438 {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:1316px;
  3778. top:85px;
  3779. width:7px;
  3780. height:7px;
  3781. display:flex;
  3782. }
  3783. #u140438 .text {
  3784. position:absolute;
  3785. align-self:center;
  3786. padding:2px 2px 2px 2px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u140438_text {
  3791. border-width:0px;
  3792. word-wrap:break-word;
  3793. text-transform:none;
  3794. visibility:hidden;
  3795. }
  3796. #u140439_img {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:19px;
  3802. height:2px;
  3803. }
  3804. #u140439 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:1333px;
  3808. top:88px;
  3809. width:18px;
  3810. height:1px;
  3811. display:flex;
  3812. -webkit-transform:rotate(90deg);
  3813. -moz-transform:rotate(90deg);
  3814. -ms-transform:rotate(90deg);
  3815. transform:rotate(90deg);
  3816. }
  3817. #u140439 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:2px 2px 2px 2px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u140439_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. visibility:hidden;
  3829. }
  3830. #u140440_img {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:375px;
  3836. height:44px;
  3837. }
  3838. #u140440 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:1015px;
  3842. top:25px;
  3843. width:375px;
  3844. height:44px;
  3845. display:flex;
  3846. }
  3847. #u140440 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 2px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u140440_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. visibility:hidden;
  3859. }
  3860. #u140441_div {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:375px;
  3866. height:50px;
  3867. background:inherit;
  3868. background-color:rgba(255, 255, 255, 1);
  3869. box-sizing:border-box;
  3870. border-width:1px;
  3871. border-style:solid;
  3872. border-color:rgba(242, 242, 242, 1);
  3873. border-radius:26px;
  3874. border-top-left-radius:0px;
  3875. border-top-right-radius:0px;
  3876. -moz-box-shadow:none;
  3877. -webkit-box-shadow:none;
  3878. box-shadow:none;
  3879. }
  3880. #u140441 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:1015px;
  3884. top:789px;
  3885. width:375px;
  3886. height:50px;
  3887. display:flex;
  3888. }
  3889. #u140441 .text {
  3890. position:absolute;
  3891. align-self:center;
  3892. padding:2px 2px 2px 2px;
  3893. box-sizing:border-box;
  3894. width:100%;
  3895. }
  3896. #u140441_text {
  3897. border-width:0px;
  3898. word-wrap:break-word;
  3899. text-transform:none;
  3900. visibility:hidden;
  3901. }
  3902. #u140442 {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:0px;
  3906. top:0px;
  3907. width:0px;
  3908. height:0px;
  3909. }
  3910. #u140443_img {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:24px;
  3916. height:24px;
  3917. }
  3918. #u140443 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:1055px;
  3922. top:793px;
  3923. width:24px;
  3924. height:24px;
  3925. display:flex;
  3926. font-size:8px;
  3927. }
  3928. #u140443 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 2px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u140443_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. }
  3940. #u140444_div {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:25px;
  3946. height:17px;
  3947. background:inherit;
  3948. background-color:rgba(255, 255, 255, 0);
  3949. border:none;
  3950. border-radius:0px;
  3951. -moz-box-shadow:none;
  3952. -webkit-box-shadow:none;
  3953. box-shadow:none;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:12px;
  3958. }
  3959. #u140444 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:1055px;
  3963. top:818px;
  3964. width:25px;
  3965. height:17px;
  3966. display:flex;
  3967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3968. font-weight:400;
  3969. font-style:normal;
  3970. font-size:12px;
  3971. }
  3972. #u140444 .text {
  3973. position:absolute;
  3974. align-self:flex-start;
  3975. padding:0px 0px 0px 0px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u140444_text {
  3980. border-width:0px;
  3981. white-space:nowrap;
  3982. text-transform:none;
  3983. }
  3984. #u140445 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:0px;
  3990. height:0px;
  3991. }
  3992. #u140446_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:24px;
  3998. height:24px;
  3999. }
  4000. #u140446 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:1325px;
  4004. top:795px;
  4005. width:24px;
  4006. height:24px;
  4007. display:flex;
  4008. font-size:8px;
  4009. }
  4010. #u140446 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 2px 2px 2px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u140446_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. }
  4022. #u140447_div {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:25px;
  4028. height:17px;
  4029. background:inherit;
  4030. background-color:rgba(255, 255, 255, 0);
  4031. border:none;
  4032. border-radius:0px;
  4033. -moz-box-shadow:none;
  4034. -webkit-box-shadow:none;
  4035. box-shadow:none;
  4036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:12px;
  4040. }
  4041. #u140447 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:1325px;
  4045. top:820px;
  4046. width:25px;
  4047. height:17px;
  4048. display:flex;
  4049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4050. font-weight:400;
  4051. font-style:normal;
  4052. font-size:12px;
  4053. }
  4054. #u140447 .text {
  4055. position:absolute;
  4056. align-self:flex-start;
  4057. padding:0px 0px 0px 0px;
  4058. box-sizing:border-box;
  4059. width:100%;
  4060. }
  4061. #u140447_text {
  4062. border-width:0px;
  4063. white-space:nowrap;
  4064. text-transform:none;
  4065. }
  4066. #u140448_div {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:375px;
  4072. height:681px;
  4073. background:inherit;
  4074. background-color:rgba(242, 242, 242, 0.462745098039216);
  4075. border:none;
  4076. border-radius:0px;
  4077. -moz-box-shadow:none;
  4078. -webkit-box-shadow:none;
  4079. box-shadow:none;
  4080. }
  4081. #u140448 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:1015px;
  4085. top:108px;
  4086. width:375px;
  4087. height:681px;
  4088. display:flex;
  4089. }
  4090. #u140448 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:2px 2px 2px 2px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u140448_text {
  4098. border-width:0px;
  4099. word-wrap:break-word;
  4100. text-transform:none;
  4101. visibility:hidden;
  4102. }
  4103. #u140449 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:0px;
  4109. height:0px;
  4110. }
  4111. #u140450_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:24px;
  4117. height:24px;
  4118. }
  4119. #u140450 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:1237px;
  4123. top:793px;
  4124. width:24px;
  4125. height:24px;
  4126. display:flex;
  4127. font-size:8px;
  4128. }
  4129. #u140450 .text {
  4130. position:absolute;
  4131. align-self:center;
  4132. padding:2px 2px 2px 2px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u140450_text {
  4137. border-width:0px;
  4138. word-wrap:break-word;
  4139. text-transform:none;
  4140. }
  4141. #u140451_div {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:37px;
  4147. height:17px;
  4148. background:inherit;
  4149. background-color:rgba(255, 255, 255, 0);
  4150. border:none;
  4151. border-radius:0px;
  4152. -moz-box-shadow:none;
  4153. -webkit-box-shadow:none;
  4154. box-shadow:none;
  4155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4156. font-weight:400;
  4157. font-style:normal;
  4158. font-size:12px;
  4159. }
  4160. #u140451 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:1231px;
  4164. top:818px;
  4165. width:37px;
  4166. height:17px;
  4167. display:flex;
  4168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4169. font-weight:400;
  4170. font-style:normal;
  4171. font-size:12px;
  4172. }
  4173. #u140451 .text {
  4174. position:absolute;
  4175. align-self:flex-start;
  4176. padding:0px 0px 0px 0px;
  4177. box-sizing:border-box;
  4178. width:100%;
  4179. }
  4180. #u140451_text {
  4181. border-width:0px;
  4182. white-space:nowrap;
  4183. text-transform:none;
  4184. }
  4185. #u140452 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:0px;
  4191. height:0px;
  4192. }
  4193. #u140453_img {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:24px;
  4199. height:24px;
  4200. }
  4201. #u140453 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:1143px;
  4205. top:793px;
  4206. width:24px;
  4207. height:24px;
  4208. display:flex;
  4209. font-size:8px;
  4210. }
  4211. #u140453 .text {
  4212. position:absolute;
  4213. align-self:center;
  4214. padding:2px 2px 2px 2px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u140453_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. }
  4223. #u140454_div {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:37px;
  4229. height:17px;
  4230. background:inherit;
  4231. background-color:rgba(255, 255, 255, 0);
  4232. border:none;
  4233. border-radius:0px;
  4234. -moz-box-shadow:none;
  4235. -webkit-box-shadow:none;
  4236. box-shadow:none;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. }
  4242. #u140454 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:1137px;
  4246. top:818px;
  4247. width:37px;
  4248. height:17px;
  4249. display:flex;
  4250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:12px;
  4254. }
  4255. #u140454 .text {
  4256. position:absolute;
  4257. align-self:flex-start;
  4258. padding:0px 0px 0px 0px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u140454_text {
  4263. border-width:0px;
  4264. white-space:nowrap;
  4265. text-transform:none;
  4266. }
  4267. #u140455_img {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:375px;
  4273. height:44px;
  4274. }
  4275. #u140455 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:1015px;
  4279. top:25px;
  4280. width:375px;
  4281. height:44px;
  4282. display:flex;
  4283. }
  4284. #u140455 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 2px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u140455_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u140456 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:0px;
  4303. height:0px;
  4304. }
  4305. #u140457_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:88px;
  4311. height:32px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 1);
  4314. box-sizing:border-box;
  4315. border-width:1px;
  4316. border-style:solid;
  4317. border-color:rgba(242, 242, 242, 1);
  4318. border-radius:33px;
  4319. -moz-box-shadow:none;
  4320. -webkit-box-shadow:none;
  4321. box-shadow:none;
  4322. }
  4323. #u140457 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:1295px;
  4327. top:72px;
  4328. width:88px;
  4329. height:32px;
  4330. display:flex;
  4331. }
  4332. #u140457 .text {
  4333. position:absolute;
  4334. align-self:center;
  4335. padding:2px 2px 2px 2px;
  4336. box-sizing:border-box;
  4337. width:100%;
  4338. }
  4339. #u140457_text {
  4340. border-width:0px;
  4341. word-wrap:break-word;
  4342. text-transform:none;
  4343. visibility:hidden;
  4344. }
  4345. #u140458 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:0px;
  4349. top:0px;
  4350. width:0px;
  4351. height:0px;
  4352. }
  4353. #u140459_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:18px;
  4359. height:18px;
  4360. }
  4361. #u140459 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:1358px;
  4365. top:79px;
  4366. width:18px;
  4367. height:18px;
  4368. display:flex;
  4369. }
  4370. #u140459 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:2px 2px 2px 2px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u140459_text {
  4378. border-width:0px;
  4379. word-wrap:break-word;
  4380. text-transform:none;
  4381. visibility:hidden;
  4382. }
  4383. #u140460_img {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:6px;
  4389. height:6px;
  4390. }
  4391. #u140460 {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:1364px;
  4395. top:85px;
  4396. width:6px;
  4397. height:6px;
  4398. display:flex;
  4399. }
  4400. #u140460 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 2px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u140460_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. visibility:hidden;
  4412. }
  4413. #u140461 {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:0px;
  4419. height:0px;
  4420. }
  4421. #u140462_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:5px;
  4427. height:5px;
  4428. }
  4429. #u140462 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:1309px;
  4433. top:86px;
  4434. width:5px;
  4435. height:5px;
  4436. display:flex;
  4437. }
  4438. #u140462 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 2px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u140462_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u140463_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:5px;
  4457. height:5px;
  4458. }
  4459. #u140463 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:1325px;
  4463. top:86px;
  4464. width:5px;
  4465. height:5px;
  4466. display:flex;
  4467. }
  4468. #u140463 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 2px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u140463_text {
  4476. border-width:0px;
  4477. word-wrap:break-word;
  4478. text-transform:none;
  4479. visibility:hidden;
  4480. }
  4481. #u140464_img {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:7px;
  4487. height:7px;
  4488. }
  4489. #u140464 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:1316px;
  4493. top:85px;
  4494. width:7px;
  4495. height:7px;
  4496. display:flex;
  4497. }
  4498. #u140464 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 2px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u140464_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. visibility:hidden;
  4510. }
  4511. #u140465_img {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:19px;
  4517. height:2px;
  4518. }
  4519. #u140465 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:1333px;
  4523. top:88px;
  4524. width:18px;
  4525. height:1px;
  4526. display:flex;
  4527. -webkit-transform:rotate(90deg);
  4528. -moz-transform:rotate(90deg);
  4529. -ms-transform:rotate(90deg);
  4530. transform:rotate(90deg);
  4531. }
  4532. #u140465 .text {
  4533. position:absolute;
  4534. align-self:center;
  4535. padding:2px 2px 2px 2px;
  4536. box-sizing:border-box;
  4537. width:100%;
  4538. }
  4539. #u140465_text {
  4540. border-width:0px;
  4541. word-wrap:break-word;
  4542. text-transform:none;
  4543. visibility:hidden;
  4544. }
  4545. #u140466_div {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:65px;
  4551. height:22px;
  4552. background:inherit;
  4553. background-color:rgba(255, 255, 255, 0);
  4554. border:none;
  4555. border-radius:0px;
  4556. -moz-box-shadow:none;
  4557. -webkit-box-shadow:none;
  4558. box-shadow:none;
  4559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:16px;
  4563. color:#000000;
  4564. }
  4565. #u140466 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:1173px;
  4569. top:79px;
  4570. width:65px;
  4571. height:22px;
  4572. display:flex;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:16px;
  4577. color:#000000;
  4578. }
  4579. #u140466 .text {
  4580. position:absolute;
  4581. align-self:flex-start;
  4582. padding:0px 0px 0px 0px;
  4583. box-sizing:border-box;
  4584. width:100%;
  4585. }
  4586. #u140466_text {
  4587. border-width:0px;
  4588. white-space:nowrap;
  4589. text-transform:none;
  4590. }
  4591. #u140467_div {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:375px;
  4597. height:683px;
  4598. background:inherit;
  4599. background-color:rgba(242, 242, 242, 0.996078431372549);
  4600. border:none;
  4601. border-radius:0px;
  4602. -moz-box-shadow:none;
  4603. -webkit-box-shadow:none;
  4604. box-shadow:none;
  4605. }
  4606. #u140467 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:1015px;
  4610. top:107px;
  4611. width:375px;
  4612. height:683px;
  4613. display:flex;
  4614. }
  4615. #u140467 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:2px 2px 2px 2px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u140467_text {
  4623. border-width:0px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. visibility:hidden;
  4627. }
  4628. #u140468_img {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:375px;
  4634. height:199px;
  4635. }
  4636. #u140468 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:1015px;
  4640. top:167px;
  4641. width:375px;
  4642. height:199px;
  4643. display:flex;
  4644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. color:#FFFFFF;
  4648. }
  4649. #u140468 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:2px 2px 2px 2px;
  4653. box-sizing:border-box;
  4654. width:100%;
  4655. }
  4656. #u140468_text {
  4657. border-width:0px;
  4658. word-wrap:break-word;
  4659. text-transform:none;
  4660. }
  4661. #u140469 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:0px;
  4667. height:0px;
  4668. }
  4669. #u140470_div {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:0px;
  4673. top:0px;
  4674. width:375px;
  4675. height:50px;
  4676. background:inherit;
  4677. background-color:rgba(255, 255, 255, 1);
  4678. border:none;
  4679. border-radius:0px;
  4680. -moz-box-shadow:none;
  4681. -webkit-box-shadow:none;
  4682. box-shadow:none;
  4683. }
  4684. #u140470 {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:1015px;
  4688. top:416px;
  4689. width:375px;
  4690. height:50px;
  4691. display:flex;
  4692. }
  4693. #u140470 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:2px 2px 2px 2px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u140470_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. visibility:hidden;
  4705. }
  4706. #u140471_div {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:33px;
  4712. height:22px;
  4713. background:inherit;
  4714. background-color:rgba(255, 255, 255, 0);
  4715. border:none;
  4716. border-radius:0px;
  4717. -moz-box-shadow:none;
  4718. -webkit-box-shadow:none;
  4719. box-shadow:none;
  4720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:16px;
  4724. }
  4725. #u140471 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:1055px;
  4729. top:430px;
  4730. width:33px;
  4731. height:22px;
  4732. display:flex;
  4733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:16px;
  4737. }
  4738. #u140471 .text {
  4739. position:absolute;
  4740. align-self:flex-start;
  4741. padding:0px 0px 0px 0px;
  4742. box-sizing:border-box;
  4743. width:100%;
  4744. }
  4745. #u140471_text {
  4746. border-width:0px;
  4747. white-space:nowrap;
  4748. text-transform:none;
  4749. }
  4750. #u140472_img {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:18px;
  4756. height:14px;
  4757. }
  4758. #u140472 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:1027px;
  4762. top:434px;
  4763. width:18px;
  4764. height:14px;
  4765. display:flex;
  4766. }
  4767. #u140472 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 2px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u140472_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. visibility:hidden;
  4779. }
  4780. #u140473_div {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:376px;
  4786. height:50px;
  4787. background:inherit;
  4788. background-color:rgba(0, 0, 0, 1);
  4789. border:none;
  4790. border-radius:0px;
  4791. -moz-box-shadow:none;
  4792. -webkit-box-shadow:none;
  4793. box-shadow:none;
  4794. }
  4795. #u140473 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:1014px;
  4799. top:366px;
  4800. width:376px;
  4801. height:50px;
  4802. display:flex;
  4803. }
  4804. #u140473 .text {
  4805. position:absolute;
  4806. align-self:center;
  4807. padding:2px 2px 2px 2px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u140473_text {
  4812. border-width:0px;
  4813. word-wrap:break-word;
  4814. text-transform:none;
  4815. visibility:hidden;
  4816. }
  4817. #u140474 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:0px;
  4823. height:0px;
  4824. }
  4825. #u140475_div {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:11px;
  4831. height:10px;
  4832. background:inherit;
  4833. background-color:rgba(242, 242, 242, 1);
  4834. border:none;
  4835. border-radius:0px;
  4836. -moz-box-shadow:none;
  4837. -webkit-box-shadow:none;
  4838. box-shadow:none;
  4839. }
  4840. #u140475 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:1185px;
  4844. top:380px;
  4845. width:11px;
  4846. height:10px;
  4847. display:flex;
  4848. }
  4849. #u140475 .text {
  4850. position:absolute;
  4851. align-self:center;
  4852. padding:2px 2px 2px 2px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u140475_text {
  4857. border-width:0px;
  4858. word-wrap:break-word;
  4859. text-transform:none;
  4860. visibility:hidden;
  4861. }
  4862. #u140476_div {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:0px;
  4866. top:0px;
  4867. width:11px;
  4868. height:10px;
  4869. background:inherit;
  4870. background-color:rgba(242, 242, 242, 1);
  4871. border:none;
  4872. border-radius:0px;
  4873. -moz-box-shadow:none;
  4874. -webkit-box-shadow:none;
  4875. box-shadow:none;
  4876. }
  4877. #u140476 {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:1198px;
  4881. top:380px;
  4882. width:11px;
  4883. height:10px;
  4884. display:flex;
  4885. }
  4886. #u140476 .text {
  4887. position:absolute;
  4888. align-self:center;
  4889. padding:2px 2px 2px 2px;
  4890. box-sizing:border-box;
  4891. width:100%;
  4892. }
  4893. #u140476_text {
  4894. border-width:0px;
  4895. word-wrap:break-word;
  4896. text-transform:none;
  4897. visibility:hidden;
  4898. }
  4899. #u140477_div {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:0px;
  4903. top:0px;
  4904. width:11px;
  4905. height:10px;
  4906. background:inherit;
  4907. background-color:rgba(242, 242, 242, 1);
  4908. border:none;
  4909. border-radius:0px;
  4910. -moz-box-shadow:none;
  4911. -webkit-box-shadow:none;
  4912. box-shadow:none;
  4913. }
  4914. #u140477 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:1185px;
  4918. top:392px;
  4919. width:11px;
  4920. height:10px;
  4921. display:flex;
  4922. }
  4923. #u140477 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:2px 2px 2px 2px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u140477_text {
  4931. border-width:0px;
  4932. word-wrap:break-word;
  4933. text-transform:none;
  4934. visibility:hidden;
  4935. }
  4936. #u140478_div {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:11px;
  4942. height:10px;
  4943. background:inherit;
  4944. background-color:rgba(242, 242, 242, 1);
  4945. border:none;
  4946. border-radius:0px;
  4947. -moz-box-shadow:none;
  4948. -webkit-box-shadow:none;
  4949. box-shadow:none;
  4950. }
  4951. #u140478 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:1198px;
  4955. top:392px;
  4956. width:11px;
  4957. height:10px;
  4958. display:flex;
  4959. }
  4960. #u140478 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 2px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u140478_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. visibility:hidden;
  4972. }
  4973. #u140479 {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:0px;
  4979. height:0px;
  4980. }
  4981. #u140480_div {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:7px;
  4987. height:22px;
  4988. background:inherit;
  4989. background-color:rgba(242, 242, 242, 1);
  4990. border:none;
  4991. border-radius:0px;
  4992. -moz-box-shadow:none;
  4993. -webkit-box-shadow:none;
  4994. box-shadow:none;
  4995. }
  4996. #u140480 {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:1037px;
  5000. top:380px;
  5001. width:7px;
  5002. height:22px;
  5003. display:flex;
  5004. }
  5005. #u140480 .text {
  5006. position:absolute;
  5007. align-self:center;
  5008. padding:2px 2px 2px 2px;
  5009. box-sizing:border-box;
  5010. width:100%;
  5011. }
  5012. #u140480_text {
  5013. border-width:0px;
  5014. word-wrap:break-word;
  5015. text-transform:none;
  5016. visibility:hidden;
  5017. }
  5018. #u140481_div {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:7px;
  5024. height:22px;
  5025. background:inherit;
  5026. background-color:rgba(242, 242, 242, 1);
  5027. border:none;
  5028. border-radius:0px;
  5029. -moz-box-shadow:none;
  5030. -webkit-box-shadow:none;
  5031. box-shadow:none;
  5032. }
  5033. #u140481 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:1048px;
  5037. top:380px;
  5038. width:7px;
  5039. height:22px;
  5040. display:flex;
  5041. }
  5042. #u140481 .text {
  5043. position:absolute;
  5044. align-self:center;
  5045. padding:2px 2px 2px 2px;
  5046. box-sizing:border-box;
  5047. width:100%;
  5048. }
  5049. #u140481_text {
  5050. border-width:0px;
  5051. word-wrap:break-word;
  5052. text-transform:none;
  5053. visibility:hidden;
  5054. }
  5055. #u140482_div {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:40px;
  5061. height:24px;
  5062. background:inherit;
  5063. background-color:rgba(255, 255, 255, 0);
  5064. box-sizing:border-box;
  5065. border-width:1px;
  5066. border-style:solid;
  5067. border-color:rgba(255, 255, 255, 1);
  5068. border-radius:4px;
  5069. -moz-box-shadow:none;
  5070. -webkit-box-shadow:none;
  5071. box-shadow:none;
  5072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:12px;
  5076. color:#FFFFFF;
  5077. text-align:center;
  5078. }
  5079. #u140482 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:1100px;
  5083. top:380px;
  5084. width:40px;
  5085. height:24px;
  5086. display:flex;
  5087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:12px;
  5091. color:#FFFFFF;
  5092. text-align:center;
  5093. }
  5094. #u140482 .text {
  5095. position:absolute;
  5096. align-self:center;
  5097. padding:0px 0px 0px 0px;
  5098. box-sizing:border-box;
  5099. width:100%;
  5100. }
  5101. #u140482_text {
  5102. border-width:0px;
  5103. word-wrap:break-word;
  5104. text-transform:none;
  5105. }
  5106. #u140483_img {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:44px;
  5112. height:33px;
  5113. }
  5114. #u140483 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:1253px;
  5118. top:375px;
  5119. width:44px;
  5120. height:33px;
  5121. display:flex;
  5122. }
  5123. #u140483 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:2px 2px 2px 2px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u140483_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u140484_img {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:28px;
  5142. height:26px;
  5143. }
  5144. #u140484 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:1342px;
  5148. top:378px;
  5149. width:28px;
  5150. height:26px;
  5151. display:flex;
  5152. }
  5153. #u140484 .text {
  5154. position:absolute;
  5155. align-self:center;
  5156. padding:2px 2px 2px 2px;
  5157. box-sizing:border-box;
  5158. width:100%;
  5159. }
  5160. #u140484_text {
  5161. border-width:0px;
  5162. word-wrap:break-word;
  5163. text-transform:none;
  5164. visibility:hidden;
  5165. }
  5166. #u140485_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:12px;
  5172. height:12px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. box-sizing:border-box;
  5176. border-width:2px;
  5177. border-style:solid;
  5178. border-color:rgba(51, 51, 51, 1);
  5179. border-right:0px;
  5180. border-bottom:0px;
  5181. border-radius:0px;
  5182. border-top-right-radius:0px;
  5183. border-bottom-left-radius:0px;
  5184. -moz-box-shadow:none;
  5185. -webkit-box-shadow:none;
  5186. box-shadow:none;
  5187. }
  5188. #u140485 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:1030px;
  5192. top:82px;
  5193. width:12px;
  5194. height:12px;
  5195. display:flex;
  5196. -webkit-transform:rotate(315deg);
  5197. -moz-transform:rotate(315deg);
  5198. -ms-transform:rotate(315deg);
  5199. transform:rotate(315deg);
  5200. }
  5201. #u140485 .text {
  5202. position:absolute;
  5203. align-self:center;
  5204. padding:2px 2px 2px 2px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u140485_text {
  5209. border-width:0px;
  5210. word-wrap:break-word;
  5211. text-transform:none;
  5212. visibility:hidden;
  5213. }
  5214. #u140486_img {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:23px;
  5220. height:23px;
  5221. }
  5222. #u140486 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:1057px;
  5226. top:77px;
  5227. width:23px;
  5228. height:23px;
  5229. display:flex;
  5230. }
  5231. #u140486 .text {
  5232. position:absolute;
  5233. align-self:center;
  5234. padding:2px 2px 2px 2px;
  5235. box-sizing:border-box;
  5236. width:100%;
  5237. }
  5238. #u140486_text {
  5239. border-width:0px;
  5240. word-wrap:break-word;
  5241. text-transform:none;
  5242. visibility:hidden;
  5243. }
  5244. #u140487_img {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:101px;
  5250. height:67px;
  5251. }
  5252. #u140487 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:1027px;
  5256. top:482px;
  5257. width:101px;
  5258. height:67px;
  5259. display:flex;
  5260. }
  5261. #u140487 .text {
  5262. position:absolute;
  5263. align-self:center;
  5264. padding:2px 2px 2px 2px;
  5265. box-sizing:border-box;
  5266. width:100%;
  5267. }
  5268. #u140487_text {
  5269. border-width:0px;
  5270. word-wrap:break-word;
  5271. text-transform:none;
  5272. visibility:hidden;
  5273. }
  5274. #u140488_img {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:101px;
  5280. height:67px;
  5281. }
  5282. #u140488 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:1145px;
  5286. top:482px;
  5287. width:101px;
  5288. height:67px;
  5289. display:flex;
  5290. }
  5291. #u140488 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 2px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u140488_text {
  5299. border-width:0px;
  5300. word-wrap:break-word;
  5301. text-transform:none;
  5302. visibility:hidden;
  5303. }
  5304. #u140489_img {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:0px;
  5308. top:0px;
  5309. width:101px;
  5310. height:67px;
  5311. }
  5312. #u140489 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:1263px;
  5316. top:482px;
  5317. width:101px;
  5318. height:67px;
  5319. display:flex;
  5320. }
  5321. #u140489 .text {
  5322. position:absolute;
  5323. align-self:center;
  5324. padding:2px 2px 2px 2px;
  5325. box-sizing:border-box;
  5326. width:100%;
  5327. }
  5328. #u140489_text {
  5329. border-width:0px;
  5330. word-wrap:break-word;
  5331. text-transform:none;
  5332. visibility:hidden;
  5333. }
  5334. #u140490_img {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:101px;
  5340. height:67px;
  5341. }
  5342. #u140490 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:1027px;
  5346. top:575px;
  5347. width:101px;
  5348. height:67px;
  5349. display:flex;
  5350. }
  5351. #u140490 .text {
  5352. position:absolute;
  5353. align-self:center;
  5354. padding:2px 2px 2px 2px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u140490_text {
  5359. border-width:0px;
  5360. word-wrap:break-word;
  5361. text-transform:none;
  5362. visibility:hidden;
  5363. }
  5364. #u140491_img {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:101px;
  5370. height:67px;
  5371. }
  5372. #u140491 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:1145px;
  5376. top:575px;
  5377. width:101px;
  5378. height:67px;
  5379. display:flex;
  5380. }
  5381. #u140491 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 2px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u140491_text {
  5389. border-width:0px;
  5390. word-wrap:break-word;
  5391. text-transform:none;
  5392. visibility:hidden;
  5393. }
  5394. #u140492_img {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:101px;
  5400. height:67px;
  5401. }
  5402. #u140492 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:1263px;
  5406. top:575px;
  5407. width:101px;
  5408. height:67px;
  5409. display:flex;
  5410. }
  5411. #u140492 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:2px 2px 2px 2px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u140492_text {
  5419. border-width:0px;
  5420. word-wrap:break-word;
  5421. text-transform:none;
  5422. visibility:hidden;
  5423. }
  5424. #u140493_div {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:54px;
  5430. height:17px;
  5431. background:inherit;
  5432. background-color:rgba(255, 255, 255, 0);
  5433. border:none;
  5434. border-radius:0px;
  5435. -moz-box-shadow:none;
  5436. -webkit-box-shadow:none;
  5437. box-shadow:none;
  5438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5439. font-weight:400;
  5440. font-style:normal;
  5441. font-size:12px;
  5442. color:#555555;
  5443. }
  5444. #u140493 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:1027px;
  5448. top:549px;
  5449. width:54px;
  5450. height:17px;
  5451. display:flex;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:12px;
  5456. color:#555555;
  5457. }
  5458. #u140493 .text {
  5459. position:absolute;
  5460. align-self:flex-start;
  5461. padding:0px 0px 0px 0px;
  5462. box-sizing:border-box;
  5463. width:100%;
  5464. }
  5465. #u140493_text {
  5466. border-width:0px;
  5467. white-space:nowrap;
  5468. text-transform:none;
  5469. }
  5470. #u140494_div {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:49px;
  5476. height:17px;
  5477. background:inherit;
  5478. background-color:rgba(255, 255, 255, 0);
  5479. border:none;
  5480. border-radius:0px;
  5481. -moz-box-shadow:none;
  5482. -webkit-box-shadow:none;
  5483. box-shadow:none;
  5484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:12px;
  5488. color:#555555;
  5489. }
  5490. #u140494 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:1145px;
  5494. top:549px;
  5495. width:49px;
  5496. height:17px;
  5497. display:flex;
  5498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5499. font-weight:400;
  5500. font-style:normal;
  5501. font-size:12px;
  5502. color:#555555;
  5503. }
  5504. #u140494 .text {
  5505. position:absolute;
  5506. align-self:flex-start;
  5507. padding:0px 0px 0px 0px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u140494_text {
  5512. border-width:0px;
  5513. white-space:nowrap;
  5514. text-transform:none;
  5515. }
  5516. #u140495_div {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:49px;
  5522. height:17px;
  5523. background:inherit;
  5524. background-color:rgba(255, 255, 255, 0);
  5525. border:none;
  5526. border-radius:0px;
  5527. -moz-box-shadow:none;
  5528. -webkit-box-shadow:none;
  5529. box-shadow:none;
  5530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:12px;
  5534. color:#555555;
  5535. }
  5536. #u140495 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:1263px;
  5540. top:549px;
  5541. width:49px;
  5542. height:17px;
  5543. display:flex;
  5544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:12px;
  5548. color:#555555;
  5549. }
  5550. #u140495 .text {
  5551. position:absolute;
  5552. align-self:flex-start;
  5553. padding:0px 0px 0px 0px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u140495_text {
  5558. border-width:0px;
  5559. white-space:nowrap;
  5560. text-transform:none;
  5561. }
  5562. #u140496_div {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:56px;
  5568. height:17px;
  5569. background:inherit;
  5570. background-color:rgba(255, 255, 255, 0);
  5571. border:none;
  5572. border-radius:0px;
  5573. -moz-box-shadow:none;
  5574. -webkit-box-shadow:none;
  5575. box-shadow:none;
  5576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5577. font-weight:400;
  5578. font-style:normal;
  5579. font-size:12px;
  5580. color:#555555;
  5581. }
  5582. #u140496 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:1027px;
  5586. top:642px;
  5587. width:56px;
  5588. height:17px;
  5589. display:flex;
  5590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5591. font-weight:400;
  5592. font-style:normal;
  5593. font-size:12px;
  5594. color:#555555;
  5595. }
  5596. #u140496 .text {
  5597. position:absolute;
  5598. align-self:flex-start;
  5599. padding:0px 0px 0px 0px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u140496_text {
  5604. border-width:0px;
  5605. white-space:nowrap;
  5606. text-transform:none;
  5607. }
  5608. #u140497_div {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:49px;
  5614. height:17px;
  5615. background:inherit;
  5616. background-color:rgba(255, 255, 255, 0);
  5617. border:none;
  5618. border-radius:0px;
  5619. -moz-box-shadow:none;
  5620. -webkit-box-shadow:none;
  5621. box-shadow:none;
  5622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5623. font-weight:400;
  5624. font-style:normal;
  5625. font-size:12px;
  5626. color:#555555;
  5627. }
  5628. #u140497 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:1145px;
  5632. top:642px;
  5633. width:49px;
  5634. height:17px;
  5635. display:flex;
  5636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:12px;
  5640. color:#555555;
  5641. }
  5642. #u140497 .text {
  5643. position:absolute;
  5644. align-self:flex-start;
  5645. padding:0px 0px 0px 0px;
  5646. box-sizing:border-box;
  5647. width:100%;
  5648. }
  5649. #u140497_text {
  5650. border-width:0px;
  5651. white-space:nowrap;
  5652. text-transform:none;
  5653. }
  5654. #u140498_div {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:49px;
  5660. height:17px;
  5661. background:inherit;
  5662. background-color:rgba(255, 255, 255, 0);
  5663. border:none;
  5664. border-radius:0px;
  5665. -moz-box-shadow:none;
  5666. -webkit-box-shadow:none;
  5667. box-shadow:none;
  5668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5669. font-weight:400;
  5670. font-style:normal;
  5671. font-size:12px;
  5672. color:#555555;
  5673. }
  5674. #u140498 {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:1263px;
  5678. top:642px;
  5679. width:49px;
  5680. height:17px;
  5681. display:flex;
  5682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5683. font-weight:400;
  5684. font-style:normal;
  5685. font-size:12px;
  5686. color:#555555;
  5687. }
  5688. #u140498 .text {
  5689. position:absolute;
  5690. align-self:flex-start;
  5691. padding:0px 0px 0px 0px;
  5692. box-sizing:border-box;
  5693. width:100%;
  5694. }
  5695. #u140498_text {
  5696. border-width:0px;
  5697. white-space:nowrap;
  5698. text-transform:none;
  5699. }
  5700. #u140499 {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:0px;
  5704. top:0px;
  5705. width:0px;
  5706. height:0px;
  5707. }
  5708. #u140500_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:82px;
  5714. height:30px;
  5715. background:inherit;
  5716. background-color:rgba(24, 144, 255, 1);
  5717. border:none;
  5718. border-radius:3px;
  5719. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5720. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5721. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5723. font-weight:400;
  5724. font-style:normal;
  5725. font-size:12px;
  5726. color:#FFFFFF;
  5727. text-align:center;
  5728. }
  5729. #u140500 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:1294px;
  5733. top:734px;
  5734. width:82px;
  5735. height:30px;
  5736. display:flex;
  5737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:12px;
  5741. color:#FFFFFF;
  5742. text-align:center;
  5743. }
  5744. #u140500 .text {
  5745. position:absolute;
  5746. align-self:center;
  5747. padding:0px 5px 0px 5px;
  5748. box-sizing:border-box;
  5749. width:100%;
  5750. }
  5751. #u140500_text {
  5752. border-width:0px;
  5753. word-wrap:break-word;
  5754. text-transform:none;
  5755. }
  5756. #u140501 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:0px;
  5762. height:0px;
  5763. }
  5764. #u140502_div {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:82px;
  5770. height:140px;
  5771. background:inherit;
  5772. background-color:rgba(255, 255, 255, 1);
  5773. border:none;
  5774. border-radius:3px;
  5775. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5776. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5777. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5779. font-weight:400;
  5780. font-style:normal;
  5781. font-size:12px;
  5782. color:#FFFFFF;
  5783. text-align:center;
  5784. }
  5785. #u140502 {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:1295px;
  5789. top:589px;
  5790. width:82px;
  5791. height:140px;
  5792. display:flex;
  5793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5794. font-weight:400;
  5795. font-style:normal;
  5796. font-size:12px;
  5797. color:#FFFFFF;
  5798. text-align:center;
  5799. }
  5800. #u140502 .text {
  5801. position:absolute;
  5802. align-self:center;
  5803. padding:0px 5px 0px 5px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u140502_text {
  5808. border-width:0px;
  5809. word-wrap:break-word;
  5810. text-transform:none;
  5811. visibility:hidden;
  5812. }
  5813. #u140503_div {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:71px;
  5819. height:40px;
  5820. background:inherit;
  5821. background-color:rgba(255, 255, 255, 1);
  5822. box-sizing:border-box;
  5823. border-width:1px;
  5824. border-style:solid;
  5825. border-color:rgba(215, 215, 215, 1);
  5826. border-left:0px;
  5827. border-top:0px;
  5828. border-right:0px;
  5829. border-radius:3px;
  5830. border-bottom-right-radius:0px;
  5831. border-bottom-left-radius:0px;
  5832. -moz-box-shadow:none;
  5833. -webkit-box-shadow:none;
  5834. box-shadow:none;
  5835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5836. font-weight:400;
  5837. font-style:normal;
  5838. font-size:12px;
  5839. text-align:center;
  5840. }
  5841. #u140503 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:1301px;
  5845. top:599px;
  5846. width:71px;
  5847. height:40px;
  5848. display:flex;
  5849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:12px;
  5853. text-align:center;
  5854. }
  5855. #u140503 .text {
  5856. position:absolute;
  5857. align-self:center;
  5858. padding:0px 5px 0px 5px;
  5859. box-sizing:border-box;
  5860. width:100%;
  5861. }
  5862. #u140503_text {
  5863. border-width:0px;
  5864. word-wrap:break-word;
  5865. text-transform:none;
  5866. }
  5867. #u140504_div {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:71px;
  5873. height:40px;
  5874. background:inherit;
  5875. background-color:rgba(255, 255, 255, 1);
  5876. box-sizing:border-box;
  5877. border-width:1px;
  5878. border-style:solid;
  5879. border-color:rgba(215, 215, 215, 1);
  5880. border-left:0px;
  5881. border-top:0px;
  5882. border-right:0px;
  5883. border-radius:3px;
  5884. border-bottom-right-radius:0px;
  5885. border-bottom-left-radius:0px;
  5886. -moz-box-shadow:none;
  5887. -webkit-box-shadow:none;
  5888. box-shadow:none;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:12px;
  5893. text-align:center;
  5894. }
  5895. #u140504 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:1301px;
  5899. top:639px;
  5900. width:71px;
  5901. height:40px;
  5902. display:flex;
  5903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5904. font-weight:400;
  5905. font-style:normal;
  5906. font-size:12px;
  5907. text-align:center;
  5908. }
  5909. #u140504 .text {
  5910. position:absolute;
  5911. align-self:center;
  5912. padding:0px 5px 0px 5px;
  5913. box-sizing:border-box;
  5914. width:100%;
  5915. }
  5916. #u140504_text {
  5917. border-width:0px;
  5918. word-wrap:break-word;
  5919. text-transform:none;
  5920. }
  5921. #u140505_div {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:71px;
  5927. height:40px;
  5928. background:inherit;
  5929. background-color:rgba(255, 255, 255, 1);
  5930. border:none;
  5931. border-left:0px;
  5932. border-top:0px;
  5933. border-right:0px;
  5934. border-radius:3px;
  5935. border-bottom-right-radius:0px;
  5936. border-bottom-left-radius:0px;
  5937. -moz-box-shadow:none;
  5938. -webkit-box-shadow:none;
  5939. box-shadow:none;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:12px;
  5944. text-align:center;
  5945. }
  5946. #u140505 {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:1301px;
  5950. top:679px;
  5951. width:71px;
  5952. height:40px;
  5953. display:flex;
  5954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:12px;
  5958. text-align:center;
  5959. }
  5960. #u140505 .text {
  5961. position:absolute;
  5962. align-self:center;
  5963. padding:0px 5px 0px 5px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u140505_text {
  5968. border-width:0px;
  5969. word-wrap:break-word;
  5970. text-transform:none;
  5971. }
  5972. #u140506_div {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:62px;
  5978. height:30px;
  5979. background:inherit;
  5980. background-color:rgba(92, 122, 253, 1);
  5981. box-sizing:border-box;
  5982. border-width:1px;
  5983. border-style:solid;
  5984. border-color:rgba(121, 121, 121, 1);
  5985. border-right:0px;
  5986. border-radius:4px;
  5987. border-top-right-radius:0px;
  5988. border-bottom-right-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:12px;
  5996. color:#FFFFFF;
  5997. }
  5998. #u140506 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:159px;
  6002. top:741px;
  6003. width:62px;
  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:12px;
  6010. color:#FFFFFF;
  6011. }
  6012. #u140506 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:2px 2px 2px 2px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u140506_text {
  6020. border-width:0px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. }
  6024. #u140507_div {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:62px;
  6030. height:30px;
  6031. background:inherit;
  6032. background-color:rgba(255, 255, 255, 1);
  6033. box-sizing:border-box;
  6034. border-width:1px;
  6035. border-style:solid;
  6036. border-color:rgba(121, 121, 121, 1);
  6037. border-radius:4px;
  6038. border-top-left-radius:0px;
  6039. border-bottom-left-radius:0px;
  6040. -moz-box-shadow:none;
  6041. -webkit-box-shadow:none;
  6042. box-shadow:none;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:12px;
  6047. }
  6048. #u140507 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:220px;
  6052. top:741px;
  6053. width:62px;
  6054. height:30px;
  6055. display:flex;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:12px;
  6060. }
  6061. #u140507 .text {
  6062. position:absolute;
  6063. align-self:center;
  6064. padding:2px 2px 2px 2px;
  6065. box-sizing:border-box;
  6066. width:100%;
  6067. }
  6068. #u140507_text {
  6069. border-width:0px;
  6070. word-wrap:break-word;
  6071. text-transform:none;
  6072. }
  6073. #u140508_div {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:62px;
  6079. height:30px;
  6080. background:inherit;
  6081. background-color:rgba(255, 255, 255, 1);
  6082. box-sizing:border-box;
  6083. border-width:1px;
  6084. border-style:solid;
  6085. border-color:rgba(121, 121, 121, 1);
  6086. border-right:0px;
  6087. border-radius:4px;
  6088. border-top-right-radius:0px;
  6089. border-bottom-right-radius:0px;
  6090. -moz-box-shadow:none;
  6091. -webkit-box-shadow:none;
  6092. box-shadow:none;
  6093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:12px;
  6097. }
  6098. #u140508 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:640px;
  6102. top:741px;
  6103. width:62px;
  6104. height:30px;
  6105. display:flex;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:12px;
  6110. }
  6111. #u140508 .text {
  6112. position:absolute;
  6113. align-self:center;
  6114. padding:2px 2px 2px 2px;
  6115. box-sizing:border-box;
  6116. width:100%;
  6117. }
  6118. #u140508_text {
  6119. border-width:0px;
  6120. word-wrap:break-word;
  6121. text-transform:none;
  6122. }
  6123. #u140509_div {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:62px;
  6129. height:30px;
  6130. background:inherit;
  6131. background-color:rgba(92, 122, 253, 1);
  6132. box-sizing:border-box;
  6133. border-width:1px;
  6134. border-style:solid;
  6135. border-color:rgba(121, 121, 121, 1);
  6136. border-radius:4px;
  6137. border-top-left-radius:0px;
  6138. border-bottom-left-radius:0px;
  6139. -moz-box-shadow:none;
  6140. -webkit-box-shadow:none;
  6141. box-shadow:none;
  6142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:12px;
  6146. color:#FFFFFF;
  6147. }
  6148. #u140509 {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:701px;
  6152. top:741px;
  6153. width:62px;
  6154. height:30px;
  6155. display:flex;
  6156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6157. font-weight:400;
  6158. font-style:normal;
  6159. font-size:12px;
  6160. color:#FFFFFF;
  6161. }
  6162. #u140509 .text {
  6163. position:absolute;
  6164. align-self:center;
  6165. padding:2px 2px 2px 2px;
  6166. box-sizing:border-box;
  6167. width:100%;
  6168. }
  6169. #u140509_text {
  6170. border-width:0px;
  6171. word-wrap:break-word;
  6172. text-transform:none;
  6173. }
  6174. #u140510 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:0px;
  6180. height:0px;
  6181. }
  6182. #u140511_div {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:375px;
  6188. height:50px;
  6189. background:inherit;
  6190. background-color:rgba(255, 255, 255, 1);
  6191. box-sizing:border-box;
  6192. border-width:1px;
  6193. border-style:solid;
  6194. border-color:rgba(242, 242, 242, 1);
  6195. border-radius:26px;
  6196. border-top-left-radius:0px;
  6197. border-top-right-radius:0px;
  6198. -moz-box-shadow:none;
  6199. -webkit-box-shadow:none;
  6200. box-shadow:none;
  6201. }
  6202. #u140511 {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:515px;
  6206. top:790px;
  6207. width:375px;
  6208. height:50px;
  6209. display:flex;
  6210. }
  6211. #u140511 .text {
  6212. position:absolute;
  6213. align-self:center;
  6214. padding:2px 2px 2px 2px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u140511_text {
  6219. border-width:0px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. visibility:hidden;
  6223. }
  6224. #u140512 {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:0px;
  6230. height:0px;
  6231. }
  6232. #u140513_img {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:24px;
  6238. height:24px;
  6239. }
  6240. #u140513 {
  6241. border-width:0px;
  6242. position:absolute;
  6243. left:793px;
  6244. top:794px;
  6245. width:24px;
  6246. height:24px;
  6247. display:flex;
  6248. font-size:8px;
  6249. }
  6250. #u140513 .text {
  6251. position:absolute;
  6252. align-self:center;
  6253. padding:2px 2px 2px 2px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u140513_text {
  6258. border-width:0px;
  6259. word-wrap:break-word;
  6260. text-transform:none;
  6261. }
  6262. #u140514_div {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:49px;
  6268. height:17px;
  6269. background:inherit;
  6270. background-color:rgba(255, 255, 255, 0);
  6271. border:none;
  6272. border-radius:0px;
  6273. -moz-box-shadow:none;
  6274. -webkit-box-shadow:none;
  6275. box-shadow:none;
  6276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6277. font-weight:400;
  6278. font-style:normal;
  6279. font-size:12px;
  6280. }
  6281. #u140514 {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:781px;
  6285. top:819px;
  6286. width:49px;
  6287. height:17px;
  6288. display:flex;
  6289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:12px;
  6293. }
  6294. #u140514 .text {
  6295. position:absolute;
  6296. align-self:flex-start;
  6297. padding:0px 0px 0px 0px;
  6298. box-sizing:border-box;
  6299. width:100%;
  6300. }
  6301. #u140514_text {
  6302. border-width:0px;
  6303. white-space:nowrap;
  6304. text-transform:none;
  6305. }
  6306. #u140515 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:0px;
  6312. height:0px;
  6313. }
  6314. #u140516_div {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:49px;
  6320. height:17px;
  6321. background:inherit;
  6322. background-color:rgba(255, 255, 255, 0);
  6323. border:none;
  6324. border-radius:0px;
  6325. -moz-box-shadow:none;
  6326. -webkit-box-shadow:none;
  6327. box-shadow:none;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:12px;
  6332. }
  6333. #u140516 {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:575px;
  6337. top:819px;
  6338. width:49px;
  6339. height:17px;
  6340. display:flex;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:12px;
  6345. }
  6346. #u140516 .text {
  6347. position:absolute;
  6348. align-self:flex-start;
  6349. padding:0px 0px 0px 0px;
  6350. box-sizing:border-box;
  6351. width:100%;
  6352. }
  6353. #u140516_text {
  6354. border-width:0px;
  6355. white-space:nowrap;
  6356. text-transform:none;
  6357. }
  6358. #u140517_img {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:24px;
  6364. height:24px;
  6365. }
  6366. #u140517 {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:587px;
  6370. top:794px;
  6371. width:24px;
  6372. height:24px;
  6373. display:flex;
  6374. font-size:8px;
  6375. color:#FFFFFF;
  6376. }
  6377. #u140517 .text {
  6378. position:absolute;
  6379. align-self:center;
  6380. padding:2px 2px 2px 2px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u140517_text {
  6385. border-width:0px;
  6386. word-wrap:break-word;
  6387. text-transform:none;
  6388. }
  6389. #u140518 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:0px;
  6395. height:0px;
  6396. }
  6397. #u140519_div {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:0px;
  6401. top:0px;
  6402. width:375px;
  6403. height:50px;
  6404. background:inherit;
  6405. background-color:rgba(255, 255, 255, 1);
  6406. box-sizing:border-box;
  6407. border-width:1px;
  6408. border-style:solid;
  6409. border-color:rgba(242, 242, 242, 1);
  6410. border-radius:26px;
  6411. border-top-left-radius:0px;
  6412. border-top-right-radius:0px;
  6413. -moz-box-shadow:none;
  6414. -webkit-box-shadow:none;
  6415. box-shadow:none;
  6416. }
  6417. #u140519 {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:1015px;
  6421. top:790px;
  6422. width:375px;
  6423. height:50px;
  6424. display:flex;
  6425. }
  6426. #u140519 .text {
  6427. position:absolute;
  6428. align-self:center;
  6429. padding:2px 2px 2px 2px;
  6430. box-sizing:border-box;
  6431. width:100%;
  6432. }
  6433. #u140519_text {
  6434. border-width:0px;
  6435. word-wrap:break-word;
  6436. text-transform:none;
  6437. visibility:hidden;
  6438. }
  6439. #u140520 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:0px;
  6445. height:0px;
  6446. }
  6447. #u140521_img {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:24px;
  6453. height:24px;
  6454. }
  6455. #u140521 {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:1293px;
  6459. top:794px;
  6460. width:24px;
  6461. height:24px;
  6462. display:flex;
  6463. font-size:8px;
  6464. }
  6465. #u140521 .text {
  6466. position:absolute;
  6467. align-self:center;
  6468. padding:2px 2px 2px 2px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u140521_text {
  6473. border-width:0px;
  6474. word-wrap:break-word;
  6475. text-transform:none;
  6476. }
  6477. #u140522_div {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:49px;
  6483. height:17px;
  6484. background:inherit;
  6485. background-color:rgba(255, 255, 255, 0);
  6486. border:none;
  6487. border-radius:0px;
  6488. -moz-box-shadow:none;
  6489. -webkit-box-shadow:none;
  6490. box-shadow:none;
  6491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6492. font-weight:400;
  6493. font-style:normal;
  6494. font-size:12px;
  6495. }
  6496. #u140522 {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:1281px;
  6500. top:819px;
  6501. width:49px;
  6502. height:17px;
  6503. display:flex;
  6504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6505. font-weight:400;
  6506. font-style:normal;
  6507. font-size:12px;
  6508. }
  6509. #u140522 .text {
  6510. position:absolute;
  6511. align-self:flex-start;
  6512. padding:0px 0px 0px 0px;
  6513. box-sizing:border-box;
  6514. width:100%;
  6515. }
  6516. #u140522_text {
  6517. border-width:0px;
  6518. white-space:nowrap;
  6519. text-transform:none;
  6520. }
  6521. #u140523 {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:0px;
  6527. height:0px;
  6528. }
  6529. #u140524_div {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:49px;
  6535. height:17px;
  6536. background:inherit;
  6537. background-color:rgba(255, 255, 255, 0);
  6538. border:none;
  6539. border-radius:0px;
  6540. -moz-box-shadow:none;
  6541. -webkit-box-shadow:none;
  6542. box-shadow:none;
  6543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6544. font-weight:400;
  6545. font-style:normal;
  6546. font-size:12px;
  6547. }
  6548. #u140524 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:1075px;
  6552. top:819px;
  6553. width:49px;
  6554. height:17px;
  6555. display:flex;
  6556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6557. font-weight:400;
  6558. font-style:normal;
  6559. font-size:12px;
  6560. }
  6561. #u140524 .text {
  6562. position:absolute;
  6563. align-self:flex-start;
  6564. padding:0px 0px 0px 0px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u140524_text {
  6569. border-width:0px;
  6570. white-space:nowrap;
  6571. text-transform:none;
  6572. }
  6573. #u140525_img {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:24px;
  6579. height:24px;
  6580. }
  6581. #u140525 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:1087px;
  6585. top:794px;
  6586. width:24px;
  6587. height:24px;
  6588. display:flex;
  6589. font-size:8px;
  6590. color:#FFFFFF;
  6591. }
  6592. #u140525 .text {
  6593. position:absolute;
  6594. align-self:center;
  6595. padding:2px 2px 2px 2px;
  6596. box-sizing:border-box;
  6597. width:100%;
  6598. }
  6599. #u140525_text {
  6600. border-width:0px;
  6601. word-wrap:break-word;
  6602. text-transform:none;
  6603. }
  6604. #u140526 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:0px;
  6610. height:0px;
  6611. }
  6612. #u140527_div {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:375px;
  6618. height:50px;
  6619. background:inherit;
  6620. background-color:rgba(255, 255, 255, 1);
  6621. border:none;
  6622. border-radius:0px;
  6623. -moz-box-shadow:none;
  6624. -webkit-box-shadow:none;
  6625. box-shadow:none;
  6626. }
  6627. #u140527 {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:29px;
  6631. top:106px;
  6632. width:375px;
  6633. height:50px;
  6634. display:flex;
  6635. }
  6636. #u140527 .text {
  6637. position:absolute;
  6638. align-self:center;
  6639. padding:2px 2px 2px 2px;
  6640. box-sizing:border-box;
  6641. width:100%;
  6642. }
  6643. #u140527_text {
  6644. border-width:0px;
  6645. word-wrap:break-word;
  6646. text-transform:none;
  6647. visibility:hidden;
  6648. }
  6649. #u140528 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:0px;
  6653. top:0px;
  6654. width:0px;
  6655. height:0px;
  6656. }
  6657. #u140529 {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:0px;
  6661. top:0px;
  6662. width:0px;
  6663. height:0px;
  6664. }
  6665. #u140530_div {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:0px;
  6669. top:0px;
  6670. width:280px;
  6671. height:30px;
  6672. background:inherit;
  6673. background-color:rgba(242, 242, 242, 1);
  6674. border:none;
  6675. border-radius:20px;
  6676. -moz-box-shadow:none;
  6677. -webkit-box-shadow:none;
  6678. box-shadow:none;
  6679. }
  6680. #u140530 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:42px;
  6684. top:116px;
  6685. width:280px;
  6686. height:30px;
  6687. display:flex;
  6688. }
  6689. #u140530 .text {
  6690. position:absolute;
  6691. align-self:center;
  6692. padding:2px 2px 2px 2px;
  6693. box-sizing:border-box;
  6694. width:100%;
  6695. }
  6696. #u140530_text {
  6697. border-width:0px;
  6698. word-wrap:break-word;
  6699. text-transform:none;
  6700. visibility:hidden;
  6701. }
  6702. #u140531_input {
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:252px;
  6707. height:22px;
  6708. padding:2px 2px 2px 2px;
  6709. font-family:'ArialMT', 'Arial', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:12px;
  6713. letter-spacing:normal;
  6714. color:#7F7F7F;
  6715. vertical-align:none;
  6716. text-align:left;
  6717. text-transform:none;
  6718. background-color:transparent;
  6719. border-color:transparent;
  6720. }
  6721. #u140531_input.disabled {
  6722. position:absolute;
  6723. left:0px;
  6724. top:0px;
  6725. width:252px;
  6726. height:22px;
  6727. padding:2px 2px 2px 2px;
  6728. font-family:'ArialMT', 'Arial', sans-serif;
  6729. font-weight:400;
  6730. font-style:normal;
  6731. font-size:12px;
  6732. letter-spacing:normal;
  6733. color:#7F7F7F;
  6734. vertical-align:none;
  6735. text-align:left;
  6736. text-transform:none;
  6737. background-color:transparent;
  6738. border-color:transparent;
  6739. }
  6740. #u140531_div {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:252px;
  6746. height:22px;
  6747. background:inherit;
  6748. background-color:rgba(255, 255, 255, 0);
  6749. border:none;
  6750. border-radius:0px;
  6751. -moz-box-shadow:none;
  6752. -webkit-box-shadow:none;
  6753. box-shadow:none;
  6754. font-size:12px;
  6755. color:#7F7F7F;
  6756. }
  6757. #u140531 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:56px;
  6761. top:120px;
  6762. width:252px;
  6763. height:22px;
  6764. display:flex;
  6765. font-size:12px;
  6766. color:#7F7F7F;
  6767. }
  6768. #u140531 .text {
  6769. position:absolute;
  6770. align-self:flex-start;
  6771. padding:2px 2px 2px 2px;
  6772. box-sizing:border-box;
  6773. width:100%;
  6774. }
  6775. #u140531_div.disabled {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:252px;
  6781. height:22px;
  6782. background:inherit;
  6783. background-color:rgba(240, 240, 240, 1);
  6784. border:none;
  6785. border-radius:0px;
  6786. -moz-box-shadow:none;
  6787. -webkit-box-shadow:none;
  6788. box-shadow:none;
  6789. font-size:12px;
  6790. color:#7F7F7F;
  6791. }
  6792. #u140531.disabled {
  6793. }
  6794. .u140531_input_option {
  6795. font-size:12px;
  6796. }
  6797. #u140532_div {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:0px;
  6801. top:0px;
  6802. width:64px;
  6803. height:30px;
  6804. background:inherit;
  6805. background-color:rgba(255, 255, 255, 0);
  6806. border:none;
  6807. border-left:0px;
  6808. border-top:0px;
  6809. border-right:0px;
  6810. border-radius:0px;
  6811. border-bottom-right-radius:0px;
  6812. border-bottom-left-radius:0px;
  6813. -moz-box-shadow:none;
  6814. -webkit-box-shadow:none;
  6815. box-shadow:none;
  6816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6817. font-weight:400;
  6818. font-style:normal;
  6819. font-size:12px;
  6820. color:#1890FF;
  6821. line-height:30px;
  6822. }
  6823. #u140532 {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:332px;
  6827. top:116px;
  6828. width:64px;
  6829. height:30px;
  6830. display:flex;
  6831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6832. font-weight:400;
  6833. font-style:normal;
  6834. font-size:12px;
  6835. color:#1890FF;
  6836. line-height:30px;
  6837. }
  6838. #u140532 .text {
  6839. position:absolute;
  6840. align-self:flex-start;
  6841. padding:0px 0px 0px 0px;
  6842. box-sizing:border-box;
  6843. width:100%;
  6844. }
  6845. #u140532_text {
  6846. border-width:0px;
  6847. white-space:nowrap;
  6848. text-transform:none;
  6849. }
  6850. #u140533 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:0px;
  6854. top:0px;
  6855. width:0px;
  6856. height:0px;
  6857. }
  6858. #u140534_div {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:0px;
  6862. top:0px;
  6863. width:375px;
  6864. height:50px;
  6865. background:inherit;
  6866. background-color:rgba(255, 255, 255, 1);
  6867. border:none;
  6868. border-radius:0px;
  6869. -moz-box-shadow:none;
  6870. -webkit-box-shadow:none;
  6871. box-shadow:none;
  6872. }
  6873. #u140534 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:515px;
  6877. top:107px;
  6878. width:375px;
  6879. height:50px;
  6880. display:flex;
  6881. }
  6882. #u140534 .text {
  6883. position:absolute;
  6884. align-self:center;
  6885. padding:2px 2px 2px 2px;
  6886. box-sizing:border-box;
  6887. width:100%;
  6888. }
  6889. #u140534_text {
  6890. border-width:0px;
  6891. word-wrap:break-word;
  6892. text-transform:none;
  6893. visibility:hidden;
  6894. }
  6895. #u140535 {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:0px;
  6901. height:0px;
  6902. }
  6903. #u140536 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:0px;
  6909. height:0px;
  6910. }
  6911. #u140537_div {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:280px;
  6917. height:30px;
  6918. background:inherit;
  6919. background-color:rgba(242, 242, 242, 1);
  6920. border:none;
  6921. border-radius:20px;
  6922. -moz-box-shadow:none;
  6923. -webkit-box-shadow:none;
  6924. box-shadow:none;
  6925. }
  6926. #u140537 {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:528px;
  6930. top:117px;
  6931. width:280px;
  6932. height:30px;
  6933. display:flex;
  6934. }
  6935. #u140537 .text {
  6936. position:absolute;
  6937. align-self:center;
  6938. padding:2px 2px 2px 2px;
  6939. box-sizing:border-box;
  6940. width:100%;
  6941. }
  6942. #u140537_text {
  6943. border-width:0px;
  6944. word-wrap:break-word;
  6945. text-transform:none;
  6946. visibility:hidden;
  6947. }
  6948. #u140538_input {
  6949. position:absolute;
  6950. left:0px;
  6951. top:0px;
  6952. width:252px;
  6953. height:22px;
  6954. padding:2px 2px 2px 2px;
  6955. font-family:'ArialMT', 'Arial', sans-serif;
  6956. font-weight:400;
  6957. font-style:normal;
  6958. font-size:12px;
  6959. letter-spacing:normal;
  6960. color:#7F7F7F;
  6961. vertical-align:none;
  6962. text-align:left;
  6963. text-transform:none;
  6964. background-color:transparent;
  6965. border-color:transparent;
  6966. }
  6967. #u140538_input.disabled {
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:252px;
  6972. height:22px;
  6973. padding:2px 2px 2px 2px;
  6974. font-family:'ArialMT', 'Arial', sans-serif;
  6975. font-weight:400;
  6976. font-style:normal;
  6977. font-size:12px;
  6978. letter-spacing:normal;
  6979. color:#7F7F7F;
  6980. vertical-align:none;
  6981. text-align:left;
  6982. text-transform:none;
  6983. background-color:transparent;
  6984. border-color:transparent;
  6985. }
  6986. #u140538_div {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:252px;
  6992. height:22px;
  6993. background:inherit;
  6994. background-color:rgba(255, 255, 255, 0);
  6995. border:none;
  6996. border-radius:0px;
  6997. -moz-box-shadow:none;
  6998. -webkit-box-shadow:none;
  6999. box-shadow:none;
  7000. font-size:12px;
  7001. color:#7F7F7F;
  7002. }
  7003. #u140538 {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:542px;
  7007. top:121px;
  7008. width:252px;
  7009. height:22px;
  7010. display:flex;
  7011. font-size:12px;
  7012. color:#7F7F7F;
  7013. }
  7014. #u140538 .text {
  7015. position:absolute;
  7016. align-self:flex-start;
  7017. padding:2px 2px 2px 2px;
  7018. box-sizing:border-box;
  7019. width:100%;
  7020. }
  7021. #u140538_div.disabled {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:0px;
  7025. top:0px;
  7026. width:252px;
  7027. height:22px;
  7028. background:inherit;
  7029. background-color:rgba(240, 240, 240, 1);
  7030. border:none;
  7031. border-radius:0px;
  7032. -moz-box-shadow:none;
  7033. -webkit-box-shadow:none;
  7034. box-shadow:none;
  7035. font-size:12px;
  7036. color:#7F7F7F;
  7037. }
  7038. #u140538.disabled {
  7039. }
  7040. .u140538_input_option {
  7041. font-size:12px;
  7042. }
  7043. #u140539_div {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:0px;
  7047. top:0px;
  7048. width:64px;
  7049. height:30px;
  7050. background:inherit;
  7051. background-color:rgba(255, 255, 255, 0);
  7052. border:none;
  7053. border-left:0px;
  7054. border-top:0px;
  7055. border-right:0px;
  7056. border-radius:0px;
  7057. border-bottom-right-radius:0px;
  7058. border-bottom-left-radius:0px;
  7059. -moz-box-shadow:none;
  7060. -webkit-box-shadow:none;
  7061. box-shadow:none;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:12px;
  7066. color:#1890FF;
  7067. line-height:30px;
  7068. }
  7069. #u140539 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:818px;
  7073. top:117px;
  7074. width:64px;
  7075. height:30px;
  7076. display:flex;
  7077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. font-size:12px;
  7081. color:#1890FF;
  7082. line-height:30px;
  7083. }
  7084. #u140539 .text {
  7085. position:absolute;
  7086. align-self:flex-start;
  7087. padding:0px 0px 0px 0px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u140539_text {
  7092. border-width:0px;
  7093. white-space:nowrap;
  7094. text-transform:none;
  7095. }
  7096. #u140540 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:0px;
  7102. height:0px;
  7103. }
  7104. #u140541_div {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:375px;
  7110. height:50px;
  7111. background:inherit;
  7112. background-color:rgba(255, 255, 255, 1);
  7113. border:none;
  7114. border-radius:0px;
  7115. -moz-box-shadow:none;
  7116. -webkit-box-shadow:none;
  7117. box-shadow:none;
  7118. }
  7119. #u140541 {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:1016px;
  7123. top:107px;
  7124. width:375px;
  7125. height:50px;
  7126. display:flex;
  7127. }
  7128. #u140541 .text {
  7129. position:absolute;
  7130. align-self:center;
  7131. padding:2px 2px 2px 2px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u140541_text {
  7136. border-width:0px;
  7137. word-wrap:break-word;
  7138. text-transform:none;
  7139. visibility:hidden;
  7140. }
  7141. #u140542 {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:0px;
  7147. height:0px;
  7148. }
  7149. #u140543 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:0px;
  7153. top:0px;
  7154. width:0px;
  7155. height:0px;
  7156. }
  7157. #u140544_div {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:0px;
  7161. top:0px;
  7162. width:280px;
  7163. height:30px;
  7164. background:inherit;
  7165. background-color:rgba(242, 242, 242, 1);
  7166. border:none;
  7167. border-radius:20px;
  7168. -moz-box-shadow:none;
  7169. -webkit-box-shadow:none;
  7170. box-shadow:none;
  7171. }
  7172. #u140544 {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:1029px;
  7176. top:117px;
  7177. width:280px;
  7178. height:30px;
  7179. display:flex;
  7180. }
  7181. #u140544 .text {
  7182. position:absolute;
  7183. align-self:center;
  7184. padding:2px 2px 2px 2px;
  7185. box-sizing:border-box;
  7186. width:100%;
  7187. }
  7188. #u140544_text {
  7189. border-width:0px;
  7190. word-wrap:break-word;
  7191. text-transform:none;
  7192. visibility:hidden;
  7193. }
  7194. #u140545_input {
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:252px;
  7199. height:22px;
  7200. padding:2px 2px 2px 2px;
  7201. font-family:'ArialMT', 'Arial', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:12px;
  7205. letter-spacing:normal;
  7206. color:#7F7F7F;
  7207. vertical-align:none;
  7208. text-align:left;
  7209. text-transform:none;
  7210. background-color:transparent;
  7211. border-color:transparent;
  7212. }
  7213. #u140545_input.disabled {
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:252px;
  7218. height:22px;
  7219. padding:2px 2px 2px 2px;
  7220. font-family:'ArialMT', 'Arial', sans-serif;
  7221. font-weight:400;
  7222. font-style:normal;
  7223. font-size:12px;
  7224. letter-spacing:normal;
  7225. color:#7F7F7F;
  7226. vertical-align:none;
  7227. text-align:left;
  7228. text-transform:none;
  7229. background-color:transparent;
  7230. border-color:transparent;
  7231. }
  7232. #u140545_div {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:252px;
  7238. height:22px;
  7239. background:inherit;
  7240. background-color:rgba(255, 255, 255, 0);
  7241. border:none;
  7242. border-radius:0px;
  7243. -moz-box-shadow:none;
  7244. -webkit-box-shadow:none;
  7245. box-shadow:none;
  7246. font-size:12px;
  7247. color:#7F7F7F;
  7248. }
  7249. #u140545 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:1043px;
  7253. top:121px;
  7254. width:252px;
  7255. height:22px;
  7256. display:flex;
  7257. font-size:12px;
  7258. color:#7F7F7F;
  7259. }
  7260. #u140545 .text {
  7261. position:absolute;
  7262. align-self:flex-start;
  7263. padding:2px 2px 2px 2px;
  7264. box-sizing:border-box;
  7265. width:100%;
  7266. }
  7267. #u140545_div.disabled {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:252px;
  7273. height:22px;
  7274. background:inherit;
  7275. background-color:rgba(240, 240, 240, 1);
  7276. border:none;
  7277. border-radius:0px;
  7278. -moz-box-shadow:none;
  7279. -webkit-box-shadow:none;
  7280. box-shadow:none;
  7281. font-size:12px;
  7282. color:#7F7F7F;
  7283. }
  7284. #u140545.disabled {
  7285. }
  7286. .u140545_input_option {
  7287. font-size:12px;
  7288. }
  7289. #u140546_div {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:64px;
  7295. height:30px;
  7296. background:inherit;
  7297. background-color:rgba(255, 255, 255, 0);
  7298. border:none;
  7299. border-left:0px;
  7300. border-top:0px;
  7301. border-right:0px;
  7302. border-radius:0px;
  7303. border-bottom-right-radius:0px;
  7304. border-bottom-left-radius:0px;
  7305. -moz-box-shadow:none;
  7306. -webkit-box-shadow:none;
  7307. box-shadow:none;
  7308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. font-size:12px;
  7312. color:#1890FF;
  7313. line-height:30px;
  7314. }
  7315. #u140546 {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:1319px;
  7319. top:117px;
  7320. width:64px;
  7321. height:30px;
  7322. display:flex;
  7323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7324. font-weight:400;
  7325. font-style:normal;
  7326. font-size:12px;
  7327. color:#1890FF;
  7328. line-height:30px;
  7329. }
  7330. #u140546 .text {
  7331. position:absolute;
  7332. align-self:flex-start;
  7333. padding:0px 0px 0px 0px;
  7334. box-sizing:border-box;
  7335. width:100%;
  7336. }
  7337. #u140546_text {
  7338. border-width:0px;
  7339. white-space:nowrap;
  7340. text-transform:none;
  7341. }
  7342. #u140547 {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:0px;
  7346. top:0px;
  7347. width:0px;
  7348. height:0px;
  7349. }
  7350. #u140548_div {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:0px;
  7354. top:0px;
  7355. width:375px;
  7356. height:40px;
  7357. background:inherit;
  7358. background-color:rgba(236, 128, 141, 0.4);
  7359. border:none;
  7360. border-radius:0px;
  7361. -moz-box-shadow:none;
  7362. -webkit-box-shadow:none;
  7363. box-shadow:none;
  7364. }
  7365. #u140548 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:29px;
  7369. top:157px;
  7370. width:375px;
  7371. height:40px;
  7372. display:flex;
  7373. }
  7374. #u140548 .text {
  7375. position:absolute;
  7376. align-self:center;
  7377. padding:2px 2px 2px 2px;
  7378. box-sizing:border-box;
  7379. width:100%;
  7380. }
  7381. #u140548_text {
  7382. border-width:0px;
  7383. word-wrap:break-word;
  7384. text-transform:none;
  7385. visibility:hidden;
  7386. }
  7387. #u140549_img {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:20px;
  7393. height:18px;
  7394. }
  7395. #u140549 {
  7396. border-width:0px;
  7397. position:absolute;
  7398. left:39px;
  7399. top:168px;
  7400. width:20px;
  7401. height:18px;
  7402. display:flex;
  7403. color:#D9001B;
  7404. }
  7405. #u140549 .text {
  7406. position:absolute;
  7407. align-self:center;
  7408. padding:2px 2px 2px 2px;
  7409. box-sizing:border-box;
  7410. width:100%;
  7411. }
  7412. #u140549_text {
  7413. border-width:0px;
  7414. word-wrap:break-word;
  7415. text-transform:none;
  7416. visibility:hidden;
  7417. }
  7418. #u140550_div {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:267px;
  7424. height:20px;
  7425. background:inherit;
  7426. background-color:rgba(255, 255, 255, 0);
  7427. border:none;
  7428. border-radius:0px;
  7429. -moz-box-shadow:none;
  7430. -webkit-box-shadow:none;
  7431. box-shadow:none;
  7432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7433. font-weight:400;
  7434. font-style:normal;
  7435. color:#000000;
  7436. }
  7437. #u140550 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:69px;
  7441. top:167px;
  7442. width:267px;
  7443. height:20px;
  7444. display:flex;
  7445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7446. font-weight:400;
  7447. font-style:normal;
  7448. color:#000000;
  7449. }
  7450. #u140550 .text {
  7451. position:absolute;
  7452. align-self:flex-start;
  7453. padding:0px 0px 0px 0px;
  7454. box-sizing:border-box;
  7455. width:100%;
  7456. }
  7457. #u140550_text {
  7458. border-width:0px;
  7459. white-space:nowrap;
  7460. text-transform:none;
  7461. }
  7462. #u140551_div {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:12px;
  7468. height:12px;
  7469. background:inherit;
  7470. background-color:rgba(255, 255, 255, 0);
  7471. box-sizing:border-box;
  7472. border-width:1px;
  7473. border-style:solid;
  7474. border-color:rgba(51, 51, 51, 1);
  7475. border-right:0px;
  7476. border-bottom:0px;
  7477. border-radius:0px;
  7478. border-top-right-radius:0px;
  7479. border-bottom-left-radius:0px;
  7480. -moz-box-shadow:none;
  7481. -webkit-box-shadow:none;
  7482. box-shadow:none;
  7483. }
  7484. #u140551 {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:383px;
  7488. top:171px;
  7489. width:12px;
  7490. height:12px;
  7491. display:flex;
  7492. -webkit-transform:rotate(135deg);
  7493. -moz-transform:rotate(135deg);
  7494. -ms-transform:rotate(135deg);
  7495. transform:rotate(135deg);
  7496. }
  7497. #u140551 .text {
  7498. position:absolute;
  7499. align-self:center;
  7500. padding:2px 2px 2px 2px;
  7501. box-sizing:border-box;
  7502. width:100%;
  7503. }
  7504. #u140551_text {
  7505. border-width:0px;
  7506. word-wrap:break-word;
  7507. text-transform:none;
  7508. visibility:hidden;
  7509. }
  7510. #u140552_img {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:0px;
  7514. top:0px;
  7515. width:20px;
  7516. height:18px;
  7517. }
  7518. #u140552 {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:537px;
  7522. top:352px;
  7523. width:20px;
  7524. height:18px;
  7525. display:flex;
  7526. color:#D9001B;
  7527. }
  7528. #u140552 .text {
  7529. position:absolute;
  7530. align-self:center;
  7531. padding:2px 2px 2px 2px;
  7532. box-sizing:border-box;
  7533. width:100%;
  7534. }
  7535. #u140552_text {
  7536. border-width:0px;
  7537. word-wrap:break-word;
  7538. text-transform:none;
  7539. visibility:hidden;
  7540. }
  7541. #u140553 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:0px;
  7547. height:0px;
  7548. }
  7549. #u140554_div {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:0px;
  7553. top:0px;
  7554. width:375px;
  7555. height:40px;
  7556. background:inherit;
  7557. background-color:rgba(236, 128, 141, 0.4);
  7558. border:none;
  7559. border-radius:0px;
  7560. -moz-box-shadow:none;
  7561. -webkit-box-shadow:none;
  7562. box-shadow:none;
  7563. }
  7564. #u140554 {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:515px;
  7568. top:157px;
  7569. width:375px;
  7570. height:40px;
  7571. display:flex;
  7572. }
  7573. #u140554 .text {
  7574. position:absolute;
  7575. align-self:center;
  7576. padding:2px 2px 2px 2px;
  7577. box-sizing:border-box;
  7578. width:100%;
  7579. }
  7580. #u140554_text {
  7581. border-width:0px;
  7582. word-wrap:break-word;
  7583. text-transform:none;
  7584. visibility:hidden;
  7585. }
  7586. #u140555_img {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:20px;
  7592. height:18px;
  7593. }
  7594. #u140555 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:525px;
  7598. top:168px;
  7599. width:20px;
  7600. height:18px;
  7601. display:flex;
  7602. color:#D9001B;
  7603. }
  7604. #u140555 .text {
  7605. position:absolute;
  7606. align-self:center;
  7607. padding:2px 2px 2px 2px;
  7608. box-sizing:border-box;
  7609. width:100%;
  7610. }
  7611. #u140555_text {
  7612. border-width:0px;
  7613. word-wrap:break-word;
  7614. text-transform:none;
  7615. visibility:hidden;
  7616. }
  7617. #u140556_div {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:267px;
  7623. height:20px;
  7624. background:inherit;
  7625. background-color:rgba(255, 255, 255, 0);
  7626. border:none;
  7627. border-radius:0px;
  7628. -moz-box-shadow:none;
  7629. -webkit-box-shadow:none;
  7630. box-shadow:none;
  7631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7632. font-weight:400;
  7633. font-style:normal;
  7634. color:#000000;
  7635. }
  7636. #u140556 {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:555px;
  7640. top:167px;
  7641. width:267px;
  7642. height:20px;
  7643. display:flex;
  7644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7645. font-weight:400;
  7646. font-style:normal;
  7647. color:#000000;
  7648. }
  7649. #u140556 .text {
  7650. position:absolute;
  7651. align-self:flex-start;
  7652. padding:0px 0px 0px 0px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u140556_text {
  7657. border-width:0px;
  7658. white-space:nowrap;
  7659. text-transform:none;
  7660. }
  7661. #u140557_div {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:12px;
  7667. height:12px;
  7668. background:inherit;
  7669. background-color:rgba(255, 255, 255, 0);
  7670. box-sizing:border-box;
  7671. border-width:1px;
  7672. border-style:solid;
  7673. border-color:rgba(51, 51, 51, 1);
  7674. border-right:0px;
  7675. border-bottom:0px;
  7676. border-radius:0px;
  7677. border-top-right-radius:0px;
  7678. border-bottom-left-radius:0px;
  7679. -moz-box-shadow:none;
  7680. -webkit-box-shadow:none;
  7681. box-shadow:none;
  7682. }
  7683. #u140557 {
  7684. border-width:0px;
  7685. position:absolute;
  7686. left:869px;
  7687. top:171px;
  7688. width:12px;
  7689. height:12px;
  7690. display:flex;
  7691. -webkit-transform:rotate(135deg);
  7692. -moz-transform:rotate(135deg);
  7693. -ms-transform:rotate(135deg);
  7694. transform:rotate(135deg);
  7695. }
  7696. #u140557 .text {
  7697. position:absolute;
  7698. align-self:center;
  7699. padding:2px 2px 2px 2px;
  7700. box-sizing:border-box;
  7701. width:100%;
  7702. }
  7703. #u140557_text {
  7704. border-width:0px;
  7705. word-wrap:break-word;
  7706. text-transform:none;
  7707. visibility:hidden;
  7708. }