styles.css 120 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2117px;
  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. #u27491_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u27491 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u27491 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u27491_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u27492_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u27492 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u27492 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u27492_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u27493_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u27493 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u27493 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u27493_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u27494 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u27495_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u27495 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u27495 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u27495_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u27496_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u27496 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u27496 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u27496_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u27497_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u27497 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u27497 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u27497_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u27498 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u27499_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u27499 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u27499 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u27499_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u27500_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u27500 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u27500 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u27500_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u27501 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u27502_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u27502 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u27502 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u27502_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u27503_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u27503 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u27503 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u27503_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u27504 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u27505_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u27505 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u27505 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u27505_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u27506_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u27506 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u27506 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u27506_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u27507 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u27508_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u27508 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u27508 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u27508_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u27509_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u27509 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u27509 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u27509_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u27510 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u27511_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u27511 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u27511 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u27511_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u27512_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u27512 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u27512 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u27512_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u27513 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u27514_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u27514 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u27514 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u27514_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u27515_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u27515 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u27515 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u27515_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u27516 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u27517_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u27517 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u27517 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u27517_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u27518_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u27518 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u27518 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u27518_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u27519 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u27520_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u27520 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u27520 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u27520_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u27521_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u27521 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u27521 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u27521_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u27522 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u27523_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u27523 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u27523 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u27523_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u27524_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u27524 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u27524 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u27524_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u27525_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u27525 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u27525 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u27525_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u27526_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u27526 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u27526 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u27526_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u27527_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u27527 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u27527 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u27527_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u27528_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u27528 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u27528 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u27528_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u27529 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u27530_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u27530 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u27530 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u27530_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u27531_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u27531 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u27531 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u27531_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u27532 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u27533_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u27533 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u27533 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u27533_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u27534_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u27534 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u27534 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u27534_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u27535 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u27536_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u27536_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u27536_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u27536 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u27536 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u27536_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u27536.disabled {
  1428. }
  1429. .u27536_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u27537_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u27537 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u27537 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u27537_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u27538_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u27538 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u27538 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u27538_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u27539_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u27539 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u27539 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u27539_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u27540_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:220px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u27540 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:220px;
  1560. display:flex;
  1561. }
  1562. #u27540 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u27540_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u27541_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:633px;
  1581. height:110px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 1);
  1584. box-sizing:border-box;
  1585. border-width:1px;
  1586. border-style:solid;
  1587. border-color:rgba(217, 217, 217, 1);
  1588. border-radius:4px;
  1589. -moz-box-shadow:none;
  1590. -webkit-box-shadow:none;
  1591. box-shadow:none;
  1592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1593. font-weight:400;
  1594. font-style:normal;
  1595. font-size:14px;
  1596. color:rgba(0, 0, 0, 0.647058823529412);
  1597. line-height:21px;
  1598. }
  1599. #u27541 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:940px;
  1603. top:130px;
  1604. width:633px;
  1605. height:110px;
  1606. display:flex;
  1607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1608. font-weight:400;
  1609. font-style:normal;
  1610. font-size:14px;
  1611. color:rgba(0, 0, 0, 0.647058823529412);
  1612. line-height:21px;
  1613. }
  1614. #u27541 .text {
  1615. position:absolute;
  1616. align-self:center;
  1617. padding:2px 16px 2px 16px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u27541_text {
  1622. border-width:0px;
  1623. word-wrap:break-word;
  1624. text-transform:none;
  1625. visibility:hidden;
  1626. }
  1627. #u27542_div {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:633px;
  1633. height:30px;
  1634. background:inherit;
  1635. background-color:rgba(224, 231, 247, 0);
  1636. border:none;
  1637. border-radius:0px;
  1638. -moz-box-shadow:none;
  1639. -webkit-box-shadow:none;
  1640. box-shadow:none;
  1641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1642. font-weight:400;
  1643. font-style:normal;
  1644. line-height:30px;
  1645. }
  1646. #u27542 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:940px;
  1650. top:100px;
  1651. width:633px;
  1652. height:30px;
  1653. display:flex;
  1654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. line-height:30px;
  1658. }
  1659. #u27542 .text {
  1660. position:absolute;
  1661. align-self:center;
  1662. padding:0px 0px 0px 0px;
  1663. box-sizing:border-box;
  1664. width:100%;
  1665. }
  1666. #u27542_text {
  1667. border-width:0px;
  1668. word-wrap:break-word;
  1669. text-transform:none;
  1670. }
  1671. #u27543_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:1260px;
  1677. height:950px;
  1678. background:inherit;
  1679. background-color:rgba(255, 255, 255, 1);
  1680. border:none;
  1681. border-radius:0px;
  1682. -moz-box-shadow:none;
  1683. -webkit-box-shadow:none;
  1684. box-shadow:none;
  1685. }
  1686. #u27543 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:330px;
  1690. top:280px;
  1691. width:1260px;
  1692. height:950px;
  1693. display:flex;
  1694. }
  1695. #u27543 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u27543_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u27544_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:192px;
  1714. height:50px;
  1715. background:inherit;
  1716. background-color:rgba(224, 231, 247, 0);
  1717. border:none;
  1718. border-radius:0px;
  1719. -moz-box-shadow:none;
  1720. -webkit-box-shadow:none;
  1721. box-shadow:none;
  1722. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1723. font-weight:500;
  1724. font-style:normal;
  1725. font-size:18px;
  1726. }
  1727. #u27544 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:350px;
  1731. top:50px;
  1732. width:192px;
  1733. height:50px;
  1734. display:flex;
  1735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1736. font-weight:500;
  1737. font-style:normal;
  1738. font-size:18px;
  1739. }
  1740. #u27544 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:0px 0px 0px 0px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u27544_text {
  1748. border-width:0px;
  1749. white-space:nowrap;
  1750. text-transform:none;
  1751. }
  1752. #u27545 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:350px;
  1756. top:385px;
  1757. width:1220px;
  1758. height:190px;
  1759. }
  1760. #u27546_img {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:153px;
  1766. height:38px;
  1767. }
  1768. #u27546 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:153px;
  1774. height:38px;
  1775. display:flex;
  1776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1777. font-weight:400;
  1778. font-style:normal;
  1779. font-size:14px;
  1780. color:#FFFFFF;
  1781. line-height:30px;
  1782. }
  1783. #u27546 .text {
  1784. position:absolute;
  1785. align-self:center;
  1786. padding:2px 0px 2px 0px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u27546_text {
  1791. border-width:0px;
  1792. word-wrap:break-word;
  1793. text-transform:none;
  1794. }
  1795. #u27547_img {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:153px;
  1801. height:38px;
  1802. }
  1803. #u27547 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:153px;
  1807. top:0px;
  1808. width:153px;
  1809. height:38px;
  1810. display:flex;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:14px;
  1815. color:#FFFFFF;
  1816. line-height:30px;
  1817. }
  1818. #u27547 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:2px 0px 2px 0px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u27547_text {
  1826. border-width:0px;
  1827. word-wrap:break-word;
  1828. text-transform:none;
  1829. }
  1830. #u27548_img {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:153px;
  1836. height:38px;
  1837. }
  1838. #u27548 {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:306px;
  1842. top:0px;
  1843. width:153px;
  1844. height:38px;
  1845. display:flex;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:14px;
  1850. color:#FFFFFF;
  1851. line-height:30px;
  1852. }
  1853. #u27548 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:2px 0px 2px 0px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u27548_text {
  1861. border-width:0px;
  1862. word-wrap:break-word;
  1863. text-transform:none;
  1864. }
  1865. #u27549_img {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:153px;
  1871. height:38px;
  1872. }
  1873. #u27549 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:459px;
  1877. top:0px;
  1878. width:153px;
  1879. height:38px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:14px;
  1885. color:#FFFFFF;
  1886. line-height:30px;
  1887. }
  1888. #u27549 .text {
  1889. position:absolute;
  1890. align-self:center;
  1891. padding:2px 0px 2px 0px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u27549_text {
  1896. border-width:0px;
  1897. word-wrap:break-word;
  1898. text-transform:none;
  1899. }
  1900. #u27550_img {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:153px;
  1906. height:38px;
  1907. }
  1908. #u27550 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:612px;
  1912. top:0px;
  1913. width:153px;
  1914. height:38px;
  1915. display:flex;
  1916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1917. font-weight:400;
  1918. font-style:normal;
  1919. font-size:14px;
  1920. color:#FFFFFF;
  1921. line-height:30px;
  1922. }
  1923. #u27550 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 0px 2px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u27550_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u27551_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:153px;
  1941. height:38px;
  1942. }
  1943. #u27551 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:765px;
  1947. top:0px;
  1948. width:153px;
  1949. height:38px;
  1950. display:flex;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:14px;
  1955. color:#FFFFFF;
  1956. line-height:30px;
  1957. }
  1958. #u27551 .text {
  1959. position:absolute;
  1960. align-self:center;
  1961. padding:2px 0px 2px 0px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u27551_text {
  1966. border-width:0px;
  1967. word-wrap:break-word;
  1968. text-transform:none;
  1969. }
  1970. #u27552_img {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:153px;
  1976. height:38px;
  1977. }
  1978. #u27552 {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:918px;
  1982. top:0px;
  1983. width:153px;
  1984. height:38px;
  1985. display:flex;
  1986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1987. font-weight:400;
  1988. font-style:normal;
  1989. font-size:14px;
  1990. color:#FFFFFF;
  1991. line-height:30px;
  1992. }
  1993. #u27552 .text {
  1994. position:absolute;
  1995. align-self:center;
  1996. padding:2px 0px 2px 0px;
  1997. box-sizing:border-box;
  1998. width:100%;
  1999. }
  2000. #u27552_text {
  2001. border-width:0px;
  2002. word-wrap:break-word;
  2003. text-transform:none;
  2004. }
  2005. #u27553_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:149px;
  2011. height:38px;
  2012. }
  2013. #u27553 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:1071px;
  2017. top:0px;
  2018. width:149px;
  2019. height:38px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:14px;
  2025. color:#FFFFFF;
  2026. line-height:30px;
  2027. }
  2028. #u27553 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:2px 0px 2px 0px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u27553_text {
  2036. border-width:0px;
  2037. word-wrap:break-word;
  2038. text-transform:none;
  2039. }
  2040. #u27554_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:153px;
  2046. height:38px;
  2047. }
  2048. #u27554 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:38px;
  2053. width:153px;
  2054. height:38px;
  2055. display:flex;
  2056. font-size:14px;
  2057. line-height:30px;
  2058. }
  2059. #u27554 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 0px 2px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u27554_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. visibility:hidden;
  2071. }
  2072. #u27555_img {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:0px;
  2076. top:0px;
  2077. width:153px;
  2078. height:38px;
  2079. }
  2080. #u27555 {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:153px;
  2084. top:38px;
  2085. width:153px;
  2086. height:38px;
  2087. display:flex;
  2088. font-size:14px;
  2089. line-height:30px;
  2090. }
  2091. #u27555 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 0px 2px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u27555_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u27556_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:153px;
  2110. height:38px;
  2111. }
  2112. #u27556 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:306px;
  2116. top:38px;
  2117. width:153px;
  2118. height:38px;
  2119. display:flex;
  2120. font-size:14px;
  2121. line-height:30px;
  2122. }
  2123. #u27556 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 0px 2px 0px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u27556_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. visibility:hidden;
  2135. }
  2136. #u27557_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:153px;
  2142. height:38px;
  2143. }
  2144. #u27557 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:459px;
  2148. top:38px;
  2149. width:153px;
  2150. height:38px;
  2151. display:flex;
  2152. font-size:14px;
  2153. line-height:30px;
  2154. }
  2155. #u27557 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 0px 2px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u27557_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. visibility:hidden;
  2167. }
  2168. #u27558_img {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:153px;
  2174. height:38px;
  2175. }
  2176. #u27558 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:612px;
  2180. top:38px;
  2181. width:153px;
  2182. height:38px;
  2183. display:flex;
  2184. font-size:14px;
  2185. line-height:30px;
  2186. }
  2187. #u27558 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:2px 0px 2px 0px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u27558_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. visibility:hidden;
  2199. }
  2200. #u27559_img {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:153px;
  2206. height:38px;
  2207. }
  2208. #u27559 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:765px;
  2212. top:38px;
  2213. width:153px;
  2214. height:38px;
  2215. display:flex;
  2216. font-size:14px;
  2217. line-height:30px;
  2218. }
  2219. #u27559 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 0px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u27559_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. visibility:hidden;
  2231. }
  2232. #u27560_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:153px;
  2238. height:38px;
  2239. }
  2240. #u27560 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:918px;
  2244. top:38px;
  2245. width:153px;
  2246. height:38px;
  2247. display:flex;
  2248. font-size:14px;
  2249. line-height:30px;
  2250. }
  2251. #u27560 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 0px 2px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u27560_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u27561_img {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:149px;
  2270. height:38px;
  2271. }
  2272. #u27561 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:1071px;
  2276. top:38px;
  2277. width:149px;
  2278. height:38px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:14px;
  2284. color:#298FFF;
  2285. line-height:30px;
  2286. }
  2287. #u27561 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 0px 2px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u27561_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. }
  2299. #u27562_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:153px;
  2305. height:38px;
  2306. }
  2307. #u27562 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:76px;
  2312. width:153px;
  2313. height:38px;
  2314. display:flex;
  2315. font-size:14px;
  2316. line-height:30px;
  2317. }
  2318. #u27562 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 0px 2px 0px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u27562_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. visibility:hidden;
  2330. }
  2331. #u27563_img {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:153px;
  2337. height:38px;
  2338. }
  2339. #u27563 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:153px;
  2343. top:76px;
  2344. width:153px;
  2345. height:38px;
  2346. display:flex;
  2347. font-size:14px;
  2348. line-height:30px;
  2349. }
  2350. #u27563 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 0px 2px 0px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u27563_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. visibility:hidden;
  2362. }
  2363. #u27564_img {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:153px;
  2369. height:38px;
  2370. }
  2371. #u27564 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:306px;
  2375. top:76px;
  2376. width:153px;
  2377. height:38px;
  2378. display:flex;
  2379. font-size:14px;
  2380. line-height:30px;
  2381. }
  2382. #u27564 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 0px 2px 0px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u27564_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. visibility:hidden;
  2394. }
  2395. #u27565_img {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:153px;
  2401. height:38px;
  2402. }
  2403. #u27565 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:459px;
  2407. top:76px;
  2408. width:153px;
  2409. height:38px;
  2410. display:flex;
  2411. font-size:14px;
  2412. line-height:30px;
  2413. }
  2414. #u27565 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 0px 2px 0px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u27565_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. visibility:hidden;
  2426. }
  2427. #u27566_img {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:153px;
  2433. height:38px;
  2434. }
  2435. #u27566 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:612px;
  2439. top:76px;
  2440. width:153px;
  2441. height:38px;
  2442. display:flex;
  2443. font-size:14px;
  2444. line-height:30px;
  2445. }
  2446. #u27566 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 0px 2px 0px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u27566_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u27567_img {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:153px;
  2465. height:38px;
  2466. }
  2467. #u27567 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:765px;
  2471. top:76px;
  2472. width:153px;
  2473. height:38px;
  2474. display:flex;
  2475. font-size:14px;
  2476. line-height:30px;
  2477. }
  2478. #u27567 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:2px 0px 2px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u27567_text {
  2486. border-width:0px;
  2487. word-wrap:break-word;
  2488. text-transform:none;
  2489. visibility:hidden;
  2490. }
  2491. #u27568_img {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:153px;
  2497. height:38px;
  2498. }
  2499. #u27568 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:918px;
  2503. top:76px;
  2504. width:153px;
  2505. height:38px;
  2506. display:flex;
  2507. font-size:14px;
  2508. line-height:30px;
  2509. }
  2510. #u27568 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 0px 2px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u27568_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. visibility:hidden;
  2522. }
  2523. #u27569_img {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:149px;
  2529. height:38px;
  2530. }
  2531. #u27569 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:1071px;
  2535. top:76px;
  2536. width:149px;
  2537. height:38px;
  2538. display:flex;
  2539. font-size:14px;
  2540. line-height:30px;
  2541. }
  2542. #u27569 .text {
  2543. position:absolute;
  2544. align-self:center;
  2545. padding:2px 0px 2px 0px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u27569_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. visibility:hidden;
  2554. }
  2555. #u27570_img {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:153px;
  2561. height:38px;
  2562. }
  2563. #u27570 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:114px;
  2568. width:153px;
  2569. height:38px;
  2570. display:flex;
  2571. font-size:14px;
  2572. line-height:30px;
  2573. }
  2574. #u27570 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 0px 2px 0px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u27570_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u27571_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:153px;
  2593. height:38px;
  2594. }
  2595. #u27571 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:153px;
  2599. top:114px;
  2600. width:153px;
  2601. height:38px;
  2602. display:flex;
  2603. font-size:14px;
  2604. line-height:30px;
  2605. }
  2606. #u27571 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 0px 2px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u27571_text {
  2614. border-width:0px;
  2615. word-wrap:break-word;
  2616. text-transform:none;
  2617. visibility:hidden;
  2618. }
  2619. #u27572_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:153px;
  2625. height:38px;
  2626. }
  2627. #u27572 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:306px;
  2631. top:114px;
  2632. width:153px;
  2633. height:38px;
  2634. display:flex;
  2635. font-size:14px;
  2636. line-height:30px;
  2637. }
  2638. #u27572 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 0px 2px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u27572_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u27573_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:153px;
  2657. height:38px;
  2658. }
  2659. #u27573 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:459px;
  2663. top:114px;
  2664. width:153px;
  2665. height:38px;
  2666. display:flex;
  2667. font-size:14px;
  2668. line-height:30px;
  2669. }
  2670. #u27573 .text {
  2671. position:absolute;
  2672. align-self:center;
  2673. padding:2px 0px 2px 0px;
  2674. box-sizing:border-box;
  2675. width:100%;
  2676. }
  2677. #u27573_text {
  2678. border-width:0px;
  2679. word-wrap:break-word;
  2680. text-transform:none;
  2681. visibility:hidden;
  2682. }
  2683. #u27574_img {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:153px;
  2689. height:38px;
  2690. }
  2691. #u27574 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:612px;
  2695. top:114px;
  2696. width:153px;
  2697. height:38px;
  2698. display:flex;
  2699. font-size:14px;
  2700. line-height:30px;
  2701. }
  2702. #u27574 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 0px 2px 0px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u27574_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. visibility:hidden;
  2714. }
  2715. #u27575_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:153px;
  2721. height:38px;
  2722. }
  2723. #u27575 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:765px;
  2727. top:114px;
  2728. width:153px;
  2729. height:38px;
  2730. display:flex;
  2731. font-size:14px;
  2732. line-height:30px;
  2733. }
  2734. #u27575 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 0px 2px 0px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u27575_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. visibility:hidden;
  2746. }
  2747. #u27576_img {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:153px;
  2753. height:38px;
  2754. }
  2755. #u27576 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:918px;
  2759. top:114px;
  2760. width:153px;
  2761. height:38px;
  2762. display:flex;
  2763. font-size:14px;
  2764. line-height:30px;
  2765. }
  2766. #u27576 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:2px 0px 2px 0px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u27576_text {
  2774. border-width:0px;
  2775. word-wrap:break-word;
  2776. text-transform:none;
  2777. visibility:hidden;
  2778. }
  2779. #u27577_img {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:149px;
  2785. height:38px;
  2786. }
  2787. #u27577 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:1071px;
  2791. top:114px;
  2792. width:149px;
  2793. height:38px;
  2794. display:flex;
  2795. font-size:14px;
  2796. line-height:30px;
  2797. }
  2798. #u27577 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 0px 2px 0px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u27577_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u27578_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:153px;
  2817. height:38px;
  2818. }
  2819. #u27578 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:152px;
  2824. width:153px;
  2825. height:38px;
  2826. display:flex;
  2827. font-size:14px;
  2828. line-height:30px;
  2829. }
  2830. #u27578 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 0px 2px 0px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u27578_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u27579_img {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:153px;
  2849. height:38px;
  2850. }
  2851. #u27579 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:153px;
  2855. top:152px;
  2856. width:153px;
  2857. height:38px;
  2858. display:flex;
  2859. font-size:14px;
  2860. line-height:30px;
  2861. }
  2862. #u27579 .text {
  2863. position:absolute;
  2864. align-self:center;
  2865. padding:2px 0px 2px 0px;
  2866. box-sizing:border-box;
  2867. width:100%;
  2868. }
  2869. #u27579_text {
  2870. border-width:0px;
  2871. word-wrap:break-word;
  2872. text-transform:none;
  2873. visibility:hidden;
  2874. }
  2875. #u27580_img {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:153px;
  2881. height:38px;
  2882. }
  2883. #u27580 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:306px;
  2887. top:152px;
  2888. width:153px;
  2889. height:38px;
  2890. display:flex;
  2891. font-size:14px;
  2892. line-height:30px;
  2893. }
  2894. #u27580 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 0px 2px 0px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u27580_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u27581_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:153px;
  2913. height:38px;
  2914. }
  2915. #u27581 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:459px;
  2919. top:152px;
  2920. width:153px;
  2921. height:38px;
  2922. display:flex;
  2923. font-size:14px;
  2924. line-height:30px;
  2925. }
  2926. #u27581 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 0px 2px 0px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u27581_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u27582_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:153px;
  2945. height:38px;
  2946. }
  2947. #u27582 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:612px;
  2951. top:152px;
  2952. width:153px;
  2953. height:38px;
  2954. display:flex;
  2955. font-size:14px;
  2956. line-height:30px;
  2957. }
  2958. #u27582 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 0px 2px 0px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u27582_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u27583_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:153px;
  2977. height:38px;
  2978. }
  2979. #u27583 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:765px;
  2983. top:152px;
  2984. width:153px;
  2985. height:38px;
  2986. display:flex;
  2987. font-size:14px;
  2988. line-height:30px;
  2989. }
  2990. #u27583 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 0px 2px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u27583_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u27584_img {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:153px;
  3009. height:38px;
  3010. }
  3011. #u27584 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:918px;
  3015. top:152px;
  3016. width:153px;
  3017. height:38px;
  3018. display:flex;
  3019. font-size:14px;
  3020. line-height:30px;
  3021. }
  3022. #u27584 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 0px 2px 0px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u27584_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u27585_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:149px;
  3041. height:38px;
  3042. }
  3043. #u27585 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:1071px;
  3047. top:152px;
  3048. width:149px;
  3049. height:38px;
  3050. display:flex;
  3051. font-size:14px;
  3052. line-height:30px;
  3053. }
  3054. #u27585 .text {
  3055. position:absolute;
  3056. align-self:center;
  3057. padding:2px 0px 2px 0px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u27585_text {
  3062. border-width:0px;
  3063. word-wrap:break-word;
  3064. text-transform:none;
  3065. visibility:hidden;
  3066. }
  3067. #u27586 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:0px;
  3073. height:0px;
  3074. }
  3075. #u27587_div {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:61px;
  3081. height:32px;
  3082. background:inherit;
  3083. background-color:rgba(24, 144, 255, 1);
  3084. border:none;
  3085. border-radius:4px;
  3086. -moz-box-shadow:none;
  3087. -webkit-box-shadow:none;
  3088. box-shadow:none;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:14px;
  3093. color:#FFFFFF;
  3094. }
  3095. #u27587 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:800px;
  3099. top:302px;
  3100. width:61px;
  3101. height:32px;
  3102. display:flex;
  3103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:14px;
  3107. color:#FFFFFF;
  3108. }
  3109. #u27587 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 16px 2px 16px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u27587_text {
  3117. border-width:0px;
  3118. white-space:nowrap;
  3119. text-transform:none;
  3120. }
  3121. #u27588_div {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:61px;
  3127. height:32px;
  3128. background:inherit;
  3129. background-color:rgba(255, 255, 255, 1);
  3130. box-sizing:border-box;
  3131. border-width:1px;
  3132. border-style:solid;
  3133. border-color:rgba(217, 217, 217, 1);
  3134. border-radius:4px;
  3135. -moz-box-shadow:none;
  3136. -webkit-box-shadow:none;
  3137. box-shadow:none;
  3138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3139. font-weight:400;
  3140. font-style:normal;
  3141. font-size:14px;
  3142. color:rgba(0, 0, 0, 0.647058823529412);
  3143. line-height:21px;
  3144. }
  3145. #u27588 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:871px;
  3149. top:302px;
  3150. width:61px;
  3151. height:32px;
  3152. display:flex;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:14px;
  3157. color:rgba(0, 0, 0, 0.647058823529412);
  3158. line-height:21px;
  3159. }
  3160. #u27588 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 16px 2px 16px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u27588_text {
  3168. border-width:0px;
  3169. white-space:nowrap;
  3170. text-transform:none;
  3171. }
  3172. #u27589 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:0px;
  3178. height:0px;
  3179. }
  3180. #u27590_div {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:0px;
  3184. top:0px;
  3185. width:140px;
  3186. height:30px;
  3187. background:inherit;
  3188. background-color:rgba(255, 255, 255, 1);
  3189. box-sizing:border-box;
  3190. border-width:1px;
  3191. border-style:solid;
  3192. border-color:rgba(215, 215, 215, 1);
  3193. border-radius:4px;
  3194. -moz-box-shadow:none;
  3195. -webkit-box-shadow:none;
  3196. box-shadow:none;
  3197. font-size:14px;
  3198. }
  3199. #u27590 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:350px;
  3203. top:303px;
  3204. width:140px;
  3205. height:30px;
  3206. display:flex;
  3207. font-size:14px;
  3208. }
  3209. #u27590 .text {
  3210. position:absolute;
  3211. align-self:center;
  3212. padding:2px 2px 2px 2px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u27590_text {
  3217. border-width:0px;
  3218. word-wrap:break-word;
  3219. text-transform:none;
  3220. visibility:hidden;
  3221. }
  3222. #u27591_input {
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:134px;
  3227. height:23px;
  3228. padding:2px 2px 2px 2px;
  3229. font-family:'ArialMT', 'Arial', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:14px;
  3233. letter-spacing:normal;
  3234. color:#AAAAAA;
  3235. vertical-align:none;
  3236. text-align:left;
  3237. text-transform:none;
  3238. background-color:transparent;
  3239. border-color:transparent;
  3240. }
  3241. #u27591_input.disabled {
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:134px;
  3246. height:23px;
  3247. padding:2px 2px 2px 2px;
  3248. font-family:'ArialMT', 'Arial', sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:14px;
  3252. letter-spacing:normal;
  3253. color:#AAAAAA;
  3254. vertical-align:none;
  3255. text-align:left;
  3256. text-transform:none;
  3257. background-color:transparent;
  3258. border-color:transparent;
  3259. }
  3260. #u27591_div {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:134px;
  3266. height:23px;
  3267. background:inherit;
  3268. background-color:rgba(255, 255, 255, 1);
  3269. border:none;
  3270. border-radius:0px;
  3271. -moz-box-shadow:none;
  3272. -webkit-box-shadow:none;
  3273. box-shadow:none;
  3274. font-size:14px;
  3275. color:#AAAAAA;
  3276. }
  3277. #u27591 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:354px;
  3281. top:305px;
  3282. width:134px;
  3283. height:23px;
  3284. display:flex;
  3285. font-size:14px;
  3286. color:#AAAAAA;
  3287. }
  3288. #u27591 .text {
  3289. position:absolute;
  3290. align-self:flex-start;
  3291. padding:2px 2px 2px 2px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u27591_div.disabled {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:134px;
  3301. height:23px;
  3302. background:inherit;
  3303. background-color:rgba(240, 240, 240, 1);
  3304. border:none;
  3305. border-radius:0px;
  3306. -moz-box-shadow:none;
  3307. -webkit-box-shadow:none;
  3308. box-shadow:none;
  3309. font-size:14px;
  3310. color:#AAAAAA;
  3311. }
  3312. #u27591.disabled {
  3313. }
  3314. .u27591_input_option {
  3315. font-size:14px;
  3316. }
  3317. #u27592_div {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:580px;
  3323. height:110px;
  3324. background:inherit;
  3325. background-color:rgba(255, 255, 255, 1);
  3326. box-sizing:border-box;
  3327. border-width:1px;
  3328. border-style:solid;
  3329. border-color:rgba(217, 217, 217, 1);
  3330. border-radius:4px;
  3331. -moz-box-shadow:none;
  3332. -webkit-box-shadow:none;
  3333. box-shadow:none;
  3334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:14px;
  3338. color:rgba(0, 0, 0, 0.647058823529412);
  3339. line-height:21px;
  3340. }
  3341. #u27592 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:350px;
  3345. top:130px;
  3346. width:580px;
  3347. height:110px;
  3348. display:flex;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:14px;
  3353. color:rgba(0, 0, 0, 0.647058823529412);
  3354. line-height:21px;
  3355. }
  3356. #u27592 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 16px 2px 16px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u27592_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u27593 {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:0px;
  3375. height:0px;
  3376. }
  3377. #u27594_div {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:140px;
  3383. height:30px;
  3384. background:inherit;
  3385. background-color:rgba(255, 255, 255, 1);
  3386. box-sizing:border-box;
  3387. border-width:1px;
  3388. border-style:solid;
  3389. border-color:rgba(201, 201, 201, 1);
  3390. border-radius:4px;
  3391. -moz-box-shadow:none;
  3392. -webkit-box-shadow:none;
  3393. box-shadow:none;
  3394. font-family:'Microsoft YaHei', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:14px;
  3398. color:#CCCCCC;
  3399. text-align:left;
  3400. }
  3401. #u27594 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:500px;
  3405. top:302px;
  3406. width:140px;
  3407. height:30px;
  3408. display:flex;
  3409. font-family:'Microsoft YaHei', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:14px;
  3413. color:#CCCCCC;
  3414. text-align:left;
  3415. }
  3416. #u27594 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 8px 2px 8px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u27594_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u27595_input {
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:130px;
  3434. height:25px;
  3435. padding:2px 2px 2px 2px;
  3436. font-family:'Microsoft YaHei', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:13px;
  3440. letter-spacing:normal;
  3441. color:#000000;
  3442. vertical-align:none;
  3443. text-align:left;
  3444. text-transform:none;
  3445. background-color:transparent;
  3446. border-color:transparent;
  3447. }
  3448. #u27595_input.disabled {
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:130px;
  3453. height:25px;
  3454. padding:2px 2px 2px 2px;
  3455. font-family:'Microsoft YaHei', sans-serif;
  3456. font-weight:400;
  3457. font-style:normal;
  3458. font-size:13px;
  3459. letter-spacing:normal;
  3460. color:#000000;
  3461. vertical-align:none;
  3462. text-align:left;
  3463. text-transform:none;
  3464. background-color:transparent;
  3465. border-color:transparent;
  3466. }
  3467. #u27595_div {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:130px;
  3473. height:25px;
  3474. background:inherit;
  3475. background-color:rgba(255, 255, 255, 1);
  3476. border:none;
  3477. border-radius:0px;
  3478. -moz-box-shadow:none;
  3479. -webkit-box-shadow:none;
  3480. box-shadow:none;
  3481. font-family:'Microsoft YaHei', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. }
  3485. #u27595 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:505px;
  3489. top:303px;
  3490. width:130px;
  3491. height:25px;
  3492. display:flex;
  3493. font-family:'Microsoft YaHei', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. }
  3497. #u27595 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 2px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u27595_div.disabled {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:130px;
  3510. height:25px;
  3511. background:inherit;
  3512. background-color:rgba(240, 240, 240, 1);
  3513. border:none;
  3514. border-radius:0px;
  3515. -moz-box-shadow:none;
  3516. -webkit-box-shadow:none;
  3517. box-shadow:none;
  3518. font-family:'Microsoft YaHei', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. }
  3522. #u27595.disabled {
  3523. }
  3524. #u27596_div {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:69px;
  3530. height:17px;
  3531. background:inherit;
  3532. background-color:rgba(224, 231, 247, 0);
  3533. border:none;
  3534. border-radius:0px;
  3535. -moz-box-shadow:none;
  3536. -webkit-box-shadow:none;
  3537. box-shadow:none;
  3538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:12px;
  3542. }
  3543. #u27596 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:488px;
  3547. top:175px;
  3548. width:69px;
  3549. height:17px;
  3550. display:flex;
  3551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:12px;
  3555. }
  3556. #u27596 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:0px 0px 0px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u27596_text {
  3564. border-width:0px;
  3565. white-space:nowrap;
  3566. text-transform:none;
  3567. }
  3568. #u27597 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:0px;
  3574. height:0px;
  3575. }
  3576. #u27598_div {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:140px;
  3582. height:30px;
  3583. background:inherit;
  3584. background-color:rgba(255, 255, 255, 1);
  3585. box-sizing:border-box;
  3586. border-width:1px;
  3587. border-style:solid;
  3588. border-color:rgba(215, 215, 215, 1);
  3589. border-radius:4px;
  3590. -moz-box-shadow:none;
  3591. -webkit-box-shadow:none;
  3592. box-shadow:none;
  3593. font-size:14px;
  3594. }
  3595. #u27598 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:650px;
  3599. top:302px;
  3600. width:140px;
  3601. height:30px;
  3602. display:flex;
  3603. font-size:14px;
  3604. }
  3605. #u27598 .text {
  3606. position:absolute;
  3607. align-self:center;
  3608. padding:2px 2px 2px 2px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u27598_text {
  3613. border-width:0px;
  3614. word-wrap:break-word;
  3615. text-transform:none;
  3616. visibility:hidden;
  3617. }
  3618. #u27599_input {
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:134px;
  3623. height:23px;
  3624. padding:2px 2px 2px 2px;
  3625. font-family:'ArialMT', 'Arial', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:14px;
  3629. letter-spacing:normal;
  3630. color:#AAAAAA;
  3631. vertical-align:none;
  3632. text-align:left;
  3633. text-transform:none;
  3634. background-color:transparent;
  3635. border-color:transparent;
  3636. }
  3637. #u27599_input.disabled {
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:134px;
  3642. height:23px;
  3643. padding:2px 2px 2px 2px;
  3644. font-family:'ArialMT', 'Arial', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:14px;
  3648. letter-spacing:normal;
  3649. color:#AAAAAA;
  3650. vertical-align:none;
  3651. text-align:left;
  3652. text-transform:none;
  3653. background-color:transparent;
  3654. border-color:transparent;
  3655. }
  3656. #u27599_div {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:134px;
  3662. height:23px;
  3663. background:inherit;
  3664. background-color:rgba(255, 255, 255, 1);
  3665. border:none;
  3666. border-radius:0px;
  3667. -moz-box-shadow:none;
  3668. -webkit-box-shadow:none;
  3669. box-shadow:none;
  3670. font-size:14px;
  3671. color:#AAAAAA;
  3672. }
  3673. #u27599 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:654px;
  3677. top:304px;
  3678. width:134px;
  3679. height:23px;
  3680. display:flex;
  3681. font-size:14px;
  3682. color:#AAAAAA;
  3683. }
  3684. #u27599 .text {
  3685. position:absolute;
  3686. align-self:flex-start;
  3687. padding:2px 2px 2px 2px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u27599_div.disabled {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:134px;
  3697. height:23px;
  3698. background:inherit;
  3699. background-color:rgba(240, 240, 240, 1);
  3700. border:none;
  3701. border-radius:0px;
  3702. -moz-box-shadow:none;
  3703. -webkit-box-shadow:none;
  3704. box-shadow:none;
  3705. font-size:14px;
  3706. color:#AAAAAA;
  3707. }
  3708. #u27599.disabled {
  3709. }
  3710. .u27599_input_option {
  3711. font-size:14px;
  3712. }
  3713. #u27600_div {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:220px;
  3719. height:75px;
  3720. background:inherit;
  3721. background-color:rgba(224, 231, 247, 0);
  3722. border:none;
  3723. border-radius:0px;
  3724. -moz-box-shadow:none;
  3725. -webkit-box-shadow:none;
  3726. box-shadow:none;
  3727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. line-height:25px;
  3731. }
  3732. #u27600 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:974px;
  3736. top:148px;
  3737. width:220px;
  3738. height:75px;
  3739. display:flex;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. line-height:25px;
  3744. }
  3745. #u27600 .text {
  3746. position:absolute;
  3747. align-self:flex-start;
  3748. padding:0px 0px 0px 0px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u27600_text {
  3753. border-width:0px;
  3754. white-space:nowrap;
  3755. text-transform:none;
  3756. }
  3757. #u27601_div {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:580px;
  3763. height:30px;
  3764. background:inherit;
  3765. background-color:rgba(224, 231, 247, 0);
  3766. border:none;
  3767. border-radius:0px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. line-height:30px;
  3775. }
  3776. #u27601 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:350px;
  3780. top:100px;
  3781. width:580px;
  3782. height:30px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. line-height:30px;
  3788. }
  3789. #u27601 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:0px 0px 0px 0px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u27601_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. }
  3801. #u27602_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:65px;
  3807. height:65px;
  3808. }
  3809. #u27602 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:403px;
  3813. top:153px;
  3814. width:65px;
  3815. height:65px;
  3816. display:flex;
  3817. }
  3818. #u27602 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 2px 2px 2px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u27602_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. }
  3830. #u27603_div {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:60px;
  3836. height:25px;
  3837. background:inherit;
  3838. background-color:rgba(224, 231, 247, 0);
  3839. border:none;
  3840. border-radius:0px;
  3841. -moz-box-shadow:none;
  3842. -webkit-box-shadow:none;
  3843. box-shadow:none;
  3844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3845. font-weight:500;
  3846. font-style:normal;
  3847. font-size:18px;
  3848. }
  3849. #u27603 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:488px;
  3853. top:150px;
  3854. width:60px;
  3855. height:25px;
  3856. display:flex;
  3857. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3858. font-weight:500;
  3859. font-style:normal;
  3860. font-size:18px;
  3861. }
  3862. #u27603 .text {
  3863. position:absolute;
  3864. align-self:center;
  3865. padding:0px 0px 0px 0px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u27603_text {
  3870. border-width:0px;
  3871. white-space:nowrap;
  3872. text-transform:none;
  3873. }
  3874. #u27604_div {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:60px;
  3880. height:24px;
  3881. background:inherit;
  3882. background-color:rgba(41, 143, 255, 1);
  3883. border:none;
  3884. border-radius:0px;
  3885. -moz-box-shadow:none;
  3886. -webkit-box-shadow:none;
  3887. box-shadow:none;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:12px;
  3892. color:#FFFFFF;
  3893. text-align:center;
  3894. }
  3895. #u27604 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:488px;
  3899. top:197px;
  3900. width:60px;
  3901. height:24px;
  3902. display:flex;
  3903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:12px;
  3907. color:#FFFFFF;
  3908. text-align:center;
  3909. }
  3910. #u27604 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:0px 0px 0px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u27604_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. }
  3922. #u27605_div {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:93px;
  3928. height:17px;
  3929. background:inherit;
  3930. background-color:rgba(224, 231, 247, 0);
  3931. border:none;
  3932. border-radius:0px;
  3933. -moz-box-shadow:none;
  3934. -webkit-box-shadow:none;
  3935. box-shadow:none;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:12px;
  3940. }
  3941. #u27605 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:755px;
  3945. top:173px;
  3946. width:93px;
  3947. height:17px;
  3948. display:flex;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:12px;
  3953. }
  3954. #u27605 .text {
  3955. position:absolute;
  3956. align-self:center;
  3957. padding:0px 0px 0px 0px;
  3958. box-sizing:border-box;
  3959. width:100%;
  3960. }
  3961. #u27605_text {
  3962. border-width:0px;
  3963. white-space:nowrap;
  3964. text-transform:none;
  3965. }
  3966. #u27606_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:65px;
  3972. height:65px;
  3973. }
  3974. #u27606 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:670px;
  3978. top:151px;
  3979. width:65px;
  3980. height:65px;
  3981. display:flex;
  3982. }
  3983. #u27606 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 2px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u27606_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. }
  3995. #u27607_div {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:78px;
  4001. height:25px;
  4002. background:inherit;
  4003. background-color:rgba(224, 231, 247, 0);
  4004. border:none;
  4005. border-radius:0px;
  4006. -moz-box-shadow:none;
  4007. -webkit-box-shadow:none;
  4008. box-shadow:none;
  4009. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4010. font-weight:500;
  4011. font-style:normal;
  4012. font-size:18px;
  4013. }
  4014. #u27607 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:755px;
  4018. top:148px;
  4019. width:78px;
  4020. height:25px;
  4021. display:flex;
  4022. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4023. font-weight:500;
  4024. font-style:normal;
  4025. font-size:18px;
  4026. }
  4027. #u27607 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:0px 0px 0px 0px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u27607_text {
  4035. border-width:0px;
  4036. white-space:nowrap;
  4037. text-transform:none;
  4038. }
  4039. #u27608_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:60px;
  4045. height:24px;
  4046. background:inherit;
  4047. background-color:rgba(41, 143, 255, 1);
  4048. border:none;
  4049. border-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:12px;
  4057. color:#FFFFFF;
  4058. text-align:center;
  4059. }
  4060. #u27608 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:755px;
  4064. top:195px;
  4065. width:60px;
  4066. height:24px;
  4067. display:flex;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:12px;
  4072. color:#FFFFFF;
  4073. text-align:center;
  4074. }
  4075. #u27608 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:0px 0px 0px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u27608_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. }
  4087. #u27609_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:2px;
  4093. height:39px;
  4094. }
  4095. #u27609 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:617px;
  4099. top:165px;
  4100. width:1px;
  4101. height:38px;
  4102. display:flex;
  4103. }
  4104. #u27609 .text {
  4105. position:absolute;
  4106. align-self:center;
  4107. padding:2px 2px 2px 2px;
  4108. box-sizing:border-box;
  4109. width:100%;
  4110. }
  4111. #u27609_text {
  4112. border-width:0px;
  4113. word-wrap:break-word;
  4114. text-transform:none;
  4115. visibility:hidden;
  4116. }
  4117. #u27610_div {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:281px;
  4123. height:25px;
  4124. background:inherit;
  4125. background-color:rgba(224, 231, 247, 0);
  4126. border:none;
  4127. border-radius:0px;
  4128. -moz-box-shadow:none;
  4129. -webkit-box-shadow:none;
  4130. box-shadow:none;
  4131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. line-height:25px;
  4135. }
  4136. #u27610 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:1260px;
  4140. top:148px;
  4141. width:281px;
  4142. height:25px;
  4143. display:flex;
  4144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. line-height:25px;
  4148. }
  4149. #u27610 .text {
  4150. position:absolute;
  4151. align-self:flex-start;
  4152. padding:0px 0px 0px 0px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u27610_text {
  4157. border-width:0px;
  4158. white-space:nowrap;
  4159. text-transform:none;
  4160. }
  4161. #u27611 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:0px;
  4167. height:0px;
  4168. }
  4169. #u27612_div {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:49px;
  4175. height:30px;
  4176. background:inherit;
  4177. background-color:rgba(224, 231, 247, 0);
  4178. border:none;
  4179. border-radius:0px;
  4180. -moz-box-shadow:none;
  4181. -webkit-box-shadow:none;
  4182. box-shadow:none;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:12px;
  4187. line-height:30px;
  4188. }
  4189. #u27612 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:1238px;
  4193. top:60px;
  4194. width:49px;
  4195. height:30px;
  4196. display:flex;
  4197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:12px;
  4201. line-height:30px;
  4202. }
  4203. #u27612 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:0px 0px 0px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u27612_text {
  4211. border-width:0px;
  4212. white-space:nowrap;
  4213. text-transform:none;
  4214. }
  4215. #u27613_img {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:17px;
  4221. height:17px;
  4222. }
  4223. #u27613 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:1216px;
  4227. top:66px;
  4228. width:17px;
  4229. height:17px;
  4230. display:flex;
  4231. font-size:8px;
  4232. color:#FFFFFF;
  4233. }
  4234. #u27613 .text {
  4235. position:absolute;
  4236. align-self:center;
  4237. padding:2px 2px 2px 2px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u27613_text {
  4242. border-width:0px;
  4243. word-wrap:break-word;
  4244. text-transform:none;
  4245. }
  4246. #u27614 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:0px;
  4252. height:0px;
  4253. }
  4254. #u27615_div {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:49px;
  4260. height:30px;
  4261. background:inherit;
  4262. background-color:rgba(224, 231, 247, 0);
  4263. border:none;
  4264. border-radius:0px;
  4265. -moz-box-shadow:none;
  4266. -webkit-box-shadow:none;
  4267. box-shadow:none;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:12px;
  4272. line-height:30px;
  4273. }
  4274. #u27615 {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:1334px;
  4278. top:60px;
  4279. width:49px;
  4280. height:30px;
  4281. display:flex;
  4282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4283. font-weight:400;
  4284. font-style:normal;
  4285. font-size:12px;
  4286. line-height:30px;
  4287. }
  4288. #u27615 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:0px 0px 0px 0px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u27615_text {
  4296. border-width:0px;
  4297. white-space:nowrap;
  4298. text-transform:none;
  4299. }
  4300. #u27616_img {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:17px;
  4306. height:17px;
  4307. }
  4308. #u27616 {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:1312px;
  4312. top:66px;
  4313. width:17px;
  4314. height:17px;
  4315. display:flex;
  4316. font-size:8px;
  4317. color:#FFFFFF;
  4318. }
  4319. #u27616 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 2px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u27616_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. }
  4331. #u27617 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:0px;
  4337. height:0px;
  4338. }
  4339. #u27618_div {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:37px;
  4345. height:30px;
  4346. background:inherit;
  4347. background-color:rgba(224, 231, 247, 0);
  4348. border:none;
  4349. border-radius:0px;
  4350. -moz-box-shadow:none;
  4351. -webkit-box-shadow:none;
  4352. box-shadow:none;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:12px;
  4357. line-height:30px;
  4358. }
  4359. #u27618 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:1431px;
  4363. top:60px;
  4364. width:37px;
  4365. height:30px;
  4366. display:flex;
  4367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:12px;
  4371. line-height:30px;
  4372. }
  4373. #u27618 .text {
  4374. position:absolute;
  4375. align-self:center;
  4376. padding:0px 0px 0px 0px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u27618_text {
  4381. border-width:0px;
  4382. white-space:nowrap;
  4383. text-transform:none;
  4384. }
  4385. #u27619_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:17px;
  4391. height:17px;
  4392. }
  4393. #u27619 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:1409px;
  4397. top:66px;
  4398. width:17px;
  4399. height:17px;
  4400. display:flex;
  4401. font-size:8px;
  4402. color:#FFFFFF;
  4403. }
  4404. #u27619 .text {
  4405. position:absolute;
  4406. align-self:center;
  4407. padding:2px 2px 2px 2px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u27619_text {
  4412. border-width:0px;
  4413. word-wrap:break-word;
  4414. text-transform:none;
  4415. }
  4416. #u27620 {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:0px;
  4422. height:0px;
  4423. }
  4424. #u27621_div {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:49px;
  4430. height:30px;
  4431. background:inherit;
  4432. background-color:rgba(224, 231, 247, 0);
  4433. border:none;
  4434. border-radius:0px;
  4435. -moz-box-shadow:none;
  4436. -webkit-box-shadow:none;
  4437. box-shadow:none;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:12px;
  4442. line-height:30px;
  4443. }
  4444. #u27621 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:1513px;
  4448. top:60px;
  4449. width:49px;
  4450. height:30px;
  4451. display:flex;
  4452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:12px;
  4456. line-height:30px;
  4457. }
  4458. #u27621 .text {
  4459. position:absolute;
  4460. align-self:center;
  4461. padding:0px 0px 0px 0px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u27621_text {
  4466. border-width:0px;
  4467. white-space:nowrap;
  4468. text-transform:none;
  4469. }
  4470. #u27622_img {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:17px;
  4476. height:17px;
  4477. }
  4478. #u27622 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:1491px;
  4482. top:66px;
  4483. width:17px;
  4484. height:17px;
  4485. display:flex;
  4486. font-size:8px;
  4487. color:#FFFFFF;
  4488. }
  4489. #u27622 .text {
  4490. position:absolute;
  4491. align-self:center;
  4492. padding:2px 2px 2px 2px;
  4493. box-sizing:border-box;
  4494. width:100%;
  4495. }
  4496. #u27622_text {
  4497. border-width:0px;
  4498. word-wrap:break-word;
  4499. text-transform:none;
  4500. }
  4501. #u27623 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:0px;
  4507. height:0px;
  4508. }
  4509. #u27624_div {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:580px;
  4515. height:30px;
  4516. background:inherit;
  4517. background-color:rgba(224, 231, 247, 0);
  4518. border:none;
  4519. border-radius:0px;
  4520. -moz-box-shadow:none;
  4521. -webkit-box-shadow:none;
  4522. box-shadow:none;
  4523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. line-height:30px;
  4527. }
  4528. #u27624 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:350px;
  4532. top:354px;
  4533. width:580px;
  4534. height:30px;
  4535. display:flex;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. line-height:30px;
  4540. }
  4541. #u27624 .text {
  4542. position:absolute;
  4543. align-self:center;
  4544. padding:0px 0px 0px 0px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u27624_text {
  4549. border-width:0px;
  4550. word-wrap:break-word;
  4551. text-transform:none;
  4552. }
  4553. #u27625_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:15px;
  4559. height:15px;
  4560. }
  4561. #u27625 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:439px;
  4565. top:362px;
  4566. width:15px;
  4567. height:15px;
  4568. display:flex;
  4569. }
  4570. #u27625 .text {
  4571. position:absolute;
  4572. align-self:center;
  4573. padding:2px 2px 2px 2px;
  4574. box-sizing:border-box;
  4575. width:100%;
  4576. }
  4577. #u27625_text {
  4578. border-width:0px;
  4579. word-wrap:break-word;
  4580. text-transform:none;
  4581. visibility:hidden;
  4582. }
  4583. #u27626 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:0px;
  4589. height:0px;
  4590. }
  4591. #u27627_div {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:460px;
  4597. height:493px;
  4598. background:inherit;
  4599. background-color:rgba(255, 255, 255, 1);
  4600. border:none;
  4601. border-radius:4px;
  4602. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4603. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4604. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4605. font-family:'Microsoft YaHei', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. }
  4609. #u27627 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:640px;
  4613. top:625px;
  4614. width:460px;
  4615. height:493px;
  4616. display:flex;
  4617. font-family:'Microsoft YaHei', sans-serif;
  4618. font-weight:400;
  4619. font-style:normal;
  4620. }
  4621. #u27627 .text {
  4622. position:absolute;
  4623. align-self:center;
  4624. padding:2px 2px 2px 2px;
  4625. box-sizing:border-box;
  4626. width:100%;
  4627. }
  4628. #u27627_text {
  4629. border-width:0px;
  4630. word-wrap:break-word;
  4631. text-transform:none;
  4632. visibility:hidden;
  4633. }
  4634. #u27628_div {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:412px;
  4640. height:360px;
  4641. background:inherit;
  4642. background-color:rgba(255, 255, 255, 0);
  4643. border:none;
  4644. border-radius:0px;
  4645. -moz-box-shadow:none;
  4646. -webkit-box-shadow:none;
  4647. box-shadow:none;
  4648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:14px;
  4652. color:#666666;
  4653. line-height:30px;
  4654. }
  4655. #u27628 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:664px;
  4659. top:685px;
  4660. width:412px;
  4661. height:360px;
  4662. display:flex;
  4663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:14px;
  4667. color:#666666;
  4668. line-height:30px;
  4669. }
  4670. #u27628 .text {
  4671. position:absolute;
  4672. align-self:flex-start;
  4673. padding:0px 0px 0px 0px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u27628_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. }
  4682. #u27629_div {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:217px;
  4688. height:21px;
  4689. background:inherit;
  4690. background-color:rgba(255, 255, 255, 0);
  4691. border:none;
  4692. border-radius:0px;
  4693. -moz-box-shadow:none;
  4694. -webkit-box-shadow:none;
  4695. box-shadow:none;
  4696. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4697. font-weight:650;
  4698. font-style:normal;
  4699. font-size:18px;
  4700. color:#000000;
  4701. line-height:22px;
  4702. }
  4703. #u27629 {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:654px;
  4707. top:650px;
  4708. width:217px;
  4709. height:21px;
  4710. display:flex;
  4711. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4712. font-weight:650;
  4713. font-style:normal;
  4714. font-size:18px;
  4715. color:#000000;
  4716. line-height:22px;
  4717. }
  4718. #u27629 .text {
  4719. position:absolute;
  4720. align-self:flex-start;
  4721. padding:0px 0px 0px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u27629_text {
  4726. border-width:0px;
  4727. white-space:nowrap;
  4728. text-transform:none;
  4729. }
  4730. #u27630_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:61px;
  4736. height:32px;
  4737. background:inherit;
  4738. background-color:rgba(24, 144, 255, 1);
  4739. border:none;
  4740. border-radius:4px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'Microsoft YaHei', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:14px;
  4748. color:#FFFFFF;
  4749. }
  4750. #u27630 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:845px;
  4754. top:1066px;
  4755. width:61px;
  4756. height:32px;
  4757. display:flex;
  4758. font-family:'Microsoft YaHei', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:14px;
  4762. color:#FFFFFF;
  4763. }
  4764. #u27630 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 16px 2px 16px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u27630_text {
  4772. border-width:0px;
  4773. white-space:nowrap;
  4774. text-transform:none;
  4775. }
  4776. #u27631 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:0px;
  4782. height:0px;
  4783. }
  4784. #u27632_div {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:0px;
  4788. top:0px;
  4789. width:440px;
  4790. height:200px;
  4791. background:inherit;
  4792. background-color:rgba(255, 255, 255, 1);
  4793. border:none;
  4794. border-radius:4px;
  4795. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4796. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4797. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4798. font-family:'Microsoft YaHei', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. }
  4802. #u27632 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:1677px;
  4806. top:91px;
  4807. width:440px;
  4808. height:200px;
  4809. display:flex;
  4810. font-family:'Microsoft YaHei', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. }
  4814. #u27632 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 2px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u27632_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u27633_div {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:85px;
  4833. height:22px;
  4834. background:inherit;
  4835. background-color:rgba(255, 255, 255, 0);
  4836. border:none;
  4837. border-radius:0px;
  4838. -moz-box-shadow:none;
  4839. -webkit-box-shadow:none;
  4840. box-shadow:none;
  4841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4842. font-weight:400;
  4843. font-style:normal;
  4844. font-size:14px;
  4845. color:#666666;
  4846. line-height:22px;
  4847. }
  4848. #u27633 {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:1704px;
  4852. top:162px;
  4853. width:85px;
  4854. height:22px;
  4855. display:flex;
  4856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. font-size:14px;
  4860. color:#666666;
  4861. line-height:22px;
  4862. }
  4863. #u27633 .text {
  4864. position:absolute;
  4865. align-self:flex-start;
  4866. padding:0px 0px 0px 0px;
  4867. box-sizing:border-box;
  4868. width:100%;
  4869. }
  4870. #u27633_text {
  4871. border-width:0px;
  4872. white-space:nowrap;
  4873. text-transform:none;
  4874. }
  4875. #u27634_div {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:109px;
  4881. height:21px;
  4882. background:inherit;
  4883. background-color:rgba(255, 255, 255, 0);
  4884. border:none;
  4885. border-radius:0px;
  4886. -moz-box-shadow:none;
  4887. -webkit-box-shadow:none;
  4888. box-shadow:none;
  4889. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4890. font-weight:650;
  4891. font-style:normal;
  4892. font-size:18px;
  4893. color:#000000;
  4894. line-height:22px;
  4895. }
  4896. #u27634 {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:1704px;
  4900. top:116px;
  4901. width:109px;
  4902. height:21px;
  4903. display:flex;
  4904. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4905. font-weight:650;
  4906. font-style:normal;
  4907. font-size:18px;
  4908. color:#000000;
  4909. line-height:22px;
  4910. }
  4911. #u27634 .text {
  4912. position:absolute;
  4913. align-self:flex-start;
  4914. padding:0px 0px 0px 0px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u27634_text {
  4919. border-width:0px;
  4920. white-space:nowrap;
  4921. text-transform:none;
  4922. }
  4923. #u27635_div {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:0px;
  4927. top:0px;
  4928. width:61px;
  4929. height:32px;
  4930. background:inherit;
  4931. background-color:rgba(24, 144, 255, 1);
  4932. border:none;
  4933. border-radius:4px;
  4934. -moz-box-shadow:none;
  4935. -webkit-box-shadow:none;
  4936. box-shadow:none;
  4937. font-family:'Microsoft YaHei', sans-serif;
  4938. font-weight:400;
  4939. font-style:normal;
  4940. font-size:14px;
  4941. color:#FFFFFF;
  4942. }
  4943. #u27635 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:2036px;
  4947. top:236px;
  4948. width:61px;
  4949. height:32px;
  4950. display:flex;
  4951. font-family:'Microsoft YaHei', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:14px;
  4955. color:#FFFFFF;
  4956. }
  4957. #u27635 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 16px 2px 16px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u27635_text {
  4965. border-width:0px;
  4966. white-space:nowrap;
  4967. text-transform:none;
  4968. }
  4969. #u27636_div {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:66px;
  4975. height:32px;
  4976. background:inherit;
  4977. background-color:rgba(255, 255, 255, 1);
  4978. box-sizing:border-box;
  4979. border-width:1px;
  4980. border-style:solid;
  4981. border-color:rgba(217, 217, 217, 1);
  4982. border-radius:4px;
  4983. -moz-box-shadow:none;
  4984. -webkit-box-shadow:none;
  4985. box-shadow:none;
  4986. font-family:'Microsoft YaHei', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:14px;
  4990. color:rgba(0, 0, 0, 0.647058823529412);
  4991. line-height:21px;
  4992. }
  4993. #u27636 {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:1954px;
  4997. top:236px;
  4998. width:66px;
  4999. height:32px;
  5000. display:flex;
  5001. font-family:'Microsoft YaHei', sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:14px;
  5005. color:rgba(0, 0, 0, 0.647058823529412);
  5006. line-height:21px;
  5007. }
  5008. #u27636 .text {
  5009. position:absolute;
  5010. align-self:center;
  5011. padding:2px 16px 2px 16px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u27636_text {
  5016. border-width:0px;
  5017. white-space:nowrap;
  5018. text-transform:none;
  5019. }
  5020. #u27637 label {
  5021. left:0px;
  5022. width:100%;
  5023. }
  5024. #u27637_img {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:4px;
  5029. width:12px;
  5030. height:12px;
  5031. }
  5032. #u27637 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:1809px;
  5036. top:163px;
  5037. width:100px;
  5038. height:20px;
  5039. display:flex;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:14px;
  5044. }
  5045. #u27637 .text {
  5046. position:absolute;
  5047. align-self:center;
  5048. padding:0px 2px 0px 2px;
  5049. box-sizing:border-box;
  5050. }
  5051. #u27637_img.selected {
  5052. }
  5053. #u27637.selected {
  5054. }
  5055. #u27637_img.disabled {
  5056. }
  5057. #u27637.disabled {
  5058. }
  5059. #u27637_img.selectedDisabled {
  5060. }
  5061. #u27637.selectedDisabled {
  5062. }
  5063. #u27637_text {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:14px;
  5067. top:0px;
  5068. width:84px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. }
  5072. #u27637_input {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:0px;
  5078. height:0px;
  5079. opacity:0;
  5080. }
  5081. #u27638 label {
  5082. left:0px;
  5083. width:100%;
  5084. }
  5085. #u27638_img {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:4px;
  5090. width:12px;
  5091. height:12px;
  5092. }
  5093. #u27638 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:1909px;
  5097. top:163px;
  5098. width:100px;
  5099. height:20px;
  5100. display:flex;
  5101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:14px;
  5105. }
  5106. #u27638 .text {
  5107. position:absolute;
  5108. align-self:center;
  5109. padding:0px 2px 0px 2px;
  5110. box-sizing:border-box;
  5111. }
  5112. #u27638_img.selected {
  5113. }
  5114. #u27638.selected {
  5115. }
  5116. #u27638_img.disabled {
  5117. }
  5118. #u27638.disabled {
  5119. }
  5120. #u27638_img.selectedDisabled {
  5121. }
  5122. #u27638.selectedDisabled {
  5123. }
  5124. #u27638_text {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:14px;
  5128. top:0px;
  5129. width:84px;
  5130. word-wrap:break-word;
  5131. text-transform:none;
  5132. }
  5133. #u27638_input {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:0px;
  5139. height:0px;
  5140. opacity:0;
  5141. }
  5142. #u27639_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:217px;
  5148. height:17px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 0);
  5151. border:none;
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:12px;
  5160. color:#1890FF;
  5161. }
  5162. #u27639 {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:1809px;
  5166. top:192px;
  5167. width:217px;
  5168. height:17px;
  5169. display:flex;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:12px;
  5174. color:#1890FF;
  5175. }
  5176. #u27639 .text {
  5177. position:absolute;
  5178. align-self:flex-start;
  5179. padding:0px 0px 0px 0px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u27639_text {
  5184. border-width:0px;
  5185. white-space:nowrap;
  5186. text-transform:none;
  5187. }
  5188. #u27640 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:0px;
  5194. height:0px;
  5195. }
  5196. #u27641_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:440px;
  5202. height:200px;
  5203. background:inherit;
  5204. background-color:rgba(255, 255, 255, 1);
  5205. border:none;
  5206. border-radius:4px;
  5207. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5208. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5209. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5210. font-family:'Microsoft YaHei', sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. }
  5214. #u27641 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:1677px;
  5218. top:319px;
  5219. width:440px;
  5220. height:200px;
  5221. display:flex;
  5222. font-family:'Microsoft YaHei', sans-serif;
  5223. font-weight:400;
  5224. font-style:normal;
  5225. }
  5226. #u27641 .text {
  5227. position:absolute;
  5228. align-self:center;
  5229. padding:2px 2px 2px 2px;
  5230. box-sizing:border-box;
  5231. width:100%;
  5232. }
  5233. #u27641_text {
  5234. border-width:0px;
  5235. word-wrap:break-word;
  5236. text-transform:none;
  5237. visibility:hidden;
  5238. }
  5239. #u27642_div {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:85px;
  5245. height:22px;
  5246. background:inherit;
  5247. background-color:rgba(255, 255, 255, 0);
  5248. border:none;
  5249. border-radius:0px;
  5250. -moz-box-shadow:none;
  5251. -webkit-box-shadow:none;
  5252. box-shadow:none;
  5253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5254. font-weight:400;
  5255. font-style:normal;
  5256. font-size:14px;
  5257. color:#666666;
  5258. line-height:22px;
  5259. }
  5260. #u27642 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:1704px;
  5264. top:390px;
  5265. width:85px;
  5266. height:22px;
  5267. display:flex;
  5268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:14px;
  5272. color:#666666;
  5273. line-height:22px;
  5274. }
  5275. #u27642 .text {
  5276. position:absolute;
  5277. align-self:flex-start;
  5278. padding:0px 0px 0px 0px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u27642_text {
  5283. border-width:0px;
  5284. white-space:nowrap;
  5285. text-transform:none;
  5286. }
  5287. #u27643_div {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:109px;
  5293. height:21px;
  5294. background:inherit;
  5295. background-color:rgba(255, 255, 255, 0);
  5296. border:none;
  5297. border-radius:0px;
  5298. -moz-box-shadow:none;
  5299. -webkit-box-shadow:none;
  5300. box-shadow:none;
  5301. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5302. font-weight:650;
  5303. font-style:normal;
  5304. font-size:18px;
  5305. color:#000000;
  5306. line-height:22px;
  5307. }
  5308. #u27643 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:1704px;
  5312. top:344px;
  5313. width:109px;
  5314. height:21px;
  5315. display:flex;
  5316. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5317. font-weight:650;
  5318. font-style:normal;
  5319. font-size:18px;
  5320. color:#000000;
  5321. line-height:22px;
  5322. }
  5323. #u27643 .text {
  5324. position:absolute;
  5325. align-self:flex-start;
  5326. padding:0px 0px 0px 0px;
  5327. box-sizing:border-box;
  5328. width:100%;
  5329. }
  5330. #u27643_text {
  5331. border-width:0px;
  5332. white-space:nowrap;
  5333. text-transform:none;
  5334. }
  5335. #u27644_div {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:0px;
  5339. top:0px;
  5340. width:61px;
  5341. height:32px;
  5342. background:inherit;
  5343. background-color:rgba(24, 144, 255, 1);
  5344. border:none;
  5345. border-radius:4px;
  5346. -moz-box-shadow:none;
  5347. -webkit-box-shadow:none;
  5348. box-shadow:none;
  5349. font-family:'Microsoft YaHei', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:14px;
  5353. color:#FFFFFF;
  5354. }
  5355. #u27644 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:2036px;
  5359. top:464px;
  5360. width:61px;
  5361. height:32px;
  5362. display:flex;
  5363. font-family:'Microsoft YaHei', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:14px;
  5367. color:#FFFFFF;
  5368. }
  5369. #u27644 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:2px 16px 2px 16px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u27644_text {
  5377. border-width:0px;
  5378. white-space:nowrap;
  5379. text-transform:none;
  5380. }
  5381. #u27645_div {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:66px;
  5387. height:32px;
  5388. background:inherit;
  5389. background-color:rgba(255, 255, 255, 1);
  5390. box-sizing:border-box;
  5391. border-width:1px;
  5392. border-style:solid;
  5393. border-color:rgba(217, 217, 217, 1);
  5394. border-radius:4px;
  5395. -moz-box-shadow:none;
  5396. -webkit-box-shadow:none;
  5397. box-shadow:none;
  5398. font-family:'Microsoft YaHei', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:14px;
  5402. color:rgba(0, 0, 0, 0.647058823529412);
  5403. line-height:21px;
  5404. }
  5405. #u27645 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:1954px;
  5409. top:464px;
  5410. width:66px;
  5411. height:32px;
  5412. display:flex;
  5413. font-family:'Microsoft YaHei', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:14px;
  5417. color:rgba(0, 0, 0, 0.647058823529412);
  5418. line-height:21px;
  5419. }
  5420. #u27645 .text {
  5421. position:absolute;
  5422. align-self:center;
  5423. padding:2px 16px 2px 16px;
  5424. box-sizing:border-box;
  5425. width:100%;
  5426. }
  5427. #u27645_text {
  5428. border-width:0px;
  5429. white-space:nowrap;
  5430. text-transform:none;
  5431. }
  5432. #u27646 label {
  5433. left:0px;
  5434. width:100%;
  5435. }
  5436. #u27646_img {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:0px;
  5440. top:4px;
  5441. width:12px;
  5442. height:12px;
  5443. }
  5444. #u27646 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:1809px;
  5448. top:391px;
  5449. width:100px;
  5450. height:20px;
  5451. display:flex;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:14px;
  5456. }
  5457. #u27646 .text {
  5458. position:absolute;
  5459. align-self:center;
  5460. padding:0px 2px 0px 2px;
  5461. box-sizing:border-box;
  5462. }
  5463. #u27646_img.selected {
  5464. }
  5465. #u27646.selected {
  5466. }
  5467. #u27646_img.disabled {
  5468. }
  5469. #u27646.disabled {
  5470. }
  5471. #u27646_img.selectedDisabled {
  5472. }
  5473. #u27646.selectedDisabled {
  5474. }
  5475. #u27646_text {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:14px;
  5479. top:0px;
  5480. width:84px;
  5481. word-wrap:break-word;
  5482. text-transform:none;
  5483. }
  5484. #u27646_input {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:0px;
  5490. height:0px;
  5491. opacity:0;
  5492. }
  5493. #u27647 label {
  5494. left:0px;
  5495. width:100%;
  5496. }
  5497. #u27647_img {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:4px;
  5502. width:12px;
  5503. height:12px;
  5504. }
  5505. #u27647 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:1909px;
  5509. top:391px;
  5510. width:100px;
  5511. height:20px;
  5512. display:flex;
  5513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:14px;
  5517. }
  5518. #u27647 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:0px 2px 0px 2px;
  5522. box-sizing:border-box;
  5523. }
  5524. #u27647_img.selected {
  5525. }
  5526. #u27647.selected {
  5527. }
  5528. #u27647_img.disabled {
  5529. }
  5530. #u27647.disabled {
  5531. }
  5532. #u27647_img.selectedDisabled {
  5533. }
  5534. #u27647.selectedDisabled {
  5535. }
  5536. #u27647_text {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:14px;
  5540. top:0px;
  5541. width:84px;
  5542. word-wrap:break-word;
  5543. text-transform:none;
  5544. }
  5545. #u27647_input {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:0px;
  5551. height:0px;
  5552. opacity:0;
  5553. }
  5554. #u27648_div {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:169px;
  5560. height:17px;
  5561. background:inherit;
  5562. background-color:rgba(255, 255, 255, 0);
  5563. border:none;
  5564. border-radius:0px;
  5565. -moz-box-shadow:none;
  5566. -webkit-box-shadow:none;
  5567. box-shadow:none;
  5568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:12px;
  5572. color:#1890FF;
  5573. }
  5574. #u27648 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:1809px;
  5578. top:420px;
  5579. width:169px;
  5580. height:17px;
  5581. display:flex;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:12px;
  5586. color:#1890FF;
  5587. }
  5588. #u27648 .text {
  5589. position:absolute;
  5590. align-self:flex-start;
  5591. padding:0px 0px 0px 0px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u27648_text {
  5596. border-width:0px;
  5597. white-space:nowrap;
  5598. text-transform:none;
  5599. }
  5600. #u27649_div {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:1251px;
  5606. height:270px;
  5607. background:inherit;
  5608. background-color:rgba(255, 255, 255, 0);
  5609. border:none;
  5610. border-radius:0px;
  5611. -moz-box-shadow:none;
  5612. -webkit-box-shadow:none;
  5613. box-shadow:none;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:16px;
  5618. color:#D9001B;
  5619. line-height:30px;
  5620. }
  5621. #u27649 {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:85px;
  5625. top:1358px;
  5626. width:1251px;
  5627. height:270px;
  5628. display:flex;
  5629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5630. font-weight:400;
  5631. font-style:normal;
  5632. font-size:16px;
  5633. color:#D9001B;
  5634. line-height:30px;
  5635. }
  5636. #u27649 .text {
  5637. position:absolute;
  5638. align-self:flex-start;
  5639. padding:0px 0px 0px 0px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u27649_text {
  5644. border-width:0px;
  5645. white-space:nowrap;
  5646. text-transform:none;
  5647. }
  5648. #u27650_img {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:793px;
  5654. height:170px;
  5655. }
  5656. #u27650 {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:474px;
  5660. top:-287px;
  5661. width:793px;
  5662. height:170px;
  5663. display:flex;
  5664. }
  5665. #u27650 .text {
  5666. position:absolute;
  5667. align-self:center;
  5668. padding:2px 2px 2px 2px;
  5669. box-sizing:border-box;
  5670. width:100%;
  5671. }
  5672. #u27650_text {
  5673. border-width:0px;
  5674. word-wrap:break-word;
  5675. text-transform:none;
  5676. visibility:hidden;
  5677. }
  5678. #u27651 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:0px;
  5682. top:0px;
  5683. width:0px;
  5684. height:0px;
  5685. }
  5686. #u27652_div {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:0px;
  5690. top:0px;
  5691. width:200px;
  5692. height:1180px;
  5693. background:inherit;
  5694. background-color:rgba(255, 255, 255, 1);
  5695. border:none;
  5696. border-radius:0px;
  5697. -moz-box-shadow:none;
  5698. -webkit-box-shadow:none;
  5699. box-shadow:none;
  5700. }
  5701. #u27652 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:120px;
  5705. top:50px;
  5706. width:200px;
  5707. height:1180px;
  5708. display:flex;
  5709. }
  5710. #u27652 .text {
  5711. position:absolute;
  5712. align-self:center;
  5713. padding:2px 2px 2px 2px;
  5714. box-sizing:border-box;
  5715. width:100%;
  5716. }
  5717. #u27652_text {
  5718. border-width:0px;
  5719. word-wrap:break-word;
  5720. text-transform:none;
  5721. visibility:hidden;
  5722. }
  5723. #u27653_div {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:200px;
  5729. height:60px;
  5730. background:inherit;
  5731. background-color:rgba(224, 231, 247, 1);
  5732. border:none;
  5733. border-radius:0px;
  5734. -moz-box-shadow:none;
  5735. -webkit-box-shadow:none;
  5736. box-shadow:none;
  5737. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5738. font-weight:500;
  5739. font-style:normal;
  5740. font-size:18px;
  5741. }
  5742. #u27653 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:120px;
  5746. top:50px;
  5747. width:200px;
  5748. height:60px;
  5749. display:flex;
  5750. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5751. font-weight:500;
  5752. font-style:normal;
  5753. font-size:18px;
  5754. }
  5755. #u27653 .text {
  5756. position:absolute;
  5757. align-self:center;
  5758. padding:0px 0px 0px 20px;
  5759. box-sizing:border-box;
  5760. width:100%;
  5761. }
  5762. #u27653_text {
  5763. border-width:0px;
  5764. word-wrap:break-word;
  5765. text-transform:none;
  5766. }
  5767. #u27654_div {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:97px;
  5773. height:22px;
  5774. background:inherit;
  5775. background-color:rgba(255, 255, 255, 0);
  5776. border:none;
  5777. border-radius:0px;
  5778. -moz-box-shadow:none;
  5779. -webkit-box-shadow:none;
  5780. box-shadow:none;
  5781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. font-size:16px;
  5785. }
  5786. #u27654 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:146px;
  5790. top:167px;
  5791. width:97px;
  5792. height:22px;
  5793. display:flex;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:16px;
  5798. }
  5799. #u27654 .text {
  5800. position:absolute;
  5801. align-self:flex-start;
  5802. padding:0px 0px 0px 0px;
  5803. box-sizing:border-box;
  5804. width:100%;
  5805. }
  5806. #u27654_text {
  5807. border-width:0px;
  5808. white-space:nowrap;
  5809. text-transform:none;
  5810. }
  5811. #u27655_div {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:97px;
  5817. height:22px;
  5818. background:inherit;
  5819. background-color:rgba(255, 255, 255, 0);
  5820. border:none;
  5821. border-radius:0px;
  5822. -moz-box-shadow:none;
  5823. -webkit-box-shadow:none;
  5824. box-shadow:none;
  5825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:16px;
  5829. }
  5830. #u27655 {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:146px;
  5834. top:209px;
  5835. width:97px;
  5836. height:22px;
  5837. display:flex;
  5838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:16px;
  5842. }
  5843. #u27655 .text {
  5844. position:absolute;
  5845. align-self:flex-start;
  5846. padding:0px 0px 0px 0px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u27655_text {
  5851. border-width:0px;
  5852. white-space:nowrap;
  5853. text-transform:none;
  5854. }
  5855. #u27656_div {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:73px;
  5861. height:17px;
  5862. background:inherit;
  5863. background-color:rgba(255, 255, 255, 0);
  5864. border:none;
  5865. border-radius:0px;
  5866. -moz-box-shadow:none;
  5867. -webkit-box-shadow:none;
  5868. box-shadow:none;
  5869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5870. font-weight:400;
  5871. font-style:normal;
  5872. font-size:12px;
  5873. color:#AAAAAA;
  5874. }
  5875. #u27656 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:146px;
  5879. top:130px;
  5880. width:73px;
  5881. height:17px;
  5882. display:flex;
  5883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5884. font-weight:400;
  5885. font-style:normal;
  5886. font-size:12px;
  5887. color:#AAAAAA;
  5888. }
  5889. #u27656 .text {
  5890. position:absolute;
  5891. align-self:flex-start;
  5892. padding:0px 0px 0px 0px;
  5893. box-sizing:border-box;
  5894. width:100%;
  5895. }
  5896. #u27656_text {
  5897. border-width:0px;
  5898. white-space:nowrap;
  5899. text-transform:none;
  5900. }
  5901. #u27657_div {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:73px;
  5907. height:17px;
  5908. background:inherit;
  5909. background-color:rgba(255, 255, 255, 0);
  5910. border:none;
  5911. border-radius:0px;
  5912. -moz-box-shadow:none;
  5913. -webkit-box-shadow:none;
  5914. box-shadow:none;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:12px;
  5919. color:#AAAAAA;
  5920. }
  5921. #u27657 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:146px;
  5925. top:397px;
  5926. width:73px;
  5927. height:17px;
  5928. display:flex;
  5929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:12px;
  5933. color:#AAAAAA;
  5934. }
  5935. #u27657 .text {
  5936. position:absolute;
  5937. align-self:flex-start;
  5938. padding:0px 0px 0px 0px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u27657_text {
  5943. border-width:0px;
  5944. white-space:nowrap;
  5945. text-transform:none;
  5946. }
  5947. #u27658_img {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:201px;
  5953. height:2px;
  5954. }
  5955. #u27658 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:120px;
  5959. top:375px;
  5960. width:200px;
  5961. height:1px;
  5962. display:flex;
  5963. }
  5964. #u27658 .text {
  5965. position:absolute;
  5966. align-self:center;
  5967. padding:2px 2px 2px 2px;
  5968. box-sizing:border-box;
  5969. width:100%;
  5970. }
  5971. #u27658_text {
  5972. border-width:0px;
  5973. word-wrap:break-word;
  5974. text-transform:none;
  5975. visibility:hidden;
  5976. }
  5977. #u27659_div {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:97px;
  5983. height:22px;
  5984. background:inherit;
  5985. background-color:rgba(255, 255, 255, 0);
  5986. border:none;
  5987. border-radius:0px;
  5988. -moz-box-shadow:none;
  5989. -webkit-box-shadow:none;
  5990. box-shadow:none;
  5991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5992. font-weight:400;
  5993. font-style:normal;
  5994. font-size:16px;
  5995. }
  5996. #u27659 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:146px;
  6000. top:435px;
  6001. width:97px;
  6002. height:22px;
  6003. display:flex;
  6004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:16px;
  6008. }
  6009. #u27659 .text {
  6010. position:absolute;
  6011. align-self:flex-start;
  6012. padding:0px 0px 0px 0px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u27659_text {
  6017. border-width:0px;
  6018. white-space:nowrap;
  6019. text-transform:none;
  6020. }
  6021. #u27660_div {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:97px;
  6027. height:22px;
  6028. background:inherit;
  6029. background-color:rgba(255, 255, 255, 0);
  6030. border:none;
  6031. border-radius:0px;
  6032. -moz-box-shadow:none;
  6033. -webkit-box-shadow:none;
  6034. box-shadow:none;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:16px;
  6039. }
  6040. #u27660 {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:146px;
  6044. top:477px;
  6045. width:97px;
  6046. height:22px;
  6047. display:flex;
  6048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6049. font-weight:400;
  6050. font-style:normal;
  6051. font-size:16px;
  6052. }
  6053. #u27660 .text {
  6054. position:absolute;
  6055. align-self:flex-start;
  6056. padding:0px 0px 0px 0px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u27660_text {
  6061. border-width:0px;
  6062. white-space:nowrap;
  6063. text-transform:none;
  6064. }
  6065. #u27661_div {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:97px;
  6071. height:22px;
  6072. background:inherit;
  6073. background-color:rgba(255, 255, 255, 0);
  6074. border:none;
  6075. border-radius:0px;
  6076. -moz-box-shadow:none;
  6077. -webkit-box-shadow:none;
  6078. box-shadow:none;
  6079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:16px;
  6083. }
  6084. #u27661 {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:146px;
  6088. top:251px;
  6089. width:97px;
  6090. height:22px;
  6091. display:flex;
  6092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:16px;
  6096. }
  6097. #u27661 .text {
  6098. position:absolute;
  6099. align-self:flex-start;
  6100. padding:0px 0px 0px 0px;
  6101. box-sizing:border-box;
  6102. width:100%;
  6103. }
  6104. #u27661_text {
  6105. border-width:0px;
  6106. white-space:nowrap;
  6107. text-transform:none;
  6108. }
  6109. #u27662_div {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:0px;
  6113. top:0px;
  6114. width:97px;
  6115. height:22px;
  6116. background:inherit;
  6117. background-color:rgba(255, 255, 255, 0);
  6118. border:none;
  6119. border-radius:0px;
  6120. -moz-box-shadow:none;
  6121. -webkit-box-shadow:none;
  6122. box-shadow:none;
  6123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:16px;
  6127. }
  6128. #u27662 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:146px;
  6132. top:293px;
  6133. width:97px;
  6134. height:22px;
  6135. display:flex;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:16px;
  6140. }
  6141. #u27662 .text {
  6142. position:absolute;
  6143. align-self:flex-start;
  6144. padding:0px 0px 0px 0px;
  6145. box-sizing:border-box;
  6146. width:100%;
  6147. }
  6148. #u27662_text {
  6149. border-width:0px;
  6150. white-space:nowrap;
  6151. text-transform:none;
  6152. }
  6153. #u27663_div {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:97px;
  6159. height:22px;
  6160. background:inherit;
  6161. background-color:rgba(255, 255, 255, 0);
  6162. border:none;
  6163. border-radius:0px;
  6164. -moz-box-shadow:none;
  6165. -webkit-box-shadow:none;
  6166. box-shadow:none;
  6167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. font-size:16px;
  6171. }
  6172. #u27663 {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:146px;
  6176. top:519px;
  6177. width:97px;
  6178. height:22px;
  6179. display:flex;
  6180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. font-size:16px;
  6184. }
  6185. #u27663 .text {
  6186. position:absolute;
  6187. align-self:flex-start;
  6188. padding:0px 0px 0px 0px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u27663_text {
  6193. border-width:0px;
  6194. white-space:nowrap;
  6195. text-transform:none;
  6196. }
  6197. #u27664_div {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:97px;
  6203. height:22px;
  6204. background:inherit;
  6205. background-color:rgba(255, 255, 255, 0);
  6206. border:none;
  6207. border-radius:0px;
  6208. -moz-box-shadow:none;
  6209. -webkit-box-shadow:none;
  6210. box-shadow:none;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:16px;
  6215. }
  6216. #u27664 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:146px;
  6220. top:561px;
  6221. width:97px;
  6222. height:22px;
  6223. display:flex;
  6224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:16px;
  6228. }
  6229. #u27664 .text {
  6230. position:absolute;
  6231. align-self:flex-start;
  6232. padding:0px 0px 0px 0px;
  6233. box-sizing:border-box;
  6234. width:100%;
  6235. }
  6236. #u27664_text {
  6237. border-width:0px;
  6238. white-space:nowrap;
  6239. text-transform:none;
  6240. }
  6241. #u27665_div {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:122px;
  6247. height:22px;
  6248. background:inherit;
  6249. background-color:rgba(255, 255, 255, 0);
  6250. border:none;
  6251. border-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:16px;
  6259. }
  6260. #u27665 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:146px;
  6264. top:603px;
  6265. width:122px;
  6266. height:22px;
  6267. display:flex;
  6268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6269. font-weight:400;
  6270. font-style:normal;
  6271. font-size:16px;
  6272. }
  6273. #u27665 .text {
  6274. position:absolute;
  6275. align-self:flex-start;
  6276. padding:0px 0px 0px 0px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u27665_text {
  6281. border-width:0px;
  6282. white-space:nowrap;
  6283. text-transform:none;
  6284. }
  6285. #u27666_div {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:49px;
  6291. height:17px;
  6292. background:inherit;
  6293. background-color:rgba(255, 255, 255, 0);
  6294. border:none;
  6295. border-radius:0px;
  6296. -moz-box-shadow:none;
  6297. -webkit-box-shadow:none;
  6298. box-shadow:none;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:12px;
  6303. color:#AAAAAA;
  6304. }
  6305. #u27666 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:146px;
  6309. top:809px;
  6310. width:49px;
  6311. height:17px;
  6312. display:flex;
  6313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. font-size:12px;
  6317. color:#AAAAAA;
  6318. }
  6319. #u27666 .text {
  6320. position:absolute;
  6321. align-self:flex-start;
  6322. padding:0px 0px 0px 0px;
  6323. box-sizing:border-box;
  6324. width:100%;
  6325. }
  6326. #u27666_text {
  6327. border-width:0px;
  6328. white-space:nowrap;
  6329. text-transform:none;
  6330. }
  6331. #u27667_img {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:0px;
  6335. top:0px;
  6336. width:201px;
  6337. height:2px;
  6338. }
  6339. #u27667 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:120px;
  6343. top:787px;
  6344. width:200px;
  6345. height:1px;
  6346. display:flex;
  6347. }
  6348. #u27667 .text {
  6349. position:absolute;
  6350. align-self:center;
  6351. padding:2px 2px 2px 2px;
  6352. box-sizing:border-box;
  6353. width:100%;
  6354. }
  6355. #u27667_text {
  6356. border-width:0px;
  6357. word-wrap:break-word;
  6358. text-transform:none;
  6359. visibility:hidden;
  6360. }
  6361. #u27668_div {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:97px;
  6367. height:22px;
  6368. background:inherit;
  6369. background-color:rgba(255, 255, 255, 0);
  6370. border:none;
  6371. border-radius:0px;
  6372. -moz-box-shadow:none;
  6373. -webkit-box-shadow:none;
  6374. box-shadow:none;
  6375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6376. font-weight:400;
  6377. font-style:normal;
  6378. font-size:16px;
  6379. }
  6380. #u27668 {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:146px;
  6384. top:847px;
  6385. width:97px;
  6386. height:22px;
  6387. display:flex;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:16px;
  6392. }
  6393. #u27668 .text {
  6394. position:absolute;
  6395. align-self:flex-start;
  6396. padding:0px 0px 0px 0px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u27668_text {
  6401. border-width:0px;
  6402. white-space:nowrap;
  6403. text-transform:none;
  6404. }
  6405. #u27669_div {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:97px;
  6411. height:22px;
  6412. background:inherit;
  6413. background-color:rgba(255, 255, 255, 0);
  6414. border:none;
  6415. border-radius:0px;
  6416. -moz-box-shadow:none;
  6417. -webkit-box-shadow:none;
  6418. box-shadow:none;
  6419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:16px;
  6423. }
  6424. #u27669 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:146px;
  6428. top:889px;
  6429. width:97px;
  6430. height:22px;
  6431. display:flex;
  6432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6433. font-weight:400;
  6434. font-style:normal;
  6435. font-size:16px;
  6436. }
  6437. #u27669 .text {
  6438. position:absolute;
  6439. align-self:flex-start;
  6440. padding:0px 0px 0px 0px;
  6441. box-sizing:border-box;
  6442. width:100%;
  6443. }
  6444. #u27669_text {
  6445. border-width:0px;
  6446. white-space:nowrap;
  6447. text-transform:none;
  6448. }
  6449. #u27670_div {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:97px;
  6455. height:22px;
  6456. background:inherit;
  6457. background-color:rgba(255, 255, 255, 0);
  6458. border:none;
  6459. border-radius:0px;
  6460. -moz-box-shadow:none;
  6461. -webkit-box-shadow:none;
  6462. box-shadow:none;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:16px;
  6467. }
  6468. #u27670 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:146px;
  6472. top:335px;
  6473. width:97px;
  6474. height:22px;
  6475. display:flex;
  6476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6477. font-weight:400;
  6478. font-style:normal;
  6479. font-size:16px;
  6480. }
  6481. #u27670 .text {
  6482. position:absolute;
  6483. align-self:flex-start;
  6484. padding:0px 0px 0px 0px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u27670_text {
  6489. border-width:0px;
  6490. white-space:nowrap;
  6491. text-transform:none;
  6492. }
  6493. #u27671_div {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:97px;
  6499. height:22px;
  6500. background:inherit;
  6501. background-color:rgba(255, 255, 255, 0);
  6502. border:none;
  6503. border-radius:0px;
  6504. -moz-box-shadow:none;
  6505. -webkit-box-shadow:none;
  6506. box-shadow:none;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:16px;
  6511. }
  6512. #u27671 {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:146px;
  6516. top:931px;
  6517. width:97px;
  6518. height:22px;
  6519. display:flex;
  6520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. font-size:16px;
  6524. }
  6525. #u27671 .text {
  6526. position:absolute;
  6527. align-self:flex-start;
  6528. padding:0px 0px 0px 0px;
  6529. box-sizing:border-box;
  6530. width:100%;
  6531. }
  6532. #u27671_text {
  6533. border-width:0px;
  6534. white-space:nowrap;
  6535. text-transform:none;
  6536. }
  6537. #u27672_div {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:0px;
  6541. top:0px;
  6542. width:49px;
  6543. height:17px;
  6544. background:inherit;
  6545. background-color:rgba(255, 255, 255, 0);
  6546. border:none;
  6547. border-radius:0px;
  6548. -moz-box-shadow:none;
  6549. -webkit-box-shadow:none;
  6550. box-shadow:none;
  6551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6552. font-weight:400;
  6553. font-style:normal;
  6554. font-size:12px;
  6555. color:#AAAAAA;
  6556. }
  6557. #u27672 {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:146px;
  6561. top:995px;
  6562. width:49px;
  6563. height:17px;
  6564. display:flex;
  6565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6566. font-weight:400;
  6567. font-style:normal;
  6568. font-size:12px;
  6569. color:#AAAAAA;
  6570. }
  6571. #u27672 .text {
  6572. position:absolute;
  6573. align-self:flex-start;
  6574. padding:0px 0px 0px 0px;
  6575. box-sizing:border-box;
  6576. width:100%;
  6577. }
  6578. #u27672_text {
  6579. border-width:0px;
  6580. white-space:nowrap;
  6581. text-transform:none;
  6582. }
  6583. #u27673_img {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:201px;
  6589. height:2px;
  6590. }
  6591. #u27673 {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:120px;
  6595. top:973px;
  6596. width:200px;
  6597. height:1px;
  6598. display:flex;
  6599. }
  6600. #u27673 .text {
  6601. position:absolute;
  6602. align-self:center;
  6603. padding:2px 2px 2px 2px;
  6604. box-sizing:border-box;
  6605. width:100%;
  6606. }
  6607. #u27673_text {
  6608. border-width:0px;
  6609. word-wrap:break-word;
  6610. text-transform:none;
  6611. visibility:hidden;
  6612. }
  6613. #u27674_div {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:0px;
  6617. top:0px;
  6618. width:97px;
  6619. height:22px;
  6620. background:inherit;
  6621. background-color:rgba(255, 255, 255, 0);
  6622. border:none;
  6623. border-radius:0px;
  6624. -moz-box-shadow:none;
  6625. -webkit-box-shadow:none;
  6626. box-shadow:none;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:16px;
  6631. }
  6632. #u27674 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:146px;
  6636. top:1033px;
  6637. width:97px;
  6638. height:22px;
  6639. display:flex;
  6640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6641. font-weight:400;
  6642. font-style:normal;
  6643. font-size:16px;
  6644. }
  6645. #u27674 .text {
  6646. position:absolute;
  6647. align-self:flex-start;
  6648. padding:0px 0px 0px 0px;
  6649. box-sizing:border-box;
  6650. width:100%;
  6651. }
  6652. #u27674_text {
  6653. border-width:0px;
  6654. white-space:nowrap;
  6655. text-transform:none;
  6656. }
  6657. #u27675_div {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:0px;
  6661. top:0px;
  6662. width:73px;
  6663. height:17px;
  6664. background:inherit;
  6665. background-color:rgba(255, 255, 255, 0);
  6666. border:none;
  6667. border-radius:0px;
  6668. -moz-box-shadow:none;
  6669. -webkit-box-shadow:none;
  6670. box-shadow:none;
  6671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. font-size:12px;
  6675. color:#AAAAAA;
  6676. }
  6677. #u27675 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:146px;
  6681. top:667px;
  6682. width:73px;
  6683. height:17px;
  6684. display:flex;
  6685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:12px;
  6689. color:#AAAAAA;
  6690. }
  6691. #u27675 .text {
  6692. position:absolute;
  6693. align-self:flex-start;
  6694. padding:0px 0px 0px 0px;
  6695. box-sizing:border-box;
  6696. width:100%;
  6697. }
  6698. #u27675_text {
  6699. border-width:0px;
  6700. white-space:nowrap;
  6701. text-transform:none;
  6702. }
  6703. #u27676_img {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:0px;
  6707. top:0px;
  6708. width:201px;
  6709. height:2px;
  6710. }
  6711. #u27676 {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:120px;
  6715. top:645px;
  6716. width:200px;
  6717. height:1px;
  6718. display:flex;
  6719. }
  6720. #u27676 .text {
  6721. position:absolute;
  6722. align-self:center;
  6723. padding:2px 2px 2px 2px;
  6724. box-sizing:border-box;
  6725. width:100%;
  6726. }
  6727. #u27676_text {
  6728. border-width:0px;
  6729. word-wrap:break-word;
  6730. text-transform:none;
  6731. visibility:hidden;
  6732. }
  6733. #u27677_div {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:97px;
  6739. height:22px;
  6740. background:inherit;
  6741. background-color:rgba(255, 255, 255, 0);
  6742. border:none;
  6743. border-radius:0px;
  6744. -moz-box-shadow:none;
  6745. -webkit-box-shadow:none;
  6746. box-shadow:none;
  6747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:16px;
  6751. }
  6752. #u27677 {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:146px;
  6756. top:705px;
  6757. width:97px;
  6758. height:22px;
  6759. display:flex;
  6760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6761. font-weight:400;
  6762. font-style:normal;
  6763. font-size:16px;
  6764. }
  6765. #u27677 .text {
  6766. position:absolute;
  6767. align-self:flex-start;
  6768. padding:0px 0px 0px 0px;
  6769. box-sizing:border-box;
  6770. width:100%;
  6771. }
  6772. #u27677_text {
  6773. border-width:0px;
  6774. white-space:nowrap;
  6775. text-transform:none;
  6776. }
  6777. #u27678_div {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:0px;
  6781. top:0px;
  6782. width:97px;
  6783. height:22px;
  6784. background:inherit;
  6785. background-color:rgba(255, 255, 255, 0);
  6786. border:none;
  6787. border-radius:0px;
  6788. -moz-box-shadow:none;
  6789. -webkit-box-shadow:none;
  6790. box-shadow:none;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:16px;
  6795. }
  6796. #u27678 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:146px;
  6800. top:747px;
  6801. width:97px;
  6802. height:22px;
  6803. display:flex;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:16px;
  6808. }
  6809. #u27678 .text {
  6810. position:absolute;
  6811. align-self:flex-start;
  6812. padding:0px 0px 0px 0px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u27678_text {
  6817. border-width:0px;
  6818. white-space:nowrap;
  6819. text-transform:none;
  6820. }