styles.css 122 KB

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